1 Objetivo

Construir permutaciones de conjuntos de datos de personas y de nombres de equipos deportivos

2 Descripción

A partir de conjuntos datos (valores individuales) realizar permutaciones para conocer el número de las mismas y el acomodo de los valores para su interpretación en términos de probabilidad.

La diferencias entre permutaciones y combinaciones tiene que ver con la cantidad o el número de eventos.

Al hacer permutaciones, si importa el orden en que se acomodan los elementos, es decir en que columna aparecen, en la primera, segunda, tercera y y sucesivamente.

Para identificar el orden, se puede decir que no es lo mismo “Oscar”, “Paco” que “Paco”, “Oscar”, están a la inversa o el orden está invertido. Eso es una diferencia con las combinaciones, son los mismos elementos pero el orden en que se acomodan o en que aparecen los elementos está diferente.

Se deben hacer las siguientes acciones:

  • Cargar librerías

  • Cargar los datos

  • Identificar fórmula de factorial

  • Identificar fórmula de permutaciones

  • Determinar probabilidades a partir del espacio muestral de las combinaciones

  • Encontrar probabilidad con base en frecuencia o contabilizar eventos específicos del espacio muestral

  • Interpretar el caso

2.1 Cargar librerías

Se van a utilizar funciones de la librería “gtools” por lo que se necesario instalarla previamente: install.packages(“gtools”).

Esta librería permitirá hacer combinaciones y permutaciones.

# install.packages("gtools")
library(gtools)

3 Marco conceptual

Para hacer permutaciones es necesario identificar la importancia del valor factorial de un número

3.1 Factorial

El factorial de un número es el producto de \(n\) por todos los naturales menores que el y se representa con el \(!n\), entonces \(n!=n\times(n-1)...\times 1\)

La función factorial es una fórmula matemática representada por el signo de exclamación \(!\). En la fórmula Factorial se deben multiplicar todos los números enteros y positivos que hay entre el número que aparece en la fórmula y el número \(1\).

Ejemplo: hallar el factorial de 6 o se sea \(6!=6\times5\times4\times3\times2\times1=720\)

3.2 Permutaciones

La regla de conteo de permutaciones permite calcular el número de resultados experimentales cuando se seleccionan cierto número objetos de un conjunto de \(n\) objetos y el orden de selección es relevante.

Los mismos \(r\) objetos seleccionados en orden diferente se consideran un resultado experimental diferente.

3.2.1 Fórmula de permutaciones

\[ S=Pn\binom{n}{r} = \frac{n!}{(n-r)!}\\S \text{ es el espacio muestral y la cantidad de permutaciones} \\Pn \text{ es el número de permutaciones posibles}\\ \binom{n}{r} \text {es símbolo de permutar n elementos en grupos de r}\\ n \text{ es el total de elementos}\\ r \text{ es de cuantos en cuantos elementos se hacen grupos y permutaciones} \]

3.3 Ejemplo 1. Nombres de personas

Se trata de hacer permutaciones con los nombres de cuatro personas: “Oscar”, “Paco”, “Paty”, “Laura”, “Rubén”, “Luis”, “Lucy”, “Alberto”, “Juan” en grupos de 2.

Entonces \(n=9\), porque hay cuatro nombres o elementos y \(r=2\) porque se trata de agrupar o permutar de dos en dos.

¿Cuántas permutaciones deberá haber?

  • Oscar y Paco

  • Paco y Oscar

  • Oscar y Paty

  • Paty y Oscar

  • Oscar y Laura

  • Laura y Oscar

  • Paco y Paty

  • Paty y Paco

  • … …

  • … …

  • Paty y Laura

  • Laura y Paty

nombres <- c("Oscar", "Paco", "Paty", "Laura", "Rubén", "Luis", "Lucy", "Alberto", "Juan","Humberto","David","Marco","Antonio","Cesar")
n <- length(nombres)
r <- 2 # ¿cómo agrupar o permutar?
Pn <- factorial(n) / factorial(n-r)
paste("Existen ", Pn , " posibles permutaciones del total de ", n , " nombres ", " en grupos de ", r ," en ", r)
## [1] "Existen  182  posibles permutaciones del total de  14  nombres   en grupos de  2  en  2"

3.4 Ejemplo 2. Nombres de empresas.

Se trata de hacer combinaciones con los nombres de seis equipos de fútbol: “PEMEX”, “Corona”, “Oxxo”, “Bimbo”, “Telcel”, “Banorte”, “Bodega Aurrera”, “CEMEX”, “Lala”,“Cinepolis” en grupos de 5. Entonces \(n=25\), porque hay diez empresas o elementos y \(r=5\) porque se trata de agrupar de cinco en cinco.

¿Cuántas permutaciones deberá haber?

equipos <- c("PEMEX", "Corona", "Oxxo", "Bimbo", "Telcel", "Banorte", "Bodega Aurrera", "CEMEX", "Lala","Cinepolis")
n <- length(equipos)
r <- 5 # ¿cómo agrupar?
Pn <- factorial(n) / factorial(n-r)
paste("Existen ", Pn , " posibles permutaciones del total de ", n , " equipos ", " en grupos de ", r ," en ", r)
## [1] "Existen  30240  posibles permutaciones del total de  10  equipos   en grupos de  5  en  5"

4 Desarrollo

Si bien la fórmula de permutaciones indica el número de permutaciones posibles de un conjunto de elementos pero lo que se desea conocer es ¿cómo se forman o cómo se verían los grupos?.

Se utiliza la función permutation

4.1 Permutaciones

Se utiliza la función permutation() y se requiere por lo menos tres atributos:

  • La cantidad de elementos n

  • Los grupos de cuanto en cuanto se forman r

  • y los elementos, o sea en este caso el vector v

4.1.1 Nombres de personas

Se muestran las posibles permutaciones de los nombres de personas. Las función permutations() ordena los valores alfabéticamente y luego construye las combinaciones.

nombres
##  [1] "Oscar"    "Paco"     "Paty"     "Laura"    "Rubén"    "Luis"    
##  [7] "Lucy"     "Alberto"  "Juan"     "Humberto" "David"    "Marco"   
## [13] "Antonio"  "Cesar"
Pern.nombres <- permutations(n = length(nombres), r = 2, v = nombres)
Pern.nombres
##        [,1]       [,2]      
##   [1,] "Alberto"  "Antonio" 
##   [2,] "Alberto"  "Cesar"   
##   [3,] "Alberto"  "David"   
##   [4,] "Alberto"  "Humberto"
##   [5,] "Alberto"  "Juan"    
##   [6,] "Alberto"  "Laura"   
##   [7,] "Alberto"  "Lucy"    
##   [8,] "Alberto"  "Luis"    
##   [9,] "Alberto"  "Marco"   
##  [10,] "Alberto"  "Oscar"   
##  [11,] "Alberto"  "Paco"    
##  [12,] "Alberto"  "Paty"    
##  [13,] "Alberto"  "Rubén"   
##  [14,] "Antonio"  "Alberto" 
##  [15,] "Antonio"  "Cesar"   
##  [16,] "Antonio"  "David"   
##  [17,] "Antonio"  "Humberto"
##  [18,] "Antonio"  "Juan"    
##  [19,] "Antonio"  "Laura"   
##  [20,] "Antonio"  "Lucy"    
##  [21,] "Antonio"  "Luis"    
##  [22,] "Antonio"  "Marco"   
##  [23,] "Antonio"  "Oscar"   
##  [24,] "Antonio"  "Paco"    
##  [25,] "Antonio"  "Paty"    
##  [26,] "Antonio"  "Rubén"   
##  [27,] "Cesar"    "Alberto" 
##  [28,] "Cesar"    "Antonio" 
##  [29,] "Cesar"    "David"   
##  [30,] "Cesar"    "Humberto"
##  [31,] "Cesar"    "Juan"    
##  [32,] "Cesar"    "Laura"   
##  [33,] "Cesar"    "Lucy"    
##  [34,] "Cesar"    "Luis"    
##  [35,] "Cesar"    "Marco"   
##  [36,] "Cesar"    "Oscar"   
##  [37,] "Cesar"    "Paco"    
##  [38,] "Cesar"    "Paty"    
##  [39,] "Cesar"    "Rubén"   
##  [40,] "David"    "Alberto" 
##  [41,] "David"    "Antonio" 
##  [42,] "David"    "Cesar"   
##  [43,] "David"    "Humberto"
##  [44,] "David"    "Juan"    
##  [45,] "David"    "Laura"   
##  [46,] "David"    "Lucy"    
##  [47,] "David"    "Luis"    
##  [48,] "David"    "Marco"   
##  [49,] "David"    "Oscar"   
##  [50,] "David"    "Paco"    
##  [51,] "David"    "Paty"    
##  [52,] "David"    "Rubén"   
##  [53,] "Humberto" "Alberto" 
##  [54,] "Humberto" "Antonio" 
##  [55,] "Humberto" "Cesar"   
##  [56,] "Humberto" "David"   
##  [57,] "Humberto" "Juan"    
##  [58,] "Humberto" "Laura"   
##  [59,] "Humberto" "Lucy"    
##  [60,] "Humberto" "Luis"    
##  [61,] "Humberto" "Marco"   
##  [62,] "Humberto" "Oscar"   
##  [63,] "Humberto" "Paco"    
##  [64,] "Humberto" "Paty"    
##  [65,] "Humberto" "Rubén"   
##  [66,] "Juan"     "Alberto" 
##  [67,] "Juan"     "Antonio" 
##  [68,] "Juan"     "Cesar"   
##  [69,] "Juan"     "David"   
##  [70,] "Juan"     "Humberto"
##  [71,] "Juan"     "Laura"   
##  [72,] "Juan"     "Lucy"    
##  [73,] "Juan"     "Luis"    
##  [74,] "Juan"     "Marco"   
##  [75,] "Juan"     "Oscar"   
##  [76,] "Juan"     "Paco"    
##  [77,] "Juan"     "Paty"    
##  [78,] "Juan"     "Rubén"   
##  [79,] "Laura"    "Alberto" 
##  [80,] "Laura"    "Antonio" 
##  [81,] "Laura"    "Cesar"   
##  [82,] "Laura"    "David"   
##  [83,] "Laura"    "Humberto"
##  [84,] "Laura"    "Juan"    
##  [85,] "Laura"    "Lucy"    
##  [86,] "Laura"    "Luis"    
##  [87,] "Laura"    "Marco"   
##  [88,] "Laura"    "Oscar"   
##  [89,] "Laura"    "Paco"    
##  [90,] "Laura"    "Paty"    
##  [91,] "Laura"    "Rubén"   
##  [92,] "Lucy"     "Alberto" 
##  [93,] "Lucy"     "Antonio" 
##  [94,] "Lucy"     "Cesar"   
##  [95,] "Lucy"     "David"   
##  [96,] "Lucy"     "Humberto"
##  [97,] "Lucy"     "Juan"    
##  [98,] "Lucy"     "Laura"   
##  [99,] "Lucy"     "Luis"    
## [100,] "Lucy"     "Marco"   
## [101,] "Lucy"     "Oscar"   
## [102,] "Lucy"     "Paco"    
## [103,] "Lucy"     "Paty"    
## [104,] "Lucy"     "Rubén"   
## [105,] "Luis"     "Alberto" 
## [106,] "Luis"     "Antonio" 
## [107,] "Luis"     "Cesar"   
## [108,] "Luis"     "David"   
## [109,] "Luis"     "Humberto"
## [110,] "Luis"     "Juan"    
## [111,] "Luis"     "Laura"   
## [112,] "Luis"     "Lucy"    
## [113,] "Luis"     "Marco"   
## [114,] "Luis"     "Oscar"   
## [115,] "Luis"     "Paco"    
## [116,] "Luis"     "Paty"    
## [117,] "Luis"     "Rubén"   
## [118,] "Marco"    "Alberto" 
## [119,] "Marco"    "Antonio" 
## [120,] "Marco"    "Cesar"   
## [121,] "Marco"    "David"   
## [122,] "Marco"    "Humberto"
## [123,] "Marco"    "Juan"    
## [124,] "Marco"    "Laura"   
## [125,] "Marco"    "Lucy"    
## [126,] "Marco"    "Luis"    
## [127,] "Marco"    "Oscar"   
## [128,] "Marco"    "Paco"    
## [129,] "Marco"    "Paty"    
## [130,] "Marco"    "Rubén"   
## [131,] "Oscar"    "Alberto" 
## [132,] "Oscar"    "Antonio" 
## [133,] "Oscar"    "Cesar"   
## [134,] "Oscar"    "David"   
## [135,] "Oscar"    "Humberto"
## [136,] "Oscar"    "Juan"    
## [137,] "Oscar"    "Laura"   
## [138,] "Oscar"    "Lucy"    
## [139,] "Oscar"    "Luis"    
## [140,] "Oscar"    "Marco"   
## [141,] "Oscar"    "Paco"    
## [142,] "Oscar"    "Paty"    
## [143,] "Oscar"    "Rubén"   
## [144,] "Paco"     "Alberto" 
## [145,] "Paco"     "Antonio" 
## [146,] "Paco"     "Cesar"   
## [147,] "Paco"     "David"   
## [148,] "Paco"     "Humberto"
## [149,] "Paco"     "Juan"    
## [150,] "Paco"     "Laura"   
## [151,] "Paco"     "Lucy"    
## [152,] "Paco"     "Luis"    
## [153,] "Paco"     "Marco"   
## [154,] "Paco"     "Oscar"   
## [155,] "Paco"     "Paty"    
## [156,] "Paco"     "Rubén"   
## [157,] "Paty"     "Alberto" 
## [158,] "Paty"     "Antonio" 
## [159,] "Paty"     "Cesar"   
## [160,] "Paty"     "David"   
## [161,] "Paty"     "Humberto"
## [162,] "Paty"     "Juan"    
## [163,] "Paty"     "Laura"   
## [164,] "Paty"     "Lucy"    
## [165,] "Paty"     "Luis"    
## [166,] "Paty"     "Marco"   
## [167,] "Paty"     "Oscar"   
## [168,] "Paty"     "Paco"    
## [169,] "Paty"     "Rubén"   
## [170,] "Rubén"    "Alberto" 
## [171,] "Rubén"    "Antonio" 
## [172,] "Rubén"    "Cesar"   
## [173,] "Rubén"    "David"   
## [174,] "Rubén"    "Humberto"
## [175,] "Rubén"    "Juan"    
## [176,] "Rubén"    "Laura"   
## [177,] "Rubén"    "Lucy"    
## [178,] "Rubén"    "Luis"    
## [179,] "Rubén"    "Marco"   
## [180,] "Rubén"    "Oscar"   
## [181,] "Rubén"    "Paco"    
## [182,] "Rubén"    "Paty"

4.1.2 Nombres de empresas

Se muestran las posibles combinaciones de los nombres de equipos de fútbol.

equipos
##  [1] "PEMEX"          "Corona"         "Oxxo"           "Bimbo"         
##  [5] "Telcel"         "Banorte"        "Bodega Aurrera" "CEMEX"         
##  [9] "Lala"           "Cinepolis"
Pern.equipos <- permutations(n = length(equipos), r = 5, v = equipos)

Se muestran solo los primeras diez y últimas diez permutaciones de empresas

head(Pern.equipos)
##      [,1]      [,2]    [,3]             [,4]    [,5]       
## [1,] "Banorte" "Bimbo" "Bodega Aurrera" "CEMEX" "Cinepolis"
## [2,] "Banorte" "Bimbo" "Bodega Aurrera" "CEMEX" "Corona"   
## [3,] "Banorte" "Bimbo" "Bodega Aurrera" "CEMEX" "Lala"     
## [4,] "Banorte" "Bimbo" "Bodega Aurrera" "CEMEX" "Oxxo"     
## [5,] "Banorte" "Bimbo" "Bodega Aurrera" "CEMEX" "PEMEX"    
## [6,] "Banorte" "Bimbo" "Bodega Aurrera" "CEMEX" "Telcel"
tail(Pern.equipos)
##          [,1]     [,2]    [,3]   [,4]   [,5]            
## [30235,] "Telcel" "PEMEX" "Oxxo" "Lala" "Banorte"       
## [30236,] "Telcel" "PEMEX" "Oxxo" "Lala" "Bimbo"         
## [30237,] "Telcel" "PEMEX" "Oxxo" "Lala" "Bodega Aurrera"
## [30238,] "Telcel" "PEMEX" "Oxxo" "Lala" "CEMEX"         
## [30239,] "Telcel" "PEMEX" "Oxxo" "Lala" "Cinepolis"     
## [30240,] "Telcel" "PEMEX" "Oxxo" "Lala" "Corona"

¿Para qué sirve encontrar el número de permutaciones y la forma en que se agrupan?

Eso sería el espacio muestral que ya construído éste, permite hacer interpretaciones en términos probabilísticos.

5 Interpretación

El resultado de las permutaciones permite construir un espacio muestral que ofrece la oportunidad de conocer en términos de probabilidad, la cantidad de ocasiones y lo que representa un evento conforme a todo el espacio muestral, es decir frecuencia y frecuencia porcentual.

5.1 Preguntas sobre espacio muestral nombres

¿En cuántas ocasiones aparece el nombre de Laura en permutaciones de dos en dos?.

filtro <- subset(Pern.nombres, Pern.nombres[,1] == "Laura" | Pern.nombres[,2] == "Laura")
filtro
##       [,1]       [,2]      
##  [1,] "Alberto"  "Laura"   
##  [2,] "Antonio"  "Laura"   
##  [3,] "Cesar"    "Laura"   
##  [4,] "David"    "Laura"   
##  [5,] "Humberto" "Laura"   
##  [6,] "Juan"     "Laura"   
##  [7,] "Laura"    "Alberto" 
##  [8,] "Laura"    "Antonio" 
##  [9,] "Laura"    "Cesar"   
## [10,] "Laura"    "David"   
## [11,] "Laura"    "Humberto"
## [12,] "Laura"    "Juan"    
## [13,] "Laura"    "Lucy"    
## [14,] "Laura"    "Luis"    
## [15,] "Laura"    "Marco"   
## [16,] "Laura"    "Oscar"   
## [17,] "Laura"    "Paco"    
## [18,] "Laura"    "Paty"    
## [19,] "Laura"    "Rubén"   
## [20,] "Lucy"     "Laura"   
## [21,] "Luis"     "Laura"   
## [22,] "Marco"    "Laura"   
## [23,] "Oscar"    "Laura"   
## [24,] "Paco"     "Laura"   
## [25,] "Paty"     "Laura"   
## [26,] "Rubén"    "Laura"
frecuencia <- nrow(filtro)
paste("Existen ", frecuencia, " ocasiones en que se encuentran Laura en premtaciones de dos en dos, de un total de ", nrow(Pern.nombres), " representan ", round(frecuencia / nrow(Pern.nombres) * 100, 2), "%")
## [1] "Existen  26  ocasiones en que se encuentran Laura en premtaciones de dos en dos, de un total de  182  representan  14.29 %"

¿En cuántas ocasiones aparece el nombre de Oscar en las combinaciones de dos en dos?

filtro <- subset(Pern.nombres, Pern.nombres[,1] == "Oscar" | Pern.nombres[,2] == "Oscar")
filtro
##       [,1]       [,2]      
##  [1,] "Alberto"  "Oscar"   
##  [2,] "Antonio"  "Oscar"   
##  [3,] "Cesar"    "Oscar"   
##  [4,] "David"    "Oscar"   
##  [5,] "Humberto" "Oscar"   
##  [6,] "Juan"     "Oscar"   
##  [7,] "Laura"    "Oscar"   
##  [8,] "Lucy"     "Oscar"   
##  [9,] "Luis"     "Oscar"   
## [10,] "Marco"    "Oscar"   
## [11,] "Oscar"    "Alberto" 
## [12,] "Oscar"    "Antonio" 
## [13,] "Oscar"    "Cesar"   
## [14,] "Oscar"    "David"   
## [15,] "Oscar"    "Humberto"
## [16,] "Oscar"    "Juan"    
## [17,] "Oscar"    "Laura"   
## [18,] "Oscar"    "Lucy"    
## [19,] "Oscar"    "Luis"    
## [20,] "Oscar"    "Marco"   
## [21,] "Oscar"    "Paco"    
## [22,] "Oscar"    "Paty"    
## [23,] "Oscar"    "Rubén"   
## [24,] "Paco"     "Oscar"   
## [25,] "Paty"     "Oscar"   
## [26,] "Rubén"    "Oscar"
frecuencia <- nrow(filtro)
paste("Existen ", frecuencia, " ocasiones en que se encuentran Laura en premtaciones de dos en dos, de un total de ", nrow(Pern.nombres), " representan ", round(frecuencia / nrow(Pern.nombres) * 100, 2), "%")
## [1] "Existen  26  ocasiones en que se encuentran Laura en premtaciones de dos en dos, de un total de  182  representan  14.29 %"

En las permutaciones de nombres de dos en dos, ¿en cuántas ocasiones existe Laura y Oscar juntos o contiguos y en ese orden?. Se utiliza la función subset() para hacer filtros y responder a las preguntas.

La nominación [ , ] significa acceder al valor de un data frame por la primer colmna y [ ,2] la segunda columna.

filtro <- subset(Pern.nombres, Pern.nombres[,1] == "Laura" & Pern.nombres[,2] == "Oscar")
filtro
##      [,1]    [,2]   
## [1,] "Laura" "Oscar"
frecuencia <- nrow(filtro)
paste("Existen ", frecuencia, " ocasiones en que se encuentran Laura y Oscar juntos en ese orden, de un total de ", nrow(Pern.nombres), " representan ", round(frecuencia / nrow(Pern.nombres) * 100, 2), "%")
## [1] "Existen  1  ocasiones en que se encuentran Laura y Oscar juntos en ese orden, de un total de  182  representan  0.55 %"

En las permutaciones de nombres de dos en dos, ¿en cuántas ocasiones existe Oscar en la primer columna de todo el espacio muestral?

filtro <- subset(Pern.nombres, Pern.nombres[,1] == "Oscar")
filtro
##       [,1]    [,2]      
##  [1,] "Oscar" "Alberto" 
##  [2,] "Oscar" "Antonio" 
##  [3,] "Oscar" "Cesar"   
##  [4,] "Oscar" "David"   
##  [5,] "Oscar" "Humberto"
##  [6,] "Oscar" "Juan"    
##  [7,] "Oscar" "Laura"   
##  [8,] "Oscar" "Lucy"    
##  [9,] "Oscar" "Luis"    
## [10,] "Oscar" "Marco"   
## [11,] "Oscar" "Paco"    
## [12,] "Oscar" "Paty"    
## [13,] "Oscar" "Rubén"
frecuencia <- nrow(filtro)
paste("Existen ", frecuencia, " ocasiones en que se encuentran Oscar en la primer columna  , de un total de ", nrow(Pern.nombres), " representan ", round(frecuencia / nrow(Pern.nombres) * 100, 2), "%")
## [1] "Existen  13  ocasiones en que se encuentran Oscar en la primer columna  , de un total de  182  representan  7.14 %"

En cuántas ocasiones aparece en primera columna Oscar y Paco o Paty en segunda columna

filtro <- subset(Pern.nombres, Pern.nombres[,1] == "Oscar" & (Pern.nombres[,2] == "Paco" | Pern.nombres[,2] == "Paty"))
filtro
##      [,1]    [,2]  
## [1,] "Oscar" "Paco"
## [2,] "Oscar" "Paty"
frecuencia <- nrow(filtro)
paste("Existen ", frecuencia, " ocasiones en que se encuentran aparece en primera columna Oscar y Paco o Paty en segunda columna, de un total de ", nrow(Pern.nombres), " representan ", round(frecuencia / nrow(Pern.nombres) * 100, 2), "%")
## [1] "Existen  2  ocasiones en que se encuentran aparece en primera columna Oscar y Paco o Paty en segunda columna, de un total de  182  representan  1.1 %"

5.2 Preguntas sobre espacio muestral empresas

¿En cuántas ocasiones aparece de manera contigua y en este orden las empresas Bimbo y Cinepolis en primera y segunda columna respectivamente?

filtro <- subset(Pern.equipos, Pern.equipos[,1] == "Bimbo" & Pern.equipos[,2]=="Cinepolis")
filtro
##        [,1]    [,2]        [,3]             [,4]             [,5]            
##   [1,] "Bimbo" "Cinepolis" "Banorte"        "Bodega Aurrera" "CEMEX"         
##   [2,] "Bimbo" "Cinepolis" "Banorte"        "Bodega Aurrera" "Corona"        
##   [3,] "Bimbo" "Cinepolis" "Banorte"        "Bodega Aurrera" "Lala"          
##   [4,] "Bimbo" "Cinepolis" "Banorte"        "Bodega Aurrera" "Oxxo"          
##   [5,] "Bimbo" "Cinepolis" "Banorte"        "Bodega Aurrera" "PEMEX"         
##   [6,] "Bimbo" "Cinepolis" "Banorte"        "Bodega Aurrera" "Telcel"        
##   [7,] "Bimbo" "Cinepolis" "Banorte"        "CEMEX"          "Bodega Aurrera"
##   [8,] "Bimbo" "Cinepolis" "Banorte"        "CEMEX"          "Corona"        
##   [9,] "Bimbo" "Cinepolis" "Banorte"        "CEMEX"          "Lala"          
##  [10,] "Bimbo" "Cinepolis" "Banorte"        "CEMEX"          "Oxxo"          
##  [11,] "Bimbo" "Cinepolis" "Banorte"        "CEMEX"          "PEMEX"         
##  [12,] "Bimbo" "Cinepolis" "Banorte"        "CEMEX"          "Telcel"        
##  [13,] "Bimbo" "Cinepolis" "Banorte"        "Corona"         "Bodega Aurrera"
##  [14,] "Bimbo" "Cinepolis" "Banorte"        "Corona"         "CEMEX"         
##  [15,] "Bimbo" "Cinepolis" "Banorte"        "Corona"         "Lala"          
##  [16,] "Bimbo" "Cinepolis" "Banorte"        "Corona"         "Oxxo"          
##  [17,] "Bimbo" "Cinepolis" "Banorte"        "Corona"         "PEMEX"         
##  [18,] "Bimbo" "Cinepolis" "Banorte"        "Corona"         "Telcel"        
##  [19,] "Bimbo" "Cinepolis" "Banorte"        "Lala"           "Bodega Aurrera"
##  [20,] "Bimbo" "Cinepolis" "Banorte"        "Lala"           "CEMEX"         
##  [21,] "Bimbo" "Cinepolis" "Banorte"        "Lala"           "Corona"        
##  [22,] "Bimbo" "Cinepolis" "Banorte"        "Lala"           "Oxxo"          
##  [23,] "Bimbo" "Cinepolis" "Banorte"        "Lala"           "PEMEX"         
##  [24,] "Bimbo" "Cinepolis" "Banorte"        "Lala"           "Telcel"        
##  [25,] "Bimbo" "Cinepolis" "Banorte"        "Oxxo"           "Bodega Aurrera"
##  [26,] "Bimbo" "Cinepolis" "Banorte"        "Oxxo"           "CEMEX"         
##  [27,] "Bimbo" "Cinepolis" "Banorte"        "Oxxo"           "Corona"        
##  [28,] "Bimbo" "Cinepolis" "Banorte"        "Oxxo"           "Lala"          
##  [29,] "Bimbo" "Cinepolis" "Banorte"        "Oxxo"           "PEMEX"         
##  [30,] "Bimbo" "Cinepolis" "Banorte"        "Oxxo"           "Telcel"        
##  [31,] "Bimbo" "Cinepolis" "Banorte"        "PEMEX"          "Bodega Aurrera"
##  [32,] "Bimbo" "Cinepolis" "Banorte"        "PEMEX"          "CEMEX"         
##  [33,] "Bimbo" "Cinepolis" "Banorte"        "PEMEX"          "Corona"        
##  [34,] "Bimbo" "Cinepolis" "Banorte"        "PEMEX"          "Lala"          
##  [35,] "Bimbo" "Cinepolis" "Banorte"        "PEMEX"          "Oxxo"          
##  [36,] "Bimbo" "Cinepolis" "Banorte"        "PEMEX"          "Telcel"        
##  [37,] "Bimbo" "Cinepolis" "Banorte"        "Telcel"         "Bodega Aurrera"
##  [38,] "Bimbo" "Cinepolis" "Banorte"        "Telcel"         "CEMEX"         
##  [39,] "Bimbo" "Cinepolis" "Banorte"        "Telcel"         "Corona"        
##  [40,] "Bimbo" "Cinepolis" "Banorte"        "Telcel"         "Lala"          
##  [41,] "Bimbo" "Cinepolis" "Banorte"        "Telcel"         "Oxxo"          
##  [42,] "Bimbo" "Cinepolis" "Banorte"        "Telcel"         "PEMEX"         
##  [43,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Banorte"        "CEMEX"         
##  [44,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Banorte"        "Corona"        
##  [45,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Banorte"        "Lala"          
##  [46,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Banorte"        "Oxxo"          
##  [47,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Banorte"        "PEMEX"         
##  [48,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Banorte"        "Telcel"        
##  [49,] "Bimbo" "Cinepolis" "Bodega Aurrera" "CEMEX"          "Banorte"       
##  [50,] "Bimbo" "Cinepolis" "Bodega Aurrera" "CEMEX"          "Corona"        
##  [51,] "Bimbo" "Cinepolis" "Bodega Aurrera" "CEMEX"          "Lala"          
##  [52,] "Bimbo" "Cinepolis" "Bodega Aurrera" "CEMEX"          "Oxxo"          
##  [53,] "Bimbo" "Cinepolis" "Bodega Aurrera" "CEMEX"          "PEMEX"         
##  [54,] "Bimbo" "Cinepolis" "Bodega Aurrera" "CEMEX"          "Telcel"        
##  [55,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Corona"         "Banorte"       
##  [56,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Corona"         "CEMEX"         
##  [57,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Corona"         "Lala"          
##  [58,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Corona"         "Oxxo"          
##  [59,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Corona"         "PEMEX"         
##  [60,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Corona"         "Telcel"        
##  [61,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Lala"           "Banorte"       
##  [62,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Lala"           "CEMEX"         
##  [63,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Lala"           "Corona"        
##  [64,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Lala"           "Oxxo"          
##  [65,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Lala"           "PEMEX"         
##  [66,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Lala"           "Telcel"        
##  [67,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Oxxo"           "Banorte"       
##  [68,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Oxxo"           "CEMEX"         
##  [69,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Oxxo"           "Corona"        
##  [70,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Oxxo"           "Lala"          
##  [71,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Oxxo"           "PEMEX"         
##  [72,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [73,] "Bimbo" "Cinepolis" "Bodega Aurrera" "PEMEX"          "Banorte"       
##  [74,] "Bimbo" "Cinepolis" "Bodega Aurrera" "PEMEX"          "CEMEX"         
##  [75,] "Bimbo" "Cinepolis" "Bodega Aurrera" "PEMEX"          "Corona"        
##  [76,] "Bimbo" "Cinepolis" "Bodega Aurrera" "PEMEX"          "Lala"          
##  [77,] "Bimbo" "Cinepolis" "Bodega Aurrera" "PEMEX"          "Oxxo"          
##  [78,] "Bimbo" "Cinepolis" "Bodega Aurrera" "PEMEX"          "Telcel"        
##  [79,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Telcel"         "Banorte"       
##  [80,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Telcel"         "CEMEX"         
##  [81,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Telcel"         "Corona"        
##  [82,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Telcel"         "Lala"          
##  [83,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Telcel"         "Oxxo"          
##  [84,] "Bimbo" "Cinepolis" "Bodega Aurrera" "Telcel"         "PEMEX"         
##  [85,] "Bimbo" "Cinepolis" "CEMEX"          "Banorte"        "Bodega Aurrera"
##  [86,] "Bimbo" "Cinepolis" "CEMEX"          "Banorte"        "Corona"        
##  [87,] "Bimbo" "Cinepolis" "CEMEX"          "Banorte"        "Lala"          
##  [88,] "Bimbo" "Cinepolis" "CEMEX"          "Banorte"        "Oxxo"          
##  [89,] "Bimbo" "Cinepolis" "CEMEX"          "Banorte"        "PEMEX"         
##  [90,] "Bimbo" "Cinepolis" "CEMEX"          "Banorte"        "Telcel"        
##  [91,] "Bimbo" "Cinepolis" "CEMEX"          "Bodega Aurrera" "Banorte"       
##  [92,] "Bimbo" "Cinepolis" "CEMEX"          "Bodega Aurrera" "Corona"        
##  [93,] "Bimbo" "Cinepolis" "CEMEX"          "Bodega Aurrera" "Lala"          
##  [94,] "Bimbo" "Cinepolis" "CEMEX"          "Bodega Aurrera" "Oxxo"          
##  [95,] "Bimbo" "Cinepolis" "CEMEX"          "Bodega Aurrera" "PEMEX"         
##  [96,] "Bimbo" "Cinepolis" "CEMEX"          "Bodega Aurrera" "Telcel"        
##  [97,] "Bimbo" "Cinepolis" "CEMEX"          "Corona"         "Banorte"       
##  [98,] "Bimbo" "Cinepolis" "CEMEX"          "Corona"         "Bodega Aurrera"
##  [99,] "Bimbo" "Cinepolis" "CEMEX"          "Corona"         "Lala"          
## [100,] "Bimbo" "Cinepolis" "CEMEX"          "Corona"         "Oxxo"          
## [101,] "Bimbo" "Cinepolis" "CEMEX"          "Corona"         "PEMEX"         
## [102,] "Bimbo" "Cinepolis" "CEMEX"          "Corona"         "Telcel"        
## [103,] "Bimbo" "Cinepolis" "CEMEX"          "Lala"           "Banorte"       
## [104,] "Bimbo" "Cinepolis" "CEMEX"          "Lala"           "Bodega Aurrera"
## [105,] "Bimbo" "Cinepolis" "CEMEX"          "Lala"           "Corona"        
## [106,] "Bimbo" "Cinepolis" "CEMEX"          "Lala"           "Oxxo"          
## [107,] "Bimbo" "Cinepolis" "CEMEX"          "Lala"           "PEMEX"         
## [108,] "Bimbo" "Cinepolis" "CEMEX"          "Lala"           "Telcel"        
## [109,] "Bimbo" "Cinepolis" "CEMEX"          "Oxxo"           "Banorte"       
## [110,] "Bimbo" "Cinepolis" "CEMEX"          "Oxxo"           "Bodega Aurrera"
## [111,] "Bimbo" "Cinepolis" "CEMEX"          "Oxxo"           "Corona"        
## [112,] "Bimbo" "Cinepolis" "CEMEX"          "Oxxo"           "Lala"          
## [113,] "Bimbo" "Cinepolis" "CEMEX"          "Oxxo"           "PEMEX"         
## [114,] "Bimbo" "Cinepolis" "CEMEX"          "Oxxo"           "Telcel"        
## [115,] "Bimbo" "Cinepolis" "CEMEX"          "PEMEX"          "Banorte"       
## [116,] "Bimbo" "Cinepolis" "CEMEX"          "PEMEX"          "Bodega Aurrera"
## [117,] "Bimbo" "Cinepolis" "CEMEX"          "PEMEX"          "Corona"        
## [118,] "Bimbo" "Cinepolis" "CEMEX"          "PEMEX"          "Lala"          
## [119,] "Bimbo" "Cinepolis" "CEMEX"          "PEMEX"          "Oxxo"          
## [120,] "Bimbo" "Cinepolis" "CEMEX"          "PEMEX"          "Telcel"        
## [121,] "Bimbo" "Cinepolis" "CEMEX"          "Telcel"         "Banorte"       
## [122,] "Bimbo" "Cinepolis" "CEMEX"          "Telcel"         "Bodega Aurrera"
## [123,] "Bimbo" "Cinepolis" "CEMEX"          "Telcel"         "Corona"        
## [124,] "Bimbo" "Cinepolis" "CEMEX"          "Telcel"         "Lala"          
## [125,] "Bimbo" "Cinepolis" "CEMEX"          "Telcel"         "Oxxo"          
## [126,] "Bimbo" "Cinepolis" "CEMEX"          "Telcel"         "PEMEX"         
## [127,] "Bimbo" "Cinepolis" "Corona"         "Banorte"        "Bodega Aurrera"
## [128,] "Bimbo" "Cinepolis" "Corona"         "Banorte"        "CEMEX"         
## [129,] "Bimbo" "Cinepolis" "Corona"         "Banorte"        "Lala"          
## [130,] "Bimbo" "Cinepolis" "Corona"         "Banorte"        "Oxxo"          
## [131,] "Bimbo" "Cinepolis" "Corona"         "Banorte"        "PEMEX"         
## [132,] "Bimbo" "Cinepolis" "Corona"         "Banorte"        "Telcel"        
## [133,] "Bimbo" "Cinepolis" "Corona"         "Bodega Aurrera" "Banorte"       
## [134,] "Bimbo" "Cinepolis" "Corona"         "Bodega Aurrera" "CEMEX"         
## [135,] "Bimbo" "Cinepolis" "Corona"         "Bodega Aurrera" "Lala"          
## [136,] "Bimbo" "Cinepolis" "Corona"         "Bodega Aurrera" "Oxxo"          
## [137,] "Bimbo" "Cinepolis" "Corona"         "Bodega Aurrera" "PEMEX"         
## [138,] "Bimbo" "Cinepolis" "Corona"         "Bodega Aurrera" "Telcel"        
## [139,] "Bimbo" "Cinepolis" "Corona"         "CEMEX"          "Banorte"       
## [140,] "Bimbo" "Cinepolis" "Corona"         "CEMEX"          "Bodega Aurrera"
## [141,] "Bimbo" "Cinepolis" "Corona"         "CEMEX"          "Lala"          
## [142,] "Bimbo" "Cinepolis" "Corona"         "CEMEX"          "Oxxo"          
## [143,] "Bimbo" "Cinepolis" "Corona"         "CEMEX"          "PEMEX"         
## [144,] "Bimbo" "Cinepolis" "Corona"         "CEMEX"          "Telcel"        
## [145,] "Bimbo" "Cinepolis" "Corona"         "Lala"           "Banorte"       
## [146,] "Bimbo" "Cinepolis" "Corona"         "Lala"           "Bodega Aurrera"
## [147,] "Bimbo" "Cinepolis" "Corona"         "Lala"           "CEMEX"         
## [148,] "Bimbo" "Cinepolis" "Corona"         "Lala"           "Oxxo"          
## [149,] "Bimbo" "Cinepolis" "Corona"         "Lala"           "PEMEX"         
## [150,] "Bimbo" "Cinepolis" "Corona"         "Lala"           "Telcel"        
## [151,] "Bimbo" "Cinepolis" "Corona"         "Oxxo"           "Banorte"       
## [152,] "Bimbo" "Cinepolis" "Corona"         "Oxxo"           "Bodega Aurrera"
## [153,] "Bimbo" "Cinepolis" "Corona"         "Oxxo"           "CEMEX"         
## [154,] "Bimbo" "Cinepolis" "Corona"         "Oxxo"           "Lala"          
## [155,] "Bimbo" "Cinepolis" "Corona"         "Oxxo"           "PEMEX"         
## [156,] "Bimbo" "Cinepolis" "Corona"         "Oxxo"           "Telcel"        
## [157,] "Bimbo" "Cinepolis" "Corona"         "PEMEX"          "Banorte"       
## [158,] "Bimbo" "Cinepolis" "Corona"         "PEMEX"          "Bodega Aurrera"
## [159,] "Bimbo" "Cinepolis" "Corona"         "PEMEX"          "CEMEX"         
## [160,] "Bimbo" "Cinepolis" "Corona"         "PEMEX"          "Lala"          
## [161,] "Bimbo" "Cinepolis" "Corona"         "PEMEX"          "Oxxo"          
## [162,] "Bimbo" "Cinepolis" "Corona"         "PEMEX"          "Telcel"        
## [163,] "Bimbo" "Cinepolis" "Corona"         "Telcel"         "Banorte"       
## [164,] "Bimbo" "Cinepolis" "Corona"         "Telcel"         "Bodega Aurrera"
## [165,] "Bimbo" "Cinepolis" "Corona"         "Telcel"         "CEMEX"         
## [166,] "Bimbo" "Cinepolis" "Corona"         "Telcel"         "Lala"          
## [167,] "Bimbo" "Cinepolis" "Corona"         "Telcel"         "Oxxo"          
## [168,] "Bimbo" "Cinepolis" "Corona"         "Telcel"         "PEMEX"         
## [169,] "Bimbo" "Cinepolis" "Lala"           "Banorte"        "Bodega Aurrera"
## [170,] "Bimbo" "Cinepolis" "Lala"           "Banorte"        "CEMEX"         
## [171,] "Bimbo" "Cinepolis" "Lala"           "Banorte"        "Corona"        
## [172,] "Bimbo" "Cinepolis" "Lala"           "Banorte"        "Oxxo"          
## [173,] "Bimbo" "Cinepolis" "Lala"           "Banorte"        "PEMEX"         
## [174,] "Bimbo" "Cinepolis" "Lala"           "Banorte"        "Telcel"        
## [175,] "Bimbo" "Cinepolis" "Lala"           "Bodega Aurrera" "Banorte"       
## [176,] "Bimbo" "Cinepolis" "Lala"           "Bodega Aurrera" "CEMEX"         
## [177,] "Bimbo" "Cinepolis" "Lala"           "Bodega Aurrera" "Corona"        
## [178,] "Bimbo" "Cinepolis" "Lala"           "Bodega Aurrera" "Oxxo"          
## [179,] "Bimbo" "Cinepolis" "Lala"           "Bodega Aurrera" "PEMEX"         
## [180,] "Bimbo" "Cinepolis" "Lala"           "Bodega Aurrera" "Telcel"        
## [181,] "Bimbo" "Cinepolis" "Lala"           "CEMEX"          "Banorte"       
## [182,] "Bimbo" "Cinepolis" "Lala"           "CEMEX"          "Bodega Aurrera"
## [183,] "Bimbo" "Cinepolis" "Lala"           "CEMEX"          "Corona"        
## [184,] "Bimbo" "Cinepolis" "Lala"           "CEMEX"          "Oxxo"          
## [185,] "Bimbo" "Cinepolis" "Lala"           "CEMEX"          "PEMEX"         
## [186,] "Bimbo" "Cinepolis" "Lala"           "CEMEX"          "Telcel"        
## [187,] "Bimbo" "Cinepolis" "Lala"           "Corona"         "Banorte"       
## [188,] "Bimbo" "Cinepolis" "Lala"           "Corona"         "Bodega Aurrera"
## [189,] "Bimbo" "Cinepolis" "Lala"           "Corona"         "CEMEX"         
## [190,] "Bimbo" "Cinepolis" "Lala"           "Corona"         "Oxxo"          
## [191,] "Bimbo" "Cinepolis" "Lala"           "Corona"         "PEMEX"         
## [192,] "Bimbo" "Cinepolis" "Lala"           "Corona"         "Telcel"        
## [193,] "Bimbo" "Cinepolis" "Lala"           "Oxxo"           "Banorte"       
## [194,] "Bimbo" "Cinepolis" "Lala"           "Oxxo"           "Bodega Aurrera"
## [195,] "Bimbo" "Cinepolis" "Lala"           "Oxxo"           "CEMEX"         
## [196,] "Bimbo" "Cinepolis" "Lala"           "Oxxo"           "Corona"        
## [197,] "Bimbo" "Cinepolis" "Lala"           "Oxxo"           "PEMEX"         
## [198,] "Bimbo" "Cinepolis" "Lala"           "Oxxo"           "Telcel"        
## [199,] "Bimbo" "Cinepolis" "Lala"           "PEMEX"          "Banorte"       
## [200,] "Bimbo" "Cinepolis" "Lala"           "PEMEX"          "Bodega Aurrera"
## [201,] "Bimbo" "Cinepolis" "Lala"           "PEMEX"          "CEMEX"         
## [202,] "Bimbo" "Cinepolis" "Lala"           "PEMEX"          "Corona"        
## [203,] "Bimbo" "Cinepolis" "Lala"           "PEMEX"          "Oxxo"          
## [204,] "Bimbo" "Cinepolis" "Lala"           "PEMEX"          "Telcel"        
## [205,] "Bimbo" "Cinepolis" "Lala"           "Telcel"         "Banorte"       
## [206,] "Bimbo" "Cinepolis" "Lala"           "Telcel"         "Bodega Aurrera"
## [207,] "Bimbo" "Cinepolis" "Lala"           "Telcel"         "CEMEX"         
## [208,] "Bimbo" "Cinepolis" "Lala"           "Telcel"         "Corona"        
## [209,] "Bimbo" "Cinepolis" "Lala"           "Telcel"         "Oxxo"          
## [210,] "Bimbo" "Cinepolis" "Lala"           "Telcel"         "PEMEX"         
## [211,] "Bimbo" "Cinepolis" "Oxxo"           "Banorte"        "Bodega Aurrera"
## [212,] "Bimbo" "Cinepolis" "Oxxo"           "Banorte"        "CEMEX"         
## [213,] "Bimbo" "Cinepolis" "Oxxo"           "Banorte"        "Corona"        
## [214,] "Bimbo" "Cinepolis" "Oxxo"           "Banorte"        "Lala"          
## [215,] "Bimbo" "Cinepolis" "Oxxo"           "Banorte"        "PEMEX"         
## [216,] "Bimbo" "Cinepolis" "Oxxo"           "Banorte"        "Telcel"        
## [217,] "Bimbo" "Cinepolis" "Oxxo"           "Bodega Aurrera" "Banorte"       
## [218,] "Bimbo" "Cinepolis" "Oxxo"           "Bodega Aurrera" "CEMEX"         
## [219,] "Bimbo" "Cinepolis" "Oxxo"           "Bodega Aurrera" "Corona"        
## [220,] "Bimbo" "Cinepolis" "Oxxo"           "Bodega Aurrera" "Lala"          
## [221,] "Bimbo" "Cinepolis" "Oxxo"           "Bodega Aurrera" "PEMEX"         
## [222,] "Bimbo" "Cinepolis" "Oxxo"           "Bodega Aurrera" "Telcel"        
## [223,] "Bimbo" "Cinepolis" "Oxxo"           "CEMEX"          "Banorte"       
## [224,] "Bimbo" "Cinepolis" "Oxxo"           "CEMEX"          "Bodega Aurrera"
## [225,] "Bimbo" "Cinepolis" "Oxxo"           "CEMEX"          "Corona"        
## [226,] "Bimbo" "Cinepolis" "Oxxo"           "CEMEX"          "Lala"          
## [227,] "Bimbo" "Cinepolis" "Oxxo"           "CEMEX"          "PEMEX"         
## [228,] "Bimbo" "Cinepolis" "Oxxo"           "CEMEX"          "Telcel"        
## [229,] "Bimbo" "Cinepolis" "Oxxo"           "Corona"         "Banorte"       
## [230,] "Bimbo" "Cinepolis" "Oxxo"           "Corona"         "Bodega Aurrera"
## [231,] "Bimbo" "Cinepolis" "Oxxo"           "Corona"         "CEMEX"         
## [232,] "Bimbo" "Cinepolis" "Oxxo"           "Corona"         "Lala"          
## [233,] "Bimbo" "Cinepolis" "Oxxo"           "Corona"         "PEMEX"         
## [234,] "Bimbo" "Cinepolis" "Oxxo"           "Corona"         "Telcel"        
## [235,] "Bimbo" "Cinepolis" "Oxxo"           "Lala"           "Banorte"       
## [236,] "Bimbo" "Cinepolis" "Oxxo"           "Lala"           "Bodega Aurrera"
## [237,] "Bimbo" "Cinepolis" "Oxxo"           "Lala"           "CEMEX"         
## [238,] "Bimbo" "Cinepolis" "Oxxo"           "Lala"           "Corona"        
## [239,] "Bimbo" "Cinepolis" "Oxxo"           "Lala"           "PEMEX"         
## [240,] "Bimbo" "Cinepolis" "Oxxo"           "Lala"           "Telcel"        
## [241,] "Bimbo" "Cinepolis" "Oxxo"           "PEMEX"          "Banorte"       
## [242,] "Bimbo" "Cinepolis" "Oxxo"           "PEMEX"          "Bodega Aurrera"
## [243,] "Bimbo" "Cinepolis" "Oxxo"           "PEMEX"          "CEMEX"         
## [244,] "Bimbo" "Cinepolis" "Oxxo"           "PEMEX"          "Corona"        
## [245,] "Bimbo" "Cinepolis" "Oxxo"           "PEMEX"          "Lala"          
## [246,] "Bimbo" "Cinepolis" "Oxxo"           "PEMEX"          "Telcel"        
## [247,] "Bimbo" "Cinepolis" "Oxxo"           "Telcel"         "Banorte"       
## [248,] "Bimbo" "Cinepolis" "Oxxo"           "Telcel"         "Bodega Aurrera"
## [249,] "Bimbo" "Cinepolis" "Oxxo"           "Telcel"         "CEMEX"         
## [250,] "Bimbo" "Cinepolis" "Oxxo"           "Telcel"         "Corona"        
## [251,] "Bimbo" "Cinepolis" "Oxxo"           "Telcel"         "Lala"          
## [252,] "Bimbo" "Cinepolis" "Oxxo"           "Telcel"         "PEMEX"         
## [253,] "Bimbo" "Cinepolis" "PEMEX"          "Banorte"        "Bodega Aurrera"
## [254,] "Bimbo" "Cinepolis" "PEMEX"          "Banorte"        "CEMEX"         
## [255,] "Bimbo" "Cinepolis" "PEMEX"          "Banorte"        "Corona"        
## [256,] "Bimbo" "Cinepolis" "PEMEX"          "Banorte"        "Lala"          
## [257,] "Bimbo" "Cinepolis" "PEMEX"          "Banorte"        "Oxxo"          
## [258,] "Bimbo" "Cinepolis" "PEMEX"          "Banorte"        "Telcel"        
## [259,] "Bimbo" "Cinepolis" "PEMEX"          "Bodega Aurrera" "Banorte"       
## [260,] "Bimbo" "Cinepolis" "PEMEX"          "Bodega Aurrera" "CEMEX"         
## [261,] "Bimbo" "Cinepolis" "PEMEX"          "Bodega Aurrera" "Corona"        
## [262,] "Bimbo" "Cinepolis" "PEMEX"          "Bodega Aurrera" "Lala"          
## [263,] "Bimbo" "Cinepolis" "PEMEX"          "Bodega Aurrera" "Oxxo"          
## [264,] "Bimbo" "Cinepolis" "PEMEX"          "Bodega Aurrera" "Telcel"        
## [265,] "Bimbo" "Cinepolis" "PEMEX"          "CEMEX"          "Banorte"       
## [266,] "Bimbo" "Cinepolis" "PEMEX"          "CEMEX"          "Bodega Aurrera"
## [267,] "Bimbo" "Cinepolis" "PEMEX"          "CEMEX"          "Corona"        
## [268,] "Bimbo" "Cinepolis" "PEMEX"          "CEMEX"          "Lala"          
## [269,] "Bimbo" "Cinepolis" "PEMEX"          "CEMEX"          "Oxxo"          
## [270,] "Bimbo" "Cinepolis" "PEMEX"          "CEMEX"          "Telcel"        
## [271,] "Bimbo" "Cinepolis" "PEMEX"          "Corona"         "Banorte"       
## [272,] "Bimbo" "Cinepolis" "PEMEX"          "Corona"         "Bodega Aurrera"
## [273,] "Bimbo" "Cinepolis" "PEMEX"          "Corona"         "CEMEX"         
## [274,] "Bimbo" "Cinepolis" "PEMEX"          "Corona"         "Lala"          
## [275,] "Bimbo" "Cinepolis" "PEMEX"          "Corona"         "Oxxo"          
## [276,] "Bimbo" "Cinepolis" "PEMEX"          "Corona"         "Telcel"        
## [277,] "Bimbo" "Cinepolis" "PEMEX"          "Lala"           "Banorte"       
## [278,] "Bimbo" "Cinepolis" "PEMEX"          "Lala"           "Bodega Aurrera"
## [279,] "Bimbo" "Cinepolis" "PEMEX"          "Lala"           "CEMEX"         
## [280,] "Bimbo" "Cinepolis" "PEMEX"          "Lala"           "Corona"        
## [281,] "Bimbo" "Cinepolis" "PEMEX"          "Lala"           "Oxxo"          
## [282,] "Bimbo" "Cinepolis" "PEMEX"          "Lala"           "Telcel"        
## [283,] "Bimbo" "Cinepolis" "PEMEX"          "Oxxo"           "Banorte"       
## [284,] "Bimbo" "Cinepolis" "PEMEX"          "Oxxo"           "Bodega Aurrera"
## [285,] "Bimbo" "Cinepolis" "PEMEX"          "Oxxo"           "CEMEX"         
## [286,] "Bimbo" "Cinepolis" "PEMEX"          "Oxxo"           "Corona"        
## [287,] "Bimbo" "Cinepolis" "PEMEX"          "Oxxo"           "Lala"          
## [288,] "Bimbo" "Cinepolis" "PEMEX"          "Oxxo"           "Telcel"        
## [289,] "Bimbo" "Cinepolis" "PEMEX"          "Telcel"         "Banorte"       
## [290,] "Bimbo" "Cinepolis" "PEMEX"          "Telcel"         "Bodega Aurrera"
## [291,] "Bimbo" "Cinepolis" "PEMEX"          "Telcel"         "CEMEX"         
## [292,] "Bimbo" "Cinepolis" "PEMEX"          "Telcel"         "Corona"        
## [293,] "Bimbo" "Cinepolis" "PEMEX"          "Telcel"         "Lala"          
## [294,] "Bimbo" "Cinepolis" "PEMEX"          "Telcel"         "Oxxo"          
## [295,] "Bimbo" "Cinepolis" "Telcel"         "Banorte"        "Bodega Aurrera"
## [296,] "Bimbo" "Cinepolis" "Telcel"         "Banorte"        "CEMEX"         
## [297,] "Bimbo" "Cinepolis" "Telcel"         "Banorte"        "Corona"        
## [298,] "Bimbo" "Cinepolis" "Telcel"         "Banorte"        "Lala"          
## [299,] "Bimbo" "Cinepolis" "Telcel"         "Banorte"        "Oxxo"          
## [300,] "Bimbo" "Cinepolis" "Telcel"         "Banorte"        "PEMEX"         
## [301,] "Bimbo" "Cinepolis" "Telcel"         "Bodega Aurrera" "Banorte"       
## [302,] "Bimbo" "Cinepolis" "Telcel"         "Bodega Aurrera" "CEMEX"         
## [303,] "Bimbo" "Cinepolis" "Telcel"         "Bodega Aurrera" "Corona"        
## [304,] "Bimbo" "Cinepolis" "Telcel"         "Bodega Aurrera" "Lala"          
## [305,] "Bimbo" "Cinepolis" "Telcel"         "Bodega Aurrera" "Oxxo"          
## [306,] "Bimbo" "Cinepolis" "Telcel"         "Bodega Aurrera" "PEMEX"         
## [307,] "Bimbo" "Cinepolis" "Telcel"         "CEMEX"          "Banorte"       
## [308,] "Bimbo" "Cinepolis" "Telcel"         "CEMEX"          "Bodega Aurrera"
## [309,] "Bimbo" "Cinepolis" "Telcel"         "CEMEX"          "Corona"        
## [310,] "Bimbo" "Cinepolis" "Telcel"         "CEMEX"          "Lala"          
## [311,] "Bimbo" "Cinepolis" "Telcel"         "CEMEX"          "Oxxo"          
## [312,] "Bimbo" "Cinepolis" "Telcel"         "CEMEX"          "PEMEX"         
## [313,] "Bimbo" "Cinepolis" "Telcel"         "Corona"         "Banorte"       
## [314,] "Bimbo" "Cinepolis" "Telcel"         "Corona"         "Bodega Aurrera"
## [315,] "Bimbo" "Cinepolis" "Telcel"         "Corona"         "CEMEX"         
## [316,] "Bimbo" "Cinepolis" "Telcel"         "Corona"         "Lala"          
## [317,] "Bimbo" "Cinepolis" "Telcel"         "Corona"         "Oxxo"          
## [318,] "Bimbo" "Cinepolis" "Telcel"         "Corona"         "PEMEX"         
## [319,] "Bimbo" "Cinepolis" "Telcel"         "Lala"           "Banorte"       
## [320,] "Bimbo" "Cinepolis" "Telcel"         "Lala"           "Bodega Aurrera"
## [321,] "Bimbo" "Cinepolis" "Telcel"         "Lala"           "CEMEX"         
## [322,] "Bimbo" "Cinepolis" "Telcel"         "Lala"           "Corona"        
## [323,] "Bimbo" "Cinepolis" "Telcel"         "Lala"           "Oxxo"          
## [324,] "Bimbo" "Cinepolis" "Telcel"         "Lala"           "PEMEX"         
## [325,] "Bimbo" "Cinepolis" "Telcel"         "Oxxo"           "Banorte"       
## [326,] "Bimbo" "Cinepolis" "Telcel"         "Oxxo"           "Bodega Aurrera"
## [327,] "Bimbo" "Cinepolis" "Telcel"         "Oxxo"           "CEMEX"         
## [328,] "Bimbo" "Cinepolis" "Telcel"         "Oxxo"           "Corona"        
## [329,] "Bimbo" "Cinepolis" "Telcel"         "Oxxo"           "Lala"          
## [330,] "Bimbo" "Cinepolis" "Telcel"         "Oxxo"           "PEMEX"         
## [331,] "Bimbo" "Cinepolis" "Telcel"         "PEMEX"          "Banorte"       
## [332,] "Bimbo" "Cinepolis" "Telcel"         "PEMEX"          "Bodega Aurrera"
## [333,] "Bimbo" "Cinepolis" "Telcel"         "PEMEX"          "CEMEX"         
## [334,] "Bimbo" "Cinepolis" "Telcel"         "PEMEX"          "Corona"        
## [335,] "Bimbo" "Cinepolis" "Telcel"         "PEMEX"          "Lala"          
## [336,] "Bimbo" "Cinepolis" "Telcel"         "PEMEX"          "Oxxo"
frecuencia <- nrow(filtro)
paste("Existen ", frecuencia, " ocasiones en las que aparece de manera contigua y en este orden las empresas Bimbo y Cinepolis, de un total de " , nrow(Pern.equipos), " representan ", round(frecuencia / nrow(Pern.equipos) * 100, 2), "%")
## [1] "Existen  336  ocasiones en las que aparece de manera contigua y en este orden las empresas Bimbo y Cinepolis, de un total de  30240  representan  1.11 %"

¿En cuántas ocasiones aparece de manera contigua y en este orden las empresas Banorte y Cinepolis en primera y segunda columna respectivamente?

filtro <- subset(Pern.equipos, Pern.equipos[,1] == "Banorte" & Pern.equipos[,2]=="Cinepolis")
filtro
##        [,1]      [,2]        [,3]             [,4]             [,5]            
##   [1,] "Banorte" "Cinepolis" "Bimbo"          "Bodega Aurrera" "CEMEX"         
##   [2,] "Banorte" "Cinepolis" "Bimbo"          "Bodega Aurrera" "Corona"        
##   [3,] "Banorte" "Cinepolis" "Bimbo"          "Bodega Aurrera" "Lala"          
##   [4,] "Banorte" "Cinepolis" "Bimbo"          "Bodega Aurrera" "Oxxo"          
##   [5,] "Banorte" "Cinepolis" "Bimbo"          "Bodega Aurrera" "PEMEX"         
##   [6,] "Banorte" "Cinepolis" "Bimbo"          "Bodega Aurrera" "Telcel"        
##   [7,] "Banorte" "Cinepolis" "Bimbo"          "CEMEX"          "Bodega Aurrera"
##   [8,] "Banorte" "Cinepolis" "Bimbo"          "CEMEX"          "Corona"        
##   [9,] "Banorte" "Cinepolis" "Bimbo"          "CEMEX"          "Lala"          
##  [10,] "Banorte" "Cinepolis" "Bimbo"          "CEMEX"          "Oxxo"          
##  [11,] "Banorte" "Cinepolis" "Bimbo"          "CEMEX"          "PEMEX"         
##  [12,] "Banorte" "Cinepolis" "Bimbo"          "CEMEX"          "Telcel"        
##  [13,] "Banorte" "Cinepolis" "Bimbo"          "Corona"         "Bodega Aurrera"
##  [14,] "Banorte" "Cinepolis" "Bimbo"          "Corona"         "CEMEX"         
##  [15,] "Banorte" "Cinepolis" "Bimbo"          "Corona"         "Lala"          
##  [16,] "Banorte" "Cinepolis" "Bimbo"          "Corona"         "Oxxo"          
##  [17,] "Banorte" "Cinepolis" "Bimbo"          "Corona"         "PEMEX"         
##  [18,] "Banorte" "Cinepolis" "Bimbo"          "Corona"         "Telcel"        
##  [19,] "Banorte" "Cinepolis" "Bimbo"          "Lala"           "Bodega Aurrera"
##  [20,] "Banorte" "Cinepolis" "Bimbo"          "Lala"           "CEMEX"         
##  [21,] "Banorte" "Cinepolis" "Bimbo"          "Lala"           "Corona"        
##  [22,] "Banorte" "Cinepolis" "Bimbo"          "Lala"           "Oxxo"          
##  [23,] "Banorte" "Cinepolis" "Bimbo"          "Lala"           "PEMEX"         
##  [24,] "Banorte" "Cinepolis" "Bimbo"          "Lala"           "Telcel"        
##  [25,] "Banorte" "Cinepolis" "Bimbo"          "Oxxo"           "Bodega Aurrera"
##  [26,] "Banorte" "Cinepolis" "Bimbo"          "Oxxo"           "CEMEX"         
##  [27,] "Banorte" "Cinepolis" "Bimbo"          "Oxxo"           "Corona"        
##  [28,] "Banorte" "Cinepolis" "Bimbo"          "Oxxo"           "Lala"          
##  [29,] "Banorte" "Cinepolis" "Bimbo"          "Oxxo"           "PEMEX"         
##  [30,] "Banorte" "Cinepolis" "Bimbo"          "Oxxo"           "Telcel"        
##  [31,] "Banorte" "Cinepolis" "Bimbo"          "PEMEX"          "Bodega Aurrera"
##  [32,] "Banorte" "Cinepolis" "Bimbo"          "PEMEX"          "CEMEX"         
##  [33,] "Banorte" "Cinepolis" "Bimbo"          "PEMEX"          "Corona"        
##  [34,] "Banorte" "Cinepolis" "Bimbo"          "PEMEX"          "Lala"          
##  [35,] "Banorte" "Cinepolis" "Bimbo"          "PEMEX"          "Oxxo"          
##  [36,] "Banorte" "Cinepolis" "Bimbo"          "PEMEX"          "Telcel"        
##  [37,] "Banorte" "Cinepolis" "Bimbo"          "Telcel"         "Bodega Aurrera"
##  [38,] "Banorte" "Cinepolis" "Bimbo"          "Telcel"         "CEMEX"         
##  [39,] "Banorte" "Cinepolis" "Bimbo"          "Telcel"         "Corona"        
##  [40,] "Banorte" "Cinepolis" "Bimbo"          "Telcel"         "Lala"          
##  [41,] "Banorte" "Cinepolis" "Bimbo"          "Telcel"         "Oxxo"          
##  [42,] "Banorte" "Cinepolis" "Bimbo"          "Telcel"         "PEMEX"         
##  [43,] "Banorte" "Cinepolis" "Bodega Aurrera" "Bimbo"          "CEMEX"         
##  [44,] "Banorte" "Cinepolis" "Bodega Aurrera" "Bimbo"          "Corona"        
##  [45,] "Banorte" "Cinepolis" "Bodega Aurrera" "Bimbo"          "Lala"          
##  [46,] "Banorte" "Cinepolis" "Bodega Aurrera" "Bimbo"          "Oxxo"          
##  [47,] "Banorte" "Cinepolis" "Bodega Aurrera" "Bimbo"          "PEMEX"         
##  [48,] "Banorte" "Cinepolis" "Bodega Aurrera" "Bimbo"          "Telcel"        
##  [49,] "Banorte" "Cinepolis" "Bodega Aurrera" "CEMEX"          "Bimbo"         
##  [50,] "Banorte" "Cinepolis" "Bodega Aurrera" "CEMEX"          "Corona"        
##  [51,] "Banorte" "Cinepolis" "Bodega Aurrera" "CEMEX"          "Lala"          
##  [52,] "Banorte" "Cinepolis" "Bodega Aurrera" "CEMEX"          "Oxxo"          
##  [53,] "Banorte" "Cinepolis" "Bodega Aurrera" "CEMEX"          "PEMEX"         
##  [54,] "Banorte" "Cinepolis" "Bodega Aurrera" "CEMEX"          "Telcel"        
##  [55,] "Banorte" "Cinepolis" "Bodega Aurrera" "Corona"         "Bimbo"         
##  [56,] "Banorte" "Cinepolis" "Bodega Aurrera" "Corona"         "CEMEX"         
##  [57,] "Banorte" "Cinepolis" "Bodega Aurrera" "Corona"         "Lala"          
##  [58,] "Banorte" "Cinepolis" "Bodega Aurrera" "Corona"         "Oxxo"          
##  [59,] "Banorte" "Cinepolis" "Bodega Aurrera" "Corona"         "PEMEX"         
##  [60,] "Banorte" "Cinepolis" "Bodega Aurrera" "Corona"         "Telcel"        
##  [61,] "Banorte" "Cinepolis" "Bodega Aurrera" "Lala"           "Bimbo"         
##  [62,] "Banorte" "Cinepolis" "Bodega Aurrera" "Lala"           "CEMEX"         
##  [63,] "Banorte" "Cinepolis" "Bodega Aurrera" "Lala"           "Corona"        
##  [64,] "Banorte" "Cinepolis" "Bodega Aurrera" "Lala"           "Oxxo"          
##  [65,] "Banorte" "Cinepolis" "Bodega Aurrera" "Lala"           "PEMEX"         
##  [66,] "Banorte" "Cinepolis" "Bodega Aurrera" "Lala"           "Telcel"        
##  [67,] "Banorte" "Cinepolis" "Bodega Aurrera" "Oxxo"           "Bimbo"         
##  [68,] "Banorte" "Cinepolis" "Bodega Aurrera" "Oxxo"           "CEMEX"         
##  [69,] "Banorte" "Cinepolis" "Bodega Aurrera" "Oxxo"           "Corona"        
##  [70,] "Banorte" "Cinepolis" "Bodega Aurrera" "Oxxo"           "Lala"          
##  [71,] "Banorte" "Cinepolis" "Bodega Aurrera" "Oxxo"           "PEMEX"         
##  [72,] "Banorte" "Cinepolis" "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [73,] "Banorte" "Cinepolis" "Bodega Aurrera" "PEMEX"          "Bimbo"         
##  [74,] "Banorte" "Cinepolis" "Bodega Aurrera" "PEMEX"          "CEMEX"         
##  [75,] "Banorte" "Cinepolis" "Bodega Aurrera" "PEMEX"          "Corona"        
##  [76,] "Banorte" "Cinepolis" "Bodega Aurrera" "PEMEX"          "Lala"          
##  [77,] "Banorte" "Cinepolis" "Bodega Aurrera" "PEMEX"          "Oxxo"          
##  [78,] "Banorte" "Cinepolis" "Bodega Aurrera" "PEMEX"          "Telcel"        
##  [79,] "Banorte" "Cinepolis" "Bodega Aurrera" "Telcel"         "Bimbo"         
##  [80,] "Banorte" "Cinepolis" "Bodega Aurrera" "Telcel"         "CEMEX"         
##  [81,] "Banorte" "Cinepolis" "Bodega Aurrera" "Telcel"         "Corona"        
##  [82,] "Banorte" "Cinepolis" "Bodega Aurrera" "Telcel"         "Lala"          
##  [83,] "Banorte" "Cinepolis" "Bodega Aurrera" "Telcel"         "Oxxo"          
##  [84,] "Banorte" "Cinepolis" "Bodega Aurrera" "Telcel"         "PEMEX"         
##  [85,] "Banorte" "Cinepolis" "CEMEX"          "Bimbo"          "Bodega Aurrera"
##  [86,] "Banorte" "Cinepolis" "CEMEX"          "Bimbo"          "Corona"        
##  [87,] "Banorte" "Cinepolis" "CEMEX"          "Bimbo"          "Lala"          
##  [88,] "Banorte" "Cinepolis" "CEMEX"          "Bimbo"          "Oxxo"          
##  [89,] "Banorte" "Cinepolis" "CEMEX"          "Bimbo"          "PEMEX"         
##  [90,] "Banorte" "Cinepolis" "CEMEX"          "Bimbo"          "Telcel"        
##  [91,] "Banorte" "Cinepolis" "CEMEX"          "Bodega Aurrera" "Bimbo"         
##  [92,] "Banorte" "Cinepolis" "CEMEX"          "Bodega Aurrera" "Corona"        
##  [93,] "Banorte" "Cinepolis" "CEMEX"          "Bodega Aurrera" "Lala"          
##  [94,] "Banorte" "Cinepolis" "CEMEX"          "Bodega Aurrera" "Oxxo"          
##  [95,] "Banorte" "Cinepolis" "CEMEX"          "Bodega Aurrera" "PEMEX"         
##  [96,] "Banorte" "Cinepolis" "CEMEX"          "Bodega Aurrera" "Telcel"        
##  [97,] "Banorte" "Cinepolis" "CEMEX"          "Corona"         "Bimbo"         
##  [98,] "Banorte" "Cinepolis" "CEMEX"          "Corona"         "Bodega Aurrera"
##  [99,] "Banorte" "Cinepolis" "CEMEX"          "Corona"         "Lala"          
## [100,] "Banorte" "Cinepolis" "CEMEX"          "Corona"         "Oxxo"          
## [101,] "Banorte" "Cinepolis" "CEMEX"          "Corona"         "PEMEX"         
## [102,] "Banorte" "Cinepolis" "CEMEX"          "Corona"         "Telcel"        
## [103,] "Banorte" "Cinepolis" "CEMEX"          "Lala"           "Bimbo"         
## [104,] "Banorte" "Cinepolis" "CEMEX"          "Lala"           "Bodega Aurrera"
## [105,] "Banorte" "Cinepolis" "CEMEX"          "Lala"           "Corona"        
## [106,] "Banorte" "Cinepolis" "CEMEX"          "Lala"           "Oxxo"          
## [107,] "Banorte" "Cinepolis" "CEMEX"          "Lala"           "PEMEX"         
## [108,] "Banorte" "Cinepolis" "CEMEX"          "Lala"           "Telcel"        
## [109,] "Banorte" "Cinepolis" "CEMEX"          "Oxxo"           "Bimbo"         
## [110,] "Banorte" "Cinepolis" "CEMEX"          "Oxxo"           "Bodega Aurrera"
## [111,] "Banorte" "Cinepolis" "CEMEX"          "Oxxo"           "Corona"        
## [112,] "Banorte" "Cinepolis" "CEMEX"          "Oxxo"           "Lala"          
## [113,] "Banorte" "Cinepolis" "CEMEX"          "Oxxo"           "PEMEX"         
## [114,] "Banorte" "Cinepolis" "CEMEX"          "Oxxo"           "Telcel"        
## [115,] "Banorte" "Cinepolis" "CEMEX"          "PEMEX"          "Bimbo"         
## [116,] "Banorte" "Cinepolis" "CEMEX"          "PEMEX"          "Bodega Aurrera"
## [117,] "Banorte" "Cinepolis" "CEMEX"          "PEMEX"          "Corona"        
## [118,] "Banorte" "Cinepolis" "CEMEX"          "PEMEX"          "Lala"          
## [119,] "Banorte" "Cinepolis" "CEMEX"          "PEMEX"          "Oxxo"          
## [120,] "Banorte" "Cinepolis" "CEMEX"          "PEMEX"          "Telcel"        
## [121,] "Banorte" "Cinepolis" "CEMEX"          "Telcel"         "Bimbo"         
## [122,] "Banorte" "Cinepolis" "CEMEX"          "Telcel"         "Bodega Aurrera"
## [123,] "Banorte" "Cinepolis" "CEMEX"          "Telcel"         "Corona"        
## [124,] "Banorte" "Cinepolis" "CEMEX"          "Telcel"         "Lala"          
## [125,] "Banorte" "Cinepolis" "CEMEX"          "Telcel"         "Oxxo"          
## [126,] "Banorte" "Cinepolis" "CEMEX"          "Telcel"         "PEMEX"         
## [127,] "Banorte" "Cinepolis" "Corona"         "Bimbo"          "Bodega Aurrera"
## [128,] "Banorte" "Cinepolis" "Corona"         "Bimbo"          "CEMEX"         
## [129,] "Banorte" "Cinepolis" "Corona"         "Bimbo"          "Lala"          
## [130,] "Banorte" "Cinepolis" "Corona"         "Bimbo"          "Oxxo"          
## [131,] "Banorte" "Cinepolis" "Corona"         "Bimbo"          "PEMEX"         
## [132,] "Banorte" "Cinepolis" "Corona"         "Bimbo"          "Telcel"        
## [133,] "Banorte" "Cinepolis" "Corona"         "Bodega Aurrera" "Bimbo"         
## [134,] "Banorte" "Cinepolis" "Corona"         "Bodega Aurrera" "CEMEX"         
## [135,] "Banorte" "Cinepolis" "Corona"         "Bodega Aurrera" "Lala"          
## [136,] "Banorte" "Cinepolis" "Corona"         "Bodega Aurrera" "Oxxo"          
## [137,] "Banorte" "Cinepolis" "Corona"         "Bodega Aurrera" "PEMEX"         
## [138,] "Banorte" "Cinepolis" "Corona"         "Bodega Aurrera" "Telcel"        
## [139,] "Banorte" "Cinepolis" "Corona"         "CEMEX"          "Bimbo"         
## [140,] "Banorte" "Cinepolis" "Corona"         "CEMEX"          "Bodega Aurrera"
## [141,] "Banorte" "Cinepolis" "Corona"         "CEMEX"          "Lala"          
## [142,] "Banorte" "Cinepolis" "Corona"         "CEMEX"          "Oxxo"          
## [143,] "Banorte" "Cinepolis" "Corona"         "CEMEX"          "PEMEX"         
## [144,] "Banorte" "Cinepolis" "Corona"         "CEMEX"          "Telcel"        
## [145,] "Banorte" "Cinepolis" "Corona"         "Lala"           "Bimbo"         
## [146,] "Banorte" "Cinepolis" "Corona"         "Lala"           "Bodega Aurrera"
## [147,] "Banorte" "Cinepolis" "Corona"         "Lala"           "CEMEX"         
## [148,] "Banorte" "Cinepolis" "Corona"         "Lala"           "Oxxo"          
## [149,] "Banorte" "Cinepolis" "Corona"         "Lala"           "PEMEX"         
## [150,] "Banorte" "Cinepolis" "Corona"         "Lala"           "Telcel"        
## [151,] "Banorte" "Cinepolis" "Corona"         "Oxxo"           "Bimbo"         
## [152,] "Banorte" "Cinepolis" "Corona"         "Oxxo"           "Bodega Aurrera"
## [153,] "Banorte" "Cinepolis" "Corona"         "Oxxo"           "CEMEX"         
## [154,] "Banorte" "Cinepolis" "Corona"         "Oxxo"           "Lala"          
## [155,] "Banorte" "Cinepolis" "Corona"         "Oxxo"           "PEMEX"         
## [156,] "Banorte" "Cinepolis" "Corona"         "Oxxo"           "Telcel"        
## [157,] "Banorte" "Cinepolis" "Corona"         "PEMEX"          "Bimbo"         
## [158,] "Banorte" "Cinepolis" "Corona"         "PEMEX"          "Bodega Aurrera"
## [159,] "Banorte" "Cinepolis" "Corona"         "PEMEX"          "CEMEX"         
## [160,] "Banorte" "Cinepolis" "Corona"         "PEMEX"          "Lala"          
## [161,] "Banorte" "Cinepolis" "Corona"         "PEMEX"          "Oxxo"          
## [162,] "Banorte" "Cinepolis" "Corona"         "PEMEX"          "Telcel"        
## [163,] "Banorte" "Cinepolis" "Corona"         "Telcel"         "Bimbo"         
## [164,] "Banorte" "Cinepolis" "Corona"         "Telcel"         "Bodega Aurrera"
## [165,] "Banorte" "Cinepolis" "Corona"         "Telcel"         "CEMEX"         
## [166,] "Banorte" "Cinepolis" "Corona"         "Telcel"         "Lala"          
## [167,] "Banorte" "Cinepolis" "Corona"         "Telcel"         "Oxxo"          
## [168,] "Banorte" "Cinepolis" "Corona"         "Telcel"         "PEMEX"         
## [169,] "Banorte" "Cinepolis" "Lala"           "Bimbo"          "Bodega Aurrera"
## [170,] "Banorte" "Cinepolis" "Lala"           "Bimbo"          "CEMEX"         
## [171,] "Banorte" "Cinepolis" "Lala"           "Bimbo"          "Corona"        
## [172,] "Banorte" "Cinepolis" "Lala"           "Bimbo"          "Oxxo"          
## [173,] "Banorte" "Cinepolis" "Lala"           "Bimbo"          "PEMEX"         
## [174,] "Banorte" "Cinepolis" "Lala"           "Bimbo"          "Telcel"        
## [175,] "Banorte" "Cinepolis" "Lala"           "Bodega Aurrera" "Bimbo"         
## [176,] "Banorte" "Cinepolis" "Lala"           "Bodega Aurrera" "CEMEX"         
## [177,] "Banorte" "Cinepolis" "Lala"           "Bodega Aurrera" "Corona"        
## [178,] "Banorte" "Cinepolis" "Lala"           "Bodega Aurrera" "Oxxo"          
## [179,] "Banorte" "Cinepolis" "Lala"           "Bodega Aurrera" "PEMEX"         
## [180,] "Banorte" "Cinepolis" "Lala"           "Bodega Aurrera" "Telcel"        
## [181,] "Banorte" "Cinepolis" "Lala"           "CEMEX"          "Bimbo"         
## [182,] "Banorte" "Cinepolis" "Lala"           "CEMEX"          "Bodega Aurrera"
## [183,] "Banorte" "Cinepolis" "Lala"           "CEMEX"          "Corona"        
## [184,] "Banorte" "Cinepolis" "Lala"           "CEMEX"          "Oxxo"          
## [185,] "Banorte" "Cinepolis" "Lala"           "CEMEX"          "PEMEX"         
## [186,] "Banorte" "Cinepolis" "Lala"           "CEMEX"          "Telcel"        
## [187,] "Banorte" "Cinepolis" "Lala"           "Corona"         "Bimbo"         
## [188,] "Banorte" "Cinepolis" "Lala"           "Corona"         "Bodega Aurrera"
## [189,] "Banorte" "Cinepolis" "Lala"           "Corona"         "CEMEX"         
## [190,] "Banorte" "Cinepolis" "Lala"           "Corona"         "Oxxo"          
## [191,] "Banorte" "Cinepolis" "Lala"           "Corona"         "PEMEX"         
## [192,] "Banorte" "Cinepolis" "Lala"           "Corona"         "Telcel"        
## [193,] "Banorte" "Cinepolis" "Lala"           "Oxxo"           "Bimbo"         
## [194,] "Banorte" "Cinepolis" "Lala"           "Oxxo"           "Bodega Aurrera"
## [195,] "Banorte" "Cinepolis" "Lala"           "Oxxo"           "CEMEX"         
## [196,] "Banorte" "Cinepolis" "Lala"           "Oxxo"           "Corona"        
## [197,] "Banorte" "Cinepolis" "Lala"           "Oxxo"           "PEMEX"         
## [198,] "Banorte" "Cinepolis" "Lala"           "Oxxo"           "Telcel"        
## [199,] "Banorte" "Cinepolis" "Lala"           "PEMEX"          "Bimbo"         
## [200,] "Banorte" "Cinepolis" "Lala"           "PEMEX"          "Bodega Aurrera"
## [201,] "Banorte" "Cinepolis" "Lala"           "PEMEX"          "CEMEX"         
## [202,] "Banorte" "Cinepolis" "Lala"           "PEMEX"          "Corona"        
## [203,] "Banorte" "Cinepolis" "Lala"           "PEMEX"          "Oxxo"          
## [204,] "Banorte" "Cinepolis" "Lala"           "PEMEX"          "Telcel"        
## [205,] "Banorte" "Cinepolis" "Lala"           "Telcel"         "Bimbo"         
## [206,] "Banorte" "Cinepolis" "Lala"           "Telcel"         "Bodega Aurrera"
## [207,] "Banorte" "Cinepolis" "Lala"           "Telcel"         "CEMEX"         
## [208,] "Banorte" "Cinepolis" "Lala"           "Telcel"         "Corona"        
## [209,] "Banorte" "Cinepolis" "Lala"           "Telcel"         "Oxxo"          
## [210,] "Banorte" "Cinepolis" "Lala"           "Telcel"         "PEMEX"         
## [211,] "Banorte" "Cinepolis" "Oxxo"           "Bimbo"          "Bodega Aurrera"
## [212,] "Banorte" "Cinepolis" "Oxxo"           "Bimbo"          "CEMEX"         
## [213,] "Banorte" "Cinepolis" "Oxxo"           "Bimbo"          "Corona"        
## [214,] "Banorte" "Cinepolis" "Oxxo"           "Bimbo"          "Lala"          
## [215,] "Banorte" "Cinepolis" "Oxxo"           "Bimbo"          "PEMEX"         
## [216,] "Banorte" "Cinepolis" "Oxxo"           "Bimbo"          "Telcel"        
## [217,] "Banorte" "Cinepolis" "Oxxo"           "Bodega Aurrera" "Bimbo"         
## [218,] "Banorte" "Cinepolis" "Oxxo"           "Bodega Aurrera" "CEMEX"         
## [219,] "Banorte" "Cinepolis" "Oxxo"           "Bodega Aurrera" "Corona"        
## [220,] "Banorte" "Cinepolis" "Oxxo"           "Bodega Aurrera" "Lala"          
## [221,] "Banorte" "Cinepolis" "Oxxo"           "Bodega Aurrera" "PEMEX"         
## [222,] "Banorte" "Cinepolis" "Oxxo"           "Bodega Aurrera" "Telcel"        
## [223,] "Banorte" "Cinepolis" "Oxxo"           "CEMEX"          "Bimbo"         
## [224,] "Banorte" "Cinepolis" "Oxxo"           "CEMEX"          "Bodega Aurrera"
## [225,] "Banorte" "Cinepolis" "Oxxo"           "CEMEX"          "Corona"        
## [226,] "Banorte" "Cinepolis" "Oxxo"           "CEMEX"          "Lala"          
## [227,] "Banorte" "Cinepolis" "Oxxo"           "CEMEX"          "PEMEX"         
## [228,] "Banorte" "Cinepolis" "Oxxo"           "CEMEX"          "Telcel"        
## [229,] "Banorte" "Cinepolis" "Oxxo"           "Corona"         "Bimbo"         
## [230,] "Banorte" "Cinepolis" "Oxxo"           "Corona"         "Bodega Aurrera"
## [231,] "Banorte" "Cinepolis" "Oxxo"           "Corona"         "CEMEX"         
## [232,] "Banorte" "Cinepolis" "Oxxo"           "Corona"         "Lala"          
## [233,] "Banorte" "Cinepolis" "Oxxo"           "Corona"         "PEMEX"         
## [234,] "Banorte" "Cinepolis" "Oxxo"           "Corona"         "Telcel"        
## [235,] "Banorte" "Cinepolis" "Oxxo"           "Lala"           "Bimbo"         
## [236,] "Banorte" "Cinepolis" "Oxxo"           "Lala"           "Bodega Aurrera"
## [237,] "Banorte" "Cinepolis" "Oxxo"           "Lala"           "CEMEX"         
## [238,] "Banorte" "Cinepolis" "Oxxo"           "Lala"           "Corona"        
## [239,] "Banorte" "Cinepolis" "Oxxo"           "Lala"           "PEMEX"         
## [240,] "Banorte" "Cinepolis" "Oxxo"           "Lala"           "Telcel"        
## [241,] "Banorte" "Cinepolis" "Oxxo"           "PEMEX"          "Bimbo"         
## [242,] "Banorte" "Cinepolis" "Oxxo"           "PEMEX"          "Bodega Aurrera"
## [243,] "Banorte" "Cinepolis" "Oxxo"           "PEMEX"          "CEMEX"         
## [244,] "Banorte" "Cinepolis" "Oxxo"           "PEMEX"          "Corona"        
## [245,] "Banorte" "Cinepolis" "Oxxo"           "PEMEX"          "Lala"          
## [246,] "Banorte" "Cinepolis" "Oxxo"           "PEMEX"          "Telcel"        
## [247,] "Banorte" "Cinepolis" "Oxxo"           "Telcel"         "Bimbo"         
## [248,] "Banorte" "Cinepolis" "Oxxo"           "Telcel"         "Bodega Aurrera"
## [249,] "Banorte" "Cinepolis" "Oxxo"           "Telcel"         "CEMEX"         
## [250,] "Banorte" "Cinepolis" "Oxxo"           "Telcel"         "Corona"        
## [251,] "Banorte" "Cinepolis" "Oxxo"           "Telcel"         "Lala"          
## [252,] "Banorte" "Cinepolis" "Oxxo"           "Telcel"         "PEMEX"         
## [253,] "Banorte" "Cinepolis" "PEMEX"          "Bimbo"          "Bodega Aurrera"
## [254,] "Banorte" "Cinepolis" "PEMEX"          "Bimbo"          "CEMEX"         
## [255,] "Banorte" "Cinepolis" "PEMEX"          "Bimbo"          "Corona"        
## [256,] "Banorte" "Cinepolis" "PEMEX"          "Bimbo"          "Lala"          
## [257,] "Banorte" "Cinepolis" "PEMEX"          "Bimbo"          "Oxxo"          
## [258,] "Banorte" "Cinepolis" "PEMEX"          "Bimbo"          "Telcel"        
## [259,] "Banorte" "Cinepolis" "PEMEX"          "Bodega Aurrera" "Bimbo"         
## [260,] "Banorte" "Cinepolis" "PEMEX"          "Bodega Aurrera" "CEMEX"         
## [261,] "Banorte" "Cinepolis" "PEMEX"          "Bodega Aurrera" "Corona"        
## [262,] "Banorte" "Cinepolis" "PEMEX"          "Bodega Aurrera" "Lala"          
## [263,] "Banorte" "Cinepolis" "PEMEX"          "Bodega Aurrera" "Oxxo"          
## [264,] "Banorte" "Cinepolis" "PEMEX"          "Bodega Aurrera" "Telcel"        
## [265,] "Banorte" "Cinepolis" "PEMEX"          "CEMEX"          "Bimbo"         
## [266,] "Banorte" "Cinepolis" "PEMEX"          "CEMEX"          "Bodega Aurrera"
## [267,] "Banorte" "Cinepolis" "PEMEX"          "CEMEX"          "Corona"        
## [268,] "Banorte" "Cinepolis" "PEMEX"          "CEMEX"          "Lala"          
## [269,] "Banorte" "Cinepolis" "PEMEX"          "CEMEX"          "Oxxo"          
## [270,] "Banorte" "Cinepolis" "PEMEX"          "CEMEX"          "Telcel"        
## [271,] "Banorte" "Cinepolis" "PEMEX"          "Corona"         "Bimbo"         
## [272,] "Banorte" "Cinepolis" "PEMEX"          "Corona"         "Bodega Aurrera"
## [273,] "Banorte" "Cinepolis" "PEMEX"          "Corona"         "CEMEX"         
## [274,] "Banorte" "Cinepolis" "PEMEX"          "Corona"         "Lala"          
## [275,] "Banorte" "Cinepolis" "PEMEX"          "Corona"         "Oxxo"          
## [276,] "Banorte" "Cinepolis" "PEMEX"          "Corona"         "Telcel"        
## [277,] "Banorte" "Cinepolis" "PEMEX"          "Lala"           "Bimbo"         
## [278,] "Banorte" "Cinepolis" "PEMEX"          "Lala"           "Bodega Aurrera"
## [279,] "Banorte" "Cinepolis" "PEMEX"          "Lala"           "CEMEX"         
## [280,] "Banorte" "Cinepolis" "PEMEX"          "Lala"           "Corona"        
## [281,] "Banorte" "Cinepolis" "PEMEX"          "Lala"           "Oxxo"          
## [282,] "Banorte" "Cinepolis" "PEMEX"          "Lala"           "Telcel"        
## [283,] "Banorte" "Cinepolis" "PEMEX"          "Oxxo"           "Bimbo"         
## [284,] "Banorte" "Cinepolis" "PEMEX"          "Oxxo"           "Bodega Aurrera"
## [285,] "Banorte" "Cinepolis" "PEMEX"          "Oxxo"           "CEMEX"         
## [286,] "Banorte" "Cinepolis" "PEMEX"          "Oxxo"           "Corona"        
## [287,] "Banorte" "Cinepolis" "PEMEX"          "Oxxo"           "Lala"          
## [288,] "Banorte" "Cinepolis" "PEMEX"          "Oxxo"           "Telcel"        
## [289,] "Banorte" "Cinepolis" "PEMEX"          "Telcel"         "Bimbo"         
## [290,] "Banorte" "Cinepolis" "PEMEX"          "Telcel"         "Bodega Aurrera"
## [291,] "Banorte" "Cinepolis" "PEMEX"          "Telcel"         "CEMEX"         
## [292,] "Banorte" "Cinepolis" "PEMEX"          "Telcel"         "Corona"        
## [293,] "Banorte" "Cinepolis" "PEMEX"          "Telcel"         "Lala"          
## [294,] "Banorte" "Cinepolis" "PEMEX"          "Telcel"         "Oxxo"          
## [295,] "Banorte" "Cinepolis" "Telcel"         "Bimbo"          "Bodega Aurrera"
## [296,] "Banorte" "Cinepolis" "Telcel"         "Bimbo"          "CEMEX"         
## [297,] "Banorte" "Cinepolis" "Telcel"         "Bimbo"          "Corona"        
## [298,] "Banorte" "Cinepolis" "Telcel"         "Bimbo"          "Lala"          
## [299,] "Banorte" "Cinepolis" "Telcel"         "Bimbo"          "Oxxo"          
## [300,] "Banorte" "Cinepolis" "Telcel"         "Bimbo"          "PEMEX"         
## [301,] "Banorte" "Cinepolis" "Telcel"         "Bodega Aurrera" "Bimbo"         
## [302,] "Banorte" "Cinepolis" "Telcel"         "Bodega Aurrera" "CEMEX"         
## [303,] "Banorte" "Cinepolis" "Telcel"         "Bodega Aurrera" "Corona"        
## [304,] "Banorte" "Cinepolis" "Telcel"         "Bodega Aurrera" "Lala"          
## [305,] "Banorte" "Cinepolis" "Telcel"         "Bodega Aurrera" "Oxxo"          
## [306,] "Banorte" "Cinepolis" "Telcel"         "Bodega Aurrera" "PEMEX"         
## [307,] "Banorte" "Cinepolis" "Telcel"         "CEMEX"          "Bimbo"         
## [308,] "Banorte" "Cinepolis" "Telcel"         "CEMEX"          "Bodega Aurrera"
## [309,] "Banorte" "Cinepolis" "Telcel"         "CEMEX"          "Corona"        
## [310,] "Banorte" "Cinepolis" "Telcel"         "CEMEX"          "Lala"          
## [311,] "Banorte" "Cinepolis" "Telcel"         "CEMEX"          "Oxxo"          
## [312,] "Banorte" "Cinepolis" "Telcel"         "CEMEX"          "PEMEX"         
## [313,] "Banorte" "Cinepolis" "Telcel"         "Corona"         "Bimbo"         
## [314,] "Banorte" "Cinepolis" "Telcel"         "Corona"         "Bodega Aurrera"
## [315,] "Banorte" "Cinepolis" "Telcel"         "Corona"         "CEMEX"         
## [316,] "Banorte" "Cinepolis" "Telcel"         "Corona"         "Lala"          
## [317,] "Banorte" "Cinepolis" "Telcel"         "Corona"         "Oxxo"          
## [318,] "Banorte" "Cinepolis" "Telcel"         "Corona"         "PEMEX"         
## [319,] "Banorte" "Cinepolis" "Telcel"         "Lala"           "Bimbo"         
## [320,] "Banorte" "Cinepolis" "Telcel"         "Lala"           "Bodega Aurrera"
## [321,] "Banorte" "Cinepolis" "Telcel"         "Lala"           "CEMEX"         
## [322,] "Banorte" "Cinepolis" "Telcel"         "Lala"           "Corona"        
## [323,] "Banorte" "Cinepolis" "Telcel"         "Lala"           "Oxxo"          
## [324,] "Banorte" "Cinepolis" "Telcel"         "Lala"           "PEMEX"         
## [325,] "Banorte" "Cinepolis" "Telcel"         "Oxxo"           "Bimbo"         
## [326,] "Banorte" "Cinepolis" "Telcel"         "Oxxo"           "Bodega Aurrera"
## [327,] "Banorte" "Cinepolis" "Telcel"         "Oxxo"           "CEMEX"         
## [328,] "Banorte" "Cinepolis" "Telcel"         "Oxxo"           "Corona"        
## [329,] "Banorte" "Cinepolis" "Telcel"         "Oxxo"           "Lala"          
## [330,] "Banorte" "Cinepolis" "Telcel"         "Oxxo"           "PEMEX"         
## [331,] "Banorte" "Cinepolis" "Telcel"         "PEMEX"          "Bimbo"         
## [332,] "Banorte" "Cinepolis" "Telcel"         "PEMEX"          "Bodega Aurrera"
## [333,] "Banorte" "Cinepolis" "Telcel"         "PEMEX"          "CEMEX"         
## [334,] "Banorte" "Cinepolis" "Telcel"         "PEMEX"          "Corona"        
## [335,] "Banorte" "Cinepolis" "Telcel"         "PEMEX"          "Lala"          
## [336,] "Banorte" "Cinepolis" "Telcel"         "PEMEX"          "Oxxo"
frecuencia <- nrow(filtro)
paste("Existen ", frecuencia, " ocasiones en las que aparece de manera contigua y en este orden las empresas Banorte y Cinepolis, de un total de " , nrow(Pern.equipos), " representan ", round(frecuencia / nrow(Pern.equipos) * 100, 2), "%")
## [1] "Existen  336  ocasiones en las que aparece de manera contigua y en este orden las empresas Banorte y Cinepolis, de un total de  30240  representan  1.11 %"

¿En cuántas ocasiones aparece de manera contigua y en este orden las empresas Oxxo y Telcel en cualquier columna uno y dos, dos y tres, tres y cuatro o cuatro y cinco?

filtro <- subset(Pern.equipos, (Pern.equipos[,1] == "Oxxo" & Pern.equipos[,2] == "Telcel") | (Pern.equipos[,2] == "Oxxo" & Pern.equipos[,3] == "Telcel") | (Pern.equipos[,3] == "Oxxo" & Pern.equipos[,4] == "Telcel") | (Pern.equipos[,4] == "Oxxo" & Pern.equipos[,5] == "Telcel"))
filtro
##         [,1]             [,2]             [,3]             [,4]            
##    [1,] "Banorte"        "Bimbo"          "Bodega Aurrera" "Oxxo"          
##    [2,] "Banorte"        "Bimbo"          "CEMEX"          "Oxxo"          
##    [3,] "Banorte"        "Bimbo"          "Cinepolis"      "Oxxo"          
##    [4,] "Banorte"        "Bimbo"          "Corona"         "Oxxo"          
##    [5,] "Banorte"        "Bimbo"          "Lala"           "Oxxo"          
##    [6,] "Banorte"        "Bimbo"          "Oxxo"           "Telcel"        
##    [7,] "Banorte"        "Bimbo"          "Oxxo"           "Telcel"        
##    [8,] "Banorte"        "Bimbo"          "Oxxo"           "Telcel"        
##    [9,] "Banorte"        "Bimbo"          "Oxxo"           "Telcel"        
##   [10,] "Banorte"        "Bimbo"          "Oxxo"           "Telcel"        
##   [11,] "Banorte"        "Bimbo"          "Oxxo"           "Telcel"        
##   [12,] "Banorte"        "Bimbo"          "PEMEX"          "Oxxo"          
##   [13,] "Banorte"        "Bodega Aurrera" "Bimbo"          "Oxxo"          
##   [14,] "Banorte"        "Bodega Aurrera" "CEMEX"          "Oxxo"          
##   [15,] "Banorte"        "Bodega Aurrera" "Cinepolis"      "Oxxo"          
##   [16,] "Banorte"        "Bodega Aurrera" "Corona"         "Oxxo"          
##   [17,] "Banorte"        "Bodega Aurrera" "Lala"           "Oxxo"          
##   [18,] "Banorte"        "Bodega Aurrera" "Oxxo"           "Telcel"        
##   [19,] "Banorte"        "Bodega Aurrera" "Oxxo"           "Telcel"        
##   [20,] "Banorte"        "Bodega Aurrera" "Oxxo"           "Telcel"        
##   [21,] "Banorte"        "Bodega Aurrera" "Oxxo"           "Telcel"        
##   [22,] "Banorte"        "Bodega Aurrera" "Oxxo"           "Telcel"        
##   [23,] "Banorte"        "Bodega Aurrera" "Oxxo"           "Telcel"        
##   [24,] "Banorte"        "Bodega Aurrera" "PEMEX"          "Oxxo"          
##   [25,] "Banorte"        "CEMEX"          "Bimbo"          "Oxxo"          
##   [26,] "Banorte"        "CEMEX"          "Bodega Aurrera" "Oxxo"          
##   [27,] "Banorte"        "CEMEX"          "Cinepolis"      "Oxxo"          
##   [28,] "Banorte"        "CEMEX"          "Corona"         "Oxxo"          
##   [29,] "Banorte"        "CEMEX"          "Lala"           "Oxxo"          
##   [30,] "Banorte"        "CEMEX"          "Oxxo"           "Telcel"        
##   [31,] "Banorte"        "CEMEX"          "Oxxo"           "Telcel"        
##   [32,] "Banorte"        "CEMEX"          "Oxxo"           "Telcel"        
##   [33,] "Banorte"        "CEMEX"          "Oxxo"           "Telcel"        
##   [34,] "Banorte"        "CEMEX"          "Oxxo"           "Telcel"        
##   [35,] "Banorte"        "CEMEX"          "Oxxo"           "Telcel"        
##   [36,] "Banorte"        "CEMEX"          "PEMEX"          "Oxxo"          
##   [37,] "Banorte"        "Cinepolis"      "Bimbo"          "Oxxo"          
##   [38,] "Banorte"        "Cinepolis"      "Bodega Aurrera" "Oxxo"          
##   [39,] "Banorte"        "Cinepolis"      "CEMEX"          "Oxxo"          
##   [40,] "Banorte"        "Cinepolis"      "Corona"         "Oxxo"          
##   [41,] "Banorte"        "Cinepolis"      "Lala"           "Oxxo"          
##   [42,] "Banorte"        "Cinepolis"      "Oxxo"           "Telcel"        
##   [43,] "Banorte"        "Cinepolis"      "Oxxo"           "Telcel"        
##   [44,] "Banorte"        "Cinepolis"      "Oxxo"           "Telcel"        
##   [45,] "Banorte"        "Cinepolis"      "Oxxo"           "Telcel"        
##   [46,] "Banorte"        "Cinepolis"      "Oxxo"           "Telcel"        
##   [47,] "Banorte"        "Cinepolis"      "Oxxo"           "Telcel"        
##   [48,] "Banorte"        "Cinepolis"      "PEMEX"          "Oxxo"          
##   [49,] "Banorte"        "Corona"         "Bimbo"          "Oxxo"          
##   [50,] "Banorte"        "Corona"         "Bodega Aurrera" "Oxxo"          
##   [51,] "Banorte"        "Corona"         "CEMEX"          "Oxxo"          
##   [52,] "Banorte"        "Corona"         "Cinepolis"      "Oxxo"          
##   [53,] "Banorte"        "Corona"         "Lala"           "Oxxo"          
##   [54,] "Banorte"        "Corona"         "Oxxo"           "Telcel"        
##   [55,] "Banorte"        "Corona"         "Oxxo"           "Telcel"        
##   [56,] "Banorte"        "Corona"         "Oxxo"           "Telcel"        
##   [57,] "Banorte"        "Corona"         "Oxxo"           "Telcel"        
##   [58,] "Banorte"        "Corona"         "Oxxo"           "Telcel"        
##   [59,] "Banorte"        "Corona"         "Oxxo"           "Telcel"        
##   [60,] "Banorte"        "Corona"         "PEMEX"          "Oxxo"          
##   [61,] "Banorte"        "Lala"           "Bimbo"          "Oxxo"          
##   [62,] "Banorte"        "Lala"           "Bodega Aurrera" "Oxxo"          
##   [63,] "Banorte"        "Lala"           "CEMEX"          "Oxxo"          
##   [64,] "Banorte"        "Lala"           "Cinepolis"      "Oxxo"          
##   [65,] "Banorte"        "Lala"           "Corona"         "Oxxo"          
##   [66,] "Banorte"        "Lala"           "Oxxo"           "Telcel"        
##   [67,] "Banorte"        "Lala"           "Oxxo"           "Telcel"        
##   [68,] "Banorte"        "Lala"           "Oxxo"           "Telcel"        
##   [69,] "Banorte"        "Lala"           "Oxxo"           "Telcel"        
##   [70,] "Banorte"        "Lala"           "Oxxo"           "Telcel"        
##   [71,] "Banorte"        "Lala"           "Oxxo"           "Telcel"        
##   [72,] "Banorte"        "Lala"           "PEMEX"          "Oxxo"          
##   [73,] "Banorte"        "Oxxo"           "Telcel"         "Bimbo"         
##   [74,] "Banorte"        "Oxxo"           "Telcel"         "Bimbo"         
##   [75,] "Banorte"        "Oxxo"           "Telcel"         "Bimbo"         
##   [76,] "Banorte"        "Oxxo"           "Telcel"         "Bimbo"         
##   [77,] "Banorte"        "Oxxo"           "Telcel"         "Bimbo"         
##   [78,] "Banorte"        "Oxxo"           "Telcel"         "Bimbo"         
##   [79,] "Banorte"        "Oxxo"           "Telcel"         "Bodega Aurrera"
##   [80,] "Banorte"        "Oxxo"           "Telcel"         "Bodega Aurrera"
##   [81,] "Banorte"        "Oxxo"           "Telcel"         "Bodega Aurrera"
##   [82,] "Banorte"        "Oxxo"           "Telcel"         "Bodega Aurrera"
##   [83,] "Banorte"        "Oxxo"           "Telcel"         "Bodega Aurrera"
##   [84,] "Banorte"        "Oxxo"           "Telcel"         "Bodega Aurrera"
##   [85,] "Banorte"        "Oxxo"           "Telcel"         "CEMEX"         
##   [86,] "Banorte"        "Oxxo"           "Telcel"         "CEMEX"         
##   [87,] "Banorte"        "Oxxo"           "Telcel"         "CEMEX"         
##   [88,] "Banorte"        "Oxxo"           "Telcel"         "CEMEX"         
##   [89,] "Banorte"        "Oxxo"           "Telcel"         "CEMEX"         
##   [90,] "Banorte"        "Oxxo"           "Telcel"         "CEMEX"         
##   [91,] "Banorte"        "Oxxo"           "Telcel"         "Cinepolis"     
##   [92,] "Banorte"        "Oxxo"           "Telcel"         "Cinepolis"     
##   [93,] "Banorte"        "Oxxo"           "Telcel"         "Cinepolis"     
##   [94,] "Banorte"        "Oxxo"           "Telcel"         "Cinepolis"     
##   [95,] "Banorte"        "Oxxo"           "Telcel"         "Cinepolis"     
##   [96,] "Banorte"        "Oxxo"           "Telcel"         "Cinepolis"     
##   [97,] "Banorte"        "Oxxo"           "Telcel"         "Corona"        
##   [98,] "Banorte"        "Oxxo"           "Telcel"         "Corona"        
##   [99,] "Banorte"        "Oxxo"           "Telcel"         "Corona"        
##  [100,] "Banorte"        "Oxxo"           "Telcel"         "Corona"        
##  [101,] "Banorte"        "Oxxo"           "Telcel"         "Corona"        
##  [102,] "Banorte"        "Oxxo"           "Telcel"         "Corona"        
##  [103,] "Banorte"        "Oxxo"           "Telcel"         "Lala"          
##  [104,] "Banorte"        "Oxxo"           "Telcel"         "Lala"          
##  [105,] "Banorte"        "Oxxo"           "Telcel"         "Lala"          
##  [106,] "Banorte"        "Oxxo"           "Telcel"         "Lala"          
##  [107,] "Banorte"        "Oxxo"           "Telcel"         "Lala"          
##  [108,] "Banorte"        "Oxxo"           "Telcel"         "Lala"          
##  [109,] "Banorte"        "Oxxo"           "Telcel"         "PEMEX"         
##  [110,] "Banorte"        "Oxxo"           "Telcel"         "PEMEX"         
##  [111,] "Banorte"        "Oxxo"           "Telcel"         "PEMEX"         
##  [112,] "Banorte"        "Oxxo"           "Telcel"         "PEMEX"         
##  [113,] "Banorte"        "Oxxo"           "Telcel"         "PEMEX"         
##  [114,] "Banorte"        "Oxxo"           "Telcel"         "PEMEX"         
##  [115,] "Banorte"        "PEMEX"          "Bimbo"          "Oxxo"          
##  [116,] "Banorte"        "PEMEX"          "Bodega Aurrera" "Oxxo"          
##  [117,] "Banorte"        "PEMEX"          "CEMEX"          "Oxxo"          
##  [118,] "Banorte"        "PEMEX"          "Cinepolis"      "Oxxo"          
##  [119,] "Banorte"        "PEMEX"          "Corona"         "Oxxo"          
##  [120,] "Banorte"        "PEMEX"          "Lala"           "Oxxo"          
##  [121,] "Banorte"        "PEMEX"          "Oxxo"           "Telcel"        
##  [122,] "Banorte"        "PEMEX"          "Oxxo"           "Telcel"        
##  [123,] "Banorte"        "PEMEX"          "Oxxo"           "Telcel"        
##  [124,] "Banorte"        "PEMEX"          "Oxxo"           "Telcel"        
##  [125,] "Banorte"        "PEMEX"          "Oxxo"           "Telcel"        
##  [126,] "Banorte"        "PEMEX"          "Oxxo"           "Telcel"        
##  [127,] "Bimbo"          "Banorte"        "Bodega Aurrera" "Oxxo"          
##  [128,] "Bimbo"          "Banorte"        "CEMEX"          "Oxxo"          
##  [129,] "Bimbo"          "Banorte"        "Cinepolis"      "Oxxo"          
##  [130,] "Bimbo"          "Banorte"        "Corona"         "Oxxo"          
##  [131,] "Bimbo"          "Banorte"        "Lala"           "Oxxo"          
##  [132,] "Bimbo"          "Banorte"        "Oxxo"           "Telcel"        
##  [133,] "Bimbo"          "Banorte"        "Oxxo"           "Telcel"        
##  [134,] "Bimbo"          "Banorte"        "Oxxo"           "Telcel"        
##  [135,] "Bimbo"          "Banorte"        "Oxxo"           "Telcel"        
##  [136,] "Bimbo"          "Banorte"        "Oxxo"           "Telcel"        
##  [137,] "Bimbo"          "Banorte"        "Oxxo"           "Telcel"        
##  [138,] "Bimbo"          "Banorte"        "PEMEX"          "Oxxo"          
##  [139,] "Bimbo"          "Bodega Aurrera" "Banorte"        "Oxxo"          
##  [140,] "Bimbo"          "Bodega Aurrera" "CEMEX"          "Oxxo"          
##  [141,] "Bimbo"          "Bodega Aurrera" "Cinepolis"      "Oxxo"          
##  [142,] "Bimbo"          "Bodega Aurrera" "Corona"         "Oxxo"          
##  [143,] "Bimbo"          "Bodega Aurrera" "Lala"           "Oxxo"          
##  [144,] "Bimbo"          "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [145,] "Bimbo"          "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [146,] "Bimbo"          "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [147,] "Bimbo"          "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [148,] "Bimbo"          "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [149,] "Bimbo"          "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [150,] "Bimbo"          "Bodega Aurrera" "PEMEX"          "Oxxo"          
##  [151,] "Bimbo"          "CEMEX"          "Banorte"        "Oxxo"          
##  [152,] "Bimbo"          "CEMEX"          "Bodega Aurrera" "Oxxo"          
##  [153,] "Bimbo"          "CEMEX"          "Cinepolis"      "Oxxo"          
##  [154,] "Bimbo"          "CEMEX"          "Corona"         "Oxxo"          
##  [155,] "Bimbo"          "CEMEX"          "Lala"           "Oxxo"          
##  [156,] "Bimbo"          "CEMEX"          "Oxxo"           "Telcel"        
##  [157,] "Bimbo"          "CEMEX"          "Oxxo"           "Telcel"        
##  [158,] "Bimbo"          "CEMEX"          "Oxxo"           "Telcel"        
##  [159,] "Bimbo"          "CEMEX"          "Oxxo"           "Telcel"        
##  [160,] "Bimbo"          "CEMEX"          "Oxxo"           "Telcel"        
##  [161,] "Bimbo"          "CEMEX"          "Oxxo"           "Telcel"        
##  [162,] "Bimbo"          "CEMEX"          "PEMEX"          "Oxxo"          
##  [163,] "Bimbo"          "Cinepolis"      "Banorte"        "Oxxo"          
##  [164,] "Bimbo"          "Cinepolis"      "Bodega Aurrera" "Oxxo"          
##  [165,] "Bimbo"          "Cinepolis"      "CEMEX"          "Oxxo"          
##  [166,] "Bimbo"          "Cinepolis"      "Corona"         "Oxxo"          
##  [167,] "Bimbo"          "Cinepolis"      "Lala"           "Oxxo"          
##  [168,] "Bimbo"          "Cinepolis"      "Oxxo"           "Telcel"        
##  [169,] "Bimbo"          "Cinepolis"      "Oxxo"           "Telcel"        
##  [170,] "Bimbo"          "Cinepolis"      "Oxxo"           "Telcel"        
##  [171,] "Bimbo"          "Cinepolis"      "Oxxo"           "Telcel"        
##  [172,] "Bimbo"          "Cinepolis"      "Oxxo"           "Telcel"        
##  [173,] "Bimbo"          "Cinepolis"      "Oxxo"           "Telcel"        
##  [174,] "Bimbo"          "Cinepolis"      "PEMEX"          "Oxxo"          
##  [175,] "Bimbo"          "Corona"         "Banorte"        "Oxxo"          
##  [176,] "Bimbo"          "Corona"         "Bodega Aurrera" "Oxxo"          
##  [177,] "Bimbo"          "Corona"         "CEMEX"          "Oxxo"          
##  [178,] "Bimbo"          "Corona"         "Cinepolis"      "Oxxo"          
##  [179,] "Bimbo"          "Corona"         "Lala"           "Oxxo"          
##  [180,] "Bimbo"          "Corona"         "Oxxo"           "Telcel"        
##  [181,] "Bimbo"          "Corona"         "Oxxo"           "Telcel"        
##  [182,] "Bimbo"          "Corona"         "Oxxo"           "Telcel"        
##  [183,] "Bimbo"          "Corona"         "Oxxo"           "Telcel"        
##  [184,] "Bimbo"          "Corona"         "Oxxo"           "Telcel"        
##  [185,] "Bimbo"          "Corona"         "Oxxo"           "Telcel"        
##  [186,] "Bimbo"          "Corona"         "PEMEX"          "Oxxo"          
##  [187,] "Bimbo"          "Lala"           "Banorte"        "Oxxo"          
##  [188,] "Bimbo"          "Lala"           "Bodega Aurrera" "Oxxo"          
##  [189,] "Bimbo"          "Lala"           "CEMEX"          "Oxxo"          
##  [190,] "Bimbo"          "Lala"           "Cinepolis"      "Oxxo"          
##  [191,] "Bimbo"          "Lala"           "Corona"         "Oxxo"          
##  [192,] "Bimbo"          "Lala"           "Oxxo"           "Telcel"        
##  [193,] "Bimbo"          "Lala"           "Oxxo"           "Telcel"        
##  [194,] "Bimbo"          "Lala"           "Oxxo"           "Telcel"        
##  [195,] "Bimbo"          "Lala"           "Oxxo"           "Telcel"        
##  [196,] "Bimbo"          "Lala"           "Oxxo"           "Telcel"        
##  [197,] "Bimbo"          "Lala"           "Oxxo"           "Telcel"        
##  [198,] "Bimbo"          "Lala"           "PEMEX"          "Oxxo"          
##  [199,] "Bimbo"          "Oxxo"           "Telcel"         "Banorte"       
##  [200,] "Bimbo"          "Oxxo"           "Telcel"         "Banorte"       
##  [201,] "Bimbo"          "Oxxo"           "Telcel"         "Banorte"       
##  [202,] "Bimbo"          "Oxxo"           "Telcel"         "Banorte"       
##  [203,] "Bimbo"          "Oxxo"           "Telcel"         "Banorte"       
##  [204,] "Bimbo"          "Oxxo"           "Telcel"         "Banorte"       
##  [205,] "Bimbo"          "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [206,] "Bimbo"          "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [207,] "Bimbo"          "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [208,] "Bimbo"          "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [209,] "Bimbo"          "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [210,] "Bimbo"          "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [211,] "Bimbo"          "Oxxo"           "Telcel"         "CEMEX"         
##  [212,] "Bimbo"          "Oxxo"           "Telcel"         "CEMEX"         
##  [213,] "Bimbo"          "Oxxo"           "Telcel"         "CEMEX"         
##  [214,] "Bimbo"          "Oxxo"           "Telcel"         "CEMEX"         
##  [215,] "Bimbo"          "Oxxo"           "Telcel"         "CEMEX"         
##  [216,] "Bimbo"          "Oxxo"           "Telcel"         "CEMEX"         
##  [217,] "Bimbo"          "Oxxo"           "Telcel"         "Cinepolis"     
##  [218,] "Bimbo"          "Oxxo"           "Telcel"         "Cinepolis"     
##  [219,] "Bimbo"          "Oxxo"           "Telcel"         "Cinepolis"     
##  [220,] "Bimbo"          "Oxxo"           "Telcel"         "Cinepolis"     
##  [221,] "Bimbo"          "Oxxo"           "Telcel"         "Cinepolis"     
##  [222,] "Bimbo"          "Oxxo"           "Telcel"         "Cinepolis"     
##  [223,] "Bimbo"          "Oxxo"           "Telcel"         "Corona"        
##  [224,] "Bimbo"          "Oxxo"           "Telcel"         "Corona"        
##  [225,] "Bimbo"          "Oxxo"           "Telcel"         "Corona"        
##  [226,] "Bimbo"          "Oxxo"           "Telcel"         "Corona"        
##  [227,] "Bimbo"          "Oxxo"           "Telcel"         "Corona"        
##  [228,] "Bimbo"          "Oxxo"           "Telcel"         "Corona"        
##  [229,] "Bimbo"          "Oxxo"           "Telcel"         "Lala"          
##  [230,] "Bimbo"          "Oxxo"           "Telcel"         "Lala"          
##  [231,] "Bimbo"          "Oxxo"           "Telcel"         "Lala"          
##  [232,] "Bimbo"          "Oxxo"           "Telcel"         "Lala"          
##  [233,] "Bimbo"          "Oxxo"           "Telcel"         "Lala"          
##  [234,] "Bimbo"          "Oxxo"           "Telcel"         "Lala"          
##  [235,] "Bimbo"          "Oxxo"           "Telcel"         "PEMEX"         
##  [236,] "Bimbo"          "Oxxo"           "Telcel"         "PEMEX"         
##  [237,] "Bimbo"          "Oxxo"           "Telcel"         "PEMEX"         
##  [238,] "Bimbo"          "Oxxo"           "Telcel"         "PEMEX"         
##  [239,] "Bimbo"          "Oxxo"           "Telcel"         "PEMEX"         
##  [240,] "Bimbo"          "Oxxo"           "Telcel"         "PEMEX"         
##  [241,] "Bimbo"          "PEMEX"          "Banorte"        "Oxxo"          
##  [242,] "Bimbo"          "PEMEX"          "Bodega Aurrera" "Oxxo"          
##  [243,] "Bimbo"          "PEMEX"          "CEMEX"          "Oxxo"          
##  [244,] "Bimbo"          "PEMEX"          "Cinepolis"      "Oxxo"          
##  [245,] "Bimbo"          "PEMEX"          "Corona"         "Oxxo"          
##  [246,] "Bimbo"          "PEMEX"          "Lala"           "Oxxo"          
##  [247,] "Bimbo"          "PEMEX"          "Oxxo"           "Telcel"        
##  [248,] "Bimbo"          "PEMEX"          "Oxxo"           "Telcel"        
##  [249,] "Bimbo"          "PEMEX"          "Oxxo"           "Telcel"        
##  [250,] "Bimbo"          "PEMEX"          "Oxxo"           "Telcel"        
##  [251,] "Bimbo"          "PEMEX"          "Oxxo"           "Telcel"        
##  [252,] "Bimbo"          "PEMEX"          "Oxxo"           "Telcel"        
##  [253,] "Bodega Aurrera" "Banorte"        "Bimbo"          "Oxxo"          
##  [254,] "Bodega Aurrera" "Banorte"        "CEMEX"          "Oxxo"          
##  [255,] "Bodega Aurrera" "Banorte"        "Cinepolis"      "Oxxo"          
##  [256,] "Bodega Aurrera" "Banorte"        "Corona"         "Oxxo"          
##  [257,] "Bodega Aurrera" "Banorte"        "Lala"           "Oxxo"          
##  [258,] "Bodega Aurrera" "Banorte"        "Oxxo"           "Telcel"        
##  [259,] "Bodega Aurrera" "Banorte"        "Oxxo"           "Telcel"        
##  [260,] "Bodega Aurrera" "Banorte"        "Oxxo"           "Telcel"        
##  [261,] "Bodega Aurrera" "Banorte"        "Oxxo"           "Telcel"        
##  [262,] "Bodega Aurrera" "Banorte"        "Oxxo"           "Telcel"        
##  [263,] "Bodega Aurrera" "Banorte"        "Oxxo"           "Telcel"        
##  [264,] "Bodega Aurrera" "Banorte"        "PEMEX"          "Oxxo"          
##  [265,] "Bodega Aurrera" "Bimbo"          "Banorte"        "Oxxo"          
##  [266,] "Bodega Aurrera" "Bimbo"          "CEMEX"          "Oxxo"          
##  [267,] "Bodega Aurrera" "Bimbo"          "Cinepolis"      "Oxxo"          
##  [268,] "Bodega Aurrera" "Bimbo"          "Corona"         "Oxxo"          
##  [269,] "Bodega Aurrera" "Bimbo"          "Lala"           "Oxxo"          
##  [270,] "Bodega Aurrera" "Bimbo"          "Oxxo"           "Telcel"        
##  [271,] "Bodega Aurrera" "Bimbo"          "Oxxo"           "Telcel"        
##  [272,] "Bodega Aurrera" "Bimbo"          "Oxxo"           "Telcel"        
##  [273,] "Bodega Aurrera" "Bimbo"          "Oxxo"           "Telcel"        
##  [274,] "Bodega Aurrera" "Bimbo"          "Oxxo"           "Telcel"        
##  [275,] "Bodega Aurrera" "Bimbo"          "Oxxo"           "Telcel"        
##  [276,] "Bodega Aurrera" "Bimbo"          "PEMEX"          "Oxxo"          
##  [277,] "Bodega Aurrera" "CEMEX"          "Banorte"        "Oxxo"          
##  [278,] "Bodega Aurrera" "CEMEX"          "Bimbo"          "Oxxo"          
##  [279,] "Bodega Aurrera" "CEMEX"          "Cinepolis"      "Oxxo"          
##  [280,] "Bodega Aurrera" "CEMEX"          "Corona"         "Oxxo"          
##  [281,] "Bodega Aurrera" "CEMEX"          "Lala"           "Oxxo"          
##  [282,] "Bodega Aurrera" "CEMEX"          "Oxxo"           "Telcel"        
##  [283,] "Bodega Aurrera" "CEMEX"          "Oxxo"           "Telcel"        
##  [284,] "Bodega Aurrera" "CEMEX"          "Oxxo"           "Telcel"        
##  [285,] "Bodega Aurrera" "CEMEX"          "Oxxo"           "Telcel"        
##  [286,] "Bodega Aurrera" "CEMEX"          "Oxxo"           "Telcel"        
##  [287,] "Bodega Aurrera" "CEMEX"          "Oxxo"           "Telcel"        
##  [288,] "Bodega Aurrera" "CEMEX"          "PEMEX"          "Oxxo"          
##  [289,] "Bodega Aurrera" "Cinepolis"      "Banorte"        "Oxxo"          
##  [290,] "Bodega Aurrera" "Cinepolis"      "Bimbo"          "Oxxo"          
##  [291,] "Bodega Aurrera" "Cinepolis"      "CEMEX"          "Oxxo"          
##  [292,] "Bodega Aurrera" "Cinepolis"      "Corona"         "Oxxo"          
##  [293,] "Bodega Aurrera" "Cinepolis"      "Lala"           "Oxxo"          
##  [294,] "Bodega Aurrera" "Cinepolis"      "Oxxo"           "Telcel"        
##  [295,] "Bodega Aurrera" "Cinepolis"      "Oxxo"           "Telcel"        
##  [296,] "Bodega Aurrera" "Cinepolis"      "Oxxo"           "Telcel"        
##  [297,] "Bodega Aurrera" "Cinepolis"      "Oxxo"           "Telcel"        
##  [298,] "Bodega Aurrera" "Cinepolis"      "Oxxo"           "Telcel"        
##  [299,] "Bodega Aurrera" "Cinepolis"      "Oxxo"           "Telcel"        
##  [300,] "Bodega Aurrera" "Cinepolis"      "PEMEX"          "Oxxo"          
##  [301,] "Bodega Aurrera" "Corona"         "Banorte"        "Oxxo"          
##  [302,] "Bodega Aurrera" "Corona"         "Bimbo"          "Oxxo"          
##  [303,] "Bodega Aurrera" "Corona"         "CEMEX"          "Oxxo"          
##  [304,] "Bodega Aurrera" "Corona"         "Cinepolis"      "Oxxo"          
##  [305,] "Bodega Aurrera" "Corona"         "Lala"           "Oxxo"          
##  [306,] "Bodega Aurrera" "Corona"         "Oxxo"           "Telcel"        
##  [307,] "Bodega Aurrera" "Corona"         "Oxxo"           "Telcel"        
##  [308,] "Bodega Aurrera" "Corona"         "Oxxo"           "Telcel"        
##  [309,] "Bodega Aurrera" "Corona"         "Oxxo"           "Telcel"        
##  [310,] "Bodega Aurrera" "Corona"         "Oxxo"           "Telcel"        
##  [311,] "Bodega Aurrera" "Corona"         "Oxxo"           "Telcel"        
##  [312,] "Bodega Aurrera" "Corona"         "PEMEX"          "Oxxo"          
##  [313,] "Bodega Aurrera" "Lala"           "Banorte"        "Oxxo"          
##  [314,] "Bodega Aurrera" "Lala"           "Bimbo"          "Oxxo"          
##  [315,] "Bodega Aurrera" "Lala"           "CEMEX"          "Oxxo"          
##  [316,] "Bodega Aurrera" "Lala"           "Cinepolis"      "Oxxo"          
##  [317,] "Bodega Aurrera" "Lala"           "Corona"         "Oxxo"          
##  [318,] "Bodega Aurrera" "Lala"           "Oxxo"           "Telcel"        
##  [319,] "Bodega Aurrera" "Lala"           "Oxxo"           "Telcel"        
##  [320,] "Bodega Aurrera" "Lala"           "Oxxo"           "Telcel"        
##  [321,] "Bodega Aurrera" "Lala"           "Oxxo"           "Telcel"        
##  [322,] "Bodega Aurrera" "Lala"           "Oxxo"           "Telcel"        
##  [323,] "Bodega Aurrera" "Lala"           "Oxxo"           "Telcel"        
##  [324,] "Bodega Aurrera" "Lala"           "PEMEX"          "Oxxo"          
##  [325,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Banorte"       
##  [326,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Banorte"       
##  [327,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Banorte"       
##  [328,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Banorte"       
##  [329,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Banorte"       
##  [330,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Banorte"       
##  [331,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Bimbo"         
##  [332,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Bimbo"         
##  [333,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Bimbo"         
##  [334,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Bimbo"         
##  [335,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Bimbo"         
##  [336,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Bimbo"         
##  [337,] "Bodega Aurrera" "Oxxo"           "Telcel"         "CEMEX"         
##  [338,] "Bodega Aurrera" "Oxxo"           "Telcel"         "CEMEX"         
##  [339,] "Bodega Aurrera" "Oxxo"           "Telcel"         "CEMEX"         
##  [340,] "Bodega Aurrera" "Oxxo"           "Telcel"         "CEMEX"         
##  [341,] "Bodega Aurrera" "Oxxo"           "Telcel"         "CEMEX"         
##  [342,] "Bodega Aurrera" "Oxxo"           "Telcel"         "CEMEX"         
##  [343,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Cinepolis"     
##  [344,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Cinepolis"     
##  [345,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Cinepolis"     
##  [346,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Cinepolis"     
##  [347,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Cinepolis"     
##  [348,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Cinepolis"     
##  [349,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Corona"        
##  [350,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Corona"        
##  [351,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Corona"        
##  [352,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Corona"        
##  [353,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Corona"        
##  [354,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Corona"        
##  [355,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Lala"          
##  [356,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Lala"          
##  [357,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Lala"          
##  [358,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Lala"          
##  [359,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Lala"          
##  [360,] "Bodega Aurrera" "Oxxo"           "Telcel"         "Lala"          
##  [361,] "Bodega Aurrera" "Oxxo"           "Telcel"         "PEMEX"         
##  [362,] "Bodega Aurrera" "Oxxo"           "Telcel"         "PEMEX"         
##  [363,] "Bodega Aurrera" "Oxxo"           "Telcel"         "PEMEX"         
##  [364,] "Bodega Aurrera" "Oxxo"           "Telcel"         "PEMEX"         
##  [365,] "Bodega Aurrera" "Oxxo"           "Telcel"         "PEMEX"         
##  [366,] "Bodega Aurrera" "Oxxo"           "Telcel"         "PEMEX"         
##  [367,] "Bodega Aurrera" "PEMEX"          "Banorte"        "Oxxo"          
##  [368,] "Bodega Aurrera" "PEMEX"          "Bimbo"          "Oxxo"          
##  [369,] "Bodega Aurrera" "PEMEX"          "CEMEX"          "Oxxo"          
##  [370,] "Bodega Aurrera" "PEMEX"          "Cinepolis"      "Oxxo"          
##  [371,] "Bodega Aurrera" "PEMEX"          "Corona"         "Oxxo"          
##  [372,] "Bodega Aurrera" "PEMEX"          "Lala"           "Oxxo"          
##  [373,] "Bodega Aurrera" "PEMEX"          "Oxxo"           "Telcel"        
##  [374,] "Bodega Aurrera" "PEMEX"          "Oxxo"           "Telcel"        
##  [375,] "Bodega Aurrera" "PEMEX"          "Oxxo"           "Telcel"        
##  [376,] "Bodega Aurrera" "PEMEX"          "Oxxo"           "Telcel"        
##  [377,] "Bodega Aurrera" "PEMEX"          "Oxxo"           "Telcel"        
##  [378,] "Bodega Aurrera" "PEMEX"          "Oxxo"           "Telcel"        
##  [379,] "CEMEX"          "Banorte"        "Bimbo"          "Oxxo"          
##  [380,] "CEMEX"          "Banorte"        "Bodega Aurrera" "Oxxo"          
##  [381,] "CEMEX"          "Banorte"        "Cinepolis"      "Oxxo"          
##  [382,] "CEMEX"          "Banorte"        "Corona"         "Oxxo"          
##  [383,] "CEMEX"          "Banorte"        "Lala"           "Oxxo"          
##  [384,] "CEMEX"          "Banorte"        "Oxxo"           "Telcel"        
##  [385,] "CEMEX"          "Banorte"        "Oxxo"           "Telcel"        
##  [386,] "CEMEX"          "Banorte"        "Oxxo"           "Telcel"        
##  [387,] "CEMEX"          "Banorte"        "Oxxo"           "Telcel"        
##  [388,] "CEMEX"          "Banorte"        "Oxxo"           "Telcel"        
##  [389,] "CEMEX"          "Banorte"        "Oxxo"           "Telcel"        
##  [390,] "CEMEX"          "Banorte"        "PEMEX"          "Oxxo"          
##  [391,] "CEMEX"          "Bimbo"          "Banorte"        "Oxxo"          
##  [392,] "CEMEX"          "Bimbo"          "Bodega Aurrera" "Oxxo"          
##  [393,] "CEMEX"          "Bimbo"          "Cinepolis"      "Oxxo"          
##  [394,] "CEMEX"          "Bimbo"          "Corona"         "Oxxo"          
##  [395,] "CEMEX"          "Bimbo"          "Lala"           "Oxxo"          
##  [396,] "CEMEX"          "Bimbo"          "Oxxo"           "Telcel"        
##  [397,] "CEMEX"          "Bimbo"          "Oxxo"           "Telcel"        
##  [398,] "CEMEX"          "Bimbo"          "Oxxo"           "Telcel"        
##  [399,] "CEMEX"          "Bimbo"          "Oxxo"           "Telcel"        
##  [400,] "CEMEX"          "Bimbo"          "Oxxo"           "Telcel"        
##  [401,] "CEMEX"          "Bimbo"          "Oxxo"           "Telcel"        
##  [402,] "CEMEX"          "Bimbo"          "PEMEX"          "Oxxo"          
##  [403,] "CEMEX"          "Bodega Aurrera" "Banorte"        "Oxxo"          
##  [404,] "CEMEX"          "Bodega Aurrera" "Bimbo"          "Oxxo"          
##  [405,] "CEMEX"          "Bodega Aurrera" "Cinepolis"      "Oxxo"          
##  [406,] "CEMEX"          "Bodega Aurrera" "Corona"         "Oxxo"          
##  [407,] "CEMEX"          "Bodega Aurrera" "Lala"           "Oxxo"          
##  [408,] "CEMEX"          "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [409,] "CEMEX"          "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [410,] "CEMEX"          "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [411,] "CEMEX"          "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [412,] "CEMEX"          "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [413,] "CEMEX"          "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [414,] "CEMEX"          "Bodega Aurrera" "PEMEX"          "Oxxo"          
##  [415,] "CEMEX"          "Cinepolis"      "Banorte"        "Oxxo"          
##  [416,] "CEMEX"          "Cinepolis"      "Bimbo"          "Oxxo"          
##  [417,] "CEMEX"          "Cinepolis"      "Bodega Aurrera" "Oxxo"          
##  [418,] "CEMEX"          "Cinepolis"      "Corona"         "Oxxo"          
##  [419,] "CEMEX"          "Cinepolis"      "Lala"           "Oxxo"          
##  [420,] "CEMEX"          "Cinepolis"      "Oxxo"           "Telcel"        
##  [421,] "CEMEX"          "Cinepolis"      "Oxxo"           "Telcel"        
##  [422,] "CEMEX"          "Cinepolis"      "Oxxo"           "Telcel"        
##  [423,] "CEMEX"          "Cinepolis"      "Oxxo"           "Telcel"        
##  [424,] "CEMEX"          "Cinepolis"      "Oxxo"           "Telcel"        
##  [425,] "CEMEX"          "Cinepolis"      "Oxxo"           "Telcel"        
##  [426,] "CEMEX"          "Cinepolis"      "PEMEX"          "Oxxo"          
##  [427,] "CEMEX"          "Corona"         "Banorte"        "Oxxo"          
##  [428,] "CEMEX"          "Corona"         "Bimbo"          "Oxxo"          
##  [429,] "CEMEX"          "Corona"         "Bodega Aurrera" "Oxxo"          
##  [430,] "CEMEX"          "Corona"         "Cinepolis"      "Oxxo"          
##  [431,] "CEMEX"          "Corona"         "Lala"           "Oxxo"          
##  [432,] "CEMEX"          "Corona"         "Oxxo"           "Telcel"        
##  [433,] "CEMEX"          "Corona"         "Oxxo"           "Telcel"        
##  [434,] "CEMEX"          "Corona"         "Oxxo"           "Telcel"        
##  [435,] "CEMEX"          "Corona"         "Oxxo"           "Telcel"        
##  [436,] "CEMEX"          "Corona"         "Oxxo"           "Telcel"        
##  [437,] "CEMEX"          "Corona"         "Oxxo"           "Telcel"        
##  [438,] "CEMEX"          "Corona"         "PEMEX"          "Oxxo"          
##  [439,] "CEMEX"          "Lala"           "Banorte"        "Oxxo"          
##  [440,] "CEMEX"          "Lala"           "Bimbo"          "Oxxo"          
##  [441,] "CEMEX"          "Lala"           "Bodega Aurrera" "Oxxo"          
##  [442,] "CEMEX"          "Lala"           "Cinepolis"      "Oxxo"          
##  [443,] "CEMEX"          "Lala"           "Corona"         "Oxxo"          
##  [444,] "CEMEX"          "Lala"           "Oxxo"           "Telcel"        
##  [445,] "CEMEX"          "Lala"           "Oxxo"           "Telcel"        
##  [446,] "CEMEX"          "Lala"           "Oxxo"           "Telcel"        
##  [447,] "CEMEX"          "Lala"           "Oxxo"           "Telcel"        
##  [448,] "CEMEX"          "Lala"           "Oxxo"           "Telcel"        
##  [449,] "CEMEX"          "Lala"           "Oxxo"           "Telcel"        
##  [450,] "CEMEX"          "Lala"           "PEMEX"          "Oxxo"          
##  [451,] "CEMEX"          "Oxxo"           "Telcel"         "Banorte"       
##  [452,] "CEMEX"          "Oxxo"           "Telcel"         "Banorte"       
##  [453,] "CEMEX"          "Oxxo"           "Telcel"         "Banorte"       
##  [454,] "CEMEX"          "Oxxo"           "Telcel"         "Banorte"       
##  [455,] "CEMEX"          "Oxxo"           "Telcel"         "Banorte"       
##  [456,] "CEMEX"          "Oxxo"           "Telcel"         "Banorte"       
##  [457,] "CEMEX"          "Oxxo"           "Telcel"         "Bimbo"         
##  [458,] "CEMEX"          "Oxxo"           "Telcel"         "Bimbo"         
##  [459,] "CEMEX"          "Oxxo"           "Telcel"         "Bimbo"         
##  [460,] "CEMEX"          "Oxxo"           "Telcel"         "Bimbo"         
##  [461,] "CEMEX"          "Oxxo"           "Telcel"         "Bimbo"         
##  [462,] "CEMEX"          "Oxxo"           "Telcel"         "Bimbo"         
##  [463,] "CEMEX"          "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [464,] "CEMEX"          "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [465,] "CEMEX"          "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [466,] "CEMEX"          "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [467,] "CEMEX"          "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [468,] "CEMEX"          "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [469,] "CEMEX"          "Oxxo"           "Telcel"         "Cinepolis"     
##  [470,] "CEMEX"          "Oxxo"           "Telcel"         "Cinepolis"     
##  [471,] "CEMEX"          "Oxxo"           "Telcel"         "Cinepolis"     
##  [472,] "CEMEX"          "Oxxo"           "Telcel"         "Cinepolis"     
##  [473,] "CEMEX"          "Oxxo"           "Telcel"         "Cinepolis"     
##  [474,] "CEMEX"          "Oxxo"           "Telcel"         "Cinepolis"     
##  [475,] "CEMEX"          "Oxxo"           "Telcel"         "Corona"        
##  [476,] "CEMEX"          "Oxxo"           "Telcel"         "Corona"        
##  [477,] "CEMEX"          "Oxxo"           "Telcel"         "Corona"        
##  [478,] "CEMEX"          "Oxxo"           "Telcel"         "Corona"        
##  [479,] "CEMEX"          "Oxxo"           "Telcel"         "Corona"        
##  [480,] "CEMEX"          "Oxxo"           "Telcel"         "Corona"        
##  [481,] "CEMEX"          "Oxxo"           "Telcel"         "Lala"          
##  [482,] "CEMEX"          "Oxxo"           "Telcel"         "Lala"          
##  [483,] "CEMEX"          "Oxxo"           "Telcel"         "Lala"          
##  [484,] "CEMEX"          "Oxxo"           "Telcel"         "Lala"          
##  [485,] "CEMEX"          "Oxxo"           "Telcel"         "Lala"          
##  [486,] "CEMEX"          "Oxxo"           "Telcel"         "Lala"          
##  [487,] "CEMEX"          "Oxxo"           "Telcel"         "PEMEX"         
##  [488,] "CEMEX"          "Oxxo"           "Telcel"         "PEMEX"         
##  [489,] "CEMEX"          "Oxxo"           "Telcel"         "PEMEX"         
##  [490,] "CEMEX"          "Oxxo"           "Telcel"         "PEMEX"         
##  [491,] "CEMEX"          "Oxxo"           "Telcel"         "PEMEX"         
##  [492,] "CEMEX"          "Oxxo"           "Telcel"         "PEMEX"         
##  [493,] "CEMEX"          "PEMEX"          "Banorte"        "Oxxo"          
##  [494,] "CEMEX"          "PEMEX"          "Bimbo"          "Oxxo"          
##  [495,] "CEMEX"          "PEMEX"          "Bodega Aurrera" "Oxxo"          
##  [496,] "CEMEX"          "PEMEX"          "Cinepolis"      "Oxxo"          
##  [497,] "CEMEX"          "PEMEX"          "Corona"         "Oxxo"          
##  [498,] "CEMEX"          "PEMEX"          "Lala"           "Oxxo"          
##  [499,] "CEMEX"          "PEMEX"          "Oxxo"           "Telcel"        
##  [500,] "CEMEX"          "PEMEX"          "Oxxo"           "Telcel"        
##  [501,] "CEMEX"          "PEMEX"          "Oxxo"           "Telcel"        
##  [502,] "CEMEX"          "PEMEX"          "Oxxo"           "Telcel"        
##  [503,] "CEMEX"          "PEMEX"          "Oxxo"           "Telcel"        
##  [504,] "CEMEX"          "PEMEX"          "Oxxo"           "Telcel"        
##  [505,] "Cinepolis"      "Banorte"        "Bimbo"          "Oxxo"          
##  [506,] "Cinepolis"      "Banorte"        "Bodega Aurrera" "Oxxo"          
##  [507,] "Cinepolis"      "Banorte"        "CEMEX"          "Oxxo"          
##  [508,] "Cinepolis"      "Banorte"        "Corona"         "Oxxo"          
##  [509,] "Cinepolis"      "Banorte"        "Lala"           "Oxxo"          
##  [510,] "Cinepolis"      "Banorte"        "Oxxo"           "Telcel"        
##  [511,] "Cinepolis"      "Banorte"        "Oxxo"           "Telcel"        
##  [512,] "Cinepolis"      "Banorte"        "Oxxo"           "Telcel"        
##  [513,] "Cinepolis"      "Banorte"        "Oxxo"           "Telcel"        
##  [514,] "Cinepolis"      "Banorte"        "Oxxo"           "Telcel"        
##  [515,] "Cinepolis"      "Banorte"        "Oxxo"           "Telcel"        
##  [516,] "Cinepolis"      "Banorte"        "PEMEX"          "Oxxo"          
##  [517,] "Cinepolis"      "Bimbo"          "Banorte"        "Oxxo"          
##  [518,] "Cinepolis"      "Bimbo"          "Bodega Aurrera" "Oxxo"          
##  [519,] "Cinepolis"      "Bimbo"          "CEMEX"          "Oxxo"          
##  [520,] "Cinepolis"      "Bimbo"          "Corona"         "Oxxo"          
##  [521,] "Cinepolis"      "Bimbo"          "Lala"           "Oxxo"          
##  [522,] "Cinepolis"      "Bimbo"          "Oxxo"           "Telcel"        
##  [523,] "Cinepolis"      "Bimbo"          "Oxxo"           "Telcel"        
##  [524,] "Cinepolis"      "Bimbo"          "Oxxo"           "Telcel"        
##  [525,] "Cinepolis"      "Bimbo"          "Oxxo"           "Telcel"        
##  [526,] "Cinepolis"      "Bimbo"          "Oxxo"           "Telcel"        
##  [527,] "Cinepolis"      "Bimbo"          "Oxxo"           "Telcel"        
##  [528,] "Cinepolis"      "Bimbo"          "PEMEX"          "Oxxo"          
##  [529,] "Cinepolis"      "Bodega Aurrera" "Banorte"        "Oxxo"          
##  [530,] "Cinepolis"      "Bodega Aurrera" "Bimbo"          "Oxxo"          
##  [531,] "Cinepolis"      "Bodega Aurrera" "CEMEX"          "Oxxo"          
##  [532,] "Cinepolis"      "Bodega Aurrera" "Corona"         "Oxxo"          
##  [533,] "Cinepolis"      "Bodega Aurrera" "Lala"           "Oxxo"          
##  [534,] "Cinepolis"      "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [535,] "Cinepolis"      "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [536,] "Cinepolis"      "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [537,] "Cinepolis"      "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [538,] "Cinepolis"      "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [539,] "Cinepolis"      "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [540,] "Cinepolis"      "Bodega Aurrera" "PEMEX"          "Oxxo"          
##  [541,] "Cinepolis"      "CEMEX"          "Banorte"        "Oxxo"          
##  [542,] "Cinepolis"      "CEMEX"          "Bimbo"          "Oxxo"          
##  [543,] "Cinepolis"      "CEMEX"          "Bodega Aurrera" "Oxxo"          
##  [544,] "Cinepolis"      "CEMEX"          "Corona"         "Oxxo"          
##  [545,] "Cinepolis"      "CEMEX"          "Lala"           "Oxxo"          
##  [546,] "Cinepolis"      "CEMEX"          "Oxxo"           "Telcel"        
##  [547,] "Cinepolis"      "CEMEX"          "Oxxo"           "Telcel"        
##  [548,] "Cinepolis"      "CEMEX"          "Oxxo"           "Telcel"        
##  [549,] "Cinepolis"      "CEMEX"          "Oxxo"           "Telcel"        
##  [550,] "Cinepolis"      "CEMEX"          "Oxxo"           "Telcel"        
##  [551,] "Cinepolis"      "CEMEX"          "Oxxo"           "Telcel"        
##  [552,] "Cinepolis"      "CEMEX"          "PEMEX"          "Oxxo"          
##  [553,] "Cinepolis"      "Corona"         "Banorte"        "Oxxo"          
##  [554,] "Cinepolis"      "Corona"         "Bimbo"          "Oxxo"          
##  [555,] "Cinepolis"      "Corona"         "Bodega Aurrera" "Oxxo"          
##  [556,] "Cinepolis"      "Corona"         "CEMEX"          "Oxxo"          
##  [557,] "Cinepolis"      "Corona"         "Lala"           "Oxxo"          
##  [558,] "Cinepolis"      "Corona"         "Oxxo"           "Telcel"        
##  [559,] "Cinepolis"      "Corona"         "Oxxo"           "Telcel"        
##  [560,] "Cinepolis"      "Corona"         "Oxxo"           "Telcel"        
##  [561,] "Cinepolis"      "Corona"         "Oxxo"           "Telcel"        
##  [562,] "Cinepolis"      "Corona"         "Oxxo"           "Telcel"        
##  [563,] "Cinepolis"      "Corona"         "Oxxo"           "Telcel"        
##  [564,] "Cinepolis"      "Corona"         "PEMEX"          "Oxxo"          
##  [565,] "Cinepolis"      "Lala"           "Banorte"        "Oxxo"          
##  [566,] "Cinepolis"      "Lala"           "Bimbo"          "Oxxo"          
##  [567,] "Cinepolis"      "Lala"           "Bodega Aurrera" "Oxxo"          
##  [568,] "Cinepolis"      "Lala"           "CEMEX"          "Oxxo"          
##  [569,] "Cinepolis"      "Lala"           "Corona"         "Oxxo"          
##  [570,] "Cinepolis"      "Lala"           "Oxxo"           "Telcel"        
##  [571,] "Cinepolis"      "Lala"           "Oxxo"           "Telcel"        
##  [572,] "Cinepolis"      "Lala"           "Oxxo"           "Telcel"        
##  [573,] "Cinepolis"      "Lala"           "Oxxo"           "Telcel"        
##  [574,] "Cinepolis"      "Lala"           "Oxxo"           "Telcel"        
##  [575,] "Cinepolis"      "Lala"           "Oxxo"           "Telcel"        
##  [576,] "Cinepolis"      "Lala"           "PEMEX"          "Oxxo"          
##  [577,] "Cinepolis"      "Oxxo"           "Telcel"         "Banorte"       
##  [578,] "Cinepolis"      "Oxxo"           "Telcel"         "Banorte"       
##  [579,] "Cinepolis"      "Oxxo"           "Telcel"         "Banorte"       
##  [580,] "Cinepolis"      "Oxxo"           "Telcel"         "Banorte"       
##  [581,] "Cinepolis"      "Oxxo"           "Telcel"         "Banorte"       
##  [582,] "Cinepolis"      "Oxxo"           "Telcel"         "Banorte"       
##  [583,] "Cinepolis"      "Oxxo"           "Telcel"         "Bimbo"         
##  [584,] "Cinepolis"      "Oxxo"           "Telcel"         "Bimbo"         
##  [585,] "Cinepolis"      "Oxxo"           "Telcel"         "Bimbo"         
##  [586,] "Cinepolis"      "Oxxo"           "Telcel"         "Bimbo"         
##  [587,] "Cinepolis"      "Oxxo"           "Telcel"         "Bimbo"         
##  [588,] "Cinepolis"      "Oxxo"           "Telcel"         "Bimbo"         
##  [589,] "Cinepolis"      "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [590,] "Cinepolis"      "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [591,] "Cinepolis"      "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [592,] "Cinepolis"      "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [593,] "Cinepolis"      "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [594,] "Cinepolis"      "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [595,] "Cinepolis"      "Oxxo"           "Telcel"         "CEMEX"         
##  [596,] "Cinepolis"      "Oxxo"           "Telcel"         "CEMEX"         
##  [597,] "Cinepolis"      "Oxxo"           "Telcel"         "CEMEX"         
##  [598,] "Cinepolis"      "Oxxo"           "Telcel"         "CEMEX"         
##  [599,] "Cinepolis"      "Oxxo"           "Telcel"         "CEMEX"         
##  [600,] "Cinepolis"      "Oxxo"           "Telcel"         "CEMEX"         
##  [601,] "Cinepolis"      "Oxxo"           "Telcel"         "Corona"        
##  [602,] "Cinepolis"      "Oxxo"           "Telcel"         "Corona"        
##  [603,] "Cinepolis"      "Oxxo"           "Telcel"         "Corona"        
##  [604,] "Cinepolis"      "Oxxo"           "Telcel"         "Corona"        
##  [605,] "Cinepolis"      "Oxxo"           "Telcel"         "Corona"        
##  [606,] "Cinepolis"      "Oxxo"           "Telcel"         "Corona"        
##  [607,] "Cinepolis"      "Oxxo"           "Telcel"         "Lala"          
##  [608,] "Cinepolis"      "Oxxo"           "Telcel"         "Lala"          
##  [609,] "Cinepolis"      "Oxxo"           "Telcel"         "Lala"          
##  [610,] "Cinepolis"      "Oxxo"           "Telcel"         "Lala"          
##  [611,] "Cinepolis"      "Oxxo"           "Telcel"         "Lala"          
##  [612,] "Cinepolis"      "Oxxo"           "Telcel"         "Lala"          
##  [613,] "Cinepolis"      "Oxxo"           "Telcel"         "PEMEX"         
##  [614,] "Cinepolis"      "Oxxo"           "Telcel"         "PEMEX"         
##  [615,] "Cinepolis"      "Oxxo"           "Telcel"         "PEMEX"         
##  [616,] "Cinepolis"      "Oxxo"           "Telcel"         "PEMEX"         
##  [617,] "Cinepolis"      "Oxxo"           "Telcel"         "PEMEX"         
##  [618,] "Cinepolis"      "Oxxo"           "Telcel"         "PEMEX"         
##  [619,] "Cinepolis"      "PEMEX"          "Banorte"        "Oxxo"          
##  [620,] "Cinepolis"      "PEMEX"          "Bimbo"          "Oxxo"          
##  [621,] "Cinepolis"      "PEMEX"          "Bodega Aurrera" "Oxxo"          
##  [622,] "Cinepolis"      "PEMEX"          "CEMEX"          "Oxxo"          
##  [623,] "Cinepolis"      "PEMEX"          "Corona"         "Oxxo"          
##  [624,] "Cinepolis"      "PEMEX"          "Lala"           "Oxxo"          
##  [625,] "Cinepolis"      "PEMEX"          "Oxxo"           "Telcel"        
##  [626,] "Cinepolis"      "PEMEX"          "Oxxo"           "Telcel"        
##  [627,] "Cinepolis"      "PEMEX"          "Oxxo"           "Telcel"        
##  [628,] "Cinepolis"      "PEMEX"          "Oxxo"           "Telcel"        
##  [629,] "Cinepolis"      "PEMEX"          "Oxxo"           "Telcel"        
##  [630,] "Cinepolis"      "PEMEX"          "Oxxo"           "Telcel"        
##  [631,] "Corona"         "Banorte"        "Bimbo"          "Oxxo"          
##  [632,] "Corona"         "Banorte"        "Bodega Aurrera" "Oxxo"          
##  [633,] "Corona"         "Banorte"        "CEMEX"          "Oxxo"          
##  [634,] "Corona"         "Banorte"        "Cinepolis"      "Oxxo"          
##  [635,] "Corona"         "Banorte"        "Lala"           "Oxxo"          
##  [636,] "Corona"         "Banorte"        "Oxxo"           "Telcel"        
##  [637,] "Corona"         "Banorte"        "Oxxo"           "Telcel"        
##  [638,] "Corona"         "Banorte"        "Oxxo"           "Telcel"        
##  [639,] "Corona"         "Banorte"        "Oxxo"           "Telcel"        
##  [640,] "Corona"         "Banorte"        "Oxxo"           "Telcel"        
##  [641,] "Corona"         "Banorte"        "Oxxo"           "Telcel"        
##  [642,] "Corona"         "Banorte"        "PEMEX"          "Oxxo"          
##  [643,] "Corona"         "Bimbo"          "Banorte"        "Oxxo"          
##  [644,] "Corona"         "Bimbo"          "Bodega Aurrera" "Oxxo"          
##  [645,] "Corona"         "Bimbo"          "CEMEX"          "Oxxo"          
##  [646,] "Corona"         "Bimbo"          "Cinepolis"      "Oxxo"          
##  [647,] "Corona"         "Bimbo"          "Lala"           "Oxxo"          
##  [648,] "Corona"         "Bimbo"          "Oxxo"           "Telcel"        
##  [649,] "Corona"         "Bimbo"          "Oxxo"           "Telcel"        
##  [650,] "Corona"         "Bimbo"          "Oxxo"           "Telcel"        
##  [651,] "Corona"         "Bimbo"          "Oxxo"           "Telcel"        
##  [652,] "Corona"         "Bimbo"          "Oxxo"           "Telcel"        
##  [653,] "Corona"         "Bimbo"          "Oxxo"           "Telcel"        
##  [654,] "Corona"         "Bimbo"          "PEMEX"          "Oxxo"          
##  [655,] "Corona"         "Bodega Aurrera" "Banorte"        "Oxxo"          
##  [656,] "Corona"         "Bodega Aurrera" "Bimbo"          "Oxxo"          
##  [657,] "Corona"         "Bodega Aurrera" "CEMEX"          "Oxxo"          
##  [658,] "Corona"         "Bodega Aurrera" "Cinepolis"      "Oxxo"          
##  [659,] "Corona"         "Bodega Aurrera" "Lala"           "Oxxo"          
##  [660,] "Corona"         "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [661,] "Corona"         "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [662,] "Corona"         "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [663,] "Corona"         "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [664,] "Corona"         "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [665,] "Corona"         "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [666,] "Corona"         "Bodega Aurrera" "PEMEX"          "Oxxo"          
##  [667,] "Corona"         "CEMEX"          "Banorte"        "Oxxo"          
##  [668,] "Corona"         "CEMEX"          "Bimbo"          "Oxxo"          
##  [669,] "Corona"         "CEMEX"          "Bodega Aurrera" "Oxxo"          
##  [670,] "Corona"         "CEMEX"          "Cinepolis"      "Oxxo"          
##  [671,] "Corona"         "CEMEX"          "Lala"           "Oxxo"          
##  [672,] "Corona"         "CEMEX"          "Oxxo"           "Telcel"        
##  [673,] "Corona"         "CEMEX"          "Oxxo"           "Telcel"        
##  [674,] "Corona"         "CEMEX"          "Oxxo"           "Telcel"        
##  [675,] "Corona"         "CEMEX"          "Oxxo"           "Telcel"        
##  [676,] "Corona"         "CEMEX"          "Oxxo"           "Telcel"        
##  [677,] "Corona"         "CEMEX"          "Oxxo"           "Telcel"        
##  [678,] "Corona"         "CEMEX"          "PEMEX"          "Oxxo"          
##  [679,] "Corona"         "Cinepolis"      "Banorte"        "Oxxo"          
##  [680,] "Corona"         "Cinepolis"      "Bimbo"          "Oxxo"          
##  [681,] "Corona"         "Cinepolis"      "Bodega Aurrera" "Oxxo"          
##  [682,] "Corona"         "Cinepolis"      "CEMEX"          "Oxxo"          
##  [683,] "Corona"         "Cinepolis"      "Lala"           "Oxxo"          
##  [684,] "Corona"         "Cinepolis"      "Oxxo"           "Telcel"        
##  [685,] "Corona"         "Cinepolis"      "Oxxo"           "Telcel"        
##  [686,] "Corona"         "Cinepolis"      "Oxxo"           "Telcel"        
##  [687,] "Corona"         "Cinepolis"      "Oxxo"           "Telcel"        
##  [688,] "Corona"         "Cinepolis"      "Oxxo"           "Telcel"        
##  [689,] "Corona"         "Cinepolis"      "Oxxo"           "Telcel"        
##  [690,] "Corona"         "Cinepolis"      "PEMEX"          "Oxxo"          
##  [691,] "Corona"         "Lala"           "Banorte"        "Oxxo"          
##  [692,] "Corona"         "Lala"           "Bimbo"          "Oxxo"          
##  [693,] "Corona"         "Lala"           "Bodega Aurrera" "Oxxo"          
##  [694,] "Corona"         "Lala"           "CEMEX"          "Oxxo"          
##  [695,] "Corona"         "Lala"           "Cinepolis"      "Oxxo"          
##  [696,] "Corona"         "Lala"           "Oxxo"           "Telcel"        
##  [697,] "Corona"         "Lala"           "Oxxo"           "Telcel"        
##  [698,] "Corona"         "Lala"           "Oxxo"           "Telcel"        
##  [699,] "Corona"         "Lala"           "Oxxo"           "Telcel"        
##  [700,] "Corona"         "Lala"           "Oxxo"           "Telcel"        
##  [701,] "Corona"         "Lala"           "Oxxo"           "Telcel"        
##  [702,] "Corona"         "Lala"           "PEMEX"          "Oxxo"          
##  [703,] "Corona"         "Oxxo"           "Telcel"         "Banorte"       
##  [704,] "Corona"         "Oxxo"           "Telcel"         "Banorte"       
##  [705,] "Corona"         "Oxxo"           "Telcel"         "Banorte"       
##  [706,] "Corona"         "Oxxo"           "Telcel"         "Banorte"       
##  [707,] "Corona"         "Oxxo"           "Telcel"         "Banorte"       
##  [708,] "Corona"         "Oxxo"           "Telcel"         "Banorte"       
##  [709,] "Corona"         "Oxxo"           "Telcel"         "Bimbo"         
##  [710,] "Corona"         "Oxxo"           "Telcel"         "Bimbo"         
##  [711,] "Corona"         "Oxxo"           "Telcel"         "Bimbo"         
##  [712,] "Corona"         "Oxxo"           "Telcel"         "Bimbo"         
##  [713,] "Corona"         "Oxxo"           "Telcel"         "Bimbo"         
##  [714,] "Corona"         "Oxxo"           "Telcel"         "Bimbo"         
##  [715,] "Corona"         "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [716,] "Corona"         "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [717,] "Corona"         "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [718,] "Corona"         "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [719,] "Corona"         "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [720,] "Corona"         "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [721,] "Corona"         "Oxxo"           "Telcel"         "CEMEX"         
##  [722,] "Corona"         "Oxxo"           "Telcel"         "CEMEX"         
##  [723,] "Corona"         "Oxxo"           "Telcel"         "CEMEX"         
##  [724,] "Corona"         "Oxxo"           "Telcel"         "CEMEX"         
##  [725,] "Corona"         "Oxxo"           "Telcel"         "CEMEX"         
##  [726,] "Corona"         "Oxxo"           "Telcel"         "CEMEX"         
##  [727,] "Corona"         "Oxxo"           "Telcel"         "Cinepolis"     
##  [728,] "Corona"         "Oxxo"           "Telcel"         "Cinepolis"     
##  [729,] "Corona"         "Oxxo"           "Telcel"         "Cinepolis"     
##  [730,] "Corona"         "Oxxo"           "Telcel"         "Cinepolis"     
##  [731,] "Corona"         "Oxxo"           "Telcel"         "Cinepolis"     
##  [732,] "Corona"         "Oxxo"           "Telcel"         "Cinepolis"     
##  [733,] "Corona"         "Oxxo"           "Telcel"         "Lala"          
##  [734,] "Corona"         "Oxxo"           "Telcel"         "Lala"          
##  [735,] "Corona"         "Oxxo"           "Telcel"         "Lala"          
##  [736,] "Corona"         "Oxxo"           "Telcel"         "Lala"          
##  [737,] "Corona"         "Oxxo"           "Telcel"         "Lala"          
##  [738,] "Corona"         "Oxxo"           "Telcel"         "Lala"          
##  [739,] "Corona"         "Oxxo"           "Telcel"         "PEMEX"         
##  [740,] "Corona"         "Oxxo"           "Telcel"         "PEMEX"         
##  [741,] "Corona"         "Oxxo"           "Telcel"         "PEMEX"         
##  [742,] "Corona"         "Oxxo"           "Telcel"         "PEMEX"         
##  [743,] "Corona"         "Oxxo"           "Telcel"         "PEMEX"         
##  [744,] "Corona"         "Oxxo"           "Telcel"         "PEMEX"         
##  [745,] "Corona"         "PEMEX"          "Banorte"        "Oxxo"          
##  [746,] "Corona"         "PEMEX"          "Bimbo"          "Oxxo"          
##  [747,] "Corona"         "PEMEX"          "Bodega Aurrera" "Oxxo"          
##  [748,] "Corona"         "PEMEX"          "CEMEX"          "Oxxo"          
##  [749,] "Corona"         "PEMEX"          "Cinepolis"      "Oxxo"          
##  [750,] "Corona"         "PEMEX"          "Lala"           "Oxxo"          
##  [751,] "Corona"         "PEMEX"          "Oxxo"           "Telcel"        
##  [752,] "Corona"         "PEMEX"          "Oxxo"           "Telcel"        
##  [753,] "Corona"         "PEMEX"          "Oxxo"           "Telcel"        
##  [754,] "Corona"         "PEMEX"          "Oxxo"           "Telcel"        
##  [755,] "Corona"         "PEMEX"          "Oxxo"           "Telcel"        
##  [756,] "Corona"         "PEMEX"          "Oxxo"           "Telcel"        
##  [757,] "Lala"           "Banorte"        "Bimbo"          "Oxxo"          
##  [758,] "Lala"           "Banorte"        "Bodega Aurrera" "Oxxo"          
##  [759,] "Lala"           "Banorte"        "CEMEX"          "Oxxo"          
##  [760,] "Lala"           "Banorte"        "Cinepolis"      "Oxxo"          
##  [761,] "Lala"           "Banorte"        "Corona"         "Oxxo"          
##  [762,] "Lala"           "Banorte"        "Oxxo"           "Telcel"        
##  [763,] "Lala"           "Banorte"        "Oxxo"           "Telcel"        
##  [764,] "Lala"           "Banorte"        "Oxxo"           "Telcel"        
##  [765,] "Lala"           "Banorte"        "Oxxo"           "Telcel"        
##  [766,] "Lala"           "Banorte"        "Oxxo"           "Telcel"        
##  [767,] "Lala"           "Banorte"        "Oxxo"           "Telcel"        
##  [768,] "Lala"           "Banorte"        "PEMEX"          "Oxxo"          
##  [769,] "Lala"           "Bimbo"          "Banorte"        "Oxxo"          
##  [770,] "Lala"           "Bimbo"          "Bodega Aurrera" "Oxxo"          
##  [771,] "Lala"           "Bimbo"          "CEMEX"          "Oxxo"          
##  [772,] "Lala"           "Bimbo"          "Cinepolis"      "Oxxo"          
##  [773,] "Lala"           "Bimbo"          "Corona"         "Oxxo"          
##  [774,] "Lala"           "Bimbo"          "Oxxo"           "Telcel"        
##  [775,] "Lala"           "Bimbo"          "Oxxo"           "Telcel"        
##  [776,] "Lala"           "Bimbo"          "Oxxo"           "Telcel"        
##  [777,] "Lala"           "Bimbo"          "Oxxo"           "Telcel"        
##  [778,] "Lala"           "Bimbo"          "Oxxo"           "Telcel"        
##  [779,] "Lala"           "Bimbo"          "Oxxo"           "Telcel"        
##  [780,] "Lala"           "Bimbo"          "PEMEX"          "Oxxo"          
##  [781,] "Lala"           "Bodega Aurrera" "Banorte"        "Oxxo"          
##  [782,] "Lala"           "Bodega Aurrera" "Bimbo"          "Oxxo"          
##  [783,] "Lala"           "Bodega Aurrera" "CEMEX"          "Oxxo"          
##  [784,] "Lala"           "Bodega Aurrera" "Cinepolis"      "Oxxo"          
##  [785,] "Lala"           "Bodega Aurrera" "Corona"         "Oxxo"          
##  [786,] "Lala"           "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [787,] "Lala"           "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [788,] "Lala"           "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [789,] "Lala"           "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [790,] "Lala"           "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [791,] "Lala"           "Bodega Aurrera" "Oxxo"           "Telcel"        
##  [792,] "Lala"           "Bodega Aurrera" "PEMEX"          "Oxxo"          
##  [793,] "Lala"           "CEMEX"          "Banorte"        "Oxxo"          
##  [794,] "Lala"           "CEMEX"          "Bimbo"          "Oxxo"          
##  [795,] "Lala"           "CEMEX"          "Bodega Aurrera" "Oxxo"          
##  [796,] "Lala"           "CEMEX"          "Cinepolis"      "Oxxo"          
##  [797,] "Lala"           "CEMEX"          "Corona"         "Oxxo"          
##  [798,] "Lala"           "CEMEX"          "Oxxo"           "Telcel"        
##  [799,] "Lala"           "CEMEX"          "Oxxo"           "Telcel"        
##  [800,] "Lala"           "CEMEX"          "Oxxo"           "Telcel"        
##  [801,] "Lala"           "CEMEX"          "Oxxo"           "Telcel"        
##  [802,] "Lala"           "CEMEX"          "Oxxo"           "Telcel"        
##  [803,] "Lala"           "CEMEX"          "Oxxo"           "Telcel"        
##  [804,] "Lala"           "CEMEX"          "PEMEX"          "Oxxo"          
##  [805,] "Lala"           "Cinepolis"      "Banorte"        "Oxxo"          
##  [806,] "Lala"           "Cinepolis"      "Bimbo"          "Oxxo"          
##  [807,] "Lala"           "Cinepolis"      "Bodega Aurrera" "Oxxo"          
##  [808,] "Lala"           "Cinepolis"      "CEMEX"          "Oxxo"          
##  [809,] "Lala"           "Cinepolis"      "Corona"         "Oxxo"          
##  [810,] "Lala"           "Cinepolis"      "Oxxo"           "Telcel"        
##  [811,] "Lala"           "Cinepolis"      "Oxxo"           "Telcel"        
##  [812,] "Lala"           "Cinepolis"      "Oxxo"           "Telcel"        
##  [813,] "Lala"           "Cinepolis"      "Oxxo"           "Telcel"        
##  [814,] "Lala"           "Cinepolis"      "Oxxo"           "Telcel"        
##  [815,] "Lala"           "Cinepolis"      "Oxxo"           "Telcel"        
##  [816,] "Lala"           "Cinepolis"      "PEMEX"          "Oxxo"          
##  [817,] "Lala"           "Corona"         "Banorte"        "Oxxo"          
##  [818,] "Lala"           "Corona"         "Bimbo"          "Oxxo"          
##  [819,] "Lala"           "Corona"         "Bodega Aurrera" "Oxxo"          
##  [820,] "Lala"           "Corona"         "CEMEX"          "Oxxo"          
##  [821,] "Lala"           "Corona"         "Cinepolis"      "Oxxo"          
##  [822,] "Lala"           "Corona"         "Oxxo"           "Telcel"        
##  [823,] "Lala"           "Corona"         "Oxxo"           "Telcel"        
##  [824,] "Lala"           "Corona"         "Oxxo"           "Telcel"        
##  [825,] "Lala"           "Corona"         "Oxxo"           "Telcel"        
##  [826,] "Lala"           "Corona"         "Oxxo"           "Telcel"        
##  [827,] "Lala"           "Corona"         "Oxxo"           "Telcel"        
##  [828,] "Lala"           "Corona"         "PEMEX"          "Oxxo"          
##  [829,] "Lala"           "Oxxo"           "Telcel"         "Banorte"       
##  [830,] "Lala"           "Oxxo"           "Telcel"         "Banorte"       
##  [831,] "Lala"           "Oxxo"           "Telcel"         "Banorte"       
##  [832,] "Lala"           "Oxxo"           "Telcel"         "Banorte"       
##  [833,] "Lala"           "Oxxo"           "Telcel"         "Banorte"       
##  [834,] "Lala"           "Oxxo"           "Telcel"         "Banorte"       
##  [835,] "Lala"           "Oxxo"           "Telcel"         "Bimbo"         
##  [836,] "Lala"           "Oxxo"           "Telcel"         "Bimbo"         
##  [837,] "Lala"           "Oxxo"           "Telcel"         "Bimbo"         
##  [838,] "Lala"           "Oxxo"           "Telcel"         "Bimbo"         
##  [839,] "Lala"           "Oxxo"           "Telcel"         "Bimbo"         
##  [840,] "Lala"           "Oxxo"           "Telcel"         "Bimbo"         
##  [841,] "Lala"           "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [842,] "Lala"           "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [843,] "Lala"           "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [844,] "Lala"           "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [845,] "Lala"           "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [846,] "Lala"           "Oxxo"           "Telcel"         "Bodega Aurrera"
##  [847,] "Lala"           "Oxxo"           "Telcel"         "CEMEX"         
##  [848,] "Lala"           "Oxxo"           "Telcel"         "CEMEX"         
##  [849,] "Lala"           "Oxxo"           "Telcel"         "CEMEX"         
##  [850,] "Lala"           "Oxxo"           "Telcel"         "CEMEX"         
##  [851,] "Lala"           "Oxxo"           "Telcel"         "CEMEX"         
##  [852,] "Lala"           "Oxxo"           "Telcel"         "CEMEX"         
##  [853,] "Lala"           "Oxxo"           "Telcel"         "Cinepolis"     
##  [854,] "Lala"           "Oxxo"           "Telcel"         "Cinepolis"     
##  [855,] "Lala"           "Oxxo"           "Telcel"         "Cinepolis"     
##  [856,] "Lala"           "Oxxo"           "Telcel"         "Cinepolis"     
##  [857,] "Lala"           "Oxxo"           "Telcel"         "Cinepolis"     
##  [858,] "Lala"           "Oxxo"           "Telcel"         "Cinepolis"     
##  [859,] "Lala"           "Oxxo"           "Telcel"         "Corona"        
##  [860,] "Lala"           "Oxxo"           "Telcel"         "Corona"        
##  [861,] "Lala"           "Oxxo"           "Telcel"         "Corona"        
##  [862,] "Lala"           "Oxxo"           "Telcel"         "Corona"        
##  [863,] "Lala"           "Oxxo"           "Telcel"         "Corona"        
##  [864,] "Lala"           "Oxxo"           "Telcel"         "Corona"        
##  [865,] "Lala"           "Oxxo"           "Telcel"         "PEMEX"         
##  [866,] "Lala"           "Oxxo"           "Telcel"         "PEMEX"         
##  [867,] "Lala"           "Oxxo"           "Telcel"         "PEMEX"         
##  [868,] "Lala"           "Oxxo"           "Telcel"         "PEMEX"         
##  [869,] "Lala"           "Oxxo"           "Telcel"         "PEMEX"         
##  [870,] "Lala"           "Oxxo"           "Telcel"         "PEMEX"         
##  [871,] "Lala"           "PEMEX"          "Banorte"        "Oxxo"          
##  [872,] "Lala"           "PEMEX"          "Bimbo"          "Oxxo"          
##  [873,] "Lala"           "PEMEX"          "Bodega Aurrera" "Oxxo"          
##  [874,] "Lala"           "PEMEX"          "CEMEX"          "Oxxo"          
##  [875,] "Lala"           "PEMEX"          "Cinepolis"      "Oxxo"          
##  [876,] "Lala"           "PEMEX"          "Corona"         "Oxxo"          
##  [877,] "Lala"           "PEMEX"          "Oxxo"           "Telcel"        
##  [878,] "Lala"           "PEMEX"          "Oxxo"           "Telcel"        
##  [879,] "Lala"           "PEMEX"          "Oxxo"           "Telcel"        
##  [880,] "Lala"           "PEMEX"          "Oxxo"           "Telcel"        
##  [881,] "Lala"           "PEMEX"          "Oxxo"           "Telcel"        
##  [882,] "Lala"           "PEMEX"          "Oxxo"           "Telcel"        
##  [883,] "Oxxo"           "Telcel"         "Banorte"        "Bimbo"         
##  [884,] "Oxxo"           "Telcel"         "Banorte"        "Bimbo"         
##  [885,] "Oxxo"           "Telcel"         "Banorte"        "Bimbo"         
##  [886,] "Oxxo"           "Telcel"         "Banorte"        "Bimbo"         
##  [887,] "Oxxo"           "Telcel"         "Banorte"        "Bimbo"         
##  [888,] "Oxxo"           "Telcel"         "Banorte"        "Bimbo"         
##  [889,] "Oxxo"           "Telcel"         "Banorte"        "Bodega Aurrera"
##  [890,] "Oxxo"           "Telcel"         "Banorte"        "Bodega Aurrera"
##  [891,] "Oxxo"           "Telcel"         "Banorte"        "Bodega Aurrera"
##  [892,] "Oxxo"           "Telcel"         "Banorte"        "Bodega Aurrera"
##  [893,] "Oxxo"           "Telcel"         "Banorte"        "Bodega Aurrera"
##  [894,] "Oxxo"           "Telcel"         "Banorte"        "Bodega Aurrera"
##  [895,] "Oxxo"           "Telcel"         "Banorte"        "CEMEX"         
##  [896,] "Oxxo"           "Telcel"         "Banorte"        "CEMEX"         
##  [897,] "Oxxo"           "Telcel"         "Banorte"        "CEMEX"         
##  [898,] "Oxxo"           "Telcel"         "Banorte"        "CEMEX"         
##  [899,] "Oxxo"           "Telcel"         "Banorte"        "CEMEX"         
##  [900,] "Oxxo"           "Telcel"         "Banorte"        "CEMEX"         
##  [901,] "Oxxo"           "Telcel"         "Banorte"        "Cinepolis"     
##  [902,] "Oxxo"           "Telcel"         "Banorte"        "Cinepolis"     
##  [903,] "Oxxo"           "Telcel"         "Banorte"        "Cinepolis"     
##  [904,] "Oxxo"           "Telcel"         "Banorte"        "Cinepolis"     
##  [905,] "Oxxo"           "Telcel"         "Banorte"        "Cinepolis"     
##  [906,] "Oxxo"           "Telcel"         "Banorte"        "Cinepolis"     
##  [907,] "Oxxo"           "Telcel"         "Banorte"        "Corona"        
##  [908,] "Oxxo"           "Telcel"         "Banorte"        "Corona"        
##  [909,] "Oxxo"           "Telcel"         "Banorte"        "Corona"        
##  [910,] "Oxxo"           "Telcel"         "Banorte"        "Corona"        
##  [911,] "Oxxo"           "Telcel"         "Banorte"        "Corona"        
##  [912,] "Oxxo"           "Telcel"         "Banorte"        "Corona"        
##  [913,] "Oxxo"           "Telcel"         "Banorte"        "Lala"          
##  [914,] "Oxxo"           "Telcel"         "Banorte"        "Lala"          
##  [915,] "Oxxo"           "Telcel"         "Banorte"        "Lala"          
##  [916,] "Oxxo"           "Telcel"         "Banorte"        "Lala"          
##  [917,] "Oxxo"           "Telcel"         "Banorte"        "Lala"          
##  [918,] "Oxxo"           "Telcel"         "Banorte"        "Lala"          
##  [919,] "Oxxo"           "Telcel"         "Banorte"        "PEMEX"         
##  [920,] "Oxxo"           "Telcel"         "Banorte"        "PEMEX"         
##  [921,] "Oxxo"           "Telcel"         "Banorte"        "PEMEX"         
##  [922,] "Oxxo"           "Telcel"         "Banorte"        "PEMEX"         
##  [923,] "Oxxo"           "Telcel"         "Banorte"        "PEMEX"         
##  [924,] "Oxxo"           "Telcel"         "Banorte"        "PEMEX"         
##  [925,] "Oxxo"           "Telcel"         "Bimbo"          "Banorte"       
##  [926,] "Oxxo"           "Telcel"         "Bimbo"          "Banorte"       
##  [927,] "Oxxo"           "Telcel"         "Bimbo"          "Banorte"       
##  [928,] "Oxxo"           "Telcel"         "Bimbo"          "Banorte"       
##  [929,] "Oxxo"           "Telcel"         "Bimbo"          "Banorte"       
##  [930,] "Oxxo"           "Telcel"         "Bimbo"          "Banorte"       
##  [931,] "Oxxo"           "Telcel"         "Bimbo"          "Bodega Aurrera"
##  [932,] "Oxxo"           "Telcel"         "Bimbo"          "Bodega Aurrera"
##  [933,] "Oxxo"           "Telcel"         "Bimbo"          "Bodega Aurrera"
##  [934,] "Oxxo"           "Telcel"         "Bimbo"          "Bodega Aurrera"
##  [935,] "Oxxo"           "Telcel"         "Bimbo"          "Bodega Aurrera"
##  [936,] "Oxxo"           "Telcel"         "Bimbo"          "Bodega Aurrera"
##  [937,] "Oxxo"           "Telcel"         "Bimbo"          "CEMEX"         
##  [938,] "Oxxo"           "Telcel"         "Bimbo"          "CEMEX"         
##  [939,] "Oxxo"           "Telcel"         "Bimbo"          "CEMEX"         
##  [940,] "Oxxo"           "Telcel"         "Bimbo"          "CEMEX"         
##  [941,] "Oxxo"           "Telcel"         "Bimbo"          "CEMEX"         
##  [942,] "Oxxo"           "Telcel"         "Bimbo"          "CEMEX"         
##  [943,] "Oxxo"           "Telcel"         "Bimbo"          "Cinepolis"     
##  [944,] "Oxxo"           "Telcel"         "Bimbo"          "Cinepolis"     
##  [945,] "Oxxo"           "Telcel"         "Bimbo"          "Cinepolis"     
##  [946,] "Oxxo"           "Telcel"         "Bimbo"          "Cinepolis"     
##  [947,] "Oxxo"           "Telcel"         "Bimbo"          "Cinepolis"     
##  [948,] "Oxxo"           "Telcel"         "Bimbo"          "Cinepolis"     
##  [949,] "Oxxo"           "Telcel"         "Bimbo"          "Corona"        
##  [950,] "Oxxo"           "Telcel"         "Bimbo"          "Corona"        
##  [951,] "Oxxo"           "Telcel"         "Bimbo"          "Corona"        
##  [952,] "Oxxo"           "Telcel"         "Bimbo"          "Corona"        
##  [953,] "Oxxo"           "Telcel"         "Bimbo"          "Corona"        
##  [954,] "Oxxo"           "Telcel"         "Bimbo"          "Corona"        
##  [955,] "Oxxo"           "Telcel"         "Bimbo"          "Lala"          
##  [956,] "Oxxo"           "Telcel"         "Bimbo"          "Lala"          
##  [957,] "Oxxo"           "Telcel"         "Bimbo"          "Lala"          
##  [958,] "Oxxo"           "Telcel"         "Bimbo"          "Lala"          
##  [959,] "Oxxo"           "Telcel"         "Bimbo"          "Lala"          
##  [960,] "Oxxo"           "Telcel"         "Bimbo"          "Lala"          
##  [961,] "Oxxo"           "Telcel"         "Bimbo"          "PEMEX"         
##  [962,] "Oxxo"           "Telcel"         "Bimbo"          "PEMEX"         
##  [963,] "Oxxo"           "Telcel"         "Bimbo"          "PEMEX"         
##  [964,] "Oxxo"           "Telcel"         "Bimbo"          "PEMEX"         
##  [965,] "Oxxo"           "Telcel"         "Bimbo"          "PEMEX"         
##  [966,] "Oxxo"           "Telcel"         "Bimbo"          "PEMEX"         
##  [967,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Banorte"       
##  [968,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Banorte"       
##  [969,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Banorte"       
##  [970,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Banorte"       
##  [971,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Banorte"       
##  [972,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Banorte"       
##  [973,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Bimbo"         
##  [974,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Bimbo"         
##  [975,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Bimbo"         
##  [976,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Bimbo"         
##  [977,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Bimbo"         
##  [978,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Bimbo"         
##  [979,] "Oxxo"           "Telcel"         "Bodega Aurrera" "CEMEX"         
##  [980,] "Oxxo"           "Telcel"         "Bodega Aurrera" "CEMEX"         
##  [981,] "Oxxo"           "Telcel"         "Bodega Aurrera" "CEMEX"         
##  [982,] "Oxxo"           "Telcel"         "Bodega Aurrera" "CEMEX"         
##  [983,] "Oxxo"           "Telcel"         "Bodega Aurrera" "CEMEX"         
##  [984,] "Oxxo"           "Telcel"         "Bodega Aurrera" "CEMEX"         
##  [985,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Cinepolis"     
##  [986,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Cinepolis"     
##  [987,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Cinepolis"     
##  [988,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Cinepolis"     
##  [989,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Cinepolis"     
##  [990,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Cinepolis"     
##  [991,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Corona"        
##  [992,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Corona"        
##  [993,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Corona"        
##  [994,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Corona"        
##  [995,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Corona"        
##  [996,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Corona"        
##  [997,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Lala"          
##  [998,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Lala"          
##  [999,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Lala"          
## [1000,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Lala"          
## [1001,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Lala"          
## [1002,] "Oxxo"           "Telcel"         "Bodega Aurrera" "Lala"          
## [1003,] "Oxxo"           "Telcel"         "Bodega Aurrera" "PEMEX"         
## [1004,] "Oxxo"           "Telcel"         "Bodega Aurrera" "PEMEX"         
## [1005,] "Oxxo"           "Telcel"         "Bodega Aurrera" "PEMEX"         
## [1006,] "Oxxo"           "Telcel"         "Bodega Aurrera" "PEMEX"         
## [1007,] "Oxxo"           "Telcel"         "Bodega Aurrera" "PEMEX"         
## [1008,] "Oxxo"           "Telcel"         "Bodega Aurrera" "PEMEX"         
## [1009,] "Oxxo"           "Telcel"         "CEMEX"          "Banorte"       
## [1010,] "Oxxo"           "Telcel"         "CEMEX"          "Banorte"       
## [1011,] "Oxxo"           "Telcel"         "CEMEX"          "Banorte"       
## [1012,] "Oxxo"           "Telcel"         "CEMEX"          "Banorte"       
## [1013,] "Oxxo"           "Telcel"         "CEMEX"          "Banorte"       
## [1014,] "Oxxo"           "Telcel"         "CEMEX"          "Banorte"       
## [1015,] "Oxxo"           "Telcel"         "CEMEX"          "Bimbo"         
## [1016,] "Oxxo"           "Telcel"         "CEMEX"          "Bimbo"         
## [1017,] "Oxxo"           "Telcel"         "CEMEX"          "Bimbo"         
## [1018,] "Oxxo"           "Telcel"         "CEMEX"          "Bimbo"         
## [1019,] "Oxxo"           "Telcel"         "CEMEX"          "Bimbo"         
## [1020,] "Oxxo"           "Telcel"         "CEMEX"          "Bimbo"         
## [1021,] "Oxxo"           "Telcel"         "CEMEX"          "Bodega Aurrera"
## [1022,] "Oxxo"           "Telcel"         "CEMEX"          "Bodega Aurrera"
## [1023,] "Oxxo"           "Telcel"         "CEMEX"          "Bodega Aurrera"
## [1024,] "Oxxo"           "Telcel"         "CEMEX"          "Bodega Aurrera"
## [1025,] "Oxxo"           "Telcel"         "CEMEX"          "Bodega Aurrera"
## [1026,] "Oxxo"           "Telcel"         "CEMEX"          "Bodega Aurrera"
## [1027,] "Oxxo"           "Telcel"         "CEMEX"          "Cinepolis"     
## [1028,] "Oxxo"           "Telcel"         "CEMEX"          "Cinepolis"     
## [1029,] "Oxxo"           "Telcel"         "CEMEX"          "Cinepolis"     
## [1030,] "Oxxo"           "Telcel"         "CEMEX"          "Cinepolis"     
## [1031,] "Oxxo"           "Telcel"         "CEMEX"          "Cinepolis"     
## [1032,] "Oxxo"           "Telcel"         "CEMEX"          "Cinepolis"     
## [1033,] "Oxxo"           "Telcel"         "CEMEX"          "Corona"        
## [1034,] "Oxxo"           "Telcel"         "CEMEX"          "Corona"        
## [1035,] "Oxxo"           "Telcel"         "CEMEX"          "Corona"        
## [1036,] "Oxxo"           "Telcel"         "CEMEX"          "Corona"        
## [1037,] "Oxxo"           "Telcel"         "CEMEX"          "Corona"        
## [1038,] "Oxxo"           "Telcel"         "CEMEX"          "Corona"        
## [1039,] "Oxxo"           "Telcel"         "CEMEX"          "Lala"          
## [1040,] "Oxxo"           "Telcel"         "CEMEX"          "Lala"          
## [1041,] "Oxxo"           "Telcel"         "CEMEX"          "Lala"          
## [1042,] "Oxxo"           "Telcel"         "CEMEX"          "Lala"          
## [1043,] "Oxxo"           "Telcel"         "CEMEX"          "Lala"          
## [1044,] "Oxxo"           "Telcel"         "CEMEX"          "Lala"          
## [1045,] "Oxxo"           "Telcel"         "CEMEX"          "PEMEX"         
## [1046,] "Oxxo"           "Telcel"         "CEMEX"          "PEMEX"         
## [1047,] "Oxxo"           "Telcel"         "CEMEX"          "PEMEX"         
## [1048,] "Oxxo"           "Telcel"         "CEMEX"          "PEMEX"         
## [1049,] "Oxxo"           "Telcel"         "CEMEX"          "PEMEX"         
## [1050,] "Oxxo"           "Telcel"         "CEMEX"          "PEMEX"         
## [1051,] "Oxxo"           "Telcel"         "Cinepolis"      "Banorte"       
## [1052,] "Oxxo"           "Telcel"         "Cinepolis"      "Banorte"       
## [1053,] "Oxxo"           "Telcel"         "Cinepolis"      "Banorte"       
## [1054,] "Oxxo"           "Telcel"         "Cinepolis"      "Banorte"       
## [1055,] "Oxxo"           "Telcel"         "Cinepolis"      "Banorte"       
## [1056,] "Oxxo"           "Telcel"         "Cinepolis"      "Banorte"       
## [1057,] "Oxxo"           "Telcel"         "Cinepolis"      "Bimbo"         
## [1058,] "Oxxo"           "Telcel"         "Cinepolis"      "Bimbo"         
## [1059,] "Oxxo"           "Telcel"         "Cinepolis"      "Bimbo"         
## [1060,] "Oxxo"           "Telcel"         "Cinepolis"      "Bimbo"         
## [1061,] "Oxxo"           "Telcel"         "Cinepolis"      "Bimbo"         
## [1062,] "Oxxo"           "Telcel"         "Cinepolis"      "Bimbo"         
## [1063,] "Oxxo"           "Telcel"         "Cinepolis"      "Bodega Aurrera"
## [1064,] "Oxxo"           "Telcel"         "Cinepolis"      "Bodega Aurrera"
## [1065,] "Oxxo"           "Telcel"         "Cinepolis"      "Bodega Aurrera"
## [1066,] "Oxxo"           "Telcel"         "Cinepolis"      "Bodega Aurrera"
## [1067,] "Oxxo"           "Telcel"         "Cinepolis"      "Bodega Aurrera"
## [1068,] "Oxxo"           "Telcel"         "Cinepolis"      "Bodega Aurrera"
## [1069,] "Oxxo"           "Telcel"         "Cinepolis"      "CEMEX"         
## [1070,] "Oxxo"           "Telcel"         "Cinepolis"      "CEMEX"         
## [1071,] "Oxxo"           "Telcel"         "Cinepolis"      "CEMEX"         
## [1072,] "Oxxo"           "Telcel"         "Cinepolis"      "CEMEX"         
## [1073,] "Oxxo"           "Telcel"         "Cinepolis"      "CEMEX"         
## [1074,] "Oxxo"           "Telcel"         "Cinepolis"      "CEMEX"         
## [1075,] "Oxxo"           "Telcel"         "Cinepolis"      "Corona"        
## [1076,] "Oxxo"           "Telcel"         "Cinepolis"      "Corona"        
## [1077,] "Oxxo"           "Telcel"         "Cinepolis"      "Corona"        
## [1078,] "Oxxo"           "Telcel"         "Cinepolis"      "Corona"        
## [1079,] "Oxxo"           "Telcel"         "Cinepolis"      "Corona"        
## [1080,] "Oxxo"           "Telcel"         "Cinepolis"      "Corona"        
## [1081,] "Oxxo"           "Telcel"         "Cinepolis"      "Lala"          
## [1082,] "Oxxo"           "Telcel"         "Cinepolis"      "Lala"          
## [1083,] "Oxxo"           "Telcel"         "Cinepolis"      "Lala"          
## [1084,] "Oxxo"           "Telcel"         "Cinepolis"      "Lala"          
## [1085,] "Oxxo"           "Telcel"         "Cinepolis"      "Lala"          
## [1086,] "Oxxo"           "Telcel"         "Cinepolis"      "Lala"          
## [1087,] "Oxxo"           "Telcel"         "Cinepolis"      "PEMEX"         
## [1088,] "Oxxo"           "Telcel"         "Cinepolis"      "PEMEX"         
## [1089,] "Oxxo"           "Telcel"         "Cinepolis"      "PEMEX"         
## [1090,] "Oxxo"           "Telcel"         "Cinepolis"      "PEMEX"         
## [1091,] "Oxxo"           "Telcel"         "Cinepolis"      "PEMEX"         
## [1092,] "Oxxo"           "Telcel"         "Cinepolis"      "PEMEX"         
## [1093,] "Oxxo"           "Telcel"         "Corona"         "Banorte"       
## [1094,] "Oxxo"           "Telcel"         "Corona"         "Banorte"       
## [1095,] "Oxxo"           "Telcel"         "Corona"         "Banorte"       
## [1096,] "Oxxo"           "Telcel"         "Corona"         "Banorte"       
## [1097,] "Oxxo"           "Telcel"         "Corona"         "Banorte"       
## [1098,] "Oxxo"           "Telcel"         "Corona"         "Banorte"       
## [1099,] "Oxxo"           "Telcel"         "Corona"         "Bimbo"         
## [1100,] "Oxxo"           "Telcel"         "Corona"         "Bimbo"         
## [1101,] "Oxxo"           "Telcel"         "Corona"         "Bimbo"         
## [1102,] "Oxxo"           "Telcel"         "Corona"         "Bimbo"         
## [1103,] "Oxxo"           "Telcel"         "Corona"         "Bimbo"         
## [1104,] "Oxxo"           "Telcel"         "Corona"         "Bimbo"         
## [1105,] "Oxxo"           "Telcel"         "Corona"         "Bodega Aurrera"
## [1106,] "Oxxo"           "Telcel"         "Corona"         "Bodega Aurrera"
## [1107,] "Oxxo"           "Telcel"         "Corona"         "Bodega Aurrera"
## [1108,] "Oxxo"           "Telcel"         "Corona"         "Bodega Aurrera"
## [1109,] "Oxxo"           "Telcel"         "Corona"         "Bodega Aurrera"
## [1110,] "Oxxo"           "Telcel"         "Corona"         "Bodega Aurrera"
## [1111,] "Oxxo"           "Telcel"         "Corona"         "CEMEX"         
## [1112,] "Oxxo"           "Telcel"         "Corona"         "CEMEX"         
## [1113,] "Oxxo"           "Telcel"         "Corona"         "CEMEX"         
## [1114,] "Oxxo"           "Telcel"         "Corona"         "CEMEX"         
## [1115,] "Oxxo"           "Telcel"         "Corona"         "CEMEX"         
## [1116,] "Oxxo"           "Telcel"         "Corona"         "CEMEX"         
## [1117,] "Oxxo"           "Telcel"         "Corona"         "Cinepolis"     
## [1118,] "Oxxo"           "Telcel"         "Corona"         "Cinepolis"     
## [1119,] "Oxxo"           "Telcel"         "Corona"         "Cinepolis"     
## [1120,] "Oxxo"           "Telcel"         "Corona"         "Cinepolis"     
## [1121,] "Oxxo"           "Telcel"         "Corona"         "Cinepolis"     
## [1122,] "Oxxo"           "Telcel"         "Corona"         "Cinepolis"     
## [1123,] "Oxxo"           "Telcel"         "Corona"         "Lala"          
## [1124,] "Oxxo"           "Telcel"         "Corona"         "Lala"          
## [1125,] "Oxxo"           "Telcel"         "Corona"         "Lala"          
## [1126,] "Oxxo"           "Telcel"         "Corona"         "Lala"          
## [1127,] "Oxxo"           "Telcel"         "Corona"         "Lala"          
## [1128,] "Oxxo"           "Telcel"         "Corona"         "Lala"          
## [1129,] "Oxxo"           "Telcel"         "Corona"         "PEMEX"         
## [1130,] "Oxxo"           "Telcel"         "Corona"         "PEMEX"         
## [1131,] "Oxxo"           "Telcel"         "Corona"         "PEMEX"         
## [1132,] "Oxxo"           "Telcel"         "Corona"         "PEMEX"         
## [1133,] "Oxxo"           "Telcel"         "Corona"         "PEMEX"         
## [1134,] "Oxxo"           "Telcel"         "Corona"         "PEMEX"         
## [1135,] "Oxxo"           "Telcel"         "Lala"           "Banorte"       
## [1136,] "Oxxo"           "Telcel"         "Lala"           "Banorte"       
## [1137,] "Oxxo"           "Telcel"         "Lala"           "Banorte"       
## [1138,] "Oxxo"           "Telcel"         "Lala"           "Banorte"       
## [1139,] "Oxxo"           "Telcel"         "Lala"           "Banorte"       
## [1140,] "Oxxo"           "Telcel"         "Lala"           "Banorte"       
## [1141,] "Oxxo"           "Telcel"         "Lala"           "Bimbo"         
## [1142,] "Oxxo"           "Telcel"         "Lala"           "Bimbo"         
## [1143,] "Oxxo"           "Telcel"         "Lala"           "Bimbo"         
## [1144,] "Oxxo"           "Telcel"         "Lala"           "Bimbo"         
## [1145,] "Oxxo"           "Telcel"         "Lala"           "Bimbo"         
## [1146,] "Oxxo"           "Telcel"         "Lala"           "Bimbo"         
## [1147,] "Oxxo"           "Telcel"         "Lala"           "Bodega Aurrera"
## [1148,] "Oxxo"           "Telcel"         "Lala"           "Bodega Aurrera"
## [1149,] "Oxxo"           "Telcel"         "Lala"           "Bodega Aurrera"
## [1150,] "Oxxo"           "Telcel"         "Lala"           "Bodega Aurrera"
## [1151,] "Oxxo"           "Telcel"         "Lala"           "Bodega Aurrera"
## [1152,] "Oxxo"           "Telcel"         "Lala"           "Bodega Aurrera"
## [1153,] "Oxxo"           "Telcel"         "Lala"           "CEMEX"         
## [1154,] "Oxxo"           "Telcel"         "Lala"           "CEMEX"         
## [1155,] "Oxxo"           "Telcel"         "Lala"           "CEMEX"         
## [1156,] "Oxxo"           "Telcel"         "Lala"           "CEMEX"         
## [1157,] "Oxxo"           "Telcel"         "Lala"           "CEMEX"         
## [1158,] "Oxxo"           "Telcel"         "Lala"           "CEMEX"         
## [1159,] "Oxxo"           "Telcel"         "Lala"           "Cinepolis"     
## [1160,] "Oxxo"           "Telcel"         "Lala"           "Cinepolis"     
## [1161,] "Oxxo"           "Telcel"         "Lala"           "Cinepolis"     
## [1162,] "Oxxo"           "Telcel"         "Lala"           "Cinepolis"     
## [1163,] "Oxxo"           "Telcel"         "Lala"           "Cinepolis"     
## [1164,] "Oxxo"           "Telcel"         "Lala"           "Cinepolis"     
## [1165,] "Oxxo"           "Telcel"         "Lala"           "Corona"        
## [1166,] "Oxxo"           "Telcel"         "Lala"           "Corona"        
## [1167,] "Oxxo"           "Telcel"         "Lala"           "Corona"        
## [1168,] "Oxxo"           "Telcel"         "Lala"           "Corona"        
## [1169,] "Oxxo"           "Telcel"         "Lala"           "Corona"        
## [1170,] "Oxxo"           "Telcel"         "Lala"           "Corona"        
## [1171,] "Oxxo"           "Telcel"         "Lala"           "PEMEX"         
## [1172,] "Oxxo"           "Telcel"         "Lala"           "PEMEX"         
## [1173,] "Oxxo"           "Telcel"         "Lala"           "PEMEX"         
## [1174,] "Oxxo"           "Telcel"         "Lala"           "PEMEX"         
## [1175,] "Oxxo"           "Telcel"         "Lala"           "PEMEX"         
## [1176,] "Oxxo"           "Telcel"         "Lala"           "PEMEX"         
## [1177,] "Oxxo"           "Telcel"         "PEMEX"          "Banorte"       
## [1178,] "Oxxo"           "Telcel"         "PEMEX"          "Banorte"       
## [1179,] "Oxxo"           "Telcel"         "PEMEX"          "Banorte"       
## [1180,] "Oxxo"           "Telcel"         "PEMEX"          "Banorte"       
## [1181,] "Oxxo"           "Telcel"         "PEMEX"          "Banorte"       
## [1182,] "Oxxo"           "Telcel"         "PEMEX"          "Banorte"       
## [1183,] "Oxxo"           "Telcel"         "PEMEX"          "Bimbo"         
## [1184,] "Oxxo"           "Telcel"         "PEMEX"          "Bimbo"         
## [1185,] "Oxxo"           "Telcel"         "PEMEX"          "Bimbo"         
## [1186,] "Oxxo"           "Telcel"         "PEMEX"          "Bimbo"         
## [1187,] "Oxxo"           "Telcel"         "PEMEX"          "Bimbo"         
## [1188,] "Oxxo"           "Telcel"         "PEMEX"          "Bimbo"         
## [1189,] "Oxxo"           "Telcel"         "PEMEX"          "Bodega Aurrera"
## [1190,] "Oxxo"           "Telcel"         "PEMEX"          "Bodega Aurrera"
## [1191,] "Oxxo"           "Telcel"         "PEMEX"          "Bodega Aurrera"
## [1192,] "Oxxo"           "Telcel"         "PEMEX"          "Bodega Aurrera"
## [1193,] "Oxxo"           "Telcel"         "PEMEX"          "Bodega Aurrera"
## [1194,] "Oxxo"           "Telcel"         "PEMEX"          "Bodega Aurrera"
## [1195,] "Oxxo"           "Telcel"         "PEMEX"          "CEMEX"         
## [1196,] "Oxxo"           "Telcel"         "PEMEX"          "CEMEX"         
## [1197,] "Oxxo"           "Telcel"         "PEMEX"          "CEMEX"         
## [1198,] "Oxxo"           "Telcel"         "PEMEX"          "CEMEX"         
## [1199,] "Oxxo"           "Telcel"         "PEMEX"          "CEMEX"         
## [1200,] "Oxxo"           "Telcel"         "PEMEX"          "CEMEX"         
## [1201,] "Oxxo"           "Telcel"         "PEMEX"          "Cinepolis"     
## [1202,] "Oxxo"           "Telcel"         "PEMEX"          "Cinepolis"     
## [1203,] "Oxxo"           "Telcel"         "PEMEX"          "Cinepolis"     
## [1204,] "Oxxo"           "Telcel"         "PEMEX"          "Cinepolis"     
## [1205,] "Oxxo"           "Telcel"         "PEMEX"          "Cinepolis"     
## [1206,] "Oxxo"           "Telcel"         "PEMEX"          "Cinepolis"     
## [1207,] "Oxxo"           "Telcel"         "PEMEX"          "Corona"        
## [1208,] "Oxxo"           "Telcel"         "PEMEX"          "Corona"        
## [1209,] "Oxxo"           "Telcel"         "PEMEX"          "Corona"        
## [1210,] "Oxxo"           "Telcel"         "PEMEX"          "Corona"        
## [1211,] "Oxxo"           "Telcel"         "PEMEX"          "Corona"        
## [1212,] "Oxxo"           "Telcel"         "PEMEX"          "Corona"        
## [1213,] "Oxxo"           "Telcel"         "PEMEX"          "Lala"          
## [1214,] "Oxxo"           "Telcel"         "PEMEX"          "Lala"          
## [1215,] "Oxxo"           "Telcel"         "PEMEX"          "Lala"          
## [1216,] "Oxxo"           "Telcel"         "PEMEX"          "Lala"          
## [1217,] "Oxxo"           "Telcel"         "PEMEX"          "Lala"          
## [1218,] "Oxxo"           "Telcel"         "PEMEX"          "Lala"          
## [1219,] "PEMEX"          "Banorte"        "Bimbo"          "Oxxo"          
## [1220,] "PEMEX"          "Banorte"        "Bodega Aurrera" "Oxxo"          
## [1221,] "PEMEX"          "Banorte"        "CEMEX"          "Oxxo"          
## [1222,] "PEMEX"          "Banorte"        "Cinepolis"      "Oxxo"          
## [1223,] "PEMEX"          "Banorte"        "Corona"         "Oxxo"          
## [1224,] "PEMEX"          "Banorte"        "Lala"           "Oxxo"          
## [1225,] "PEMEX"          "Banorte"        "Oxxo"           "Telcel"        
## [1226,] "PEMEX"          "Banorte"        "Oxxo"           "Telcel"        
## [1227,] "PEMEX"          "Banorte"        "Oxxo"           "Telcel"        
## [1228,] "PEMEX"          "Banorte"        "Oxxo"           "Telcel"        
## [1229,] "PEMEX"          "Banorte"        "Oxxo"           "Telcel"        
## [1230,] "PEMEX"          "Banorte"        "Oxxo"           "Telcel"        
## [1231,] "PEMEX"          "Bimbo"          "Banorte"        "Oxxo"          
## [1232,] "PEMEX"          "Bimbo"          "Bodega Aurrera" "Oxxo"          
## [1233,] "PEMEX"          "Bimbo"          "CEMEX"          "Oxxo"          
## [1234,] "PEMEX"          "Bimbo"          "Cinepolis"      "Oxxo"          
## [1235,] "PEMEX"          "Bimbo"          "Corona"         "Oxxo"          
## [1236,] "PEMEX"          "Bimbo"          "Lala"           "Oxxo"          
## [1237,] "PEMEX"          "Bimbo"          "Oxxo"           "Telcel"        
## [1238,] "PEMEX"          "Bimbo"          "Oxxo"           "Telcel"        
## [1239,] "PEMEX"          "Bimbo"          "Oxxo"           "Telcel"        
## [1240,] "PEMEX"          "Bimbo"          "Oxxo"           "Telcel"        
## [1241,] "PEMEX"          "Bimbo"          "Oxxo"           "Telcel"        
## [1242,] "PEMEX"          "Bimbo"          "Oxxo"           "Telcel"        
## [1243,] "PEMEX"          "Bodega Aurrera" "Banorte"        "Oxxo"          
## [1244,] "PEMEX"          "Bodega Aurrera" "Bimbo"          "Oxxo"          
## [1245,] "PEMEX"          "Bodega Aurrera" "CEMEX"          "Oxxo"          
## [1246,] "PEMEX"          "Bodega Aurrera" "Cinepolis"      "Oxxo"          
## [1247,] "PEMEX"          "Bodega Aurrera" "Corona"         "Oxxo"          
## [1248,] "PEMEX"          "Bodega Aurrera" "Lala"           "Oxxo"          
## [1249,] "PEMEX"          "Bodega Aurrera" "Oxxo"           "Telcel"        
## [1250,] "PEMEX"          "Bodega Aurrera" "Oxxo"           "Telcel"        
## [1251,] "PEMEX"          "Bodega Aurrera" "Oxxo"           "Telcel"        
## [1252,] "PEMEX"          "Bodega Aurrera" "Oxxo"           "Telcel"        
## [1253,] "PEMEX"          "Bodega Aurrera" "Oxxo"           "Telcel"        
## [1254,] "PEMEX"          "Bodega Aurrera" "Oxxo"           "Telcel"        
## [1255,] "PEMEX"          "CEMEX"          "Banorte"        "Oxxo"          
## [1256,] "PEMEX"          "CEMEX"          "Bimbo"          "Oxxo"          
## [1257,] "PEMEX"          "CEMEX"          "Bodega Aurrera" "Oxxo"          
## [1258,] "PEMEX"          "CEMEX"          "Cinepolis"      "Oxxo"          
## [1259,] "PEMEX"          "CEMEX"          "Corona"         "Oxxo"          
## [1260,] "PEMEX"          "CEMEX"          "Lala"           "Oxxo"          
## [1261,] "PEMEX"          "CEMEX"          "Oxxo"           "Telcel"        
## [1262,] "PEMEX"          "CEMEX"          "Oxxo"           "Telcel"        
## [1263,] "PEMEX"          "CEMEX"          "Oxxo"           "Telcel"        
## [1264,] "PEMEX"          "CEMEX"          "Oxxo"           "Telcel"        
## [1265,] "PEMEX"          "CEMEX"          "Oxxo"           "Telcel"        
## [1266,] "PEMEX"          "CEMEX"          "Oxxo"           "Telcel"        
## [1267,] "PEMEX"          "Cinepolis"      "Banorte"        "Oxxo"          
## [1268,] "PEMEX"          "Cinepolis"      "Bimbo"          "Oxxo"          
## [1269,] "PEMEX"          "Cinepolis"      "Bodega Aurrera" "Oxxo"          
## [1270,] "PEMEX"          "Cinepolis"      "CEMEX"          "Oxxo"          
## [1271,] "PEMEX"          "Cinepolis"      "Corona"         "Oxxo"          
## [1272,] "PEMEX"          "Cinepolis"      "Lala"           "Oxxo"          
## [1273,] "PEMEX"          "Cinepolis"      "Oxxo"           "Telcel"        
## [1274,] "PEMEX"          "Cinepolis"      "Oxxo"           "Telcel"        
## [1275,] "PEMEX"          "Cinepolis"      "Oxxo"           "Telcel"        
## [1276,] "PEMEX"          "Cinepolis"      "Oxxo"           "Telcel"        
## [1277,] "PEMEX"          "Cinepolis"      "Oxxo"           "Telcel"        
## [1278,] "PEMEX"          "Cinepolis"      "Oxxo"           "Telcel"        
## [1279,] "PEMEX"          "Corona"         "Banorte"        "Oxxo"          
## [1280,] "PEMEX"          "Corona"         "Bimbo"          "Oxxo"          
## [1281,] "PEMEX"          "Corona"         "Bodega Aurrera" "Oxxo"          
## [1282,] "PEMEX"          "Corona"         "CEMEX"          "Oxxo"          
## [1283,] "PEMEX"          "Corona"         "Cinepolis"      "Oxxo"          
## [1284,] "PEMEX"          "Corona"         "Lala"           "Oxxo"          
## [1285,] "PEMEX"          "Corona"         "Oxxo"           "Telcel"        
## [1286,] "PEMEX"          "Corona"         "Oxxo"           "Telcel"        
## [1287,] "PEMEX"          "Corona"         "Oxxo"           "Telcel"        
## [1288,] "PEMEX"          "Corona"         "Oxxo"           "Telcel"        
## [1289,] "PEMEX"          "Corona"         "Oxxo"           "Telcel"        
## [1290,] "PEMEX"          "Corona"         "Oxxo"           "Telcel"        
## [1291,] "PEMEX"          "Lala"           "Banorte"        "Oxxo"          
## [1292,] "PEMEX"          "Lala"           "Bimbo"          "Oxxo"          
## [1293,] "PEMEX"          "Lala"           "Bodega Aurrera" "Oxxo"          
## [1294,] "PEMEX"          "Lala"           "CEMEX"          "Oxxo"          
## [1295,] "PEMEX"          "Lala"           "Cinepolis"      "Oxxo"          
## [1296,] "PEMEX"          "Lala"           "Corona"         "Oxxo"          
## [1297,] "PEMEX"          "Lala"           "Oxxo"           "Telcel"        
## [1298,] "PEMEX"          "Lala"           "Oxxo"           "Telcel"        
## [1299,] "PEMEX"          "Lala"           "Oxxo"           "Telcel"        
## [1300,] "PEMEX"          "Lala"           "Oxxo"           "Telcel"        
## [1301,] "PEMEX"          "Lala"           "Oxxo"           "Telcel"        
## [1302,] "PEMEX"          "Lala"           "Oxxo"           "Telcel"        
## [1303,] "PEMEX"          "Oxxo"           "Telcel"         "Banorte"       
## [1304,] "PEMEX"          "Oxxo"           "Telcel"         "Banorte"       
## [1305,] "PEMEX"          "Oxxo"           "Telcel"         "Banorte"       
## [1306,] "PEMEX"          "Oxxo"           "Telcel"         "Banorte"       
## [1307,] "PEMEX"          "Oxxo"           "Telcel"         "Banorte"       
## [1308,] "PEMEX"          "Oxxo"           "Telcel"         "Banorte"       
## [1309,] "PEMEX"          "Oxxo"           "Telcel"         "Bimbo"         
## [1310,] "PEMEX"          "Oxxo"           "Telcel"         "Bimbo"         
## [1311,] "PEMEX"          "Oxxo"           "Telcel"         "Bimbo"         
## [1312,] "PEMEX"          "Oxxo"           "Telcel"         "Bimbo"         
## [1313,] "PEMEX"          "Oxxo"           "Telcel"         "Bimbo"         
## [1314,] "PEMEX"          "Oxxo"           "Telcel"         "Bimbo"         
## [1315,] "PEMEX"          "Oxxo"           "Telcel"         "Bodega Aurrera"
## [1316,] "PEMEX"          "Oxxo"           "Telcel"         "Bodega Aurrera"
## [1317,] "PEMEX"          "Oxxo"           "Telcel"         "Bodega Aurrera"
## [1318,] "PEMEX"          "Oxxo"           "Telcel"         "Bodega Aurrera"
## [1319,] "PEMEX"          "Oxxo"           "Telcel"         "Bodega Aurrera"
## [1320,] "PEMEX"          "Oxxo"           "Telcel"         "Bodega Aurrera"
## [1321,] "PEMEX"          "Oxxo"           "Telcel"         "CEMEX"         
## [1322,] "PEMEX"          "Oxxo"           "Telcel"         "CEMEX"         
## [1323,] "PEMEX"          "Oxxo"           "Telcel"         "CEMEX"         
## [1324,] "PEMEX"          "Oxxo"           "Telcel"         "CEMEX"         
## [1325,] "PEMEX"          "Oxxo"           "Telcel"         "CEMEX"         
## [1326,] "PEMEX"          "Oxxo"           "Telcel"         "CEMEX"         
## [1327,] "PEMEX"          "Oxxo"           "Telcel"         "Cinepolis"     
## [1328,] "PEMEX"          "Oxxo"           "Telcel"         "Cinepolis"     
## [1329,] "PEMEX"          "Oxxo"           "Telcel"         "Cinepolis"     
## [1330,] "PEMEX"          "Oxxo"           "Telcel"         "Cinepolis"     
## [1331,] "PEMEX"          "Oxxo"           "Telcel"         "Cinepolis"     
## [1332,] "PEMEX"          "Oxxo"           "Telcel"         "Cinepolis"     
## [1333,] "PEMEX"          "Oxxo"           "Telcel"         "Corona"        
## [1334,] "PEMEX"          "Oxxo"           "Telcel"         "Corona"        
## [1335,] "PEMEX"          "Oxxo"           "Telcel"         "Corona"        
## [1336,] "PEMEX"          "Oxxo"           "Telcel"         "Corona"        
## [1337,] "PEMEX"          "Oxxo"           "Telcel"         "Corona"        
## [1338,] "PEMEX"          "Oxxo"           "Telcel"         "Corona"        
## [1339,] "PEMEX"          "Oxxo"           "Telcel"         "Lala"          
## [1340,] "PEMEX"          "Oxxo"           "Telcel"         "Lala"          
## [1341,] "PEMEX"          "Oxxo"           "Telcel"         "Lala"          
## [1342,] "PEMEX"          "Oxxo"           "Telcel"         "Lala"          
## [1343,] "PEMEX"          "Oxxo"           "Telcel"         "Lala"          
## [1344,] "PEMEX"          "Oxxo"           "Telcel"         "Lala"          
##         [,5]            
##    [1,] "Telcel"        
##    [2,] "Telcel"        
##    [3,] "Telcel"        
##    [4,] "Telcel"        
##    [5,] "Telcel"        
##    [6,] "Bodega Aurrera"
##    [7,] "CEMEX"         
##    [8,] "Cinepolis"     
##    [9,] "Corona"        
##   [10,] "Lala"          
##   [11,] "PEMEX"         
##   [12,] "Telcel"        
##   [13,] "Telcel"        
##   [14,] "Telcel"        
##   [15,] "Telcel"        
##   [16,] "Telcel"        
##   [17,] "Telcel"        
##   [18,] "Bimbo"         
##   [19,] "CEMEX"         
##   [20,] "Cinepolis"     
##   [21,] "Corona"        
##   [22,] "Lala"          
##   [23,] "PEMEX"         
##   [24,] "Telcel"        
##   [25,] "Telcel"        
##   [26,] "Telcel"        
##   [27,] "Telcel"        
##   [28,] "Telcel"        
##   [29,] "Telcel"        
##   [30,] "Bimbo"         
##   [31,] "Bodega Aurrera"
##   [32,] "Cinepolis"     
##   [33,] "Corona"        
##   [34,] "Lala"          
##   [35,] "PEMEX"         
##   [36,] "Telcel"        
##   [37,] "Telcel"        
##   [38,] "Telcel"        
##   [39,] "Telcel"        
##   [40,] "Telcel"        
##   [41,] "Telcel"        
##   [42,] "Bimbo"         
##   [43,] "Bodega Aurrera"
##   [44,] "CEMEX"         
##   [45,] "Corona"        
##   [46,] "Lala"          
##   [47,] "PEMEX"         
##   [48,] "Telcel"        
##   [49,] "Telcel"        
##   [50,] "Telcel"        
##   [51,] "Telcel"        
##   [52,] "Telcel"        
##   [53,] "Telcel"        
##   [54,] "Bimbo"         
##   [55,] "Bodega Aurrera"
##   [56,] "CEMEX"         
##   [57,] "Cinepolis"     
##   [58,] "Lala"          
##   [59,] "PEMEX"         
##   [60,] "Telcel"        
##   [61,] "Telcel"        
##   [62,] "Telcel"        
##   [63,] "Telcel"        
##   [64,] "Telcel"        
##   [65,] "Telcel"        
##   [66,] "Bimbo"         
##   [67,] "Bodega Aurrera"
##   [68,] "CEMEX"         
##   [69,] "Cinepolis"     
##   [70,] "Corona"        
##   [71,] "PEMEX"         
##   [72,] "Telcel"        
##   [73,] "Bodega Aurrera"
##   [74,] "CEMEX"         
##   [75,] "Cinepolis"     
##   [76,] "Corona"        
##   [77,] "Lala"          
##   [78,] "PEMEX"         
##   [79,] "Bimbo"         
##   [80,] "CEMEX"         
##   [81,] "Cinepolis"     
##   [82,] "Corona"        
##   [83,] "Lala"          
##   [84,] "PEMEX"         
##   [85,] "Bimbo"         
##   [86,] "Bodega Aurrera"
##   [87,] "Cinepolis"     
##   [88,] "Corona"        
##   [89,] "Lala"          
##   [90,] "PEMEX"         
##   [91,] "Bimbo"         
##   [92,] "Bodega Aurrera"
##   [93,] "CEMEX"         
##   [94,] "Corona"        
##   [95,] "Lala"          
##   [96,] "PEMEX"         
##   [97,] "Bimbo"         
##   [98,] "Bodega Aurrera"
##   [99,] "CEMEX"         
##  [100,] "Cinepolis"     
##  [101,] "Lala"          
##  [102,] "PEMEX"         
##  [103,] "Bimbo"         
##  [104,] "Bodega Aurrera"
##  [105,] "CEMEX"         
##  [106,] "Cinepolis"     
##  [107,] "Corona"        
##  [108,] "PEMEX"         
##  [109,] "Bimbo"         
##  [110,] "Bodega Aurrera"
##  [111,] "CEMEX"         
##  [112,] "Cinepolis"     
##  [113,] "Corona"        
##  [114,] "Lala"          
##  [115,] "Telcel"        
##  [116,] "Telcel"        
##  [117,] "Telcel"        
##  [118,] "Telcel"        
##  [119,] "Telcel"        
##  [120,] "Telcel"        
##  [121,] "Bimbo"         
##  [122,] "Bodega Aurrera"
##  [123,] "CEMEX"         
##  [124,] "Cinepolis"     
##  [125,] "Corona"        
##  [126,] "Lala"          
##  [127,] "Telcel"        
##  [128,] "Telcel"        
##  [129,] "Telcel"        
##  [130,] "Telcel"        
##  [131,] "Telcel"        
##  [132,] "Bodega Aurrera"
##  [133,] "CEMEX"         
##  [134,] "Cinepolis"     
##  [135,] "Corona"        
##  [136,] "Lala"          
##  [137,] "PEMEX"         
##  [138,] "Telcel"        
##  [139,] "Telcel"        
##  [140,] "Telcel"        
##  [141,] "Telcel"        
##  [142,] "Telcel"        
##  [143,] "Telcel"        
##  [144,] "Banorte"       
##  [145,] "CEMEX"         
##  [146,] "Cinepolis"     
##  [147,] "Corona"        
##  [148,] "Lala"          
##  [149,] "PEMEX"         
##  [150,] "Telcel"        
##  [151,] "Telcel"        
##  [152,] "Telcel"        
##  [153,] "Telcel"        
##  [154,] "Telcel"        
##  [155,] "Telcel"        
##  [156,] "Banorte"       
##  [157,] "Bodega Aurrera"
##  [158,] "Cinepolis"     
##  [159,] "Corona"        
##  [160,] "Lala"          
##  [161,] "PEMEX"         
##  [162,] "Telcel"        
##  [163,] "Telcel"        
##  [164,] "Telcel"        
##  [165,] "Telcel"        
##  [166,] "Telcel"        
##  [167,] "Telcel"        
##  [168,] "Banorte"       
##  [169,] "Bodega Aurrera"
##  [170,] "CEMEX"         
##  [171,] "Corona"        
##  [172,] "Lala"          
##  [173,] "PEMEX"         
##  [174,] "Telcel"        
##  [175,] "Telcel"        
##  [176,] "Telcel"        
##  [177,] "Telcel"        
##  [178,] "Telcel"        
##  [179,] "Telcel"        
##  [180,] "Banorte"       
##  [181,] "Bodega Aurrera"
##  [182,] "CEMEX"         
##  [183,] "Cinepolis"     
##  [184,] "Lala"          
##  [185,] "PEMEX"         
##  [186,] "Telcel"        
##  [187,] "Telcel"        
##  [188,] "Telcel"        
##  [189,] "Telcel"        
##  [190,] "Telcel"        
##  [191,] "Telcel"        
##  [192,] "Banorte"       
##  [193,] "Bodega Aurrera"
##  [194,] "CEMEX"         
##  [195,] "Cinepolis"     
##  [196,] "Corona"        
##  [197,] "PEMEX"         
##  [198,] "Telcel"        
##  [199,] "Bodega Aurrera"
##  [200,] "CEMEX"         
##  [201,] "Cinepolis"     
##  [202,] "Corona"        
##  [203,] "Lala"          
##  [204,] "PEMEX"         
##  [205,] "Banorte"       
##  [206,] "CEMEX"         
##  [207,] "Cinepolis"     
##  [208,] "Corona"        
##  [209,] "Lala"          
##  [210,] "PEMEX"         
##  [211,] "Banorte"       
##  [212,] "Bodega Aurrera"
##  [213,] "Cinepolis"     
##  [214,] "Corona"        
##  [215,] "Lala"          
##  [216,] "PEMEX"         
##  [217,] "Banorte"       
##  [218,] "Bodega Aurrera"
##  [219,] "CEMEX"         
##  [220,] "Corona"        
##  [221,] "Lala"          
##  [222,] "PEMEX"         
##  [223,] "Banorte"       
##  [224,] "Bodega Aurrera"
##  [225,] "CEMEX"         
##  [226,] "Cinepolis"     
##  [227,] "Lala"          
##  [228,] "PEMEX"         
##  [229,] "Banorte"       
##  [230,] "Bodega Aurrera"
##  [231,] "CEMEX"         
##  [232,] "Cinepolis"     
##  [233,] "Corona"        
##  [234,] "PEMEX"         
##  [235,] "Banorte"       
##  [236,] "Bodega Aurrera"
##  [237,] "CEMEX"         
##  [238,] "Cinepolis"     
##  [239,] "Corona"        
##  [240,] "Lala"          
##  [241,] "Telcel"        
##  [242,] "Telcel"        
##  [243,] "Telcel"        
##  [244,] "Telcel"        
##  [245,] "Telcel"        
##  [246,] "Telcel"        
##  [247,] "Banorte"       
##  [248,] "Bodega Aurrera"
##  [249,] "CEMEX"         
##  [250,] "Cinepolis"     
##  [251,] "Corona"        
##  [252,] "Lala"          
##  [253,] "Telcel"        
##  [254,] "Telcel"        
##  [255,] "Telcel"        
##  [256,] "Telcel"        
##  [257,] "Telcel"        
##  [258,] "Bimbo"         
##  [259,] "CEMEX"         
##  [260,] "Cinepolis"     
##  [261,] "Corona"        
##  [262,] "Lala"          
##  [263,] "PEMEX"         
##  [264,] "Telcel"        
##  [265,] "Telcel"        
##  [266,] "Telcel"        
##  [267,] "Telcel"        
##  [268,] "Telcel"        
##  [269,] "Telcel"        
##  [270,] "Banorte"       
##  [271,] "CEMEX"         
##  [272,] "Cinepolis"     
##  [273,] "Corona"        
##  [274,] "Lala"          
##  [275,] "PEMEX"         
##  [276,] "Telcel"        
##  [277,] "Telcel"        
##  [278,] "Telcel"        
##  [279,] "Telcel"        
##  [280,] "Telcel"        
##  [281,] "Telcel"        
##  [282,] "Banorte"       
##  [283,] "Bimbo"         
##  [284,] "Cinepolis"     
##  [285,] "Corona"        
##  [286,] "Lala"          
##  [287,] "PEMEX"         
##  [288,] "Telcel"        
##  [289,] "Telcel"        
##  [290,] "Telcel"        
##  [291,] "Telcel"        
##  [292,] "Telcel"        
##  [293,] "Telcel"        
##  [294,] "Banorte"       
##  [295,] "Bimbo"         
##  [296,] "CEMEX"         
##  [297,] "Corona"        
##  [298,] "Lala"          
##  [299,] "PEMEX"         
##  [300,] "Telcel"        
##  [301,] "Telcel"        
##  [302,] "Telcel"        
##  [303,] "Telcel"        
##  [304,] "Telcel"        
##  [305,] "Telcel"        
##  [306,] "Banorte"       
##  [307,] "Bimbo"         
##  [308,] "CEMEX"         
##  [309,] "Cinepolis"     
##  [310,] "Lala"          
##  [311,] "PEMEX"         
##  [312,] "Telcel"        
##  [313,] "Telcel"        
##  [314,] "Telcel"        
##  [315,] "Telcel"        
##  [316,] "Telcel"        
##  [317,] "Telcel"        
##  [318,] "Banorte"       
##  [319,] "Bimbo"         
##  [320,] "CEMEX"         
##  [321,] "Cinepolis"     
##  [322,] "Corona"        
##  [323,] "PEMEX"         
##  [324,] "Telcel"        
##  [325,] "Bimbo"         
##  [326,] "CEMEX"         
##  [327,] "Cinepolis"     
##  [328,] "Corona"        
##  [329,] "Lala"          
##  [330,] "PEMEX"         
##  [331,] "Banorte"       
##  [332,] "CEMEX"         
##  [333,] "Cinepolis"     
##  [334,] "Corona"        
##  [335,] "Lala"          
##  [336,] "PEMEX"         
##  [337,] "Banorte"       
##  [338,] "Bimbo"         
##  [339,] "Cinepolis"     
##  [340,] "Corona"        
##  [341,] "Lala"          
##  [342,] "PEMEX"         
##  [343,] "Banorte"       
##  [344,] "Bimbo"         
##  [345,] "CEMEX"         
##  [346,] "Corona"        
##  [347,] "Lala"          
##  [348,] "PEMEX"         
##  [349,] "Banorte"       
##  [350,] "Bimbo"         
##  [351,] "CEMEX"         
##  [352,] "Cinepolis"     
##  [353,] "Lala"          
##  [354,] "PEMEX"         
##  [355,] "Banorte"       
##  [356,] "Bimbo"         
##  [357,] "CEMEX"         
##  [358,] "Cinepolis"     
##  [359,] "Corona"        
##  [360,] "PEMEX"         
##  [361,] "Banorte"       
##  [362,] "Bimbo"         
##  [363,] "CEMEX"         
##  [364,] "Cinepolis"     
##  [365,] "Corona"        
##  [366,] "Lala"          
##  [367,] "Telcel"        
##  [368,] "Telcel"        
##  [369,] "Telcel"        
##  [370,] "Telcel"        
##  [371,] "Telcel"        
##  [372,] "Telcel"        
##  [373,] "Banorte"       
##  [374,] "Bimbo"         
##  [375,] "CEMEX"         
##  [376,] "Cinepolis"     
##  [377,] "Corona"        
##  [378,] "Lala"          
##  [379,] "Telcel"        
##  [380,] "Telcel"        
##  [381,] "Telcel"        
##  [382,] "Telcel"        
##  [383,] "Telcel"        
##  [384,] "Bimbo"         
##  [385,] "Bodega Aurrera"
##  [386,] "Cinepolis"     
##  [387,] "Corona"        
##  [388,] "Lala"          
##  [389,] "PEMEX"         
##  [390,] "Telcel"        
##  [391,] "Telcel"        
##  [392,] "Telcel"        
##  [393,] "Telcel"        
##  [394,] "Telcel"        
##  [395,] "Telcel"        
##  [396,] "Banorte"       
##  [397,] "Bodega Aurrera"
##  [398,] "Cinepolis"     
##  [399,] "Corona"        
##  [400,] "Lala"          
##  [401,] "PEMEX"         
##  [402,] "Telcel"        
##  [403,] "Telcel"        
##  [404,] "Telcel"        
##  [405,] "Telcel"        
##  [406,] "Telcel"        
##  [407,] "Telcel"        
##  [408,] "Banorte"       
##  [409,] "Bimbo"         
##  [410,] "Cinepolis"     
##  [411,] "Corona"        
##  [412,] "Lala"          
##  [413,] "PEMEX"         
##  [414,] "Telcel"        
##  [415,] "Telcel"        
##  [416,] "Telcel"        
##  [417,] "Telcel"        
##  [418,] "Telcel"        
##  [419,] "Telcel"        
##  [420,] "Banorte"       
##  [421,] "Bimbo"         
##  [422,] "Bodega Aurrera"
##  [423,] "Corona"        
##  [424,] "Lala"          
##  [425,] "PEMEX"         
##  [426,] "Telcel"        
##  [427,] "Telcel"        
##  [428,] "Telcel"        
##  [429,] "Telcel"        
##  [430,] "Telcel"        
##  [431,] "Telcel"        
##  [432,] "Banorte"       
##  [433,] "Bimbo"         
##  [434,] "Bodega Aurrera"
##  [435,] "Cinepolis"     
##  [436,] "Lala"          
##  [437,] "PEMEX"         
##  [438,] "Telcel"        
##  [439,] "Telcel"        
##  [440,] "Telcel"        
##  [441,] "Telcel"        
##  [442,] "Telcel"        
##  [443,] "Telcel"        
##  [444,] "Banorte"       
##  [445,] "Bimbo"         
##  [446,] "Bodega Aurrera"
##  [447,] "Cinepolis"     
##  [448,] "Corona"        
##  [449,] "PEMEX"         
##  [450,] "Telcel"        
##  [451,] "Bimbo"         
##  [452,] "Bodega Aurrera"
##  [453,] "Cinepolis"     
##  [454,] "Corona"        
##  [455,] "Lala"          
##  [456,] "PEMEX"         
##  [457,] "Banorte"       
##  [458,] "Bodega Aurrera"
##  [459,] "Cinepolis"     
##  [460,] "Corona"        
##  [461,] "Lala"          
##  [462,] "PEMEX"         
##  [463,] "Banorte"       
##  [464,] "Bimbo"         
##  [465,] "Cinepolis"     
##  [466,] "Corona"        
##  [467,] "Lala"          
##  [468,] "PEMEX"         
##  [469,] "Banorte"       
##  [470,] "Bimbo"         
##  [471,] "Bodega Aurrera"
##  [472,] "Corona"        
##  [473,] "Lala"          
##  [474,] "PEMEX"         
##  [475,] "Banorte"       
##  [476,] "Bimbo"         
##  [477,] "Bodega Aurrera"
##  [478,] "Cinepolis"     
##  [479,] "Lala"          
##  [480,] "PEMEX"         
##  [481,] "Banorte"       
##  [482,] "Bimbo"         
##  [483,] "Bodega Aurrera"
##  [484,] "Cinepolis"     
##  [485,] "Corona"        
##  [486,] "PEMEX"         
##  [487,] "Banorte"       
##  [488,] "Bimbo"         
##  [489,] "Bodega Aurrera"
##  [490,] "Cinepolis"     
##  [491,] "Corona"        
##  [492,] "Lala"          
##  [493,] "Telcel"        
##  [494,] "Telcel"        
##  [495,] "Telcel"        
##  [496,] "Telcel"        
##  [497,] "Telcel"        
##  [498,] "Telcel"        
##  [499,] "Banorte"       
##  [500,] "Bimbo"         
##  [501,] "Bodega Aurrera"
##  [502,] "Cinepolis"     
##  [503,] "Corona"        
##  [504,] "Lala"          
##  [505,] "Telcel"        
##  [506,] "Telcel"        
##  [507,] "Telcel"        
##  [508,] "Telcel"        
##  [509,] "Telcel"        
##  [510,] "Bimbo"         
##  [511,] "Bodega Aurrera"
##  [512,] "CEMEX"         
##  [513,] "Corona"        
##  [514,] "Lala"          
##  [515,] "PEMEX"         
##  [516,] "Telcel"        
##  [517,] "Telcel"        
##  [518,] "Telcel"        
##  [519,] "Telcel"        
##  [520,] "Telcel"        
##  [521,] "Telcel"        
##  [522,] "Banorte"       
##  [523,] "Bodega Aurrera"
##  [524,] "CEMEX"         
##  [525,] "Corona"        
##  [526,] "Lala"          
##  [527,] "PEMEX"         
##  [528,] "Telcel"        
##  [529,] "Telcel"        
##  [530,] "Telcel"        
##  [531,] "Telcel"        
##  [532,] "Telcel"        
##  [533,] "Telcel"        
##  [534,] "Banorte"       
##  [535,] "Bimbo"         
##  [536,] "CEMEX"         
##  [537,] "Corona"        
##  [538,] "Lala"          
##  [539,] "PEMEX"         
##  [540,] "Telcel"        
##  [541,] "Telcel"        
##  [542,] "Telcel"        
##  [543,] "Telcel"        
##  [544,] "Telcel"        
##  [545,] "Telcel"        
##  [546,] "Banorte"       
##  [547,] "Bimbo"         
##  [548,] "Bodega Aurrera"
##  [549,] "Corona"        
##  [550,] "Lala"          
##  [551,] "PEMEX"         
##  [552,] "Telcel"        
##  [553,] "Telcel"        
##  [554,] "Telcel"        
##  [555,] "Telcel"        
##  [556,] "Telcel"        
##  [557,] "Telcel"        
##  [558,] "Banorte"       
##  [559,] "Bimbo"         
##  [560,] "Bodega Aurrera"
##  [561,] "CEMEX"         
##  [562,] "Lala"          
##  [563,] "PEMEX"         
##  [564,] "Telcel"        
##  [565,] "Telcel"        
##  [566,] "Telcel"        
##  [567,] "Telcel"        
##  [568,] "Telcel"        
##  [569,] "Telcel"        
##  [570,] "Banorte"       
##  [571,] "Bimbo"         
##  [572,] "Bodega Aurrera"
##  [573,] "CEMEX"         
##  [574,] "Corona"        
##  [575,] "PEMEX"         
##  [576,] "Telcel"        
##  [577,] "Bimbo"         
##  [578,] "Bodega Aurrera"
##  [579,] "CEMEX"         
##  [580,] "Corona"        
##  [581,] "Lala"          
##  [582,] "PEMEX"         
##  [583,] "Banorte"       
##  [584,] "Bodega Aurrera"
##  [585,] "CEMEX"         
##  [586,] "Corona"        
##  [587,] "Lala"          
##  [588,] "PEMEX"         
##  [589,] "Banorte"       
##  [590,] "Bimbo"         
##  [591,] "CEMEX"         
##  [592,] "Corona"        
##  [593,] "Lala"          
##  [594,] "PEMEX"         
##  [595,] "Banorte"       
##  [596,] "Bimbo"         
##  [597,] "Bodega Aurrera"
##  [598,] "Corona"        
##  [599,] "Lala"          
##  [600,] "PEMEX"         
##  [601,] "Banorte"       
##  [602,] "Bimbo"         
##  [603,] "Bodega Aurrera"
##  [604,] "CEMEX"         
##  [605,] "Lala"          
##  [606,] "PEMEX"         
##  [607,] "Banorte"       
##  [608,] "Bimbo"         
##  [609,] "Bodega Aurrera"
##  [610,] "CEMEX"         
##  [611,] "Corona"        
##  [612,] "PEMEX"         
##  [613,] "Banorte"       
##  [614,] "Bimbo"         
##  [615,] "Bodega Aurrera"
##  [616,] "CEMEX"         
##  [617,] "Corona"        
##  [618,] "Lala"          
##  [619,] "Telcel"        
##  [620,] "Telcel"        
##  [621,] "Telcel"        
##  [622,] "Telcel"        
##  [623,] "Telcel"        
##  [624,] "Telcel"        
##  [625,] "Banorte"       
##  [626,] "Bimbo"         
##  [627,] "Bodega Aurrera"
##  [628,] "CEMEX"         
##  [629,] "Corona"        
##  [630,] "Lala"          
##  [631,] "Telcel"        
##  [632,] "Telcel"        
##  [633,] "Telcel"        
##  [634,] "Telcel"        
##  [635,] "Telcel"        
##  [636,] "Bimbo"         
##  [637,] "Bodega Aurrera"
##  [638,] "CEMEX"         
##  [639,] "Cinepolis"     
##  [640,] "Lala"          
##  [641,] "PEMEX"         
##  [642,] "Telcel"        
##  [643,] "Telcel"        
##  [644,] "Telcel"        
##  [645,] "Telcel"        
##  [646,] "Telcel"        
##  [647,] "Telcel"        
##  [648,] "Banorte"       
##  [649,] "Bodega Aurrera"
##  [650,] "CEMEX"         
##  [651,] "Cinepolis"     
##  [652,] "Lala"          
##  [653,] "PEMEX"         
##  [654,] "Telcel"        
##  [655,] "Telcel"        
##  [656,] "Telcel"        
##  [657,] "Telcel"        
##  [658,] "Telcel"        
##  [659,] "Telcel"        
##  [660,] "Banorte"       
##  [661,] "Bimbo"         
##  [662,] "CEMEX"         
##  [663,] "Cinepolis"     
##  [664,] "Lala"          
##  [665,] "PEMEX"         
##  [666,] "Telcel"        
##  [667,] "Telcel"        
##  [668,] "Telcel"        
##  [669,] "Telcel"        
##  [670,] "Telcel"        
##  [671,] "Telcel"        
##  [672,] "Banorte"       
##  [673,] "Bimbo"         
##  [674,] "Bodega Aurrera"
##  [675,] "Cinepolis"     
##  [676,] "Lala"          
##  [677,] "PEMEX"         
##  [678,] "Telcel"        
##  [679,] "Telcel"        
##  [680,] "Telcel"        
##  [681,] "Telcel"        
##  [682,] "Telcel"        
##  [683,] "Telcel"        
##  [684,] "Banorte"       
##  [685,] "Bimbo"         
##  [686,] "Bodega Aurrera"
##  [687,] "CEMEX"         
##  [688,] "Lala"          
##  [689,] "PEMEX"         
##  [690,] "Telcel"        
##  [691,] "Telcel"        
##  [692,] "Telcel"        
##  [693,] "Telcel"        
##  [694,] "Telcel"        
##  [695,] "Telcel"        
##  [696,] "Banorte"       
##  [697,] "Bimbo"         
##  [698,] "Bodega Aurrera"
##  [699,] "CEMEX"         
##  [700,] "Cinepolis"     
##  [701,] "PEMEX"         
##  [702,] "Telcel"        
##  [703,] "Bimbo"         
##  [704,] "Bodega Aurrera"
##  [705,] "CEMEX"         
##  [706,] "Cinepolis"     
##  [707,] "Lala"          
##  [708,] "PEMEX"         
##  [709,] "Banorte"       
##  [710,] "Bodega Aurrera"
##  [711,] "CEMEX"         
##  [712,] "Cinepolis"     
##  [713,] "Lala"          
##  [714,] "PEMEX"         
##  [715,] "Banorte"       
##  [716,] "Bimbo"         
##  [717,] "CEMEX"         
##  [718,] "Cinepolis"     
##  [719,] "Lala"          
##  [720,] "PEMEX"         
##  [721,] "Banorte"       
##  [722,] "Bimbo"         
##  [723,] "Bodega Aurrera"
##  [724,] "Cinepolis"     
##  [725,] "Lala"          
##  [726,] "PEMEX"         
##  [727,] "Banorte"       
##  [728,] "Bimbo"         
##  [729,] "Bodega Aurrera"
##  [730,] "CEMEX"         
##  [731,] "Lala"          
##  [732,] "PEMEX"         
##  [733,] "Banorte"       
##  [734,] "Bimbo"         
##  [735,] "Bodega Aurrera"
##  [736,] "CEMEX"         
##  [737,] "Cinepolis"     
##  [738,] "PEMEX"         
##  [739,] "Banorte"       
##  [740,] "Bimbo"         
##  [741,] "Bodega Aurrera"
##  [742,] "CEMEX"         
##  [743,] "Cinepolis"     
##  [744,] "Lala"          
##  [745,] "Telcel"        
##  [746,] "Telcel"        
##  [747,] "Telcel"        
##  [748,] "Telcel"        
##  [749,] "Telcel"        
##  [750,] "Telcel"        
##  [751,] "Banorte"       
##  [752,] "Bimbo"         
##  [753,] "Bodega Aurrera"
##  [754,] "CEMEX"         
##  [755,] "Cinepolis"     
##  [756,] "Lala"          
##  [757,] "Telcel"        
##  [758,] "Telcel"        
##  [759,] "Telcel"        
##  [760,] "Telcel"        
##  [761,] "Telcel"        
##  [762,] "Bimbo"         
##  [763,] "Bodega Aurrera"
##  [764,] "CEMEX"         
##  [765,] "Cinepolis"     
##  [766,] "Corona"        
##  [767,] "PEMEX"         
##  [768,] "Telcel"        
##  [769,] "Telcel"        
##  [770,] "Telcel"        
##  [771,] "Telcel"        
##  [772,] "Telcel"        
##  [773,] "Telcel"        
##  [774,] "Banorte"       
##  [775,] "Bodega Aurrera"
##  [776,] "CEMEX"         
##  [777,] "Cinepolis"     
##  [778,] "Corona"        
##  [779,] "PEMEX"         
##  [780,] "Telcel"        
##  [781,] "Telcel"        
##  [782,] "Telcel"        
##  [783,] "Telcel"        
##  [784,] "Telcel"        
##  [785,] "Telcel"        
##  [786,] "Banorte"       
##  [787,] "Bimbo"         
##  [788,] "CEMEX"         
##  [789,] "Cinepolis"     
##  [790,] "Corona"        
##  [791,] "PEMEX"         
##  [792,] "Telcel"        
##  [793,] "Telcel"        
##  [794,] "Telcel"        
##  [795,] "Telcel"        
##  [796,] "Telcel"        
##  [797,] "Telcel"        
##  [798,] "Banorte"       
##  [799,] "Bimbo"         
##  [800,] "Bodega Aurrera"
##  [801,] "Cinepolis"     
##  [802,] "Corona"        
##  [803,] "PEMEX"         
##  [804,] "Telcel"        
##  [805,] "Telcel"        
##  [806,] "Telcel"        
##  [807,] "Telcel"        
##  [808,] "Telcel"        
##  [809,] "Telcel"        
##  [810,] "Banorte"       
##  [811,] "Bimbo"         
##  [812,] "Bodega Aurrera"
##  [813,] "CEMEX"         
##  [814,] "Corona"        
##  [815,] "PEMEX"         
##  [816,] "Telcel"        
##  [817,] "Telcel"        
##  [818,] "Telcel"        
##  [819,] "Telcel"        
##  [820,] "Telcel"        
##  [821,] "Telcel"        
##  [822,] "Banorte"       
##  [823,] "Bimbo"         
##  [824,] "Bodega Aurrera"
##  [825,] "CEMEX"         
##  [826,] "Cinepolis"     
##  [827,] "PEMEX"         
##  [828,] "Telcel"        
##  [829,] "Bimbo"         
##  [830,] "Bodega Aurrera"
##  [831,] "CEMEX"         
##  [832,] "Cinepolis"     
##  [833,] "Corona"        
##  [834,] "PEMEX"         
##  [835,] "Banorte"       
##  [836,] "Bodega Aurrera"
##  [837,] "CEMEX"         
##  [838,] "Cinepolis"     
##  [839,] "Corona"        
##  [840,] "PEMEX"         
##  [841,] "Banorte"       
##  [842,] "Bimbo"         
##  [843,] "CEMEX"         
##  [844,] "Cinepolis"     
##  [845,] "Corona"        
##  [846,] "PEMEX"         
##  [847,] "Banorte"       
##  [848,] "Bimbo"         
##  [849,] "Bodega Aurrera"
##  [850,] "Cinepolis"     
##  [851,] "Corona"        
##  [852,] "PEMEX"         
##  [853,] "Banorte"       
##  [854,] "Bimbo"         
##  [855,] "Bodega Aurrera"
##  [856,] "CEMEX"         
##  [857,] "Corona"        
##  [858,] "PEMEX"         
##  [859,] "Banorte"       
##  [860,] "Bimbo"         
##  [861,] "Bodega Aurrera"
##  [862,] "CEMEX"         
##  [863,] "Cinepolis"     
##  [864,] "PEMEX"         
##  [865,] "Banorte"       
##  [866,] "Bimbo"         
##  [867,] "Bodega Aurrera"
##  [868,] "CEMEX"         
##  [869,] "Cinepolis"     
##  [870,] "Corona"        
##  [871,] "Telcel"        
##  [872,] "Telcel"        
##  [873,] "Telcel"        
##  [874,] "Telcel"        
##  [875,] "Telcel"        
##  [876,] "Telcel"        
##  [877,] "Banorte"       
##  [878,] "Bimbo"         
##  [879,] "Bodega Aurrera"
##  [880,] "CEMEX"         
##  [881,] "Cinepolis"     
##  [882,] "Corona"        
##  [883,] "Bodega Aurrera"
##  [884,] "CEMEX"         
##  [885,] "Cinepolis"     
##  [886,] "Corona"        
##  [887,] "Lala"          
##  [888,] "PEMEX"         
##  [889,] "Bimbo"         
##  [890,] "CEMEX"         
##  [891,] "Cinepolis"     
##  [892,] "Corona"        
##  [893,] "Lala"          
##  [894,] "PEMEX"         
##  [895,] "Bimbo"         
##  [896,] "Bodega Aurrera"
##  [897,] "Cinepolis"     
##  [898,] "Corona"        
##  [899,] "Lala"          
##  [900,] "PEMEX"         
##  [901,] "Bimbo"         
##  [902,] "Bodega Aurrera"
##  [903,] "CEMEX"         
##  [904,] "Corona"        
##  [905,] "Lala"          
##  [906,] "PEMEX"         
##  [907,] "Bimbo"         
##  [908,] "Bodega Aurrera"
##  [909,] "CEMEX"         
##  [910,] "Cinepolis"     
##  [911,] "Lala"          
##  [912,] "PEMEX"         
##  [913,] "Bimbo"         
##  [914,] "Bodega Aurrera"
##  [915,] "CEMEX"         
##  [916,] "Cinepolis"     
##  [917,] "Corona"        
##  [918,] "PEMEX"         
##  [919,] "Bimbo"         
##  [920,] "Bodega Aurrera"
##  [921,] "CEMEX"         
##  [922,] "Cinepolis"     
##  [923,] "Corona"        
##  [924,] "Lala"          
##  [925,] "Bodega Aurrera"
##  [926,] "CEMEX"         
##  [927,] "Cinepolis"     
##  [928,] "Corona"        
##  [929,] "Lala"          
##  [930,] "PEMEX"         
##  [931,] "Banorte"       
##  [932,] "CEMEX"         
##  [933,] "Cinepolis"     
##  [934,] "Corona"        
##  [935,] "Lala"          
##  [936,] "PEMEX"         
##  [937,] "Banorte"       
##  [938,] "Bodega Aurrera"
##  [939,] "Cinepolis"     
##  [940,] "Corona"        
##  [941,] "Lala"          
##  [942,] "PEMEX"         
##  [943,] "Banorte"       
##  [944,] "Bodega Aurrera"
##  [945,] "CEMEX"         
##  [946,] "Corona"        
##  [947,] "Lala"          
##  [948,] "PEMEX"         
##  [949,] "Banorte"       
##  [950,] "Bodega Aurrera"
##  [951,] "CEMEX"         
##  [952,] "Cinepolis"     
##  [953,] "Lala"          
##  [954,] "PEMEX"         
##  [955,] "Banorte"       
##  [956,] "Bodega Aurrera"
##  [957,] "CEMEX"         
##  [958,] "Cinepolis"     
##  [959,] "Corona"        
##  [960,] "PEMEX"         
##  [961,] "Banorte"       
##  [962,] "Bodega Aurrera"
##  [963,] "CEMEX"         
##  [964,] "Cinepolis"     
##  [965,] "Corona"        
##  [966,] "Lala"          
##  [967,] "Bimbo"         
##  [968,] "CEMEX"         
##  [969,] "Cinepolis"     
##  [970,] "Corona"        
##  [971,] "Lala"          
##  [972,] "PEMEX"         
##  [973,] "Banorte"       
##  [974,] "CEMEX"         
##  [975,] "Cinepolis"     
##  [976,] "Corona"        
##  [977,] "Lala"          
##  [978,] "PEMEX"         
##  [979,] "Banorte"       
##  [980,] "Bimbo"         
##  [981,] "Cinepolis"     
##  [982,] "Corona"        
##  [983,] "Lala"          
##  [984,] "PEMEX"         
##  [985,] "Banorte"       
##  [986,] "Bimbo"         
##  [987,] "CEMEX"         
##  [988,] "Corona"        
##  [989,] "Lala"          
##  [990,] "PEMEX"         
##  [991,] "Banorte"       
##  [992,] "Bimbo"         
##  [993,] "CEMEX"         
##  [994,] "Cinepolis"     
##  [995,] "Lala"          
##  [996,] "PEMEX"         
##  [997,] "Banorte"       
##  [998,] "Bimbo"         
##  [999,] "CEMEX"         
## [1000,] "Cinepolis"     
## [1001,] "Corona"        
## [1002,] "PEMEX"         
## [1003,] "Banorte"       
## [1004,] "Bimbo"         
## [1005,] "CEMEX"         
## [1006,] "Cinepolis"     
## [1007,] "Corona"        
## [1008,] "Lala"          
## [1009,] "Bimbo"         
## [1010,] "Bodega Aurrera"
## [1011,] "Cinepolis"     
## [1012,] "Corona"        
## [1013,] "Lala"          
## [1014,] "PEMEX"         
## [1015,] "Banorte"       
## [1016,] "Bodega Aurrera"
## [1017,] "Cinepolis"     
## [1018,] "Corona"        
## [1019,] "Lala"          
## [1020,] "PEMEX"         
## [1021,] "Banorte"       
## [1022,] "Bimbo"         
## [1023,] "Cinepolis"     
## [1024,] "Corona"        
## [1025,] "Lala"          
## [1026,] "PEMEX"         
## [1027,] "Banorte"       
## [1028,] "Bimbo"         
## [1029,] "Bodega Aurrera"
## [1030,] "Corona"        
## [1031,] "Lala"          
## [1032,] "PEMEX"         
## [1033,] "Banorte"       
## [1034,] "Bimbo"         
## [1035,] "Bodega Aurrera"
## [1036,] "Cinepolis"     
## [1037,] "Lala"          
## [1038,] "PEMEX"         
## [1039,] "Banorte"       
## [1040,] "Bimbo"         
## [1041,] "Bodega Aurrera"
## [1042,] "Cinepolis"     
## [1043,] "Corona"        
## [1044,] "PEMEX"         
## [1045,] "Banorte"       
## [1046,] "Bimbo"         
## [1047,] "Bodega Aurrera"
## [1048,] "Cinepolis"     
## [1049,] "Corona"        
## [1050,] "Lala"          
## [1051,] "Bimbo"         
## [1052,] "Bodega Aurrera"
## [1053,] "CEMEX"         
## [1054,] "Corona"        
## [1055,] "Lala"          
## [1056,] "PEMEX"         
## [1057,] "Banorte"       
## [1058,] "Bodega Aurrera"
## [1059,] "CEMEX"         
## [1060,] "Corona"        
## [1061,] "Lala"          
## [1062,] "PEMEX"         
## [1063,] "Banorte"       
## [1064,] "Bimbo"         
## [1065,] "CEMEX"         
## [1066,] "Corona"        
## [1067,] "Lala"          
## [1068,] "PEMEX"         
## [1069,] "Banorte"       
## [1070,] "Bimbo"         
## [1071,] "Bodega Aurrera"
## [1072,] "Corona"        
## [1073,] "Lala"          
## [1074,] "PEMEX"         
## [1075,] "Banorte"       
## [1076,] "Bimbo"         
## [1077,] "Bodega Aurrera"
## [1078,] "CEMEX"         
## [1079,] "Lala"          
## [1080,] "PEMEX"         
## [1081,] "Banorte"       
## [1082,] "Bimbo"         
## [1083,] "Bodega Aurrera"
## [1084,] "CEMEX"         
## [1085,] "Corona"        
## [1086,] "PEMEX"         
## [1087,] "Banorte"       
## [1088,] "Bimbo"         
## [1089,] "Bodega Aurrera"
## [1090,] "CEMEX"         
## [1091,] "Corona"        
## [1092,] "Lala"          
## [1093,] "Bimbo"         
## [1094,] "Bodega Aurrera"
## [1095,] "CEMEX"         
## [1096,] "Cinepolis"     
## [1097,] "Lala"          
## [1098,] "PEMEX"         
## [1099,] "Banorte"       
## [1100,] "Bodega Aurrera"
## [1101,] "CEMEX"         
## [1102,] "Cinepolis"     
## [1103,] "Lala"          
## [1104,] "PEMEX"         
## [1105,] "Banorte"       
## [1106,] "Bimbo"         
## [1107,] "CEMEX"         
## [1108,] "Cinepolis"     
## [1109,] "Lala"          
## [1110,] "PEMEX"         
## [1111,] "Banorte"       
## [1112,] "Bimbo"         
## [1113,] "Bodega Aurrera"
## [1114,] "Cinepolis"     
## [1115,] "Lala"          
## [1116,] "PEMEX"         
## [1117,] "Banorte"       
## [1118,] "Bimbo"         
## [1119,] "Bodega Aurrera"
## [1120,] "CEMEX"         
## [1121,] "Lala"          
## [1122,] "PEMEX"         
## [1123,] "Banorte"       
## [1124,] "Bimbo"         
## [1125,] "Bodega Aurrera"
## [1126,] "CEMEX"         
## [1127,] "Cinepolis"     
## [1128,] "PEMEX"         
## [1129,] "Banorte"       
## [1130,] "Bimbo"         
## [1131,] "Bodega Aurrera"
## [1132,] "CEMEX"         
## [1133,] "Cinepolis"     
## [1134,] "Lala"          
## [1135,] "Bimbo"         
## [1136,] "Bodega Aurrera"
## [1137,] "CEMEX"         
## [1138,] "Cinepolis"     
## [1139,] "Corona"        
## [1140,] "PEMEX"         
## [1141,] "Banorte"       
## [1142,] "Bodega Aurrera"
## [1143,] "CEMEX"         
## [1144,] "Cinepolis"     
## [1145,] "Corona"        
## [1146,] "PEMEX"         
## [1147,] "Banorte"       
## [1148,] "Bimbo"         
## [1149,] "CEMEX"         
## [1150,] "Cinepolis"     
## [1151,] "Corona"        
## [1152,] "PEMEX"         
## [1153,] "Banorte"       
## [1154,] "Bimbo"         
## [1155,] "Bodega Aurrera"
## [1156,] "Cinepolis"     
## [1157,] "Corona"        
## [1158,] "PEMEX"         
## [1159,] "Banorte"       
## [1160,] "Bimbo"         
## [1161,] "Bodega Aurrera"
## [1162,] "CEMEX"         
## [1163,] "Corona"        
## [1164,] "PEMEX"         
## [1165,] "Banorte"       
## [1166,] "Bimbo"         
## [1167,] "Bodega Aurrera"
## [1168,] "CEMEX"         
## [1169,] "Cinepolis"     
## [1170,] "PEMEX"         
## [1171,] "Banorte"       
## [1172,] "Bimbo"         
## [1173,] "Bodega Aurrera"
## [1174,] "CEMEX"         
## [1175,] "Cinepolis"     
## [1176,] "Corona"        
## [1177,] "Bimbo"         
## [1178,] "Bodega Aurrera"
## [1179,] "CEMEX"         
## [1180,] "Cinepolis"     
## [1181,] "Corona"        
## [1182,] "Lala"          
## [1183,] "Banorte"       
## [1184,] "Bodega Aurrera"
## [1185,] "CEMEX"         
## [1186,] "Cinepolis"     
## [1187,] "Corona"        
## [1188,] "Lala"          
## [1189,] "Banorte"       
## [1190,] "Bimbo"         
## [1191,] "CEMEX"         
## [1192,] "Cinepolis"     
## [1193,] "Corona"        
## [1194,] "Lala"          
## [1195,] "Banorte"       
## [1196,] "Bimbo"         
## [1197,] "Bodega Aurrera"
## [1198,] "Cinepolis"     
## [1199,] "Corona"        
## [1200,] "Lala"          
## [1201,] "Banorte"       
## [1202,] "Bimbo"         
## [1203,] "Bodega Aurrera"
## [1204,] "CEMEX"         
## [1205,] "Corona"        
## [1206,] "Lala"          
## [1207,] "Banorte"       
## [1208,] "Bimbo"         
## [1209,] "Bodega Aurrera"
## [1210,] "CEMEX"         
## [1211,] "Cinepolis"     
## [1212,] "Lala"          
## [1213,] "Banorte"       
## [1214,] "Bimbo"         
## [1215,] "Bodega Aurrera"
## [1216,] "CEMEX"         
## [1217,] "Cinepolis"     
## [1218,] "Corona"        
## [1219,] "Telcel"        
## [1220,] "Telcel"        
## [1221,] "Telcel"        
## [1222,] "Telcel"        
## [1223,] "Telcel"        
## [1224,] "Telcel"        
## [1225,] "Bimbo"         
## [1226,] "Bodega Aurrera"
## [1227,] "CEMEX"         
## [1228,] "Cinepolis"     
## [1229,] "Corona"        
## [1230,] "Lala"          
## [1231,] "Telcel"        
## [1232,] "Telcel"        
## [1233,] "Telcel"        
## [1234,] "Telcel"        
## [1235,] "Telcel"        
## [1236,] "Telcel"        
## [1237,] "Banorte"       
## [1238,] "Bodega Aurrera"
## [1239,] "CEMEX"         
## [1240,] "Cinepolis"     
## [1241,] "Corona"        
## [1242,] "Lala"          
## [1243,] "Telcel"        
## [1244,] "Telcel"        
## [1245,] "Telcel"        
## [1246,] "Telcel"        
## [1247,] "Telcel"        
## [1248,] "Telcel"        
## [1249,] "Banorte"       
## [1250,] "Bimbo"         
## [1251,] "CEMEX"         
## [1252,] "Cinepolis"     
## [1253,] "Corona"        
## [1254,] "Lala"          
## [1255,] "Telcel"        
## [1256,] "Telcel"        
## [1257,] "Telcel"        
## [1258,] "Telcel"        
## [1259,] "Telcel"        
## [1260,] "Telcel"        
## [1261,] "Banorte"       
## [1262,] "Bimbo"         
## [1263,] "Bodega Aurrera"
## [1264,] "Cinepolis"     
## [1265,] "Corona"        
## [1266,] "Lala"          
## [1267,] "Telcel"        
## [1268,] "Telcel"        
## [1269,] "Telcel"        
## [1270,] "Telcel"        
## [1271,] "Telcel"        
## [1272,] "Telcel"        
## [1273,] "Banorte"       
## [1274,] "Bimbo"         
## [1275,] "Bodega Aurrera"
## [1276,] "CEMEX"         
## [1277,] "Corona"        
## [1278,] "Lala"          
## [1279,] "Telcel"        
## [1280,] "Telcel"        
## [1281,] "Telcel"        
## [1282,] "Telcel"        
## [1283,] "Telcel"        
## [1284,] "Telcel"        
## [1285,] "Banorte"       
## [1286,] "Bimbo"         
## [1287,] "Bodega Aurrera"
## [1288,] "CEMEX"         
## [1289,] "Cinepolis"     
## [1290,] "Lala"          
## [1291,] "Telcel"        
## [1292,] "Telcel"        
## [1293,] "Telcel"        
## [1294,] "Telcel"        
## [1295,] "Telcel"        
## [1296,] "Telcel"        
## [1297,] "Banorte"       
## [1298,] "Bimbo"         
## [1299,] "Bodega Aurrera"
## [1300,] "CEMEX"         
## [1301,] "Cinepolis"     
## [1302,] "Corona"        
## [1303,] "Bimbo"         
## [1304,] "Bodega Aurrera"
## [1305,] "CEMEX"         
## [1306,] "Cinepolis"     
## [1307,] "Corona"        
## [1308,] "Lala"          
## [1309,] "Banorte"       
## [1310,] "Bodega Aurrera"
## [1311,] "CEMEX"         
## [1312,] "Cinepolis"     
## [1313,] "Corona"        
## [1314,] "Lala"          
## [1315,] "Banorte"       
## [1316,] "Bimbo"         
## [1317,] "CEMEX"         
## [1318,] "Cinepolis"     
## [1319,] "Corona"        
## [1320,] "Lala"          
## [1321,] "Banorte"       
## [1322,] "Bimbo"         
## [1323,] "Bodega Aurrera"
## [1324,] "Cinepolis"     
## [1325,] "Corona"        
## [1326,] "Lala"          
## [1327,] "Banorte"       
## [1328,] "Bimbo"         
## [1329,] "Bodega Aurrera"
## [1330,] "CEMEX"         
## [1331,] "Corona"        
## [1332,] "Lala"          
## [1333,] "Banorte"       
## [1334,] "Bimbo"         
## [1335,] "Bodega Aurrera"
## [1336,] "CEMEX"         
## [1337,] "Cinepolis"     
## [1338,] "Lala"          
## [1339,] "Banorte"       
## [1340,] "Bimbo"         
## [1341,] "Bodega Aurrera"
## [1342,] "CEMEX"         
## [1343,] "Cinepolis"     
## [1344,] "Corona"
frecuencia <- nrow(filtro)
paste("Existen ", frecuencia, " ocasiones que aparece de manera contigua y en el orden pedido las empresas de Oxxo y Telcel, de un total de " , nrow(Pern.equipos), " representando un ", round(frecuencia / nrow(Pern.equipos) * 100, 2), "%")
## [1] "Existen  1344  ocasiones que aparece de manera contigua y en el orden pedido las empresas de Oxxo y Telcel, de un total de  30240  representando un  4.44 %"

5.3 Bibliografia

Anderson, David R., Dennis J. Sweeney, and Thomas A. Williams. 2008. Estadística Para Administración y Economía. 10th ed. Australia Brasil Corea España Estados Unidos Japón México Reino Unido Singapur: Cengage Learning,.

Mendenhall, William, Robert J. Beaver, and Barbara M. Beaver. 2010. Introducción a La Probabilidad y Estadística. 13th ed. Cengage Learning Editores, S.A. de C.V.,.

Walpole, Ronald E., Raymond H. Myers, and Sharon L. Myers. 2012. Probabilidad y Estadística Para Ingeniería y Ciencias. Novena Edición. México: Pearson.