Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúPublic NotInheritable Class Fields
''' ----------------------------------------------------------------------------------------------------
''' <summary>
''' The referenced assembly names to test their members.
''' </summary>
''' ----------------------------------------------------------------------------------------------------
Public Shared ReadOnly AssemblyNames As String() = {
"Microsoft.VisualStudio.QualityTools.UnitTestFramework",
"..."
}
''' ----------------------------------------------------------------------------------------------------
''' <summary>
''' The minimum recommended size for a Structure type.
''' </summary>
''' ----------------------------------------------------------------------------------------------------
''' <remarks>
''' <see href="http://stackoverflow.com/a/1082340/1248295"/>
''' </remarks>
''' ----------------------------------------------------------------------------------------------------
Public Shared ReadOnly MinimumRecommendedStructureSize As Integer = 8
''' ----------------------------------------------------------------------------------------------------
''' <summary>
''' The maximum recommended size for a Structure type.
''' </summary>
''' ----------------------------------------------------------------------------------------------------
''' <remarks>
''' <see href="http://msdn.microsoft.com/en-us/library/ms229017.aspx"/>
''' </remarks>
''' ----------------------------------------------------------------------------------------------------
Public Shared ReadOnly MaximumRecommendedStructureSize As Integer = 16
Private Sub New()
End Sub
End Class
' ***********************************************************************
' Author : Elektro
' Modified : 15-December-2016
' ***********************************************************************
Option Strict On
Option Explicit On
Option Infer Off
Imports Microsoft.VisualStudio.TestTools.UnitTesting
Imports System.Reflection
Imports System.Runtime.InteropServices
''' <summary>
''' Performs various tests on the <see langword="Structure"/> members of all the assemblies defined in
''' <see cref="Fields.AssemblyNames"/>.
''' </summary>
<TestClass()>
Public Class StructureTests
#Region " Test Methods "
''' <summary>
''' Performs a test on the <see langword="Structure"/> members of all the assemblies defined in
''' <see cref="Fields.AssemblyNames"/>,
''' to determine whether a structure has the proper instance size regarding to .NET design guidelines.
''' </summary>
<TestMethod()>
<TestCategory("Structures")>
Public Sub TestStructureSizes()
Dim testFailed As Boolean = False
Dim testException As AssertFailedException = Nothing
' Safe Structures to exclude in this test.
' ----------------------------------------
' These structures could be smaller or bigger than what is recommended, however, are not considered an error.
Dim excludedStructs As String() = {
"MyNamespace.MyStructure"
}
For Each assName As String In Fields.AssemblyNames
Dim ass As Assembly = Assembly.Load(assName)
Debug.WriteLine(String.Format("Testing Assembly '{0}.dll'...", assName))
Debug.WriteLine(String.Empty)
Dim excludedStructures As IEnumerable(Of Type) =
From t As Type In ass.GetTypes()
Where (t.IsValueType) AndAlso (Not t.IsClass) AndAlso (Not t.IsEnum) AndAlso (t.IsVisible)
Where excludedStructs.Contains(String.Format("{0}.{1}", t.Namespace, t.Name))
Order By String.Format("{0}.{1}", t.Namespace, t.Name)
Dim includedStructures As IEnumerable(Of Type) =
From t As Type In ass.GetTypes()
Where (t.IsValueType) AndAlso (Not t.IsClass) AndAlso (Not t.IsEnum) AndAlso (t.IsVisible)
Where Not excludedStructs.Contains(String.Format("{0}.{1}", t.Namespace, t.Name))
Order By String.Format("{0}.{1}", t.Namespace, t.Name)
If (excludedStructures.Count <> 0) Then
Debug.WriteLine(String.Format(" Excluded Structures:"))
For Each t As Type In excludedStructures
Debug.WriteLine(String.Format(" '{0}.{1}')",
t.Namespace, t.Name))
Next t
Debug.WriteLine(String.Empty)
End If
If (includedStructures.Count <> 0) Then
For Each t As Type In includedStructures
Try
Me.EvaluateStructureSize(t)
Catch ex As AssertFailedException
Debug.WriteLine(String.Format(" Testing Structure '{0}.{1}' ({2} Bytes)... FAIL", t.Namespace, t.Name, Marshal.SizeOf(t)))
If (testException Is Nothing) Then
testException = ex
testFailed = True
End If
Catch ex As Exception
Debug.WriteLine(String.Format(" Testing Structure '{0}.{1}'... ERROR. EXCEPTION THROWN.",
t.Namespace, t.Name))
Debug.WriteLine("EXCEPTION MESSAGE:")
Debug.WriteLine(ex.Message)
Throw
End Try
Next t
Debug.WriteLine(String.Empty)
End If
If (testFailed) Then
Throw testException
End If
Next assName
End Sub
#End Region
#Region " Private Methods "
''' <summary>
''' Determines whether the instance size of a structure is smaller and/or greater than the size recommended.
''' </summary>
Private Sub EvaluateStructureSize(ByVal t As Type)
Dim currentStructureSize As Integer = Marshal.SizeOf(t)
Assert.IsTrue((currentStructureSize >= Fields.MinimumRecommendedStructureSize),
String.Format("The current instance size of Structure '{0}.{1}' is {2} bytes, which is smaller than the minimum recommended {3} bytes.",
t.Namespace, t.Name, currentStructureSize, Fields.MinimumRecommendedStructureSize))
Assert.IsTrue((currentStructureSize <= Fields.MaximumRecommendedStructureSize),
String.Format("The current instance size of Structure '{0}.{1}' is {2} bytes, which is greater than the maximum recommended {3} bytes.",
t.Namespace, t.Name, currentStructureSize, Fields.MaximumRecommendedStructureSize))
Debug.WriteLine(String.Format(" Testing Structure '{0}.{1}' ({2} Bytes)... Ok", t.Namespace, t.Name, currentStructureSize))
End Sub
#End Region
End Class
CitarTest Name: TestStructureSizes
Test Outcome: Passed
Result StandardOutput:
Debug Trace:
Testing Assembly 'Elektro.Application.dll'...
Testing Structure 'Elektro.Application.UI.Types.NonClientAreaMargins' (16 Bytes)... Ok
Testing Assembly 'Elektro.Application.ThirdParty.dll'...
Testing Assembly 'Elektro.Core.dll'...
Testing Structure 'Elektro.Core.Text.RegEx.Types.MatchPositionInfo' (16 Bytes)... Ok
Testing Assembly 'Elektro.Imaging.dll'...
Testing Assembly 'Elektro.Interop.dll'...
Excluded Structures:
'Elektro.Interop.Win32.Types.AppbarData')
'Elektro.Interop.Win32.Types.BlendFunction')
'Elektro.Interop.Win32.Types.CallWndProcStruct')
...
Testing Assembly 'Elektro.Multimedia.dll'...
Testing Structure 'Elektro.Multimedia.Types.StereoVolume' (8 Bytes)... Ok
Testing Assembly 'Elektro.Net.dll'...
Testing Assembly 'Elektro.Processes.dll'...
Testing Assembly 'Elektro.System.dll'...
''' ----------------------------------------------------------------------------------------------------
''' <summary>
''' Represents the BMD File Format.
''' </summary>
''' ----------------------------------------------------------------------------------------------------
''' <remarks>
''' <see href="http://datacrystal.romhacking.net/wiki/Persona_3_and_4/BMD_%28File_Format%29"/>
''' </remarks>
''' ----------------------------------------------------------------------------------------------------
Public NotInheritable Class BMDFormat
#Region " Private Fields "
''' <summary>
''' Specifies the offset where the header begins.
''' </summary>
Private ReadOnly HeaderOffset As Integer = &H0
''' <summary>
''' Specifies the offset where the non-text table begins. This is the first table in the BMD file format.
''' </summary>
Private ReadOnly TableNonTextOffset As Integer = &H24
''' <summary>
''' Specifies the offset where the text table begins. This is the second table in the BMD file format.
''' </summary>
Private TableTextOffset As Integer ' The value is determined later, at the end of the TableNonTextOffset table.
''' <summary>
''' Contains the offset location and length of the BMD header offsets.
''' </summary>
Private ReadOnly HeaderOffsets As New Dictionary(Of String, KeyValuePair(Of Integer, Integer))(StringComparer.Ordinal) From {
{"ChunkID", New KeyValuePair(Of Integer, Integer)(&H0, Nothing)},
{"Size", New KeyValuePair(Of Integer, Integer)(&H4, &H5)},
{"MagicIdentifier", New KeyValuePair(Of Integer, Integer)(&H8, &HB)},
{"EndOfTextTable", New KeyValuePair(Of Integer, Integer)(&H10, &H11)},
{"OffsetsAmount", New KeyValuePair(Of Integer, Integer)(&H14, &H15)},
{"EntriesAmount", New KeyValuePair(Of Integer, Integer)(&H18, &H19)}
} ' Friendly-Name, {Start-Offset, End-Offset}
#End Region
#Region " Properties "
''' <summary>
''' Gets the raw byte-data of the BMD file.
''' </summary>
Public ReadOnly Property RawData As Byte()
Get
Return Me.rawDataB
End Get
End Property
Private ReadOnly rawDataB As Byte()
''' <summary>
''' Gets the Chunk ID of the file format.
''' </summary>
Public ReadOnly Property ChunkID As Byte
Get
Return Me.chunkIDB
End Get
End Property
Private chunkIDB As Byte
''' <summary>
''' Gets the size of the file.
''' </summary>
Public ReadOnly Property Size As Short
Get
Return Me.sizeB
End Get
End Property
Private sizeB As Short
''' <summary>
''' Gets the Magic Identifier of the file format.
''' </summary>
Public ReadOnly Property MagicIdentifier As Byte()
Get
Return Me.magicIdentifierB
End Get
End Property
Private magicIdentifierB As Byte()
''' <summary>
''' Gets the end of text table of the file format.
''' </summary>
Public ReadOnly Property EndOfTextTable As Short
Get
Return Me.endOfTextTableB
End Get
End Property
Private endOfTextTableB As Short
''' <summary>
''' Gets the amount of offsets in offset table of the file format.
''' </summary>
Public ReadOnly Property OffsetsAmount As Short
Get
Return Me.offsetsAmountB
End Get
End Property
Private offsetsAmountB As Short
''' <summary>
''' Gets the amount of entries of the file format.
''' </summary>
Public ReadOnly Property EntriesAmount As Short
Get
Return Me.entriesAmountB
End Get
End Property
Private entriesAmountB As Short
#End Region
#Region " Constructors "
Private Sub New()
End Sub
Public Sub New(ByVal filepath As String)
Me.New(File.ReadAllBytes(filepath))
End Sub
Public Sub New(ByVal file As FileInfo)
Me.New(file.FullName)
End Sub
Public Sub New(ByVal raw As Byte())
Me.rawDataB = raw
Me.ReadHeader()
End Sub
#End Region
#Region " Private Methods "
''' <summary>
''' Reads the BMD header.
''' </summary>
Private Sub ReadHeader()
Dim chunkID As KeyValuePair(Of Integer, Integer) = Me.HeaderOffsets("ChunkID")
Dim size As KeyValuePair(Of Integer, Integer) = Me.HeaderOffsets("Size")
Dim magicIdentifier As KeyValuePair(Of Integer, Integer) = Me.HeaderOffsets("MagicIdentifier")
Dim endOfTextTable As KeyValuePair(Of Integer, Integer) = Me.HeaderOffsets("EndOfTextTable")
Dim offsetsAmount As KeyValuePair(Of Integer, Integer) = Me.HeaderOffsets("OffsetsAmount")
Dim entriesAmount As KeyValuePair(Of Integer, Integer) = Me.HeaderOffsets("EntriesAmount")
Me.magicIdentifierB = Me.GetBytes(Me.HeaderOffset, magicIdentifier.Key, magicIdentifier.Value)
Me.chunkIDB = Me.GetByte(Me.HeaderOffset, chunkID.Key)
Me.sizeB = BitConverter.ToInt16(Me.GetBytes(Me.HeaderOffset, size.Key, size.Value), 0)
Me.endOfTextTableB = BitConverter.ToInt16(Me.GetBytes(Me.HeaderOffset, endOfTextTable.Key, endOfTextTable.Value), 0)
Me.offsetsAmountB = BitConverter.ToInt16(Me.GetBytes(Me.HeaderOffset, offsetsAmount.Key, offsetsAmount.Value), 0)
Me.entriesAmountB = BitConverter.ToInt16(Me.GetBytes(Me.HeaderOffset, entriesAmount.Key, entriesAmount.Value), 0)
Me.TableTextOffset = Me.TableNonTextOffset + (8 * (entriesAmountB - 1)) + 2
Me.ReadNonTextTable()
Me.ReadTextTable()
End Sub
''' <summary>
''' Reads the non-text table of the BMD file format.
''' <para></para>
''' This table seems not useful.
''' </summary>
Private Sub ReadNonTextTable()
For x As Integer = 0 To (entriesAmountB - 1)
Dim offset As Integer = Me.TableNonTextOffset + (8 * x)
Dim data As Byte() = Me.GetBytes(offset, 0, 1)
Dim value As Short = BitConverter.ToInt16(data, 0)
#If DEBUG Then
Debug.WriteLine(String.Format("Entry.Index.: {0}", (x + 1)))
Debug.WriteLine(String.Format("Start.Offset: DEC={0,-4} HEX=0x{1}", offset, offset.ToString("X")))
Debug.WriteLine(String.Format("Raw.Bytes...: {0}", String.Join(" ", From b As Byte In data Select b.ToString("X"))))
Debug.WriteLine(String.Format("Int16.Value.: {0}", value))
Debug.WriteLine(String.Empty)
#End If
Next
End Sub
''' <summary>
''' Reads the text table of the BMD file format.
''' <para></para>
''' This table contains the items identifiers and their descriptions for further translation.
''' </summary>
Private Sub ReadTextTable()
For x As Integer = 0 To ...
' ...?
Next
End Sub
Private Function GetByte(ByVal start As Integer, ByVal offset As Integer) As Byte
Return Buffer.GetByte(array:=Me.RawData, index:=start + offset)
End Function
Private Function GetBytes(ByVal start As Integer, ByVal from As Integer, ByVal [to] As Integer) As Byte()
Return Me.rawDataB.Skip(start + from).Take(([to] - from) + 1).ToArray()
End Function
#End Region
End Class
CitarTitle..(Original): The Kybalion
Title...(Spanish): El Kybalión
Author...........: A person or persons under the pseudonym of "The Three Initiates"
Year.............: 1908
Book.History.....: http://en.wikipedia.org/wiki/The_Kybalion
Synopsis:
---------
El Kybalión es un documento del siglo XIX que resume las enseñanzas del hermetismo, también conocido como los Siete Principios Herméticos. Su autoría se atribuye a un grupo anónimo de personas autodenominados Los Tres Iniciados que recopilaron las enseñanzas del sabio egipcio Hermes Trismegisto. Los siete principios o axiomas descritos en el Kybalión, son: Mentalismo, Correspondencia, Vibración, Polaridad, Ritmo, Causa - Efecto y Generación.
Estos son los autores que se incluyen en esta colección:
|
|
¿Qué Es La Meditación?; Bhagwan Shree Rajneesh, also known as Osho; 1995
...Y La Verdad Os Hará Libres; David Icke; 1995
200 Pruebas de que La Tierra No es una Pelota que da Vueltas; Eric Dubay; 2015
A Hombros de Gigantes; Stephen William Hawking; 2002
A Través Del Tiempo; Brian Weiss; 1993
Agujeros Negros y Pequeños Universos y Otros Ensayos; Stephen William Hawking; 1993
Ahora puedes descubrir el verdadero significado de la vida que planeaste antes de nacer; Robert Schwartz; 2009
Alineamiento Cósmico, 7 Mil Años de Preparación; Franca Rosa Canonico de Schramm; 2012
Amor, vida y consciencia; Emilio Carrillo; 2012
Antes Del Big Bang; Martin Bojowald; 2010
Autobiografía de un Yogui; Paramahansa Yogananda; 1946
Aventuras Fuera Del Cuerpo; William Buhlman; 1996
Brevisima Historia Del Tiempo; Stephen William Hawking, Leonard Mlodinow; 2005
Buscadores; Emilio Carrillo; 2009
Ciencia y Ocultismo; Juan García Font; 1990
Comentarios Psicológicos Sobre Las Enseñanzas de Gurdjieff y Ouspensky (Volumen 1); Maurice Nicoll; 1996
Comentarios Psicológicos Sobre Las Enseñanzas de Gurdjieff y Ouspensky (Volumen 2); Maurice Nicoll; 1996
Comentarios Psicológicos Sobre Las Enseñanzas de Gurdjieff y Ouspensky (Volumen 3); Maurice Nicoll; 1996
Comentarios Psicológicos Sobre Las Enseñanzas de Gurdjieff y Ouspensky (Volumen 4); Maurice Nicoll; 1996
Comentarios Psicológicos Sobre Las Enseñanzas de Gurdjieff y Ouspensky (Volumen 5); Maurice Nicoll; 1996
Conversaciones con Dios I; Neale Donald Walsch; 1996
Conversaciones con Dios II; Neale Donald Walsch; 1997
Conversaciones con Dios III; Neale Donald Walsch; 1998
Cómo dejar atrás las tensiones y el estrés y alcanzar la paz interior; Brian Weiss; 2002
Cómo Viajar Fuera Del Cuerpo; Joselito Montero; 2013
Del big bang a los agujeros negros; Stephen William Hawking; 1988
Desapegarse Sin Anestesia; Walter Riso; 2012
Desarrolla Una Mente Prodigiosa; Ramón Campayo Martínez; 2005
Descubre las infinitas posibilidades para cambiar tu realidad cotidiana; William Arntz, Betsy Chasse, Mark Vicente; 2005
Destino de Las Almas; Dr. Michael Newton; 2000
Diccionario Del Código Da Vinci; Simon Cox; 2004
Dios; Emilio Carrillo; 2015
Dioses y Faraones de la Mitología Egipcia; Geraldine Harris; 1982
Dogma y Ritual de la Alta Magia; Eliphas Levi; 1854-1856
Egipto - El Libro de La Vida y La Muerte; Joann Fletcher; 2002
El alma Del Ateísmo; André Comte-Sponville; 2006
El Aura Humana y Los Registros Akáshicos; Charles Webster Leadbeater; 1896
El Cordón de Plata; T. Lobsang Rampa; 1960
El Corán; N/A; N/A
El Cuarto Camino; Pyotr Demianovich Ouspenskii (known in English as Peter D. Ouspensky); 1957
El Cuerpo Astral y Otros Fenómenos Astrales; Arthur Edward Powell; 1926
El Enigma Del Hombre Gris; Ricardo González, Roberto Villamil; 2014
El Gran Diseño; Stephen William Hawking, Leonard Mlodinow; 2010
El Hombre Perfecto; Annie Besant; 1975
El Kybalión; A person or persons under the pseudonym of "The Three Initiates"; 1908
El Lenguaje de los Pájaros; Farid ud-Din Attar; 1177 (poem), 1857 (paperback)
El Libro de Enoc; N/A; Approximately between 300 BC - 100 AC
El Libro Negro de los Illuminati; Robert Goodman; 2006
El libro que cambiará el mundo; David Icke; 1999
El Oro de Los Dioses; Erich Von Däniken; 1973
El Poder Del Pensamiento Flexible; Walter Riso; 2007
El Poder Psíquico de Las Piramides; Bill Schul, Ed Pettit; 1975
El Principio Era El Fin; Oscar Kiss Maerth; 1971
El Sueño Sagrado; Scott Cunningham; 1999
El Templo Del Cosmos; Jeremy Naydler; 1996
El Templo Misterioso de La Prehistoria; Fernand Niel; 1976
El Tercer Ojo; T. Lobsang Rampa; 1956
El Tiempo Vivo y la Integración de la Vida; Maurice Nicoll; 1952
El Universo en una Cáscara de Nuez; Stephen William Hawking; 2001
El viaje de un neurocirujano a la vida después de la muerte; Eben Alexander; 2012
Ellos, los seres extraterrestres; Fabio Zerpa; 1996
Encuentros Con Hombres Notables; George Ivanovich Gurdjieff; 1963
Enseñanzas Espirituales; Ramana Maharshi; 1988
Enseñanzas Sobre el Soñar Activo y el Viajar por la Conciencia Interdimensional; N/A; 2002?
Es Hora de Vivir; Andreas Moritz; 2005
Existió Otra Humanidad; Juan José BenÃtez; 1975
Experiencias "fuera del cuerpo"; Oliver Fox; 1962
Experiencias cercanas a La Muerte; Dr. Miguel Ángel Pertierra Quesada; 2014
Extractos de encuentros; Pyotr Demianovich Ouspenskii (known in English as Peter D. Ouspensky); 1986
Fractáfisis; Daniel Antianka; 2013
Fragmentos de una Enseñanza Desconocida; Pyotr Demianovich Ouspenskii (known in English as Peter D. Ouspensky); 1949
Hacia una Física de los OVNI; Francisco Aréjula López; 1973
Hijos de Matrix; David Icke; 2001
Hiperespacio; Michio Kaku; 1994
Introducción a Ho'oponopono; Alfredo Hoffman; ?
La Amenaza Extraterrestre; Salvador Freixedo; 1989
La Biblia; Moises, Ezekiel, Jeremiah, Ezra, Mordecai, Solomon and much more... all of them "guided" by the hand of God.; N/A
La Ciencia Misteriosa de los Faraones; Théophile Moreux; 1923
La Conspiración Reptiliana; José Luis Camacho Espina; 2015
La Cuarta Dimensión; Bob Frissell; 1994
La Energía Humana; Pierre Teilhard de Chardin; 1962
La expansión de la consciencia más allá de a materia; Robert Allan Monroe; 1971
La Fase; Michael Raduga; 2014
La Flecha en El Blanco; Maurice Nicoll; 1985
La Física Del Alma; Dr. Amit Goswami; 2000
La historia de los OVNI en España; Iker Jiménez; 2012
La Historia Miente; Erich Von Däniken; 2009
La historia real de un psiquiatra, su joven paciente y la terapia de regresión que cambió sus vidas para siempre; Brian Weiss; 1988
La Humanidad de Dios; José María Castillo; 2012
La Mente de Dios; Paul Davies; 1992
La Mente Despierta; Tenzin Gyatso; 2011
La Otra Cara de los Alienígenas; Pablo Santa Cruz de La Vega; 2013
La Posibilidad Buena; Gianni Vattimo, Carmelo Dotolo; 2009
La Protohistoria; Pedro Guirao Hernández; 1978
La Pura Conciencia de Ser; Ken Wilber; 2004
La Realidad Del Ser; Jeanne de Salzmann; 2010
La Religión y La Nada; Keiji Nishitani; 1982
La Respuesta; Pablo E. Hawnser; 2009?
La Tabla de Esmeralda; Hermes Trismegistus; N/A
La Teoría de La Vida Eterna; Rodney Collin; 1956
La Tierra Hueca; Raymond W. Bernard; 1969
La Vida Entre Las Vidas; Dr. Michael Newton; 2004
La Vida Es Real Solo Cuando "Yo Soy"; George Ivanovich Gurdjieff; 1936
Las Leyes Universales de La Vida; Sir John Templeton; 1998
Las Pruebas Científicas de La Existencia del Alma; Eduardo Menoni; 2014
Las Religiones Del Mundo; Huston Smith; 1958
Las Religiones Que Nos Separan; Salvador Freixedo; 1995
Las Sociedades Secretas; Serge Hutin; 1952
Lazos de Amor; Brian Weiss; 1997
Los Arcanos de Thoth; Franca Rosa Canonico de Schramm; 2012
Los Códigos Ocultos; Emilio Carrillo; 2005
Los Elohim y La Serpiente Emplumada; Lice Moreno; 1985
Los Fenómenos de la Proyección Astral; Sylvan Muldoon, Hereward Carrington; 1951
Los Illuminati y El Nuevo Orden Mundial; Benjamín Hernandez; 2015
Los Interanos, La Ciudad de Cristal; Franca Rosa Canonico de Schramm; 2012
Los Mensajes de Los Sabios; Brian Weiss; 2001
Los secretos de la secta más temida por la Iglesia Católica; Paul H. Koch; 2006?
Los Seramitas, El Camino de Regreso; Franca Rosa Canonico de Schramm; 2012
Los Siren-Lemurianos, Ciudad de Luz y Amor; Franca Rosa Canonico de Schramm; 2012
Meditar - Por Qué y Cómo; Karlfried Graf Dürckheim; 1976
Memorias de Un Ser Extraterrestre; Sally Barbosa; 1982
Mi Preparación Para Ganímedes; Yosip Ibrahim; 1974
Muchos Cuerpos, Una Misma Alma; Brian Weiss; 2005
Más Allá Del Materialismo Espiritual; Chogyam Trungpa; 1973
Nada es lo que parece; Juan José Benítez; 2012
No Somos Los Primeros; Andrew Tomas; 1972
Otros Mundos; Paul Davies; 1980
Pensar Bien, Sentirse Bien; Walter Riso; 2004
Perspectivas Desde El Mundo Real; George Ivanovich Gurdjieff; 1973
Planeta 3.3.3, Los Guardianes de Tera; Franca Rosa Canonico de Schramm; 2012
Por Qué No Hay Extraterrestres en La Tierra; Armando Arellano Ferro; 2003
Psicología de La Posible Evolución Del Hombre; Pyotr Demianovich Ouspenskii (known in English as Peter D. Ouspensky); 1950
Qué significa ser tú; Julian Baggini; 2011
Reflexiones Para Vivir Mejor; Walter Riso; 2005
Relatos de Belcebú a su nieto (Libro 1º); George Ivanovich Gurdjieff; 1950
Relatos de Belcebú a su nieto (Libro 2º); George Ivanovich Gurdjieff; 1950
Relatos de Belcebú a su nieto (Libro 3º); George Ivanovich Gurdjieff; 1950
S.O.S a La Humanidad; Juan José Benítez; 1975
Ser, Verdad, Acción; Ernst Tugendhat; 1992
Supercuerdas, dimensiones ocultas, y la búsqueda de una teoría final; Brian Greene; 1999
Sólo El Amor Es Real; Brian Weiss; 1997
Teorias Del Todo; John David Barrow; 1991
Todo lo Demás es Ilusión; David Icke; 2005
TOE's (Teorías del Todo); Lander López Icedo, José María Porro Azpiazu, Erik Torróntegui Muñoz, Miguel García Echevarría; 2004
Un Amanecer; Elisabeth Kübler-Ross; 1991
Un camino hacia la luz en el umbral de la muerte; Dr. José Miguel Gaona Cartolano; 2012
Un faraón llamado Jesús; Claude-Brigitte Carcenac Pujol, Llogari Pujol Boix; 1987
Un Punto Azul Pálido; Carl Sagan; 1994
Un Universo de La Nada; Lawrence Maxwell Krauss; 2012
Una búsqueda de la verdad; Pyotr Demianovich Ouspenskii (known in English as Peter D. Ouspensky); 1979
Una filosofía de la carne; Michel Henry; 2000
Una Interpretacion de Las Parabolas y Milagros de Jesucristo; Maurice Nicoll; 1950
Una visión holística de la vida; Salvador Freixedo, Magdalena del Amo; 1992
Universos Paralelos; Michio Kaku; 2004
Vida Después de La Vida; Raymond A. Moody; 1975
Vida En Otros Mundos; Germán Puerta Restrepo; 2001
Vivir en El universo - Guía Práctica; Matías Gustavo de Stefano; 2011
Vivir en La Tierra - Guía Práctica; Matías Gustavo de Stefano; 2011
Yo Visité Ganímedes; Yosip Ibrahim; 1972
Alfredo Hoffman; Introducción a Ho'oponopono; ?
Andreas Moritz; Es Hora de Vivir; 2005
Andrew Tomas; No Somos Los Primeros; 1972
André Comte-Sponville; El alma Del Ateísmo; 2006
Annie Besant; El Hombre Perfecto; 1975
Armando Arellano Ferro; Por Qué No Hay Extraterrestres en La Tierra; 2003
Arthur Edward Powell; El Cuerpo Astral y Otros Fenómenos Astrales; 1926
Benjamín Hernandez; Los Illuminati y El Nuevo Orden Mundial; 2015
Bhagwan Shree Rajneesh, also known as Osho; ¿Qué Es La Meditación?; 1995
Bill Schul, Ed Pettit; El Poder Psíquico de Las Piramides; 1975
Bob Frissell; La Cuarta Dimensión; 1994
Brian Greene; Supercuerdas, dimensiones ocultas, y la búsqueda de una teoría final; 1999
Brian Weiss; A Través Del Tiempo; 1993
Brian Weiss; Cómo dejar atrás las tensiones y el estrés y alcanzar la paz interior; 2002
Brian Weiss; La historia real de un psiquiatra, su joven paciente y la terapia de regresión que cambió sus vidas para siempre; 1988
Brian Weiss; Lazos de Amor; 1997
Brian Weiss; Los Mensajes de Los Sabios; 2001
Brian Weiss; Muchos Cuerpos, Una Misma Alma; 2005
Brian Weiss; Sólo El Amor Es Real; 1997
Carl Sagan; Un Punto Azul Pálido; 1994
Charles Webster Leadbeater; El Aura Humana y Los Registros Akáshicos; 1896
Chogyam Trungpa; Más Allá Del Materialismo Espiritual; 1973
Claude-Brigitte Carcenac Pujol, Llogari Pujol Boix; Un faraón llamado Jesús; 1987
Daniel Antianka; Fractáfisis; 2013
David Icke; ...Y La Verdad Os Hará Libres; 1995
David Icke; El libro que cambiará el mundo; 1999
David Icke; Hijos de Matrix; 2001
David Icke; Todo lo Demás es Ilusión; 2005
Dr. Amit Goswami; La Física Del Alma; 2000
Dr. José Miguel Gaona Cartolano; Un camino hacia la luz en el umbral de la muerte; 2012
Dr. Michael Newton; Destino de Las Almas; 2000
Dr. Michael Newton; La Vida Entre Las Vidas; 2004
Dr. Miguel Ángel Pertierra Quesada; Experiencias cercanas a La Muerte; 2014
Eben Alexander; El viaje de un neurocirujano a la vida después de la muerte; 2012
Eduardo Menoni; Las Pruebas Científicas de La Existencia del Alma; 2014
Eliphas Levi; Dogma y Ritual de la Alta Magia; 1854-1856
Elisabeth Kübler-Ross; Un Amanecer; 1991
Emilio Carrillo; Amor, vida y consciencia; 2012
Emilio Carrillo; Buscadores; 2009
Emilio Carrillo; Dios; 2015
Emilio Carrillo; Los Códigos Ocultos; 2005
Eric Dubay; 200 Pruebas de que La Tierra No es una Pelota que da Vueltas; 2015
Erich Von Däniken; El Oro de Los Dioses; 1973
Erich Von Däniken; La Historia Miente; 2009
Ernst Tugendhat; Ser, Verdad, Acción; 1992
Fabio Zerpa; Ellos, los seres extraterrestres; 1996
Farid ud-Din Attar; El Lenguaje de los Pájaros; 1177 (poem), 1857 (paperback)
Fernand Niel; El Templo Misterioso de La Prehistoria; 1976
Franca Rosa Canonico de Schramm; Alineamiento Cósmico, 7 Mil Años de Preparación; 2012
Franca Rosa Canonico de Schramm; Los Arcanos de Thoth; 2012
Franca Rosa Canonico de Schramm; Los Interanos, La Ciudad de Cristal; 2012
Franca Rosa Canonico de Schramm; Los Seramitas, El Camino de Regreso; 2012
Franca Rosa Canonico de Schramm; Los Siren-Lemurianos, Ciudad de Luz y Amor; 2012
Franca Rosa Canonico de Schramm; Planeta 3.3.3, Los Guardianes de Tera; 2012
Francisco Aréjula López; Hacia una Física de los OVNI; 1973
George Ivanovich Gurdjieff; Encuentros Con Hombres Notables; 1963
George Ivanovich Gurdjieff; La Vida Es Real Solo Cuando "Yo Soy"; 1936
George Ivanovich Gurdjieff; Perspectivas Desde El Mundo Real; 1973
George Ivanovich Gurdjieff; Relatos de Belcebú a su nieto (Libro 1º); 1950
George Ivanovich Gurdjieff; Relatos de Belcebú a su nieto (Libro 2º); 1950
George Ivanovich Gurdjieff; Relatos de Belcebú a su nieto (Libro 3º); 1950
Geraldine Harris; Dioses y Faraones de la Mitología Egipcia; 1982
Germán Puerta Restrepo; Vida En Otros Mundos; 2001
Gianni Vattimo, Carmelo Dotolo; La Posibilidad Buena; 2009
Hermes Trismegistus; La Tabla de Esmeralda; N/A
Huston Smith; Las Religiones Del Mundo; 1958
Iker Jiménez; La historia de los OVNI en España; 2012
Jeanne de Salzmann; La Realidad Del Ser; 2010
Jeremy Naydler; El Templo Del Cosmos; 1996
Joann Fletcher; Egipto - El Libro de La Vida y La Muerte; 2002
John David Barrow; Teorias Del Todo; 1991
Joselito Montero; Cómo Viajar Fuera Del Cuerpo; 2013
José Luis Camacho Espina; La Conspiración Reptiliana; 2015
José María Castillo; La Humanidad de Dios; 2012
Juan García Font; Ciencia y Ocultismo; 1990
Juan José Benítez; Existió Otra Humanidad; 1975
Juan José Benítez; Nada es lo que parece; 2012
Juan José Benítez; S.O.S a La Humanidad; 1975
Julian Baggini; Qué significa ser tú; 2011
Karlfried Graf Dürckheim; Meditar - Por Qué y Cómo; 1976
Keiji Nishitani; La Religión y La Nada; 1982
Ken Wilber; La Pura Conciencia de Ser; 2004
Lander López Icedo, José María Porro Azpiazu, Erik Torróntegui Muñoz, Miguel García Echevarría; TOE's (Teorías del Todo); 2004
Lawrence Maxwell Krauss; Un Universo de La Nada; 2012
Lice Moreno; Los Elohim y La Serpiente Emplumada; 1985
Martin Bojowald; Antes Del Big Bang; 2010
Matías Gustavo de Stefano; Vivir en El universo - Guía Práctica; 2011
Matías Gustavo de Stefano; Vivir en La Tierra - Guía Práctica; 2011
Maurice Nicoll; Comentarios Psicológicos Sobre Las Enseñanzas de Gurdjieff y Ouspensky (Volumen 1); 1996
Maurice Nicoll; Comentarios Psicológicos Sobre Las Enseñanzas de Gurdjieff y Ouspensky (Volumen 2); 1996
Maurice Nicoll; Comentarios Psicológicos Sobre Las Enseñanzas de Gurdjieff y Ouspensky (Volumen 3); 1996
Maurice Nicoll; Comentarios Psicológicos Sobre Las Enseñanzas de Gurdjieff y Ouspensky (Volumen 4); 1996
Maurice Nicoll; Comentarios Psicológicos Sobre Las Enseñanzas de Gurdjieff y Ouspensky (Volumen 5); 1996
Maurice Nicoll; El Tiempo Vivo y la Integración de la Vida; 1952
Maurice Nicoll; La Flecha en El Blanco; 1985
Maurice Nicoll; Una Interpretacion de Las Parabolas y Milagros de Jesucristo; 1950
Michael Raduga; La Fase; 2014
Michel Henry; Una filosofía de la carne; 2000
Michio Kaku; Hiperespacio; 1994
Michio Kaku; Universos Paralelos; 2004
Moises, Ezekiel, Jeremiah, Ezra, Mordecai, Solomon and much more... all of them "guided" by the hand of God.; La Biblia; N/A
Neale Donald Walsch; Conversaciones con Dios I; 1996
Neale Donald Walsch; Conversaciones con Dios II; 1997
Neale Donald Walsch; Conversaciones con Dios III; 1998
Oliver Fox; Experiencias "fuera del cuerpo"; 1962
Oscar Kiss Maerth; El Principio Era El Fin; 1971
Pablo E. Hawnser; La Respuesta; 2009?
Pablo Santa Cruz de La Vega; La Otra Cara de los Alienígenas; 2013
Paramahansa Yogananda; Autobiografía de un Yogui; 1946
Paul Davies; La Mente de Dios; 1992
Paul Davies; Otros Mundos; 1980
Paul H. Koch; Los secretos de la secta más temida por la Iglesia Católica; 2006?
Pedro Guirao Hernández; La Protohistoria; 1978
Pierre Teilhard de Chardin; La Energía Humana; 1962
Pyotr Demianovich Ouspenskii (known in English as Peter D. Ouspensky); El Cuarto Camino; 1957
Pyotr Demianovich Ouspenskii (known in English as Peter D. Ouspensky); Extractos de encuentros; 1986
Pyotr Demianovich Ouspenskii (known in English as Peter D. Ouspensky); Fragmentos de una Enseñanza Desconocida; 1949
Pyotr Demianovich Ouspenskii (known in English as Peter D. Ouspensky); Psicología de La Posible Evolución Del Hombre; 1950
Pyotr Demianovich Ouspenskii (known in English as Peter D. Ouspensky); Una búsqueda de la verdad; 1979
Ramana Maharshi; Enseñanzas Espirituales; 1988
Ramón Campayo Martínez; Desarrolla Una Mente Prodigiosa; 2005
Raymond A. Moody; Vida Después de La Vida; 1975
Raymond W. Bernard; La Tierra Hueca; 1969
Ricardo González, Roberto Villamil; El Enigma Del Hombre Gris; 2014
Robert Allan Monroe; La expansión de la consciencia más allá de a materia; 1971
Robert Goodman; El Libro Negro de los Illuminati; 2006
Robert Schwartz; Ahora puedes descubrir el verdadero significado de la vida que planeaste antes de nacer; 2009
Rodney Collin; La Teoría de La Vida Eterna; 1956
Sally Barbosa; Memorias de Un Ser Extraterrestre; 1982
Salvador Freixedo, Magdalena del Amo; Una visión holística de la vida; 1992
Salvador Freixedo; La Amenaza Extraterrestre; 1989
Salvador Freixedo; Las Religiones Que Nos Separan; 1995
Scott Cunningham; El Sueño Sagrado; 1999
Serge Hutin; Las Sociedades Secretas; 1952
Simon Cox; Diccionario Del Código Da Vinci; 2004
Sir John Templeton; Las Leyes Universales de La Vida; 1998
Stephen William Hawking, Leonard Mlodinow; Brevisima Historia Del Tiempo; 2005
Stephen William Hawking, Leonard Mlodinow; El Gran Diseño; 2010
Stephen William Hawking; A Hombros de Gigantes; 2002
Stephen William Hawking; Agujeros Negros y Pequeños Universos y Otros Ensayos; 1993
Stephen William Hawking; Del big bang a los agujeros negros; 1988
Stephen William Hawking; El Universo en una Cáscara de Nuez; 2001
Sylvan Muldoon, Hereward Carrington; Los Fenómenos de la Proyección Astral; 1951
T. Lobsang Rampa; El Cordón de Plata; 1960
T. Lobsang Rampa; El Tercer Ojo; 1956
Tenzin Gyatso; La Mente Despierta; 2011
Théophile Moreux; La Ciencia Misteriosa de los Faraones; 1923
Walter Riso; Desapegarse Sin Anestesia; 2012
Walter Riso; El Poder Del Pensamiento Flexible; 2007
Walter Riso; Pensar Bien, Sentirse Bien; 2004
Walter Riso; Reflexiones Para Vivir Mejor; 2005
William Arntz, Betsy Chasse, Mark Vicente; Descubre las infinitas posibilidades para cambiar tu realidad cotidiana; 2005
William Buhlman; Aventuras Fuera Del Cuerpo; 1996
Yosip Ibrahim; Mi Preparación Para Ganímedes; 1974
Yosip Ibrahim; Yo Visité Ganímedes; 1972
N/A; El Corán; N/A
N/A; El Kybalión; 1908
N/A; El Libro de Enoc; Approximately between 300 BC - 100 AC
N/A; Enseñanzas Sobre el Soñar Activo y el Viajar por la Conciencia Interdimensional; 2002?
Citar# This file contains keys needed for decryption of file system data (WUD/WUX)
d7b00402659ba2abd2cb0db27fa2b656 # Wii U
e44b226422eb84923c05ccddc62ad487 # Adventure Time: Explore The Dungeon Because I Don't Know! [USA]
fcd7abaf2d9fb23fadf89b6c2735e4d3 # Angry Birds Star Wars [EUR, NUS]
2aa9774322e92b25704b67cdc905e6e9 # Angry Birds Star Wars [EUR, WUD]
4e330266ba3feba347e186ac499ba64e # Angry Birds Star Wars [USA, NUS]
58cb15e60f95130419fe191053b3dc26 # Angry Birds Star Wars [USA, WUD]
dbe93d38ecca2022644560788c7842c1 # Angry Birds Trilogy [EUR, NUS]
29858aa7f788de0f391ce445f6541efd # Angry Birds Trilogy [EUR, WUD]
2049c294d53719a44aef4eb7c12ad90d # Animal Crossing: Amiibo Festival [EUR]
8a52440a2293872e4fbe8b168c284410 # Art Academy: Atelier [EUR, NUS]
ed9866b36a2f08ac1f7fc42d37726ab8 # Art Academy: Atelier [EUR, WUD]
548aae79b8cf9a78c7f997abb135d1c6 # Assassin's Creed III [EUR, NUS]
2418ce5ed5d2b4255f4538398dd50533 # Assassin's Creed III [EUR, WUD]
a529987345aff0ac4256c76aea370a0a # Assassin's Creed Iv Black Flag [EUR]
a529987345aff0ac4256c76aea370a0a # Assassin's Creed IV: Black Flag [EUR, NUS]
bf9d4229ce4224160273aca9a1ac9fc9 # Assassin's Creed IV: Black Flag [EUR, WUD]
c95fabfbf308adff5973dc5783a50da6 # Barbie And Her Sisters Puppy Rescue [EUR]
17d3de2473c9e3727b43f236d9039ed7 # Barbie Dreamhouse Party [EUR, NUS]
9e9f15e7447e5291028be7e90d7546b6 # Barbie Dreamhouse Party [EUR, WUD]
50fe00e979a98f25f9e5ae06ba7bb440 # Batman: Arkham Origins [USA, NUS]
2b08c21c6bf82abacbd55ce2d395e641 # Batman: Arkham Origins [USA, WUD]
b9cab6ca99e9be8be72cbd566b1bbbb8 # Bayonetta [EUR, NUS]
16a566ec4c3b70c1c8ceb6161a03d584 # Bayonetta [EUR, WUD]
13eff83747b473730cc04393be03b07f # Bayonetta [USA, NUS]
fd196bda8f6c5d066a72aa5bbc47bfb6 # Bayonetta [USA, WUD]
2b0a82c70b86ee18bada7a440d512b47 # Bayonetta 2 [EUR]
d5bf0363083a2e2554d966bf3a0d0d5e # Bayonetta 2 [USA, NUS]
33fbca056ff816070156cb917a9f32e7 # Bayonetta 2 [USA, WUD]
0c235fabf6bd7d6f7de2dfb0d1f65e0c # Ben 10 Omniverse [EUR]
7092878593502e59e62b3b75de3de8b4 # Ben 10 Omniverse [USA]
e036df624bfd34043e565eb8d20da427 # Ben 10 Omniverse 2 [EUR]
77d9b179a2f20048bafb65a336f8c583 # Ben 10 Omniverse 2 [USA]
0c235fabf6bd7d6f7de2dfb0d1f65e0c # Ben 10: Omniverse [EUR, NUS]
82bec6548650fd19723dbad0bfe36a89 # Ben 10: Omniverse [EUR, WUD]
7092878593502e59e62b3b75de3de8b4 # Ben 10: Omniverse [USA, NUS]
f56a6aff51d08844a9d5d7f41007fc05 # Ben 10: Omniverse [USA, WUD]
e036df624bfd34043e565eb8d20da427 # Ben 10: Omniverse 2 [EUR, NUS]
0a3bb62d36d58bbc28bf0c35e6a21fa1 # Ben 10: Omniverse 2 [EUR, WUD]
77d9b179a2f20048bafb65a336f8c583 # Ben 10: Omniverse 2 [USA, NUS]
2e45d889b86a79ee908e5a6d184a2191 # Ben 10: Omniverse 2 [USA, WUD]
5e5167e3789ed873d4eb590fb332162f # Call of Duty: Ghosts [EUR, NUS]
de1903d6f204ca6a3a2fe8bf656da3b8 # Call of Duty: Ghosts [EUR, WUD]
28107eb9b621a317aaf1fe683fbc3c29 # Call of Duty: Ghosts [USA, NUS]
28512a78013b127e418f02a1f45efb99 # Call of Duty: Ghosts [USA, WUD]
4f72a299b800c62489a43e8fff227e19 # Captain Toad Treasure Tracker [EUR, NUS]
c253b04725c95c344ac158e7c5c93a48 # Captain Toad Treasure Tracker [EUR, WUD]
2ba6b0db191a15cf9ecd150ccbf2a02f # Captain Toad Treasure Tracker [USA, NUS]
ec2eff7e309abc8510d5c023bd35061c # Captain Toad Treasure Tracker [USA, WUD]
4f72a299b800c62489a43e8fff227e19 # Captain Toad: Treasure Tracker [EUR]
2ba6b0db191a15cf9ecd150ccbf2a02f # Captain Toad: Treasure Tracker [USA]
3bef3fb2ef5b22e1b3a73fc4f80660a4 # Darksiders II [EUR, NUS]
7c2cb2eb3b4309e3fccc6e602b9d2946 # Darksiders II [EUR, WUD]
e28ab4923fb522a62f1b32b07c3bf13c # Deus Ex: Human Rev. Director's Cut [EUR]
e28ab4923fb522a62f1b32b07c3bf13c # Deus Ex: Human Revolution - Directors Cut [EUR, NUS]
50e694367e63233fecc76609e2229b65 # Deus Ex: Human Revolution - Directors Cut [EUR, WUD]
5128956b203eb4ad7fd97c77ea31adec # Devil's Third [EUR, NUS]
92bedf1789cc99d9d94ff7c8c99358c3 # Devil's Third [EUR, WUD]
2192a1cbaed3d29933d359edc5a53d3b # Disney Epic Mickey 2 [USA, NUS]
6c2e39e4146816f73be0d03d7ea984ae # Disney Epic Mickey 2 [USA, WUD]
4ce3feeb4c184d1e2dbe187b49837e93 # Disney Infinity 2.0 Marvel Super Heroes [EUR, NUS]
be85341f2fa8a3a10ed79fc68ae1ca91 # Disney Infinity 2.0 Marvel Super Heroes [EUR, WUD]
e0491a2ac86739e4ea28147c931dcb8a # Disney Infinity 3.0: Play Without Limits [EUR]
fd5218d4c86ca8111925ad7780e720c1 # Disney Planes [USA, NUS]
7c93cb4c99ea5471108749b803efddaf # Disney Planes [USA, WUD]
11cee7f2ee6272974c530c4121a0191d # Donkey Kong Country: Tropical Freeze [EUR, NUS]
1658ad6a6101b5e3b305693255f47a5d # Donkey Kong Country: Tropical Freeze [EUR, WUD]
c18be238ca2e039961fa32e453a415cc # Donkey Kong Country: Tropical Freeze [USA, NUS]
77f51431746983aea501d1eacb8daf54 # Donkey Kong Country: Tropical Freeze [USA, WUD]
e082b97981fac02cad32c783bf16a555 # Ducktales: Remastered [USA]
7de26bbba768735f75d7342d42fdd37c # Espn Sports Connection [USA]
fa37b75fd0de03d2a297471477066c7c # Family Party 30 Great Games Obstacle Arcade [USA]
27b5db268a3d3ffb6231d2afcdab058f # Fifa 13 [EUR]
4a0ce182bb53c237490a8553c2c39c5b # Fifa Soccer 13 [USA]
a096f20f1b44aae4fb99a0fa3c15f622 # Game & Wario [USA]
47092e88d6dd5ad2ebbaa4f3e6e4bf51 # Game Party Champions [EUR]
a908126b0fd052e71a63c5d7bc9e46ca # Game Party Champions [USA]
279e6f438e06ee904db42d33b11ff0b1 # Hello Kitty© Kruisers [USA]
ea87266e5797a08fcd46c642af33214b # Hot Wheels World's Best Driver [USA]
4544a2a5c8e0d4d25ead0bd38efe0e7e # How To Train Your Dragon 2 [EUR]
1b041837d5ca9b1cfb3ade8eeed8665d # Hyrule Warriors [EUR]
3048e7ad2165405b08d8aae736f5b7a1 # Hyrule Warriors [USA]
d307374445b255df4d292bd490340a5f # Injustice: Gods Among Us [EUR]
2bd9030631398c67a3261c39a96d01de # Just Dance 2014 [USA]
b5ec6cbfeaf57679afe5ed8cff2539cb # Just Dance 2015 [EUR]
e147acee483091ca43a483c59486f295 # Just Dance 2015 [USA]
a219f79958397b833f2d8aa11e9005c9 # Just Dance 2016 [EUR]
b685d174175996dfcef21b6a14c601b1 # Just Dance 4 [USA]
76e192e2e3e21f71e90e84a6293dbb6d # Just Dance Kids 2014 [EUR]
692c342e0fdc414b8554f1411c0e11e5 # Just Dance Kids 2014 [USA]
01265ade8982ca1c4db1faa06837caac # Kirby And The Rainbow Curse [USA]
a5c4acfe5c6bd6ea693f7faa3c28460b # Kirby And The Rainbow Paintbrush [EUR]
98dbe57394ba4155a7d0029410e93269 # Kung Fu Panda Showdown Of Legendary Legends [EUR]
b08e7b01c7962115d6f10b4513ce5a96 # Legend Of Kay Anniversary [EUR]
03b547650935553b0fbd6690082e8cdb # Lego Batman 2 [USA]
977ac526183a17522debeb72d5592bc5 # Lego Batman 3 Beyond Gotham [USA]
4a0aea463b9253839f77b946f02ed6e8 # Lego Jurassic World [EUR]
5e958248b5f31f23292bf5b4b7884cb3 # Lego Marvel Super Heroes [EUR]
59d69046c1f77dbe0f02e7493d4b947e # Lego Marvel Super Heroes [USA]
4aa8f8be9a7da42c04096cd346ebf182 # Lego Marvel's Avengers [EUR]
1e91e4c3ed854a67f7192cff2f0bfe1f # Lego The Hobbit [EUR]
39907fe75a0367f0a087020a1444405b # Lego The Hobbit [USA]
7aa1ebdb541f8ea4944da89c5c6b3c7b # Madden Nfl 13 [USA]
2344b2dc8abfa9705a54fdb87fd96f20 # Mario & Sonic At The Sochi 2014 Olympic Winter Games [EUR]
af835c2a7fffd0908953ac2a3f1f2ab6 # Mario & Sonic At The Sochi 2014 Olympic Winter Games [USA]
32efa28edf2adf16990a175263ba84db # Mario Kart 8 [EUR]
d20395e40428036c3978a46fb14dc3b2 # Mario Kart 8 [USA]
749b617035cbefe57f55fd5ddba11b75 # Mario Party 10 [EUR]
545dd3f0b9b219ecb79e65ae44227c11 # Mario Party 10 [USA]
40871b2e908c67259b8807f4555db96f # Mario Tennis: Ultra Smash [EUR]
b0c44b28e2aeca7533640d8a97b6f746 # Marvel Avengers: Battle For Earth [EUR]
76e7ad38eed475ffbd7b416f49f34fe9 # Marvel Avengers: Battle For Earth [USA]
374a46731b734d7e66d4874a765641e8 # Monster High 13 Wishes [EUR]
992adeddc2c2a701fc70921b57f64cc2 # Monster High New Ghoul In School [EUR]
ca75cc4d78a0dc3747ea94bfa6763111 # Monster Hunter 3 Ultimate [EUR]
b24db5464bf5e4c01c99243f8f0767cf # Monster Hunter 3 Ultimate [USA]
3807eb2b1a9d359c6dcac94a2330080e # Need For Speed Most Wanted U [EUR]
0d0c05e0b3d51deef35debdab0639a07 # Need For Speed Most Wanted U [USA]
f11016b040ed761439eea475e7786d8c # New Super Mario Bros. U [EUR]
79c7ec6e178c9c010ec6363380dbbcef # New Super Mario Bros. U [USA]
c0d5e622dd7b9634f79d33219ba9b722 # Ninja Gaiden 3: Razor's Edge [USA]
255b238396ea9a7333868c72723ac829 # Nintendo Land [EUR]
20e559ec5d5aedc6585bf5a19176b46e # Nintendo Land [USA]
36c0d664645154d4768eff5898efa541 # One Piece Unlimited World Red [EUR]
bf01ad9814ff9873895ad7220a310ecc # Pac-man And The Ghostly Adventures [EUR]
027f33741b62681b8dc6d3dc63be8b54 # Pac-man And The Ghostly Adventures [USA]
af074bce1bd9763e9a1b9c2bc44e75df # Pac-man And The Ghostly Adventures 2 [EUR]
6eb694c49dbb47e2276b3b0466db608e # Penguins [EUR]
5b4c8d3c14c64ce7b3f232d810621eac # Phineas And Ferb : Quest For Cool Stuff [USA]
7945ebeb6b9a3ccc0a8df22ba44c0319 # Pikmin 3 [EUR]
60c932ffa0bc9ceddef92fa34284fa76 # Pikmin 3 [USA]
6c1ba0103e033afb9545f6db8e376986 # Planes Fire & Rescue [EUR]
d9fb2fad7c3524c227e9f87b30c708e3 # Pokkén Tournament [EUR]
f54da6b2dbd83266dc7a0cbfee4697e1 # Rabbids Land [EUR]
d12d3300a74354048548ce465b812911 # Rayman Legends [EUR]
f66341038a304cde6d06948eb2e09576 # Rayman Legends [USA]
ea144ac216d70cb962fa2d1984ae4cb7 # Resident Evil Revelations [EUR]
91f3858e67fd8572497e238fbe81361a # Rise Of The Guardians [EUR]
59d527f4178f9f18dd0fac62f345ed76 # Rodea The Sky Soldier [EUR]
0886588ff73a003586c5fced6d67232f # Scribblenauts Unlimited [USA]
3491b1008edf6111c9ee72767539d870 # Scribblenauts Unmasked A Dc Comics Adventure [USA]
5c2655e9333143c132bdcab2af75295e # Shovel Knight [EUR]
534439da8ab46a105dbd823b0b86ede3 # Skylanders Superchargers [EUR]
d30f1098bcc22864bd9afd40885842e2 # Skylanders Swap Force [EUR]
171bc6257446208301c616b8f9e0dfef # Skylanders Trap Team [EUR]
45d29c9bdda6e823f1904463a9b007f2 # Sonic & All-stars Racing Transformed [EUR]
5551978ae3dc104852b3b76a70a34390 # Sonic & All-stars Racing Transformed [USA]
1c913ed10d36f729c738dcce11d6eab6 # Sonic Boom: Rise Of Lyric [USA]
b23252bd83b8e5eb8717ee715c67ab8c # Sonic Lost World [EUR]
0d7d95f5cea2ce86c0056eaed42c4098 # Sonic Lost World [USA]
93b991687b03be0b59ce7aac6e9bce57 # Splatoon [EUR]
574f8374f715b5e24d388f22117c2b99 # Splinter Cell Blacklist [EUR]
8e8a269c5f71b1c721ee25464305e9ad # Spongebob Squarepants: Plankton's Robotic Revenge [USA]
5b5750e1b8915bfd7d33e6a9bfdd1973 # Sports Connection [EUR]
5a5b939f9c8bb1879f2189e7b66fb51f # Star Fox Zero [EUR]
0841ba8e8a302dc84e191ba7568f0308 # Super Mario 3d World [EUR]
3cec63f6c87d47ae13768d9542f9e979 # Super Mario 3d World [USA]
e03d93bfc0f413fabda431a1903cc350 # Super Mario Maker [EUR]
838cb2a5ee10408e64c1c9e19d8c7532 # Super Smash Bros. For Wii U [EUR]
7b5bb5ca225196786893fd72ddbf82ad # Super Smash Bros. For Wii U [USA]
72ffe0af3f57bab67f2d272598cf08ad # Tekken Tag Tournament 2 Wii U Edition [EUR]
a1193e71d052aed55d765dde201c456c # The Amazing Spider-man 2 [EUR]
07cd3c27cebd34a02575868151dcd79b # The Croods [EUR]
61c73b17a4ce3fc76e9e7311208ebb3a # The Croods [USA]
dcb529e0e834bc86cf84b4d575ada08c # The Legend Of Zelda The Wind Waker Hd [EUR]
3cd545e19bbcb54e41db3169f7432ea1 # The Legend Of Zelda The Wind Waker Hd [USA]
d7efaa82894692e01823cd1267741a26 # The Legend Of Zelda Twilight Princess Hd [EUR]
4720dfe7d13cf17114b62cd627507210 # The Lego Movie Videogame [EUR]
ff2383b866ab38058546de60351ffef2 # The Peanuts Movie: Snoopy's Grand Adventure [EUR]
25a842077683342147edb6e0fdd56891 # The Smurfs 2 [USA]
51e90b644e87a602962d303055a9e521 # The Wonderful 101 [EUR]
a3ad535efa3c1eb24ed368417a15616c # The Wonderful 101 [USA]
0a982cc0f852e2eebd20fe97aec9427b # Transformers Prime [EUR]
6814dfc7d9f9be9a4280696b034beb34 # Transformers: Rise Of The Dark Spark [EUR]
2892753728614a875e32269675a07570 # Turbo: Super Stunt Squad [EUR]
428620c106a4b1b05b9dc8c72bc213e9 # Turbo: Super Stunt Squad [USA]
66b0a9f0ebe76a64f3d77c7fb8f2d2cb # Warriors Orochi 3 Hyper [EUR]
85e7de2a954de895f96c5a95f32dfb6f # Watch_dogs [EUR]
1eec9067c668f9941a43f2bab5b711ef # Wii Fit U [USA]
56c56f84fe3bbe4675a4a0f55aca61a6 # Wii Party U [USA]
708a94d2d586b7c57716d1ce4e5036fc # Wii Sports Club [USA]
4d292e41f8903537c062bc4dc93782d5 # Wipeout 3 [USA]
df5e4210cebad673afa47eff24c89b64 # Xenoblade Chronicles X [EUR, NUS]
c04ae37f8313055aecb61707529ac2a6 # Xenoblade Chronicles X [EUR, WUD]
f02f3dc363780d36cd04c528c415775b # Yoshi's Woolly World [EUR]
8fd64d117c2f43951ca2247e1b6fd534 # Your Shape Fitness Evolved 2013 [EUR]
98794aaafdbf1b4c23433098130a080f # Your Shape Fitness Evolved 2013 [USA]
16bbbc94724cae7cc82cc3163ba6109a # Zombiu [EUR]
870725d3b027c64e1a5dc7aec3b150b9 # Zombiu [USA]
CitarBrowser: Google Chrome
Website: https://es-la.facebook.com/login.php
Username: claudiadaniela31@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.linkedin.com/fetch/fetchx-auth-redirect
Username: c.d.c.r@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://trafficmonsoon.com/login.php
Username: mrsdax
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://trafficmonsoon.com/login.php
Username: mrsdax
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.facebook.com/login.php
Username: c.d.c.r@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://col430-sec.mail.live.com/mail/AggregationSetupFinished.aspx
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: http://www.123dreamit.com/accounts/register/
Username: claudiadaniela31@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://signup.live.com/signup
Username: gabogabo123
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://reelzhot.com/subscriptions/registrationaff/m-2-panther
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://trafficmonsoon.com/login
Username: mrsdax
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: http://www.thepowerlevel.com/silkroad/premium-silk/92-26-2.html
Username: claudiadaniela31@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: http://www.goldceo.com/silkroad/premium-silk/92-26-2.html
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://accounts.google.com/SignUp
Username: gabrielrangel711
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://membercp.joymax.com/SignIn/SignInProperty.aspx
Username: mrsdax
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://membercp.joymax.com/SignIn/SignInProperty.aspx
Username: mrsdax
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://projecthax.com/login.php
Username: zando
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://ic.paypal.com/webapps/checkout/webflow/sparta/expresscheckoutvalidatedataflow
Username: kevincaballero1405@gmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.facebook.com/login.php
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.facebook.com/login.php
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://projecthax.com/login.php
Username: zando
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.wtfast.com/member/Account/Login
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.wtfast.com/Account/Create
Username: claudiadaniela31@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://es-la.facebook.com/login.php
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://m.facebook.com/login/async/
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: http://foro.ignetwork.net/register.php
Username: gabo666
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://login.live.com/ppsecure/post.srf
Username: italy55@outlook.de
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.facebook.com/login.php
Username: c.d.c.r@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://us.battle.net/login/es/challenge/8d18a451-7eb4-445d-a78d-8c1d04f1b121
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://accounts.google.com/signin/challenge/sl/password
Username: kevincaballero1405@gmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://account.leagueoflegends.com/lan/es/protect
Username: claudiadaniela31@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: http://earnwithinvite.com/login1.php
Username: gabriel rangel
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://likesplanet.com/register.php
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.paypal.com/signin
Username: mc.chumpitaz@gmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://mega.nz/login-to-devnull.html
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.paypal.com/signin
Username: kevincaballero1405@gmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.facebook.com/login.php
Username: acxaelpotter@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.mercadolibre.com/jms/mlv/lgz/login/authenticate
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.crunchyroll.com/freetrial/anime
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.paypal.com/signin
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: http://www.worldwaronline.com/login/register
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://login.live.com/ppsecure/post.srf
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.facebook.com/login.php
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.facebook.com/login.php
Username: claudiadaniela31@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://login.live.com/ppsecure/post.srf
Username: claudiadaniela31@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.facebook.com/login.php
Username: gabrielrangel709@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://cpanel.hostinger.es/website/install-app/app/wordpress/aid/21240506
Username: Reikym
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: http://reikym.esy.es/wp-login.php
Username: Reikym
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: http://reikym.esy.es/wp-login.php
Username: Reikym
Password: **CENSURADO**
---------------------------------------------------------------------------
CitarBrowser: Google Chrome
Website: https://es-la.facebook.com/login.php
Username: claudiadaniela31@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.linkedin.com/fetch/fetchx-auth-redirect
Username: c.d.c.r@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://trafficmonsoon.com/login.php
Username: mrsdax
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://trafficmonsoon.com/login.php
Username: mrsdax
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.facebook.com/login.php
Username: c.d.c.r@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://col430-sec.mail.live.com/mail/AggregationSetupFinished.aspx
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: http://www.123dreamit.com/accounts/register/
Username: claudiadaniela31@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://signup.live.com/signup
Username: gabogabo123
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://reelzhot.com/subscriptions/registrationaff/m-2-panther
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://trafficmonsoon.com/login
Username: mrsdax
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: http://www.thepowerlevel.com/silkroad/premium-silk/92-26-2.html
Username: claudiadaniela31@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: http://www.goldceo.com/silkroad/premium-silk/92-26-2.html
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://accounts.google.com/SignUp
Username: gabrielrangel711
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://membercp.joymax.com/SignIn/SignInProperty.aspx
Username: mrsdax
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://membercp.joymax.com/SignIn/SignInProperty.aspx
Username: mrsdax
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://projecthax.com/login.php
Username: zando
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://ic.paypal.com/webapps/checkout/webflow/sparta/expresscheckoutvalidatedataflow
Username: kevincaballero1405@gmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.facebook.com/login.php
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.facebook.com/login.php
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://projecthax.com/login.php
Username: zando
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.wtfast.com/member/Account/Login
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.wtfast.com/Account/Create
Username: claudiadaniela31@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://es-la.facebook.com/login.php
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://m.facebook.com/login/async/
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: http://foro.ignetwork.net/register.php
Username: gabo666
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://login.live.com/ppsecure/post.srf
Username: italy55@outlook.de
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.facebook.com/login.php
Username: c.d.c.r@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://us.battle.net/login/es/challenge/8d18a451-7eb4-445d-a78d-8c1d04f1b121
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://accounts.google.com/signin/challenge/sl/password
Username: kevincaballero1405@gmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://account.leagueoflegends.com/lan/es/protect
Username: claudiadaniela31@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: http://earnwithinvite.com/login1.php
Username: gabriel rangel
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://likesplanet.com/register.php
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.paypal.com/signin
Username: mc.chumpitaz@gmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://mega.nz/login-to-devnull.html
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.paypal.com/signin
Username: kevincaballero1405@gmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.facebook.com/login.php
Username: acxaelpotter@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.mercadolibre.com/jms/mlv/lgz/login/authenticate
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.crunchyroll.com/freetrial/anime
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.paypal.com/signin
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: http://www.worldwaronline.com/login/register
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://login.live.com/ppsecure/post.srf
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.facebook.com/login.php
Username: gabrielrangel711@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.facebook.com/login.php
Username: claudiadaniela31@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://login.live.com/ppsecure/post.srf
Username: claudiadaniela31@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://www.facebook.com/login.php
Username: gabrielrangel709@hotmail.com
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: https://cpanel.hostinger.es/website/install-app/app/wordpress/aid/21240506
Username: Reikym
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: http://reikym.esy.es/wp-login.php
Username: Reikym
Password: **CENSURADO**
---------------------------------------------------------------------------
Browser: Google Chrome
Website: http://reikym.esy.es/wp-login.php
Username: Reikym
Password: **CENSURADO**
---------------------------------------------------------------------------
0x1A, 0x45, 0xDF, 0xA3
...
<Pattern>
<Bytes>52494646</Bytes>
<ASCII> R I F F</ASCII>
<Pos>0</Pos>
</Pattern>
<Pattern>
<Bytes>415649204C495354</Bytes>
<ASCII> A V I L I S T</ASCII>
<Pos>8</Pos>
</Pattern>
<Pattern>
<Bytes>00006864726C6176696838000000</Bytes>
<ASCII>..hdrlavih8</ASCII>
<Pos>18</Pos>
</Pattern>
<Pattern>
<Bytes>4C495354</Bytes>
<ASCII> L I S T</ASCII>
<Pos>88</Pos>
</Pattern>
<Pattern>
<Bytes>00007374726C73747268</Bytes>
<ASCII> . . s t r l s t r h</ASCII>
<Pos>94</Pos>
</Pattern>
<Pattern>
<Bytes>00000076696473</Bytes>
<ASCII> . . . v i d s</ASCII>
<Pos>105</Pos>
</Pattern>
...
Citar52 49 46 46 xx xx xx xx RIFF....
41 56 49 20 4C 49 53 54 AVI LIST
Imports System.Threading.Thread
Sleep(...)