Compare commits

...

3 Commits

Author SHA1 Message Date
Julio Ruiz 550ede702c Fixed bulk for files 2026-07-11 06:56:42 -05:00
Julio Ruiz 8cf9a8052d Fixed ebn materials structure 2026-06-06 09:43:44 -05:00
Julio Ruiz 84dafc1ebf Adding new file definitions for batch export 2026-06-06 09:23:20 -05:00
29 changed files with 26110 additions and 204 deletions

96
.gitignore vendored Normal file
View File

@ -0,0 +1,96 @@
### macOS
# Finder metadata
.DS_Store
# Thumbnails
._*
# Custom folder icons
Icon
# Volume root files
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
### VisualStudio
# User-specific files
*.suo
*.user
# Build results
[Dd]ebug/
[Rr]elease/
x64/
x86/
[Ww][Ii][Nn]32/
[Aa][Rr][Mm]/
[Aa][Rr][Mm]64/
[Bb]in/
[Oo]bj/
# Visual Studio cache/options directory
.vs/
# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*
# NuGet
*.nupkg
**/[Pp]ackages/*
!**/[Pp]ackages/build/
*.nuget.props
*.nuget.targets
# Publish Web Output
*.[Pp]ublish.xml
### Node
# Dependencies
node_modules/
# Logs
*.log
# Runtime data
*.pid
*.pid.lock
# Coverage
coverage/
*.lcov
.nyc_output
# Build output
dist/
build/Release
# TypeScript cache
*.tsbuildinfo
# Framework build output and caches
.cache
.parcel-cache
.next
out/
.nuxt
# dotenv environment variable files
.env
.env.local
.env.*.local
# npm cache directory
.npm
*.tgz
# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/install-state.gz
.pnp.*

View File

@ -35,24 +35,25 @@ async function processJsonLines(filePath) {
// Parse the line as JSON // Parse the line as JSON
const data = JSON.parse(line); const data = JSON.parse(line);
//if( data.id != 62643 ) continue; // Skip until we find the specific ID //if( data.id != 'es-2956' ) continue; // Skip until we find the specific ID
console.log('Processing: ', data.title); const doc = await createDocument(data);
const doc_id = doc.id
const doc_id = await createDocument(data); console.log('Processing: ', doc.code);
console.log('Document created with ID:', doc_id); console.log('Document created with ID:', doc_id);
if ('body' in data && typeof data.body === 'string' && hasParagraphs(data.body).length > 0 && data.body.length > 0) { if ('body' in data && typeof data.body === 'string' && hasParagraphs(data.body).length > 0 && data.body.length > 0) {
// Split the body into paragraphs using <p> tags // Split the body into paragraphs using <p> tags
const paragraphs = data.body.split(/<\/?p>/).map(p => p.trim()).filter(Boolean); const paragraphs = data.body.split(/<\/?p>/).map(p => p.trim()).filter(Boolean);
const totalParagraphs = await createParagraphs(doc_id, paragraphs, data.locale, data.type); const totalParagraphs = await createParagraphs(doc_id, paragraphs, data.locale, data.type, doc.code);
//console.log('Total paragraphs found:', paragraphs); //console.log('Total BODY paragraphs found:', paragraphs);
} else { } else {
if( data.body !== undefined ){ if( data.body !== undefined ){
const paragraphs = data.body.split('\n\n').map(p => p.trim()).filter(Boolean); const paragraphs = data.body.split('\n\n').map(p => p.trim()).filter(Boolean);
const totalParagraphs = await createParagraphs(doc_id, paragraphs, data.locale, data.type); const totalParagraphs = await createParagraphs(doc_id, paragraphs, data.locale, data.type, doc.code);
//console.log('Total paragraphs found:', paragraphs); //console.log('Total NO BODY paragraphs found:', paragraphs);
} }
} }
} catch (error) { } catch (error) {
@ -75,11 +76,11 @@ function hasParagraphs(htmlString) {
return dom.window.document.querySelectorAll('p'); return dom.window.document.querySelectorAll('p');
} }
//processJsonLines('./input/activities_wp_ES.json'); processJsonLines('./input/activities_translations_PT.json');
processJsonLines('./input/conferences_wp_ES.json'); //processJsonLines('./input/conferences_wp_ES.json');
// Function to create paragraphs in Typesense // Function to create paragraphs in Typesense
async function createParagraphs(documentId, paragraphs, locale, type) { async function createParagraphs(documentId, paragraphs, locale, type, code) {
let lineCount = 0; let lineCount = 0;
let jsonl = ''; let jsonl = '';
for (const para of paragraphs) { for (const para of paragraphs) {
@ -96,21 +97,25 @@ async function createParagraphs(documentId, paragraphs, locale, type) {
} }
let paragraph = { let paragraph = {
document_id: documentId, staging_activities_id: documentId,
raw: fixedHtml, html: fixedHtml,
text: fixedHtml.replace(/<[^>]+>/g, ''), // Remove HTML tags for search text: fixedHtml.replace(/<[^>]+>/g, ''), // Remove HTML tags for search
number: lineCount + 1, number: lineCount + 1,
locale: locale, locale: locale,
type: type, type: type,
id: locale + '-' + documentId + '-' + (lineCount + 1) // Unique ID for the paragraph code: code,
id: documentId + '-' + (lineCount + 1) // Unique ID for the paragraph
}; };
//console.log( code );
jsonl += JSON.stringify(paragraph) + '\n'; jsonl += JSON.stringify(paragraph) + '\n';
lineCount++; lineCount++;
} }
let doc = await client.collections('paragraphs').documents().import(jsonl, {action: 'upsert'}) let doc = await client.collections('staging_activities_paragraphs').documents().import(jsonl, {action: 'upsert'})
return doc; // Return the number of paragraphs created return doc; // Return the number of paragraphs created
} }
@ -134,14 +139,14 @@ async function createDocument(data){
draft: data.draft, draft: data.draft,
thumbnail: data.thumbnail, thumbnail: data.thumbnail,
files: { files: {
youtube: data.youtube, youtube: data.files.youtube,
video: data.video || null, video: data.files.video || null,
audio: data.audio || null, audio: data.files.audio || null,
booklet: data.booklet || null, booklet: data.files.booklet || null,
simple: data.simple || null, simple: data.files.simple || null,
}, },
directus: "", directus: data.id.toString(),
wp: data.id.toString(), wp: data.wp.toString(),
rm: data.rm, rm: data.rm,
private: data.private || false, private: data.private || false,
slug: data.slug || null, slug: data.slug || null,
@ -150,8 +155,8 @@ async function createDocument(data){
month: data.month, month: data.month,
}; };
let doc = await client.collections('documents').documents().upsert(document); let doc = await client.collections('staging_activities').documents().upsert(document);
return doc.id; return doc;
} }

View File

@ -94,6 +94,7 @@ async function generateJson( type ) {
let fields = []; let fields = [];
fields['activities_translations'] = [ fields['activities_translations'] = [
'id',
'activities_id.id', 'activities_id.id',
'activities_id.wpid', 'activities_id.wpid',
'title', 'title',
@ -104,6 +105,7 @@ async function generateJson( type ) {
'activities_id.state', 'activities_id.state',
'activities_id.country', 'activities_id.country',
'activities_id.duration', 'activities_id.duration',
'interventions.title',
'interventions.text', 'interventions.text',
'activities_id.private', 'activities_id.private',
'activities_id.thumbnail.filename_disk', 'activities_id.thumbnail.filename_disk',
@ -116,8 +118,10 @@ async function generateJson( type ) {
] ]
fields['conferences_translations'] = [ fields['conferences_translations'] = [
'id',
'conferences_id.id', 'conferences_id.id',
'title', 'title',
'conferences_id.title',
'conferences_id.date', 'conferences_id.date',
'conferences_id.activity', 'conferences_id.activity',
'conferences_id.place', 'conferences_id.place',
@ -151,41 +155,42 @@ async function generateJson( type ) {
let nitem = {} let nitem = {}
if (type == 'activities_translations') { if (type == 'activities_translations') {
nitem.language = LOCALE;
//nitem.id = item.activities_id?.id nitem.locale = LOCALE;
//nitem.type = 'activities' nitem.id = `${nitem.locale}-${item.id}`
nitem.title = item.title nitem.title = item.title ? item.title : item.interventions[0]?.title
nitem.type = 'activities'
nitem.timestamp = dayjs(item.activities_id?.date).unix() nitem.timestamp = dayjs(item.activities_id?.date).unix()
nitem.date = ''; nitem.date = dayjs(item.activities_id?.date).format('YYYY-MM-DD')
nitem.activity = item.activities_id?.activity; nitem.activity = item.activities_id?.activity;
nitem.duration = item.activities_id?.duration ?? 0; nitem.duration = item.activities_id?.duration ?? 0;
//nitem.body = he.decode(striptags(item.interventions[0]?.text)) || '' nitem.body = item.interventions[0]?.text;
nitem.place = item.activities_id?.place || null; nitem.place = item.activities_id?.place || null;
nitem.city = item.activities_id?.city || null; nitem.city = item.activities_id?.city || null;
nitem.state = item.activities_id?.state || null; nitem.state = item.activities_id?.state || null;
nitem.country = item.activities_id?.country || null; nitem.country = item.activities_id?.country || null;
nitem.body = (item.interventions[0]?.text?true:false); //nitem.body = (item.interventions[0]?.text?true:false);
nitem.thumbnail = item.activities_id?.thumbnail?.filename_disk nitem.thumbnail = item.activities_id?.thumbnail?.filename_disk
//nitem.files = {} nitem.files = {}
nitem.youtube = item.youtube nitem.files.youtube = item.youtube
nitem.video = item.privateVideo?.filename_disk nitem.files.video = item.privateVideo?.filename_disk
nitem.audio = item.mp3?.filename_disk nitem.files.audio = item.mp3?.filename_disk
nitem.booklet = item.pdf_booklet?.filename_disk nitem.files.booklet = item.pdf_booklet?.filename_disk
nitem.simple = item.pdf?.filename_disk nitem.files.simple = item.pdf?.filename_disk
nitem.directus = item.activities_id?.id; nitem.directus = item.activities_id?.id;
nitem.wp = item.activities_id?.wpid; nitem.wp = item.activities_id?.wpid;
nitem.typesense = true; nitem.typesense = true;
nitem.private = item.activities_id?.private == 1 ? true : false; nitem.private = item.activities_id?.private == 1 ? true : false;
nitem.slug = item.slug nitem.slug = slugify(nitem.title)
//nitem.year = dayjs(item.activities_id?.date).year().toString() nitem.year = dayjs(item.activities_id?.date).year().toString()
//nitem.month = nitem.year + " > " + (dayjs(item.activities_id?.date).month() + 1).toString().padStart(2, "0") nitem.month = (dayjs(item.activities_id?.date).month() + 1).toString().padStart(2, "0")
// nitem.menu_country = nitem.country // nitem.menu_country = nitem.country
// nitem.menu_state = nitem.country + " > " + nitem.state // nitem.menu_state = nitem.country + " > " + nitem.state
@ -199,16 +204,22 @@ async function generateJson( type ) {
} }
if (type == 'conferences_translations') { if (type == 'conferences_translations') {
nitem.language = LOCALE;
//nitem.id = item.conferences_id?.id.toString() //if( !item.conferences_id?.activity ) return false
//nitem.type = 'conferences' if( !item.title && !item.conferences_id?.title ) return false
nitem.title = item.title
nitem.locale = LOCALE;
nitem.code = dayjs(item.conferences_id?.date).format('YYYYMMDD') + '-' + (item.conferences_id?.activity ?? 0),
nitem.id = `${nitem.locale}-${item.id}`
nitem.type = 'conferences'
nitem.title = item.title ? item.title : item.conferences_id?.title
//nitem.body = he.decode(striptags(item.text_published)) || '' //nitem.body = he.decode(striptags(item.text_published)) || ''
//nitem.title = item.title //nitem.title = item.title
nitem.body = item.html
nitem.timestamp = dayjs(item.conferences_id?.date).unix() nitem.timestamp = dayjs(item.conferences_id?.date).unix()
nitem.date = ''; nitem.date = '';
nitem.activity = item.conferences_id?.activity; nitem.activity = item.conferences_id?.activity ?? 0;
nitem.duration = item.conferences_id?.duration ?? 0; nitem.duration = item.conferences_id?.duration ?? 0;
//nitem.body = he.decode(striptags(item.interventions[0]?.text)) || '' //nitem.body = he.decode(striptags(item.interventions[0]?.text)) || ''
@ -217,19 +228,19 @@ async function generateJson( type ) {
nitem.state = item.conferences_id?.state || null; nitem.state = item.conferences_id?.state || null;
nitem.country = item.conferences_id?.country || null; nitem.country = item.conferences_id?.country || null;
nitem.body = (item.text_published?true:false); //nitem.body = (item.text_published?true:false);
nitem.thumbnail = item.conferences_id?.thumbnail?.filename_disk nitem.thumbnail = item.conferences_id?.thumbnail?.filename_disk
//nitem.files = {} nitem.files = {}
nitem.youtube = item.youtube nitem.files.youtube = item.youtube
nitem.video = item.privateVideo?.filename_disk nitem.files.video = item.privateVideo?.filename_disk
nitem.audio = item.mp3?.filename_disk nitem.files.audio = item.mp3?.filename_disk
nitem.booklet = item.pdf_booklet?.filename_disk nitem.files.booklet = item.pdf_booklet?.filename_disk
nitem.simple = item.pdf?.filename_disk nitem.files.simple = item.pdf?.filename_disk
nitem.directus = item.conferences_id?.id.toString() nitem.directus = item.conferences_id?.id.toString()
nitem.wp = ''; nitem.wp = item.conferences_id?.wpid;
nitem.typesense = true; nitem.typesense = true;
nitem.private = item.conferences_id?.public == 0 ? true : false; nitem.private = item.conferences_id?.public == 0 ? true : false;
@ -244,12 +255,12 @@ async function generateJson( type ) {
//writeFile(jsonlData, type) //writeFile(jsonlData, type)
console.log() console.log()
if( nitems.length > 0 ){ if( nitems.length > 0 ){
let csv = parse(nitems); //let csv = parse(nitems);
jsonlData += csv //jsonlData += csv
//let csv = nitems.map(row => fields.map(fieldName => JSON.stringify(row[fieldName], replacer)).join(',')); //let csv = nitems.map(row => fields.map(fieldName => JSON.stringify(row[fieldName], replacer)).join(','));
//return csv; //return csv;
//jsonlData += nitems.filter(item => item !== false).map(JSON.stringify).join('\n') jsonlData += nitems.filter(item => item !== false).map(JSON.stringify).join('\n')
jsonlData += '\n';
//console.log( csv ); //console.log( csv );
//console.log( documents.length + " documents to write for year " + year + " and type " + type ); //console.log( documents.length + " documents to write for year " + year + " and type " + type );
writeFile(jsonlData, type) writeFile(jsonlData, type)
@ -260,7 +271,7 @@ async function generateJson( type ) {
} }
function writeFile(jsonlData, type) { function writeFile(jsonlData, type) {
fs.writeFile(`./${DATA_INPUT_FOLDER}/${type}_${LOCALE.toLocaleUpperCase()}.csv`, jsonlData, (err) => { fs.writeFile(`./${DATA_INPUT_FOLDER}/${type}_${LOCALE.toLocaleUpperCase()}.json`, jsonlData, (err) => {
if (err) { if (err) {
console.error("Error writing file:", err); console.error("Error writing file:", err);
return; return;
@ -269,6 +280,18 @@ function writeFile(jsonlData, type) {
}); });
} }
function slugify(str) {
if(!str) return 'no-title'
return str
.toLowerCase() // Convert to lowercase
.trim() // Remove leading/trailing whitespace
.normalize('NFD') // Split accented characters into base letters and diacritics
.replace(/[\u0300-\u036f]/g, '') // Remove diacritics (accents)
.replace(/[^a-z0-9\s-]/g, '') // Remove non-alphanumeric characters (except spaces and hyphens)
.replace(/[\s-]+/g, '-') // Replace multiple spaces or hyphens with a single hyphen
.replace(/^-+|-+$/g, ''); // Remove leading or trailing hyphens
}
//generateJson( 'conferences', 1974); //generateJson( 'conferences', 1974);
//generateJson( 'activities' , 2021 ); //generateJson( 'activities' , 2021 );

View File

@ -19,6 +19,7 @@ const DATA_INPUT_FOLDER = './input';
const DATA_OUTPUT_FOLDER = './output'; const DATA_OUTPUT_FOLDER = './output';
const TEMPLATES_FOLDER = './templates'; const TEMPLATES_FOLDER = './templates';
const DIRECTUS_BUCKET = 'https://sjc1.vultrobjects.com/directus/' const DIRECTUS_BUCKET = 'https://sjc1.vultrobjects.com/directus/'
const LOCALE = 'es';
function isUndefined(variable){ function isUndefined(variable){
if( typeof(variable) === 'undefined'){ if( typeof(variable) === 'undefined'){
@ -39,14 +40,18 @@ async function generateFiles( type ) {
"languages_code", "languages_code",
"mp3.filename_disk", "mp3.filename_disk",
"mp3.filename_download", "mp3.filename_download",
"mp3.id",
"pdf_booklet.filename_disk", "pdf_booklet.filename_disk",
"pdf_booklet.filename_download", "pdf_booklet.filename_download",
"pdf_booklet.id",
"pdf.filename_disk", "pdf.filename_disk",
"pdf.filename_download", "pdf.filename_download",
"pdf.id",
"activities_id.id", "activities_id.id",
"activities_id.title", "activities_id.title",
"activities_id.date", "activities_id.date",
"activities_id.activity", "activities_id.activity",
"activities_id.thumbnail.id",
"activities_id.thumbnail.filename_disk", "activities_id.thumbnail.filename_disk",
"activities_id.thumbnail.filename_download" "activities_id.thumbnail.filename_download"
] ]
@ -60,17 +65,103 @@ async function generateFiles( type ) {
"languages_code", "languages_code",
"video.filename_disk", "video.filename_disk",
"video.filename_download", "video.filename_download",
"video.id",
"audio.filename_disk", "audio.filename_disk",
"audio.filename_download", "audio.filename_download",
"audio.id",
"pdf.filename_disk", "pdf.filename_disk",
"pdf.filename_download", "pdf.filename_download",
"pdf.id",
"pdf_simple.filename_disk", "pdf_simple.filename_disk",
"pdf_simple.filename_download", "pdf_simple.filename_download",
"pdf_simple.id",
"conferences_id.thumbnail.filename_disk", "conferences_id.thumbnail.filename_disk",
"conferences_id.thumbnail.filename_download" "conferences_id.thumbnail.filename_download",
"conferences_id.id"
] ]
let url = `http://directus.carpa.com/items/${type}?fields=${fields[type].join(",")}&access_token=dUILDpE5gV224XqOB5xUTzE69sk8VSOL&limit=100000&sort`; fields['sermons'] = [
"id",
"title_jbp",
"title_spanish",
"title_english",
"sermon_code",
"files.directus_files_id.id",
"files.directus_files_id.filename_disk",
"files.directus_files_id.filename_download"
]
fields['clases_biblicas_translations'] = [
"id",
"languages_code",
"title",
"youtube,slug",
"featured_image.id",
"featured_image.filename_disk",
"featured_image.filename_download",
"bible_study",
"slides.directus_files_id.id",
"slides.directus_files_id.filename_disk",
"slides.directus_files_id.filename_download",
"audios.directus_files_id.id",
"audios.directus_files_id.filename_disk",
"audios.directus_files_id.filename_download",
"crafts.directus_files_id.id",
"crafts.directus_files_id.filename_download",
"crafts.directus_files_id.filename_disk"
]
fields['materiales_didacticos_translations'] = [
"id",
"languages_code",
"title",
"featured_image.id",
"featured_image.filename_disk",
"featured_image.filename_download",
"bible_studies.bible_study",
"priting_url",
"slug",
"materiales_didacticos_id.id",
"materiales_didacticos_id.date",
"materiales_didacticos_id.number_module",
"pdf_simple.directus_files_id.id",
"pdf_simple.directus_files_id.filename_disk",
"pdf_simple.directus_files_id.filename_download",
"pdf_booklet.directus_files_id.id",
"pdf_booklet.directus_files_id.filename_disk",
"pdf_booklet.directus_files_id.filename_download"
]
fields['print_materials_translations_1'] = [
"id",
"title",
"slug",
"slug_personalizado",
"private",
"notas",
"languages_code.code",
"files.file.id",
"files.file.filename_disk",
"files.file.filename_download",
"files.tipo",
"files.name",
"files_images.directus_files_id.id",
"files_images.directus_files_id.filename_disk",
"print_materials_id.thumbnail.filename_disk",
"files_images.directus_files_id.filename_download"
]
fields['ebn'] = [
"id"
]
let url = `http://directus.carpa.com/items/${type}?fields=${fields[type].join(",")}&access_token=dUILDpE5gV224XqOB5xUTzE69sk8VSOL&limit=100000`;
if( type=='sermons' ){
url += '&filter[files][_gte]=1'
}
console.log( url )
request(url, options, (error, res, body) => { request(url, options, (error, res, body) => {
if (error) { if (error) {
@ -81,24 +172,36 @@ async function generateFiles( type ) {
// do something with JSON, using the 'body' variable // do something with JSON, using the 'body' variable
const items = body.data; const items = body.data;
let fileList = ''
let nitems = items.map((item) => { let nitems = items.map((item) => {
let nitem = {} let nitem = {}
if (type == 'activities_translations') { if (type == 'activities_translations') {
nitem.locale = item.languages_code //nitem.locale = item.languages_code
nitem.code = `${item.languages_code}-${dayjs(item.activities_id?.date).format('YYYYMMDD')}-${item.activities_id?.activity}` //nitem.code = `${item.languages_code}-${dayjs(item.activities_id?.date).format('YYYYMMDD')}-${item.activities_id?.activity}`
nitem.id = item.activities_id?.id nitem.id = `${item.languages_code}-${item.activities_id?.wpid}`
nitem.title = item.title /*nitem.title = item.title
nitem.activities_title = item.activities_id?.title nitem.activities_title = item.activities_id?.title
nitem.date = item.activities_id?.date; nitem.date = item.activities_id?.date;
nitem.activity = item.activities_id?.activity; nitem.activity = item.activities_id?.activity;*/
nitem.thumbnail = !isUndefined(item.activities_id?.thumbnail?.filename_disk) ? DIRECTUS_BUCKET + item.activities_id?.thumbnail?.filename_disk : '' //nitem.thumbnail = item.activities_id?.thumbnail?.filename_download
//nitem.thumbnail_file = item.activities_id?.thumbnail?.filename_disk
nitem.video = !isUndefined(item.privateVideo?.filename_disk) ? DIRECTUS_BUCKET + item.privateVideo?.filename_disk : '' nitem.thumbnail_id = item.activities_id?.thumbnail?.filename_disk
nitem.audio = !isUndefined(item.mp3?.filename_disk) ? DIRECTUS_BUCKET + item.mp3?.filename_disk : '' //nitem.video = item.privateVideo?.filename_download
nitem.booklet = !isUndefined(item.pdf_booklet?.filename_disk) ? DIRECTUS_BUCKET + item.pdf_booklet?.filename_disk : '' //nitem.video_file = item.privateVideo?.filename_disk
nitem.simple = !isUndefined(item.pdf?.filename_disk) ? DIRECTUS_BUCKET + item.pdf?.filename_disk : '' nitem.files = {}
nitem.files.video = item.privateVideo?.filename_disk
//nitem.audio = item.mp3?.filename_download
//nitem.audio_file = item.mp3?.filename_disk
nitem.files.audio = item.mp3?.filename_disk
//nitem.booklet = item.pdf_booklet?.filename_download
//nitem.booklet_file = item.pdf_booklet?.filename_disk
nitem.files.booklet = item.pdf_booklet?.filename_disk
//nitem.simple = item.pdf?.filename_download
//nitem.simple_file = item.pdf?.filename_disk
nitem.files.simple = item.pdf?.filename_disk
} }
if (type == 'conferences_translations') { if (type == 'conferences_translations') {
@ -109,20 +212,156 @@ async function generateFiles( type ) {
nitem.date = item.conferences_id?.date; nitem.date = item.conferences_id?.date;
nitem.activity = item.conferences_id?.activity; nitem.activity = item.conferences_id?.activity;
nitem.thumbnail = !isUndefined(item.conferences_id?.thumbnail?.filename_disk) ? DIRECTUS_BUCKET + item.conferences_id?.thumbnail?.filename_disk : '' nitem.thumbnail = item.conferences_id?.thumbnail?.filename_download
nitem.thumbnail_file = item.conferences_id?.thumbnail?.filename_disk
nitem.thumbnail_id = item.conferences_id?.thumbnail?.id
nitem.video = !isUndefined(item.video?.filename_disk) ? DIRECTUS_BUCKET + item.video?.filename_disk : '' nitem.video = item.video?.filename_download
nitem.audio = !isUndefined(item.audio?.filename_disk) ? DIRECTUS_BUCKET + item.audio?.filename_disk : '' nitem.video_file = item.video?.filename_disk
nitem.simple = !isUndefined(item.pdf?.filename_disk) ? DIRECTUS_BUCKET + item.pdf?.filename_disk : '' nitem.video_id = item.video?.id
nitem.booklet = !isUndefined(item.pdf_simple?.filename_disk) ? DIRECTUS_BUCKET + item.pdf_simple?.filename_disk : ''
nitem.audio = item.audio?.filename_download
nitem.audio_file = item.audio?.filename_disk
nitem.audio_id = item.audio?.id
nitem.simple = item.pdf?.filename_download
nitem.simple_file = item.pdf?.filename_disk
nitem.simple_id = item.pdf?.id
nitem.booklet = item.pdf_simple?.filename_download
nitem.booklet_file = item.pdf_simple?.filename_disk
nitem.booklet_id = item.pdf_simple?.id
} }
if( type=='sermons'){
nitem.locale = 'es'
nitem.id = item.id
nitem.title_jbp = item.title_jbp
nitem.title_spanish = item.title_spanish
nitem.title_english = item.title_english
nitem.sermon_code = item.sermon_code
nitem.file_url = DIRECTUS_BUCKET + item.files?.[0]?.directus_files_id?.filename_disk
nitem.file_id = item.files?.[0]?.directus_files_id?.id
nitem.filename_disk = item.files?.[0]?.directus_files_id?.filename_disk
nitem.filename_download = item.files?.[0]?.directus_files_id?.filename_download
}
if(type=='clases_biblicas_translations'){
nitem.id = item.id.toString()
nitem.locale = item.languages_code
nitem.title = item.title
nitem.youtube = item.youtube
nitem.slug = item.slug
nitem.featured_image = item.featured_image.filename_disk
nitem.bible_study = item.bible_study
nitem.slides = []
item.slides?.map((file)=>{
const fileObject = {
id: file.directus_files_id?.id,
filename: file.directus_files_id?.filename_disk,
download: file.directus_files_id?.filename_download
}
nitem.slides.push(fileObject)
})
nitem.audios = []
item.audios?.map((file)=>{
const fileObject = {
id: file.directus_files_id?.id,
filename: file.directus_files_id?.filename_disk,
download: file.directus_files_id?.filename_download
}
nitem.audios.push(fileObject)
})
nitem.crafts = []
item.crafts?.map((file)=>{
const fileObject = {
id: file.directus_files_id?.id,
filename: file.directus_files_id?.filename_disk,
download: file.directus_files_id?.filename_download
}
nitem.crafts.push(fileObject)
})
}
if(type=='materiales_didacticos_translations'){
nitem.id = item.id.toString()
nitem.title = item.title
nitem.locale = item.languages_code
nitem.featured_image = item.featured_image?.filename_disk
nitem.materiales_didacticos_id = item.materiales_didacticos_id?.id
nitem.date = item.materiales_didacticos_id?.date
nitem.number_module = item.materiales_didacticos_id?.number_module
nitem.bible_studies = []
item.bible_studies?.map((item) => {
let bstudy = {}
bstudy.id = item.bible_study
nitem.bible_studies.push( bstudy )
})
nitem.printing_url = item.priting_url
nitem.slug = item.slug
nitem.pdf_simple = []
item.pdf_simple?.map((file)=>{
const fileObject = {
id: file.directus_files_id?.id,
filename: file.directus_files_id?.filename_disk,
download: file.directus_files_id?.filename_download
}
nitem.pdf_simple.push(fileObject)
})
nitem.pdf_booklet = []
item.pdf_booklet?.map((file)=>{
const fileObject = {
id: file.directus_files_id?.id,
filename: file.directus_files_id?.filename_disk,
download: file.directus_files_id?.filename_download
}
nitem.pdf_booklet.push(fileObject)
})
}
if(type=='print_materials_translations_1'){
nitem.id = item.id
nitem.title = item.title
nitem.slug = item.slug
nitem.custom_slug = item.slug_personalizado
nitem.private = item.private
nitem.notes = item.notas
nitem.locale = item.languages_code.code
nitem.files = []
item.files?.map((file)=>{
console.log('File',file)
const fileObject = {
id: file.file?.id,
filename: file.file?.filename_disk,
download: file.file?.filename_download,
type: file.tipo,
name: file.name
}
nitem.files.push(fileObject)
})
nitem.files_images = []
item.files_images?.map((file)=>{
const fileObject = {
id: file.directus_files_id?.id,
filename: file.directus_files_id?.filename_disk,
download: file.directus_files_id?.filename_download
}
nitem.files_images.push(fileObject)
})
nitem.thumbnail = item.print_materials_id?.thumbnail?.filename_disk
}
//console.log(fileList)
return nitem; return nitem;
}) })
//writeFile( fileList , type)
if( nitems.length > 0 ){ if( nitems.length > 0 ){
let csv = parse(nitems); // let csv = parse(nitems);
jsonlData += csv // jsonlData += csv
jsonlData += nitems.filter(item => item !== false).map(JSON.stringify).join('\n')
jsonlData += '\n';
writeFile(jsonlData, type) writeFile(jsonlData, type)
} }
}; };
@ -130,8 +369,24 @@ async function generateFiles( type ) {
} }
function flattenObject(obj){
const flattened = {}
Object.keys(obj).forEach((key) => {
const value = obj[key]
if (typeof value === 'object' && value !== null && !Array.isArray(value)) {
Object.assign(flattened, flattenObject(value))
} else {
flattened[key] = value
}
})
return flattened
}
function writeFile(jsonlData, type) { function writeFile(jsonlData, type) {
fs.writeFile(`./${DATA_INPUT_FOLDER}/${type}_files.csv`, jsonlData, (err) => { fs.writeFile(`./${DATA_INPUT_FOLDER}/${type}_files.json`, jsonlData, (err) => {
if (err) { if (err) {
console.error("Error writing file:", err); console.error("Error writing file:", err);
return; return;
@ -140,4 +395,5 @@ function writeFile(jsonlData, type) {
}); });
} }
generateFiles( 'conferences_translations' ); //generateFiles( 'clases_biblicas_translations' );
generateFiles( 'materiales_didacticos_translations' );

View File

@ -19,7 +19,7 @@ const DATA_INPUT_FOLDER = './input';
const DATA_OUTPUT_FOLDER = './output'; const DATA_OUTPUT_FOLDER = './output';
const TEMPLATES_FOLDER = './templates'; const TEMPLATES_FOLDER = './templates';
const DIRECTUS_BUCKET = 'https://ewr1.vultrobjects.com/lgcc-conferences/' const DIRECTUS_BUCKET = 'https://ewr1.vultrobjects.com/lgcc-conferences/'
const LOCALE = 'pt' const LOCALE = 'es'
function isUndefined(variable){ function isUndefined(variable){
if( typeof(variable) === 'undefined'){ if( typeof(variable) === 'undefined'){
@ -53,12 +53,20 @@ async function generateFiles( type ) {
nitem.date = item.date; nitem.date = item.date;
nitem.activity = item.activity; nitem.activity = item.activity;
nitem.thumbnail = !isUndefined(item.thumbnail) ? DIRECTUS_BUCKET + item.thumbnail : '' nitem.thumbnail_file = item.thumbnail ? `${item.fileslug}.${item.thumbnail?.toString().split('.')[1]}` : ''
nitem.thumbnail_id = item.thumbnail
nitem.video = !isUndefined(item.video) ? item.video : '' nitem.video_file = item.video ? `${item.fileslug}.${item.video?.toString().split('.')[1]}` : ''
nitem.audio = !isUndefined(item.audio) ? item.audio : '' nitem.video_id = item.video ? item.video : ''
nitem.booklet = !isUndefined(item.pdf) ? item.pdf : ''
nitem.simple = !isUndefined(item.pdf_simple) ? item.pdf_simple : '' nitem.audio_file = item.audio ? `${item.fileslug}.mp3` : ''
nitem.audio_id = item.audio
nitem.booklet_file = item.pdf ? `${item.fileslug}_booklet.pdf` : ''
nitem.booklet_id = item.pdf
nitem.simple_file = item.pdf_simple ? `${item.fileslug}.pdf` : ''
nitem.simple_id = item.pdf_simple
return nitem; return nitem;
}) })

View File

@ -98,7 +98,7 @@ async function generateJson( type, year ) {
url = `https://actividadeswp.carpa.com/v3/actividades/?f=texts&locale=${LOCALE}&year=${year}&limit=1000`; url = `https://actividadeswp.carpa.com/v3/actividades/?f=texts&locale=${LOCALE}&year=${year}&limit=1000`;
} else { } else {
//url = `https://conferenciaswp.carpa.com/v3/conferencias/?f=algolia&locale=${LOCALE}&year=${year}&limit=1000&cache=false`; //url = `https://conferenciaswp.carpa.com/v3/conferencias/?f=algolia&locale=${LOCALE}&year=${year}&limit=1000&cache=false`;
url = `http://localhost:10018/v3/conferencias/?f=typesense&locale=${LOCALE}&year=${year}`; url = `http://conferences.local/v3/conferencias/?f=typesense&locale=${LOCALE}&year=${year}`;
} }
request(url, options, async (error, res, body) => { request(url, options, async (error, res, body) => {
@ -112,13 +112,14 @@ async function generateJson( type, year ) {
// do something with JSON, using the 'body' variable // do something with JSON, using the 'body' variable
let items = [] let items = []
console.log( body.length + " items found for year " + year + " and type " + type ); console.log( body.result.conferencias.length + " items found for year " + year + " and type " + type );
console.log( 'URL', url )
items = body; items = body.result.conferencias;
if(items.length > 0) { if(items.length > 0) {
items.map((item) => { items.map((item) => {
if( item.id == null || item.id == undefined || item.id == '' ) { if( item._id == null || item._id == undefined || item._id == '' ) {
console.log( "Item has no id, skipping." ); console.log( "Item has no id, skipping." );
return false; return false;
}}) }})
@ -167,7 +168,7 @@ async function generateJson( type, year ) {
if (type == 'conferences') { if (type == 'conferences') {
nitem.locale = LOCALE; nitem.locale = LOCALE;
nitem.id = item.id.toString() nitem.id = item._id.toString()
nitem.type = 'conferences' nitem.type = 'conferences'
nitem.title = item.title nitem.title = item.title
nitem.timestamp = item.timestamp nitem.timestamp = item.timestamp
@ -180,7 +181,7 @@ async function generateJson( type, year ) {
nitem.city = item.city || null; nitem.city = item.city || null;
nitem.state = item.state || null; nitem.state = item.state || null;
nitem.country = item.country || null; nitem.country = item.country || null;
nitem.body = item.body; //nitem.body = item.body;
nitem.thumbnail = item.thumbnail nitem.thumbnail = item.thumbnail
nitem.youtube = item.files?.youtube nitem.youtube = item.files?.youtube
nitem.video = item.files?.video nitem.video = item.files?.video
@ -188,7 +189,7 @@ async function generateJson( type, year ) {
nitem.booklet = item.files?.pdf nitem.booklet = item.files?.pdf
nitem.simple = item.files?.pdf_simple nitem.simple = item.files?.pdf_simple
nitem.directus = ''; nitem.directus = '';
nitem.wp = item.id.toString(); nitem.wp = item._id.toString();
nitem.typesense = true; nitem.typesense = true;
nitem.rm = item.rm; nitem.rm = item.rm;
nitem.private = item.private == 1 ? true : false; nitem.private = item.private == 1 ? true : false;

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,11 @@
ac6d373f-bfb6-480b-aaff-f9520c34f5cc.png
1dbe9987-92cd-48d3-9dd9-789327f8c8e0.jpg
e5778d91-6db9-46b2-8eee-faea32163287.jpg
4d465a6f-8be6-4975-a1d6-8c168c17d80d.png
f021f2a0-6915-411a-81ff-4d8f654c5873.png
39066210-732f-4baf-bc1b-f08da9f127bf.png
dc00c3d4-859c-476b-a273-c9939037295b.jpg
90975613-fcb7-400e-95c5-f1559c15d734.jpg
02752377-97ff-4d50-9e28-dfe9f09cdaaf.jpg
9e2ab764-9c30-4dd2-a172-d209fc6d1198.png
60ed8231-9da4-4561-a0c9-14383588b42c.jpg
1 ac6d373f-bfb6-480b-aaff-f9520c34f5cc.png
2 1dbe9987-92cd-48d3-9dd9-789327f8c8e0.jpg
3 e5778d91-6db9-46b2-8eee-faea32163287.jpg
4 4d465a6f-8be6-4975-a1d6-8c168c17d80d.png
5 f021f2a0-6915-411a-81ff-4d8f654c5873.png
6 39066210-732f-4baf-bc1b-f08da9f127bf.png
7 dc00c3d4-859c-476b-a273-c9939037295b.jpg
8 90975613-fcb7-400e-95c5-f1559c15d734.jpg
9 02752377-97ff-4d50-9e28-dfe9f09cdaaf.jpg
10 9e2ab764-9c30-4dd2-a172-d209fc6d1198.png
11 60ed8231-9da4-4561-a0c9-14383588b42c.jpg

View File

@ -0,0 +1,11 @@
{"id":"1","locale":"es","title":"Clase 1 - La Biblia","youtube":"https://youtu.be/tJqcYJO291M","slug":"clase-1-la-biblia","featured_image":"ac6d373f-bfb6-480b-aaff-f9520c34f5cc.png","bible_study":"https://www.carpa.com/es/actividades/actividad-del-domingo-19-de-febrero-de-2023/","slides":[{"id":"628c2388-e561-4092-aadb-83308ea7874a","filename":"628c2388-e561-4092-aadb-83308ea7874a.pdf","download":"Clase-1-La-Biblia-.pdf"}],"audios":[{"id":"ad497fcb-e553-4823-85ff-9a0117c8407a","filename":"ad497fcb-e553-4823-85ff-9a0117c8407a.mp3","download":"La-Biblia.mp3"}],"crafts":[]}
{"id":"2","locale":"es","title":"Clase 2 - La 1ra Biblia = el Zodiaco en el cielo, entre las estrellas","youtube":"https://youtu.be/17pHWO5LQyo","slug":"clase-2-la-1ra-biblia-el-zodiaco-en-el-cielo-entre-las-estrellas","featured_image":"1dbe9987-92cd-48d3-9dd9-789327f8c8e0.jpg","bible_study":"https://www.carpa.com/es/actividades/actividad-del-domingo-19-de-febrero-de-2023/","slides":[{"id":"72e290e6-3538-405c-892c-61c9de756f59","filename":"72e290e6-3538-405c-892c-61c9de756f59.pdf","download":"Clase-2-La-Primera-Biblia-El-cielo-El-firmamento.pdf"}],"audios":[{"id":"ad497fcb-e553-4823-85ff-9a0117c8407a","filename":"ad497fcb-e553-4823-85ff-9a0117c8407a.mp3","download":"La-Biblia.mp3"}],"crafts":[]}
{"id":"3","locale":"es","title":"Clase 3 - La 2da y 3ra Biblia","youtube":"https://youtu.be/PdBh43PdH8Y","slug":"clase-3-la-2da-y-3ra-biblia","featured_image":"e5778d91-6db9-46b2-8eee-faea32163287.jpg","bible_study":"https://www.carpa.com/es/actividades/actividad-del-domingo-19-de-febrero-de-2023/","slides":[{"id":"1ed61856-7b83-45e5-a76c-722787c60ae4","filename":"1ed61856-7b83-45e5-a76c-722787c60ae4.pdf","download":"Clase-3-La-Segunda-y-Tercera-Biblia-.pdf"}],"audios":[{"id":"4e7d7233-ea2c-4774-8f2b-9c9989b43898","filename":"4e7d7233-ea2c-4774-8f2b-9c9989b43898.wav","download":"La-Biblia-es-la-Palabra-de-Dios.wav"}],"crafts":[]}
{"id":"4","locale":"es","title":"Clase 4 - La 4ta Biblia = la naturaleza","youtube":"https://youtu.be/QuQX9siMR0Q","slug":"clase-4-la-4ta-biblia-la-naturaleza","featured_image":"4d465a6f-8be6-4975-a1d6-8c168c17d80d.png","bible_study":"https://www.carpa.com/es/actividades/actividad-del-domingo-19-de-febrero-de-2023/","slides":[{"id":"9754f814-7e08-4fad-8215-46dfcd642738","filename":"9754f814-7e08-4fad-8215-46dfcd642738.pdf","download":"clase4-diapositivas.pdf"}],"audios":[],"crafts":[{"id":"e73c6cc9-2187-463c-839d-ec8efad51879","filename":"e73c6cc9-2187-463c-839d-ec8efad51879.zip","download":"clase4_manualidades.zip"}]}
{"id":"5","locale":"es","title":"Clase 5 - La 5ta Biblia = El tabernaculo [templo]","youtube":"https://youtu.be/IcUhalv29wE","slug":"clase-5-la-5ta-biblia-el-tabernaculo-templo","featured_image":"f021f2a0-6915-411a-81ff-4d8f654c5873.png","bible_study":"https://www.carpa.com/es/actividades/actividad-del-domingo-19-de-febrero-de-2023/","slides":[{"id":"73cd3c5e-6ab0-4e85-90b2-b208e40868e7","filename":"73cd3c5e-6ab0-4e85-90b2-b208e40868e7.pdf","download":"Clase-5-Los-Templos-diapositivas.pdf"}],"audios":[],"crafts":[{"id":"517fae92-eb1f-4063-a7a8-dcc400029b12","filename":"517fae92-eb1f-4063-a7a8-dcc400029b12.pdf","download":"Templo-de-Salomon-manualidad.pdf"}]}
{"id":"6","locale":"es","title":"Clase 6 - La 6ta Biblia = el Señor Jesucristo, el Verbo, Dios se hizo carne","youtube":"https://youtu.be/P7hPG9kousE","slug":"clase-6-la-6ta-biblia-el-senor-jesucristo-el-verbo-dios-se-hizo-carne","featured_image":"39066210-732f-4baf-bc1b-f08da9f127bf.png","bible_study":"https://www.carpa.com/es/actividades/actividad-del-domingo-19-de-febrero-de-2023/","slides":[{"id":"613f3581-681d-4b4c-9238-ebe89bbbd8d6","filename":"613f3581-681d-4b4c-9238-ebe89bbbd8d6.pdf","download":"Diapositivas_Clase_6-Montaje-Pantalla_usar-este.pdf"}],"audios":[{"id":"283e4af9-1401-4922-997b-7d8dfe085e06","filename":"283e4af9-1401-4922-997b-7d8dfe085e06.zip","download":"alabanzas.zip"}],"crafts":[{"id":"c3b6378f-12dd-49cb-8af5-fac2432791dd","filename":"c3b6378f-12dd-49cb-8af5-fac2432791dd.pdf","download":"manualidad-clase-6.pdf"}]}
{"id":"7","locale":"es","title":"Clase 7 - La 7ma Biblia = La Iglesia del Señor Jesucristo; la Nueva Jerusalén","youtube":"https://youtu.be/Fnh2QeCOvDs","slug":"clase-7-la-7ma-biblia-la-iglesia-del-senor-jesucristo-la-nueva-jerusalen","featured_image":"dc00c3d4-859c-476b-a273-c9939037295b.jpg","bible_study":"https://www.carpa.com/es/actividades/actividad-del-domingo-19-de-febrero-de-2023/","slides":[],"audios":[],"crafts":[{"id":"d22649f4-ce4f-4aa7-b57b-ddb535bdf6d7","filename":"d22649f4-ce4f-4aa7-b57b-ddb535bdf6d7.pdf","download":"Manualidad-Clase7.pdf"}]}
{"id":"8","locale":"es","title":"Clase 8 - La 8va Biblia = La Creación original","youtube":"https://youtu.be/MDeEMmLBDbM","slug":"clase-8-la-8va-biblia-la-creacion-original","featured_image":"90975613-fcb7-400e-95c5-f1559c15d734.jpg","bible_study":"https://www.carpa.com/es/actividades/actividad-del-domingo-19-de-febrero-de-2023/","slides":[{"id":"e852f02b-84dc-4470-b20f-6e87a603569c","filename":"e852f02b-84dc-4470-b20f-6e87a603569c.pdf","download":"Clase-8-La-creacion-original_FINAL-USAR.pdf"}],"audios":[{"id":"57e274b2-f630-4cd0-b705-f490db435ea4","filename":"57e274b2-f630-4cd0-b705-f490db435ea4.zip","download":"Clase-8-La-8va-Biblia-La-Creacion-original-Musicas.zip"}],"crafts":[{"id":"e37c8d64-061e-49f5-add7-45c54e6cd677","filename":"e37c8d64-061e-49f5-add7-45c54e6cd677.zip","download":"Clase-8-La-8va-Biblia-La-Creacion-original-Manualidades.zip"}]}
{"id":"9","locale":"es","title":"Clase 9 - La Edad del Astronauta","youtube":"https://youtu.be/woW66HPxOhA","slug":"clase-9-la-edad-del-astronauta","featured_image":"02752377-97ff-4d50-9e28-dfe9f09cdaaf.jpg","bible_study":"https://www.carpa.com/es/activities/2024/02/los-astronautas-de-la-edad-de-la-piedra-angular","slides":[],"audios":[{"id":"af57720e-08aa-4599-91cb-9fa7990831dd","filename":"af57720e-08aa-4599-91cb-9fa7990831dd.wav","download":"LA-EDAD-DEL-ASTRONAUTA-Output-Stereo-Out.wav"}],"crafts":[]}
{"id":"10","locale":"es","title":"Clase 10 - José vive aún - Parte 1","youtube":"https://youtu.be/gBlT_dljmys","slug":"clase-10-jose-vive-aun-parte-1","featured_image":"9e2ab764-9c30-4dd2-a172-d209fc6d1198.png","bible_study":"https://carpa.com/es/activities/2024/03/jose-vive-aun","slides":[],"audios":[],"crafts":[{"id":"a3226d63-8597-47b0-94f6-53736ba0cdfa","filename":"a3226d63-8597-47b0-94f6-53736ba0cdfa.zip","download":"Manualidad-y-Alabanzas.zip"}]}
{"id":"11","locale":"es","title":"Clase 11 - José vive aún - Parte 2","youtube":"https://youtu.be/Yxb45J2Vbj4","slug":"clase-11-jose-vive-aun-parte-2","featured_image":"60ed8231-9da4-4561-a0c9-14383588b42c.jpg","bible_study":"https://carpa.com/es/activities/2024/03/jose-vive-aun","slides":[],"audios":[],"crafts":[{"id":"d1264949-e95d-44c4-985d-0219eb02210b","filename":"d1264949-e95d-44c4-985d-0219eb02210b.pdf","download":"Manualidad-JOSE-TUNICA-solo.pdf"}]}

View File

@ -0,0 +1,971 @@
"locale","code","id","title","date","activity","thumbnail","video","audio","booklet","simple"
"en","en-20181223-1",2496,"Introduction to the topic: The Seventh Seal and the Most Holy Place of the Temple of God","2018-12-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/02/youtube_thumbnail_22090.png","","","https://www.carpa.com/sites/default/files/messages/en/2018/12/2018-12-23_introduction_topic_seventh_seal_and_most_holy_place_temple_god.pdf",""
"en","en-20181221-1",2497,"Introduction to the topic The Seventh Seal and the eternal youth","2018-12-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-118.jpg","","","",""
"en","en-20181216-1",2498,"Introduction to the topic: The Seventh Seal and the mighty men of the Son of David","2018-12-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-119.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/12/2018-12-16_introduction_topic_seventh_seal_and_mighty_men_son_david.pdf",""
"en","en-20181214-1",2499,"Introduction to the topic The reign of the Seventh Seal and the children","2018-12-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-120.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/12/2018-12-14_introduction_topic_reign_seventh_seal_and_children.pdf",""
"en","en-20181209-1",2500,"Introduction to the topic: The Blessings of the Seventh Seal","2018-12-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/12/2018-12-09_introduction_topic_blessings_seventh_seal.pdf",""
"en","en-20181207-1",2501,"Introduction to the topic: The calling of the Seventh Seal","2018-12-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-121.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/12/2018-12-07_introduction_topic_calling_seventh_seal.pdf",""
"en","en-20181202-1",2502,"Introduction to the topic: The fruits of the new birth in light of the Seventh Seal","2018-12-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-122.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/12/2018-12-02_introduction_topic_fruits_new_birth_light_seventh_seal.pdf",""
"en","en-20181130-1",2503,"Introduction to the topic: The things that will happen when the Seventh Seal comes to an end","2018-11-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-171-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/11/2018-11-30_introduction_topic_things_will_happen_when_seventh_seal_comes_end.pdf",""
"en","en-20181125-1",2504,"Introduction to the topic: The Seventh Seal and the American nation","2018-11-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-172-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/11/2018-11-25_introduction_topic_seventh_seal_and_american_nation.pdf",""
"en","en-20181123-1",2505,"Introduction to the topic: The Watchman of the Last Day with the Seventh Seal in his hand","2018-11-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-173-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/11/2018-11-23_introduction_topic_watchman_last_day_seventh_seal_his_hand.pdf",""
"en","en-20181118-1",2506,"Introduction to the topic: The Seventh Seal and the Divine Love","2018-11-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-174-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/11/2018-11-18_introduction_topic_seventh_seal_and_divine_love.pdf",""
"en","en-20181116-1",2507,"Introduction to the topic: The Seventh Seal and the elect of the Last Day","2018-11-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-175-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/11/2018-11-16_introduction_topic_seventh_seal_and_elect_last_day.pdf",""
"en","en-20181113-1",2508,"Condolences for the departure of brother Israel Alvarez Perez","2018-11-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-176-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/11/2018-11-13_condolences_departure_brother_israel_alvarez_perez.pdf",""
"en","en-20181111-1",2509,"Introduction to the topic: The Victory of the Seventh Seal","2018-11-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-177-1.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/11/2018-11-11_introduction_topic_victory_seventh_seal.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/11/2018-11-11_introduction_topic_victory_seventh_seal.pdf",""
"en","en-20181109-1",2510,"Introduction to the topic The Seventh Seal finishing the construction of the Mystical Body of Christ","2018-11-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-178-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/11/2018-11-09_introduction_topic_seventh_seal_finishing_construction_mystical_body_christ.pdf",""
"en","en-20181104-1",2511,"Introduction to the topic: The Revelation and the Angel of Jesus","2018-11-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/11/2018-11-04_introduction_topic_revelation_and_angel_jesus.pdf",""
"en","en-20181102-1",2512,"Introduction to the topic: The Seventh Seal and the safety zone for the elect of the Last Day","2018-11-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-179-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/11/2018-11-02_introduction_topic_seventh_seal_and_safety_zone_elect_last_day.pdf",""
"en","en-20181028-1",2513,"Introduction to the topic: The Seventh Seal and the day and the hour of His Coming","2018-10-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-132.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/10/2018-10-28_introduction_topic_seventh_seal_and_day_and_hour_his_coming.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/10/2018-10-28_introduction_topic_seventh_seal_and_day_and_hour_his_coming.pdf",""
"en","en-20181026-1",2514,"Introduction to the topic: The Seventh Seal and the Mercy of God for the last time","2018-10-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/10/2018-10-26_introduction_topic_seventh_seal_and_mercy_god_last_time.pdf",""
"en","en-20181021-1",2515,"Introduction to the topic: The Seventh Seal and the Three Witnesses","2018-10-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-133-2.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/10/2018-10-21_introduction_topic_seventh_seal_and_three_witnesses.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/10/2018-10-21_introduction_topic_seventh_seal_and_three_witnesses.pdf",""
"en","en-20181019-1",2516,"Introduction to the topic: The rapture of the Seventh Seal","2018-10-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-134-2.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/10/2018-10-19_introduction_topic_rapture_seventh_seal.pdf",""
"en","en-20181014-1",2517,"Introduction to the topic: The Voice of Christ under the Seventh Seal","2018-10-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-135-2.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/10/2018-10-14_introduction_topic_voice_christ_under_seventh_seal.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/10/2018-10-14_introduction_topic_voice_christ_under_seventh_seal.pdf",""
"en","en-20181012-1",2518,"Introduction to the topic: Time to awaken with the Message of the Seventh Seal","2018-10-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-136-2.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/10/2018-10-12_introduction_topic_time_awaken_message_seventh_seal.pdf",""
"en","en-20181007-1",2519,"Introduction to the topic: The Seventh Seal and the time of mercy and judgment","2018-10-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-137-2.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/10/2018-10-07_introduction_topic_seventh_seal_and_time_mercy_and_judgment.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/10/2018-10-07_introduction_topic_seventh_seal_and_time_mercy_and_judgment.pdf",""
"en","en-20181005-1",2520,"Introduction to the topic: The Seventh Seal and the restoration of the Throne of David","2018-10-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-138-2.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/10/2018-10-05_introduction_topic_seventh_seal_and_restoration_throne_david.pdf",""
"en","en-20180930-1",2521,"Introduction to the topic: The Seventh Seal and the only hope of the Church","2018-09-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/09/2018-09-30_introduction_topic_seventh_seal_and_only_hope_church.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/09/2018-09-30_introduction_topic_seventh_seal_and_only_hope_church.pdf",""
"en","en-20180928-1",2522,"Introduction to the topic: The Seventh Seal and the restoration of the Kingdom of God","2018-09-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-133-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/09/2018-09-28_introduction_topic_seventh_seal_and_restoration_kingdom_god.pdf",""
"en","en-20180923-1",2523,"Introduction to the topic: The Seventh Seal and the last revival of the elect","2018-09-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-134-1.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/09/2018-09-23_introduction_topic_seventh_seal_and_last_revival_elect.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/09/2018-09-23_introduction_topic_seventh_seal_and_last_revival_elect.pdf",""
"en","en-20180921-1",2524,"Introduction to the topic: The time for the transformation","2018-09-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-135-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/09/2018-09-21_introduction_topic_time_transformation.pdf",""
"en","en-20180914-1",2525,"Introduction to the topic: The mysteries contained in the Seventh Seal","2018-09-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-137-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/09/2018-09-14_introduction_topic_mysteries_contained_seventh_seal.pdf",""
"en","en-20180909-1",2526,"Introduction to the topic: The Seventh Seal and the restoration of all things","2018-09-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/09/2018-09-09_introduction_topic_seventh_seal_and_restoration_all_things.pdf",""
"en","en-20180907-1",2527,"Introduction to the topic: The Seventh Seal putting an end to all things","2018-09-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-138-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/09/2018-09-07_introduction_topic_seventh_seal_putting_end_all_things.pdf",""
"en","en-20180902-1",2528,"Introduction to the topic: The Seventh Seal and the sign of the end of the world","2018-09-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-139-1.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/09/2018-09-02_introduction_topic_seventh_seal_and_sign_end_world.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/09/2018-09-02_introduction_topic_seventh_seal_and_sign_end_world.pdf",""
"en","en-20180826-1",2529,"Introduction to the topic The Seventh Seal and the Third Pull","2018-08-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-153-3.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/08/2018-08-26_introduction_topic_seventh_seal_and_third_pull.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/08/2018-08-26_introduction_topic_seventh_seal_and_third_pull.pdf",""
"en","en-20180824-1",2530,"Introduction to the topic: The Seventh seal and the Message of the Gospel of the Kindom","2018-08-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-154-3.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/08/2018-08-24_introduction_topic_seventh_seal_and_message_gospel_kindom.pdf",""
"en","en-20180819-1",2531,"Introduction to the topic: The Seventh Seal and the Rapture of the Church","2018-08-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-155-3.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/08/2018-08-19_introduction_topic_seventh_seal_and_rapture_church.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/08/2018-08-19_introduction_topic_seventh_seal_and_rapture_church.pdf",""
"en","en-20180817-1",2532,"Introduction to the topic: The Seventh Seal and the Seven Thunders","2018-08-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-156-3.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/08/2018-08-17_introduction_topic_seventh_seal_and_seven_thunders.pdf",""
"en","en-20180812-1",2533,"Introduction to the topic: The Seventh Seal and the Age of the Cornerstone","2018-08-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-157-3.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/08/2018-08-12_introduction_topic_seventh_seal_and_age_cornerstone.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/08/2018-08-12_introduction_topic_seventh_seal_and_age_cornerstone.pdf",""
"en","en-20180810-1",2534,"Introduction to the topic: The Seventh Seal and the revival of the Church","2018-08-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-158-3.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/08/2018-08-10_introduction_topic_seventh_seal_and_revival_church.pdf",""
"en","en-20180805-1",2535,"Introduction to the topic: The explosions of the Seventh Seal","2018-08-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-159-2.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/08/2018-08-05_introduction_topic_explosions_seventh_seal.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/08/2018-08-05_introduction_topic_explosions_seventh_seal.pdf",""
"en","en-20180803-1",2536,"Introduction to the topic: The Seventh Seal looking for the elect","2018-08-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-160.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/08/2018-08-03_introduction_topic_seventh_seal_looking_elect.pdf",""
"en","en-20180729-1",2537,"Introduction to the topic: The Seventh Seal and the incarnate Word","2018-07-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-152-2.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/07/2018-07-29_introduction_topic_seventh_seal_and_incarnate_word.pdf",""
"en","en-20180727-1",2538,"Introduction to the topic: The Seventh Seal and the Spirit of Moses and Elijah","2018-07-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_22046.png","","","https://www.carpa.com/sites/default/files/messages/en/2018/07/2018-07-28_introduction_topic_seventh_seal_and_spirit_moses_and_elijah.pdf",""
"en","en-20180720-1",2539,"Introduction to the topic: Working under the Seventh Seal","2018-07-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/07/2018-07-20_introduction_topic_working_under_seventh_seal.pdf",""
"en","en-20180715-1",2540,"Introduction to the topic: The Seventh Seal and the Youth of the Last Day","2018-07-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-154-2.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/07/2018-07-15_introduction_topic_seventh_seal_and_youth_last_day.pdf",""
"en","en-20180713-1",2541,"Introduction to the topic: The Light of the Seventh Seal","2018-07-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-155-2.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/07/2018-07-13_introduction_topic_light_seventh_seal.pdf",""
"en","en-20180708-1",2542,"Introduction to the topic: The fruits of the Seventh Seal","2018-07-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-156-2.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/07/2018-07-08_introduction_topic_fruits_seventh_seal.pdf",""
"en","en-20180706-1",2543,"Introduction to the topic: The Seventh Seal and the Reclaiming Work","2018-07-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-157-2.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/07/2018-07-06_introduction_topic_seventh_seal_and_reclaiming_work.pdf",""
"en","en-20180701-1",2544,"Introduction to the topic: The manifestation of the Seventh Seal in simplicity","2018-07-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-158-2.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/07/2018-07-01_introduction_topic_manifestation_seventh_seal_simplicity.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/07/2018-07-01_introduction_topic_manifestation_seventh_seal_simplicity.pdf",""
"en","en-20180629-1",2545,"Introduction to the topic: The Seventh Seal gathering the elect of God","2018-06-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-133.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/06/2018-06-29_introduction_topic_seventh_seal_gathering_elect_god.pdf",""
"en","en-20180624-1",2546,"Introduction to the topic: The beginning and end of the Seventh Seal","2018-06-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-134.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/06/2018-06-24_introduction_topic_beginning_and_end_seventh_seal.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/06/2018-06-24_introduction_topic_beginning_and_end_seventh_seal.pdf",""
"en","en-20180622-1",2547,"Introduction to the topic: The Seventh Seal: A Door opened in Heaven","2018-06-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-135.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/06/2018-06-22_introduction_topic_seventh_seal_door_opened_heaven.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/06/2018-06-22_introduction_topic_seventh_seal_door_opened_heaven.pdf",""
"en","en-20180617-1",2548,"Introduction to the topic: The Seventh Seal and the sign of the Son of Man in Heaven","2018-06-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-136.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/06/2018-06-17_introduction_topic_seventh_seal_and_sign_son_man_heaven.pdf",""
"en","en-20180615-1",2549,"Introduction to the topic: The Seventh Seal: The Coming of the Son of Man with His Angels","2018-06-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-137.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/06/2018-06-15_introduction_topic_seventh_seal_coming_son_man_his_angels.pdf",""
"en","en-20180610-1",2550,"Introduction to the topic: The judgments in the Seventh Seal","2018-06-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-138.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/06/2018-06-10_introduction_topic_judgments_seventh_seal.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/06/2018-06-10_introduction_topic_judgments_seventh_seal.pdf",""
"en","en-20180608-1",2551,"Introduction to the topic: The Seventh Seal: The Second Coming of Christ","2018-06-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-139.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/06/2018-06-08_introduction_topic_seventh_seal_second_coming_christ.pdf",""
"en","en-20180603-1",2552,"Introduction to the topic: The blessings in the Seventh Seal","2018-06-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/06/2018-06-03_introduction_topic_blessings_seventh_seal.pdf",""
"en","en-20180601-1",2553,"Introduction to the topic: The leadership of the Seventh Seal","2018-06-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/11/youtube_thumbnail_22030.png","","","https://www.carpa.com/sites/default/files/messages/en/2018/06/2018-06-01_introduction_topic_leadership_seventh_seal.pdf",""
"en","en-20180527-1",2554,"Introduction to the topic: The mystery of the Book of the Seven Seals","2018-05-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-42-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/05/2018-05-27_introduction_topic_mystery_book_seven_seals.pdf",""
"en","en-20180525-1",2555,"Introduction to the topic: The Seventh Seal and the rapturing faith","2018-05-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-43-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/05/2018-05-25_introduction_topic_seventh_seal_and_rapturing_faith.pdf",""
"en","en-20180520-1",2556,"Introduction to the topic: The stages of the Seventh Seal","2018-05-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-44-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/05/2018-05-20_introduction_topic_stages_seventh_seal.pdf",""
"en","en-20180518-1",2557,"Introduction to the topic: The Seventh Seal in the Last Day","2018-05-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/05/2018-05-18_introduction_topic_seventh_seal_last_day.pdf",""
"en","en-20180513-1",2558,"Introduction to the topic: The Seventh Seal throughout the entire Scripture","2018-05-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-45-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/05/2018-05-13_introduction_topic_seventh_seal_throughout_entire_scripture.pdf",""
"en","en-20180511-1",2559,"Introduction to the topic: The secrets kept in the Seventh Seal","2018-05-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-46-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/05/2018-05-11_introduction_topic_secrets_kept_seventh_seal.pdf",""
"en","en-20180506-1",2560,"Introduction to the topic: The Spiritual Food for each time","2018-05-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-47-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/05/2018-05-06_introduction_topic_spiritual_food_each_time.pdf",""
"en","en-20180504-1",2561,"Introduction to the topic: The Seventh Seal and the Seventh Trumpet","2018-05-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-49-1.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/05/2018-05-04_introduction_topic_seventh_seal_and_seventh_trumpet.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/05/2018-05-04_introduction_topic_seventh_seal_and_seventh_trumpet.pdf",""
"en","en-20180429-1",2562,"Introduction to the topic: The Day of the Son of Man and the works He will do in His Coming - Sunday","2018-04-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-171.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-29_introduction_topic_day_son_man_and_works_he_will_do_his_coming_-_sunday.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-29_introduction_topic_day_son_man_and_works_he_will_do_his_coming_-_sunday.pdf",""
"en","en-20180427-1",2563,"Introduction to the topic: The Day of the Son of Man and the works He will do in His Coming - Friday","2018-04-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-172.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-27_introduction_topic_day_son_man_and_works_he_will_do_his_coming_-_friday.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-27_introduction_topic_day_son_man_and_works_he_will_do_his_coming_-_friday.pdf",""
"en","en-20180422-1",2564,"Introduction to the topic: The Divine Cycle of the restoration of all things - Sunday","2018-04-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-173.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-22_introduction_topic_divine_cycle_restoration_all_things_-_sunday.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-22_introduction_topic_divine_cycle_restoration_all_things_-_sunday.pdf",""
"en","en-20180420-1",2565,"Introduction to the topic: The Divine Cycle for the restoration of all things - Friday","2018-04-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-174.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-20_introduction_topic_divine_cycle_restoration_all_things_-_friday.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-20_introduction_topic_divine_cycle_restoration_all_things_-_friday.pdf",""
"en","en-20180415-1",2566,"Introduction to the topic: Summer is nigh - Sunday","2018-04-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-175.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-15_introduction_topic_summer_nigh_-_sunday.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-15_introduction_topic_summer_nigh_-_sunday.pdf",""
"en","en-20180413-1",2567,"Introduction to the topic: Summer is nigh - Friday","2018-04-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-176.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-13_introduction_topic_summer_nigh_-_friday.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-13_introduction_topic_summer_nigh_-_friday.pdf",""
"en","en-20180408-1",2568,"Introduction to the topic: Where is the God of Elijah today? - Sunday","2018-04-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-178.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-08_introduction_topic_where_god_elijah_today_-_sunday.pdf",""
"en","en-20180401-2",2570,"Holy Supper and Washing of Feet Service","2018-04-01","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-180.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-01_holy_supper_and_washing_feet_service.pdf",""
"en","en-20180401-1",2569,"Introduction to the topic: The Resurrection of Jesus Christ according to the Scripture - Sunday","2018-04-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-181.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-01_introduction_topic_resurrection_jesus_christ_according_scripture_-_sunday.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-01_introduction_topic_resurrection_jesus_christ_according_scripture_-_sunday.pdf",""
"en","en-20180330-1",2571,"Introduction to the topic: The Crucifixion and Resurrection of Jesus Christ according to the Scripture","2018-03-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-152-1.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-30_introduction_topic_crucifixion_and_resurrection_jesus_christ_according_scripture.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-30_introduction_topic_crucifixion_and_resurrection_jesus_christ_according_scripture.pdf",""
"en","en-20180325-1",2572,"Introduction to the topic: Israel, behold, thy King cometh unto thee - Sunday","2018-03-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-153-1.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-25_israel_behold_thy_king_cometh_unto_thee_-_sunday.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-25_israel_behold_thy_king_cometh_unto_thee_-_sunday.pdf",""
"en","en-20180323-1",2573,"Introduction to the topic: Israel, behold, thy King cometh unto thee - Friday","2018-03-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-154-1.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-23_israel_behold_thy_king_cometh_unto_thee_-_friday.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-23_israel_behold_thy_king_cometh_unto_thee_-_friday.pdf",""
"en","en-20180318-1",2574,"Introduction to the topic: Once more, Lord - Sunday","2018-03-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-155-1.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-18_introduction_topic_once_more_lord_-_sunday.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-18_introduction_topic_once_more_lord_-_sunday.pdf",""
"en","en-20180316-1",2575,"Introduction to the topic: Once more, Lord - Friday","2018-03-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-16_introduction_topic_once_more_lord_-_friday.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-16_introduction_topic_once_more_lord_-_friday.pdf",""
"en","en-20180311-1",2576,"Introduction to the topic: The introduction to the Millennium - Sunday","2018-03-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-156-1.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-11_introduction_topic_introduction_millennium_-_sunday.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-11_introduction_topic_introduction_millennium_-_sunday.pdf",""
"en","en-20180309-1",2577,"Introduction to the topic: The introduction to the Millennium - Friday","2018-03-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-157-1.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-09_introduction_topic_introduction_millennium_-_friday.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-09_introduction_topic_introduction_millennium_-_friday.pdf",""
"en","en-20180304-1",2578,"Introduction to the topic: A touch of faith unto salvation - Sunday","2018-03-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-158-1.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-04_introduction_topic_touch_faith_unto_salvation_-_sunday.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-04_introduction_topic_touch_faith_unto_salvation_-_sunday.pdf",""
"en","en-20180302-1",2579,"Introduction to the topic: A touch of faith unto salvation - Friday","2018-03-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-159-1.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-02_introduction_topic_touch_faith_unto_salvation_-_friday.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-02_introduction_topic_touch_faith_unto_salvation_-_friday.pdf",""
"en","en-20180225-1",2580,"Introduction to the topic: The position of the Church in the Last Day - Sunday","2018-02-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-152.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-25_introduction_topic_position_church_last_day_-_sunday.pdf",""
"en","en-20180223-1",2581,"Introduction to the topic: The position of the Church in the Last Day - Friday","2018-02-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-153.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-23_introduction_topic_position_church_last_day_-_friday.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-23_introduction_topic_position_church_last_day_-_friday.pdf",""
"en","en-20180218-1",2582,"Introduction to the topic: The Fountain of that gives Water for everlasting life - Sunday","2018-02-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-154.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-18_introduction_topic_fountain_gives_water_everlasting_life_-_sunday.pdf",""
"en","en-20180216-1",2583,"Introduction to the topic: The Fountain that gives Water for everlasting life - Friday","2018-02-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-155.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-16_introduction_topic_fountain_gives_water_everlasting_life_-_friday.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-16_introduction_topic_fountain_gives_water_everlasting_life_-_friday.pdf",""
"en","en-20180211-1",2584,"Introduction to the topic: The Voice of the Holy Spirit speaking to the Church in the Last Day - Sunday","2018-02-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-156.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-11_introduction_topic_voice_holy_spirit_speaking_church_last_day_-_sunday.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-11_introduction_topic_voice_holy_spirit_speaking_church_last_day_-_sunday.pdf",""
"en","en-20180209-1",2585,"Introduction to the topic: The Voice of the Holy Spirit speaking to the Church in the Last Day - Friday","2018-02-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-157.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-09_introduction_topic_voice_holy_spirit_speaking_church_last_day_-_friday.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-09_introduction_topic_voice_holy_spirit_speaking_church_last_day_-_friday.pdf",""
"en","en-20180204-1",2586,"Introduction to the topic: The Fountain that gives Water for everlasting life - Sunday","2018-02-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-158.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-04_introduction_topic_fountain_gives_water_everlasting_life_-_sunday.pdf",""
"en","en-20180202-1",2587,"Introduction to the topic: The Fountain of Water that gives everlasting life - Friday","2018-02-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-159.jpg","","https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-02_introduction_topic_fountain_water_gives_everlasting_life_-_friday.mp3","https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-02_introduction_topic_fountain_water_gives_everlasting_life_-_friday.pdf",""
"en","en-20180128-1",2588,"Introduction to the topic: The Coming of the Son of Man as the Lightning - Sunday","2018-01-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-30-3.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/01/2018-01-28_introduction_topic_coming_son_man_lightning_-_sunday.pdf",""
"en","en-20180121-1",2589,"Introduction to the topic: The Voice of the Sign in each time - Sunday","2018-01-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/01/2018-01-21_introduction_topic_voice_sign_each_time_-_sunday.pdf",""
"en","en-20180119-1",2590,"Introduction to the topic: The Voice of the Sign - Friday","2018-01-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-32-3.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/01/2018-01-19_introduction_topic_voice_sign_-_friday.pdf",""
"en","en-20180114-1",2591,"Introduction to the topic: The Royal Seed of Abraham - Sunday","2018-01-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-33-3.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/01/2018-01-14_introduction_topic_royal_seed_abraham_-_sunday.pdf",""
"en","en-20180112-1",2592,"Introduction to the topic: The Royal Seed of Abraham - Friday","2018-01-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-34-3.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/01/2018-01-12_introduction_topic_royal_seed_abraham_-_friday.pdf",""
"en","en-20180107-2",2593,"Condolences to the family of Carlos Rodriguez","2018-01-07","2","","","","https://www.carpa.com/sites/default/files/messages/en/2018/01/2018-01-07_condolences_family_carlos_rodriguez.pdf",""
"en","en-20180105-1",2594,"Introduction to the topic: The Stone with a New Name","2018-01-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-37-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2018/01/2018-01-05_introduction_topic_stone_new_name.pdf",""
"en","en-20171231-1",2595,"Introduccion to the topic: It will be according to the Divine Vision - Sunday","2017-12-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-5-9.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2017/12/2017-12-31_introduccion_topic_it_will_be_according_divine_vision_-_sunday.pdf",""
"en","en-20171229-1",2596,"Introduccion to the topic: It will be according to the Divine Vision - Friday","2017-12-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-17.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2017/12/2017-12-29_introduccion_topic_it_will_be_according_divine_vision_-_friday.pdf",""
"en","en-20171222-1",2597,"Introduction to the topic: Melchisedec, the King of Peace","2017-12-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-23.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2017/12/2017-12-22_introduction_topic_melchisedec_king_peace.pdf",""
"en","en-20171215-1",2598,"The One sent by the Father","2017-12-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","https://www.carpa.com/sites/default/files/messages/en/2017/12/2017-12-15_the_one_sent_father.mp3","https://www.carpa.com/sites/default/files/messages/en/2017/12/2017-12-15_the_one_sent_father.pdf",""
"en","en-20171208-1",2599,"Introduction to the topic: The trajectory of the ministry of Elijah by five times","2017-12-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-35.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2017/12/2017-12-08_introduction_topic_trajectory_ministry_elijah_five_times.pdf",""
"en","en-20171203-1",2600,"Introduction to the topic: The last call of the twelve tribes of Israel","2017-12-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-42.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2017/12/2017-12-03_introduction_topic_last_call_twelve_tribes_israel.pdf",""
"en","en-20171126-1",2601,"Introduction to the topic: Joseph in front of the people for the preservation of life","2017-11-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-5-8.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2017/11/2017-11-26_introduction_topic_joseph_front_people_preservation_life.pdf",""
"en","en-20171119-1",2602,"Introduction to the topic: God's promise to Abraham","2017-11-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-16.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2017/11/2017-11-19_introduction_topic_gods_promise_abraham.pdf",""
"en","en-20171112-1",2603,"Introduction to the topic: The Angels bringing the revelation of the Seven Seals","2017-11-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-22.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2017/11/2017-11-12_introduction_topic_angels_bringing_revelation_seven_seals.pdf",""
"en","en-20171105-1",2604,"Introduction to the topic: David, the eighth son of Jesse, anointed as king of Israel","2017-11-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-34.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2017/11/2017-11-05_introduction_topic_david_eighth_son_jesse_anointed_king_israel.pdf",""
"en","en-20171029-1",2605,"Introduction to the topic: The revelation of God through the prophets","2017-10-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_21973.png","","","https://www.carpa.com/sites/default/files/messages/en/2017/10/2017-10-30_introduction_topic_revelation_god_through_prophets.pdf",""
"en","en-20171022-1",2606,"Introduction to the topic: The return of the heavenly citizens to the House of the Father","2017-10-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-2-6.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2017/10/2017-10-28_introduction_topic_return_heavenly_citizens_house_father.pdf",""
"en","en-20171015-1",2607,"Introduction to the topic: The New Year","2017-10-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-3-3.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2017/10/2017-10-15_introduction_topic_new_year.pdf",""
"en","en-20171008-1",2608,"Introduction to the topic: The King is Born","2017-10-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2017/10/2017-10-08_introduction_topic_king_born.pdf",""
"en","en-20171001-1",2609,"Introduction to the topic: The mission of the forerunner and the foreman of the First and Second Coming of Christ","2017-10-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp","","","https://www.carpa.com/sites/default/files/messages/en/2017/10/2017-10-01_introduction_topic_mission_forerunner_and_foreman_first_and_second_coming_christ.pdf",""
"en","en-20170924-1",2610,"Introduction to the topic: Elijah on the Mount of God","2017-09-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp","","https://www.carpa.com/sites/default/files/messages/en/2017/09/2017-09-24_introduction_topic_elijah_mount_god.mp3","https://www.carpa.com/sites/default/files/messages/en/2017/09/2017-09-24_introduction_topic_elijah_mount_god.pdf",""
"en","en-20170917-1",2611,"Introduction to the topic: The Harvesting Time","2017-09-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp","","https://www.carpa.com/sites/default/files/messages/en/2017/09/2017-09-17_introduction_topic_harvesting_time.mp3","https://www.carpa.com/sites/default/files/messages/en/2017/09/2017-09-17_introduction_topic_harvesting_time.pdf",""
"en","en-20170910-1",2612,"Words of Greetings, Sunday, September 10, 2017 - Dr. William Soto Santiago","2017-09-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp","","https://www.carpa.com/sites/default/files/messages/en/2017/09/2017-09-10_words_greetings_sunday_september_10_2017_-_dr_william_soto_santiago.mp3","https://www.carpa.com/sites/default/files/messages/en/2017/09/2017-09-10_words_greetings_sunday_september_10_2017_-_dr_william_soto_santiago.pdf",""
"en","en-20170903-1",2613,"Words of Greetings, Sunday, September 3, 2017 - Dr. William Soto Santiago","2017-09-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp","","https://www.carpa.com/sites/default/files/messages/en/2017/09/2017-09-03_words_greetings_sunday_september_3_2017_-_dr_william_soto_santiago.mp3","https://www.carpa.com/sites/default/files/messages/en/2017/09/2017-09-03_words_greetings_sunday_september_3_2017_-_dr_william_soto_santiago.pdf",""
"en","en-20170827-1",2614,"Words of Greetings, Sunday, August 27, 2017 - Dr. William Soto Santiago","2017-08-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp","","","https://www.carpa.com/sites/default/files/messages/en/2017/08/2017-08-27_words_greetings_sunday_august_27_2017_-_dr_william_soto_santiago.pdf",""
"en","en-20170813-1",2615,"Words of greeting - Dr. William Soto Santiago","2017-08-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp","","","https://www.carpa.com/sites/default/files/messages/en/2017/08/2017-08-13_words_greeting_-_dr_william_soto_santiago.pdf",""
"en","en-20170514-1",2616,"Faith Based on the Divine Promises","2017-05-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2017/05/photo_2025-05-23_11-22-11.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2017/05/2017-05-14_faith_based_divine_promises.pdf",""
"en","en-20170507-1",2617,"Seeking God in the time in which one lives","2017-05-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-3-2.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2017/05/2017-05-07_seeking_god_time_which_one_lives.pdf",""
"en","en-20170428-1",2618,"The return to Eden - Introduction","2017-04-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-41.jpg","","https://www.carpa.com/sites/default/files/messages/en/2017/04/2017-04-28_the_return_eden_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2017/04/2017-04-28_the_return_eden_-_introduction.pdf",""
"en","en-20170416-1",2619,"The Resurrection of Jesus Christ according to the Scripture","2017-04-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-51.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2017/04/2017-04-16_the_resurrection_jesus_christ_according_scripture.pdf",""
"en","en-20170414-1",2620,"The Crucifixion and Resurrection of Jesus Christ according to the Scripture - Introduction","2017-04-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-43.jpg","","https://www.carpa.com/sites/default/files/messages/en/2017/04/2017-04-14_the_crucifixion_and_resurrection_jesus_christ_according_scripture_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2017/04/2017-04-14_the_crucifixion_and_resurrection_jesus_christ_according_scripture_-_introduction.pdf",""
"en","en-20170409-1",2621,"Israel, behold, thy King cometh unto thee","2017-04-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-43.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2017/04/2017-04-09_israel_behold_thy_king_cometh_unto_thee.pdf",""
"en","en-20170407-1",2622,"Israel, behold, thy King cometh unto thee - Introduction","2017-04-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-41.jpg","","https://www.carpa.com/sites/default/files/messages/en/2017/04/2017-04-07_israel_behold_thy_king_cometh_unto_thee_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2017/04/2017-04-07_israel_behold_thy_king_cometh_unto_thee_-_introduction.pdf",""
"en","en-20170402-1",5547,"The Trajectory of Elijahs Ministry Five Times","2017-04-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21952-1.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/01/2017-04-02-the_trajectory_of_elijahs_ministry_five_times.mp3","",""
"en","en-20170331-1",2623,"The trajectory of the ministry of Elijah by five times - Introduction","2017-03-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/04/youtube_thumbnail_21951.png","","https://www.carpa.com/sites/default/files/messages/en/2017/03/2017-03-31_the_trajectory_ministry_elijah_five_times_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2017/03/2017-03-31_the_trajectory_ministry_elijah_five_times_-_introduction.pdf",""
"en","en-20170326-1",2624,"A Prophet Like Moses","2017-03-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_21950.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2017/03/2017-03-26-a_prophet_like_moses.mp3","",""
"en","en-20170324-1",2625,"A Prophet Like Moses — Introduction","2017-03-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/10/youtube_thumbnail_21949.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2017/03/2000-12-01-1-MM-lord_what_do_you_want_me_to_do.mp3","",""
"en","en-20170318-1",2626,"The greatest sign of the Earth: A prophet","2017-03-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2017/03/2017-03-18_the_greatest_sign_earth_prophet.pdf",""
"en","en-20170312-1",2627,"Joseph in front of the people for the preservation of life","2017-03-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2017/03/2017-03-12_joseph_front_people_preservation_life.pdf",""
"en","en-20170305-1",2628,"God's promise to Abraham","2017-03-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/01/youtube_thumbnail_21942.png","","","https://www.carpa.com/sites/default/files/messages/en/2017/03/2017-03-05_gods_promise_abraham.pdf",""
"en","en-20170303-1",2629,"God's Promise to Abraham - Introduction","2017-03-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/06/youtube_thumbnail_21941-1.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2017/03/2017-03-03-1-gods_promise_to_abraham_introduction-1.mp3","",""
"en","en-20170226-1",2630,"The Angels bringing the revelation of the Seven Seals","2017-02-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_21940-1.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2017/02/2017-02-26-the_angels_bringing_the_revelation_of_the_seven_seals.mp3","",""
"en","en-20170224-1",2631,"The angels bringing the revelation of the Seven Seals - Introduction","2017-02-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-39.jpg","","https://www.carpa.com/sites/default/files/messages/en/2017/02/2017-02-24_the_angels_bringing_revelation_seven_seals_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2017/02/2017-02-24_the_angels_bringing_revelation_seven_seals_-_introduction.pdf",""
"en","en-20170219-1",2632,"David, the Eighth Son of Jesse, Anointed as King of Israel","2017-02-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2017/02/vlcsnap-2025-10-24-09h38m38s251.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2017/02/2017_02_19_1_david_the_eighth_son_of_jesse_anointed_as_the_king.mp3","",""
"en","en-20170217-1",2633,"David, the eighth son of Jesse, anointed as the king of Israel - Introduction","2017-02-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-49.jpg","","https://www.carpa.com/sites/default/files/messages/en/2017/02/2017-02-17_david_eighth_son_jesse_anointed_king_israel_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2017/02/2017-02-17_david_eighth_son_jesse_anointed_king_israel_-_introduction.pdf",""
"en","en-20170212-1",2634,"The Time for the Establishment of the Kingdom of the Messiah on Earth","2017-02-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-41.jpg","","https://www.carpa.com/sites/default/files/messages/en/2017/02/2017-02-12_the_time_establishment_kingdom_messiah_earth.mp3","https://www.carpa.com/sites/default/files/messages/en/2017/02/2017-02-12_the_time_establishment_kingdom_messiah_earth.pdf",""
"en","en-20170210-1",2635,"The time for the establishment of the Kingdom of the Messiah on Earth - Introduction","2017-02-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-41.jpg","","https://www.carpa.com/sites/default/files/messages/en/2017/02/2017-02-10_the_time_establishment_kingdom_messiah_earth_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2017/02/2017-02-10_the_time_establishment_kingdom_messiah_earth_-_introduction.pdf",""
"en","en-20170205-1",2636,"The revelation of God through the prophets","2017-02-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-39.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2017/02/2017-02-05_the_revelation_god_through_prophets.pdf",""
"en","en-20170203-1",2637,"The Revelation of God Through the Prophets - Introduction","2017-02-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-37.jpg","","https://www.carpa.com/sites/default/files/messages/en/2017/02/2017-02-03_the_revelation_god_through_prophets_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2017/02/2017-02-03_the_revelation_god_through_prophets_-_introduction.pdf",""
"en","en-20170129-1",5335,"The Return of the Heavenly Citizens to the House of the Father","2017-01-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/PSeTvB0e-youtube_thumbnail_21931.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/10/2017-01-29-the_return_of_the_heavenly_citizens_to_the_house_of_the_father.mp3","",""
"en","en-20170127-1",2638,"The return of the heavenly citizens to the House of the Father - Introduction","2017-01-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-38.jpg","","https://www.carpa.com/sites/default/files/messages/en/2017/01/2017-01-27_the_return_heavenly_citizens_house_father_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2017/01/2017-01-27_the_return_heavenly_citizens_house_father_-_introduction.pdf",""
"en","en-20170120-1",2639,"The First Waved Sheaf - Introduction","2017-01-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-48.jpg","","https://www.carpa.com/sites/default/files/messages/en/2017/01/2017-01-20_the_first_waved_sheaf_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2017/01/2017-01-20_the_first_waved_sheaf_-_introduction.pdf",""
"en","en-20170115-1",2640,"The Royal Seed of Abraham","2017-01-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/WIZGzS9x-youtube_thumbnail_21927.png","","https://www.carpa.com/sites/default/files/messages/en/2017/01/2017-01-15_the_royal_seed_abraham.mp3","https://www.carpa.com/sites/default/files/messages/en/2017/01/2017-01-15_the_royal_seed_abraham.pdf",""
"en","en-20170113-1",2641,"The Royal Seed of Abraham - Introduction","2017-01-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/2gwWOr6O-youtube_thumbnail_21926.png","","https://www.carpa.com/sites/default/files/messages/en/2017/01/2017-01-13_the_royal_seed_abraham_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2017/01/2017-01-13_the_royal_seed_abraham_-_introduction.pdf",""
"en","en-20170108-1",2642,"The Stone with a New Name","2017-01-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_21925.png","","https://www.carpa.com/sites/default/files/messages/en/2017/01/2017-01-08_the_stone_new_name.mp3","https://www.carpa.com/sites/default/files/messages/en/2017/01/2017-01-08_the_stone_new_name.pdf",""
"en","en-20170106-1",2643,"The Stone with a New Name - Introduction","2017-01-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/rk7nsZAV-youtube_thumbnail_21924.png","","https://www.carpa.com/sites/default/files/messages/en/2017/01/2017-01-06_the_stone_new_name_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2017/01/2017-01-06_the_stone_new_name_-_introduction.pdf",""
"en","en-20170101-1",2644,"The New Year","2017-01-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/07/youtube_thumbnail_21923.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2017/01/2017-01-01-the_new_year.mp3","",""
"en","en-20161230-1",2645,"The New Year - Introduction","2016-12-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/HUzJa8LY-youtube_thumbnail_21920.png","","","https://www.carpa.com/sites/default/files/messages/en/2016/12/2016-12-30_the_new_year_-_introduction.pdf",""
"en","en-20161225-1",2646,"The King is Born","2016-12-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-39.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/12/2016-12-25_the_king_born.mp3","https://www.carpa.com/sites/default/files/messages/en/2016/12/2016-12-25_the_king_born.pdf",""
"en","en-20161218-1",2647,"The Throne and Kingdom of The Son of David","2016-12-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-27.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/12/2016-12-18_the_throne_and_kingdom_son_david.mp3","https://www.carpa.com/sites/default/files/messages/en/2016/12/2016-12-18_the_throne_and_kingdom_son_david.pdf",""
"en","en-20161216-1",2648,"The Throne and Kingdom of the Son of David - Introduction","2016-12-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-26.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2016/12/2016-12-16_the_throne_and_kingdom_son_david_-_introduction.pdf",""
"en","en-20161203-1",6252,"The Holy Spirit, Our Sustaining Strength","2016-12-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/07/youtube_thumbnail_21912-1.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/07/2016-12-03-the_holy_spirit_our_sustaining_strength.mp3","",""
"en","en-20161202-1",2649,"The Throne of Grace - Introduction","2016-12-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-9.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2016/12/2016-12-02_the_throne_grace_-_introduction.pdf",""
"en","en-20161125-1",2650,"The Mission of the Forerunner and the Foreran for the First and Second coming of Christ - Introduction","2016-11-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/2ZVcWItt-youtube_thumbnail_21908.png","","https://www.carpa.com/sites/default/files/messages/en/2016/11/2016-11-25_the_mission_forerunner_and_foreran_first_and_second_coming_christ_-_introduction.mp3","",""
"en","en-20161120-1",2651,"Following The One Who Knows the Way to the Promised Land","2016-11-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-46.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/11/2016-11-20_following_one_who_knows_way_promised_land.mp3","https://www.carpa.com/sites/default/files/messages/en/2016/11/2016-11-20_following_one_who_knows_way_promised_land.pdf",""
"en","en-20161119-1",6123,"Be Not Afraid, Neither Be Thou Dismayed","2016-11-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/05/youtube_thumbnail_21906-1.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2016/11/2016-11-19-1-be_not_afraid_neither_be_thou_dismayed.mp3","",""
"en","en-20161119-1",2652,"Be Not Afraid, Neither Be Thou Dismayed","2016-11-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/05/youtube_thumbnail_21906-1.png","","https://www.carpa.com/sites/default/files/messages/en/2016/11/2016-11-19_be_not_afraid_neither_be_thou_dismayed.mp3","https://www.carpa.com/sites/default/files/messages/en/2016/11/2016-11-19_be_not_afraid_neither_be_thou_dismayed_0.pdf",""
"en","en-20161118-1",2653,"Following the One Who Knows the Way to the Promised Land - Introduction","2016-11-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-38.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/11/2016-11-18_following_one_who_knows_way_promised_land_-_introduction.mp3","",""
"en","en-20161111-1",2654,"The Valley of Shadow and Death - Introduction","2016-11-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-34.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/11/2016-11-11_the_valley_shadow_and_death_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2016/11/2016-11-11_the_valley_shadow_and_death_-_introduction.pdf",""
"en","en-20161106-1",2655,"Elijah on the Mountain of God","2016-11-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/KNLBnduu-youtube_thumbnail_21900.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2016/11/2016-11-06-1-elijah_on_the_mountain_of_god-low.mp3","",""
"en","en-20161104-1",2656,"Elijah on the Mountain of God - Introduction","2016-11-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_21898.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2016/11/2016-11-04-elijah_on_the_mountain_of_god_introduction.mp3","",""
"en","en-20161030-1",2657,"The Harvesting Time","2016-10-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-29.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/10/2016-10-30_the_harvesting_time.mp3","https://www.carpa.com/sites/default/files/messages/en/2016/10/2016-10-30_the_harvesting_time.pdf",""
"en","en-20161028-1",2658,"Harvesting Time - Introduction","2016-10-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-36.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2016/10/2016-10-28_harvesting_time_-_introduction.pdf",""
"en","en-20161023-1",2659,"The Light shineth in darkness","2016-10-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-41.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2016/10/2016-10-23_the_light_shineth_darkness.pdf",""
"en","en-20161021-1",2660,"The Light Shineth in Darkness - Introduction","2016-10-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-45.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2016/10/2016-10-21_the_light_shineth_darkness_-_introduction.pdf",""
"en","en-20161016-1",2661,"The Sword in the Hand and Mouth of The Son of Man","2016-10-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-37.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/10/2016-10-16_the_sword_hand_and_mouth_son_man.mp3","",""
"en","en-20161014-1",2662,"The Sword in the Hand and Mouth of The Son of Man - Introduction","2016-10-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-37.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/10/2016-10-14_the_sword_hand_and_mouth_son_man_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2016/10/2016-10-14_the_sword_hand_and_mouth_son_man_-_introduction.pdf",""
"en","en-20161009-1",2663,"The One Who Announces Peace","2016-10-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-35.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/10/2016-10-09_the_one_who_announces_peace.mp3","https://www.carpa.com/sites/default/files/messages/en/2016/10/2016-10-09_the_one_who_announces_peace.pdf",""
"en","en-20160930-1",2664,"The Spirit of the Lord Lifting up a Standard Against the Enemy — Introduction","2016-09-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/05/youtube_thumbnail_21886.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2016/09/2016_09_30_the_spirit_of_the_lord_lifting_up_a_standard_against.mp3","",""
"en","en-20160925-1",2665,"The People Rejoicing that their Names are Written in Heaven","2016-09-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-40.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/09/2016-09-25_the_people_rejoicing_their_names_are_written_heaven.mp3","https://www.carpa.com/sites/default/files/messages/en/2016/09/2016-09-25_the_people_rejoicing_their_names_are_written_heaven.pdf",""
"en","en-20160918-1",5134,"The Greatest Sign on Earth: A Prophet","2016-09-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21883.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2016/09/2016-09-18-1-the_greatest_sign_on_earth_a_prophet.mp3","",""
"en","en-20160916-1",2666,"A prophet: the greatest sign on Earth - Introduction","2016-09-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-36.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/09/2016-09-16_a_prophet_greatest_sign_earth_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2016/09/2016-09-16_a_prophet_greatest_sign_earth_-_introduction.pdf",""
"en","en-20160911-1",2667,"Melchisedec, the King of Peace","2016-09-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-34.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2016/09/2016-09-11_melchisedec_king_peace.pdf",""
"en","en-20160909-1",2668,"Melchisedec, the King of Peace - Introduction","2016-09-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-32.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/09/2016-09-09_melchisedec_king_peace_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2016/09/2016-09-09_melchisedec_king_peace_-_introduction.pdf",""
"en","en-20160904-1",2669,"The Blessings Contained in the Birthright","2016-09-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/08/youtube_thumbnail_21879-1.png","","https://www.carpa.com/sites/default/files/messages/en/2016/09/2016-09-04_the_blessing_contained_birthright.mp3","https://www.carpa.com/sites/default/files/messages/en/2016/09/2016-09-04_the_blessing_contained_birthright.pdf",""
"en","en-20160902-2",2670,"The blessings contained in the Birthright - Introduction","2016-09-02","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_21878.png","","","",""
"en","en-20160828-1",2671,"The Two Sticks of Israel in the Hand of the Son of Man","2016-08-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-39.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2016/08/2016-08-28_the_two_sticks_israel_hand_son_man.pdf",""
"en","en-20160826-1",2672,"The Two Sticks of Israel in the Hand of the Son of Man - Introduction","2016-08-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-43.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/08/2016-08-26_the_two_sticks_israel_hand_son_man_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2016/08/2016-08-26_the_two_sticks_israel_hand_son_man_-_introduction.pdf",""
"en","en-20160821-1",2673,"The Church of God receiving the Power of God by faith","2016-08-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/06/youtube_thumbnail_21873.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2016/08/2016-08-21-the_church_of_god_receiving_gods_power_by_faith.mp3","",""
"en","en-20160819-1",2674,"The Church of God receiving the Power of God by faith - Introduction","2016-08-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-35.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/08/2016-08-19_the_church_god_receiving_power_god_faith_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2016/08/2016-08-19_the_church_god_receiving_power_god_faith_-_introduction.pdf",""
"en","en-20160814-1",2675,"The Archangels Gabriel and Michael working on the changing of kingdoms","2016-08-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-31.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2016/08/2016-08-14_the_archangels_gabriel_and_michael_working_changing_kingdoms.pdf",""
"en","en-20160812-1",2676,"The Archangels Gabriel and Michael working on the changing of Kingdoms - Introduction","2016-08-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-24.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/08/2016-08-12_the_archangels_gabriel_and_michael_working_changing_kingdoms_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2016/08/2016-08-12_the_archangels_gabriel_and_michael_working_changing_kingdoms_-_introduction.pdf",""
"en","en-20160807-1",2677,"The Evening Light","2016-08-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-23.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/08/2016-08-07_the_evening_light.mp3","https://www.carpa.com/sites/default/files/messages/en/2016/08/2016-08-07_the_evening_light.pdf",""
"en","en-20160731-1",6531,"The Complete Fulfillment of the Prophecies for the Last Day","2016-07-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/11/youtube_thumbnail_21864.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/11/2016_07_31_1_the_complete_fulfillment_of_the_prophecies_for_the.mp3","",""
"en","en-20160730-1",2678,"Between the Lines","2016-07-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-30.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/07/2016-07-30_between-lines.mp3","",""
"en","en-20160729-1",2679,"The total fulfillment of the prophecies for the Last Day - Introduction","2016-07-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-22.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/07/2016-07-29_the_total_fulfillment_prophecies_last_day_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2016/07/2016-07-29_the_total_fulfillment_prophecies_last_day_-_introduction.pdf",""
"en","en-20160722-1",2680,"The Works of Jesus Christ among his church - Introduction","2016-07-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-19.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/07/2016-07-22_the_works_jesus_christ_among_his_church_-_introduction.mp3","",""
"en","en-20160715-1",2681,"The Grace of the Lord Jesus Christ poured out upon His children - Introduction","2016-07-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-8.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/07/2016-07-15_the_grace_lord_jesus_christ_poured_out_upon_his_children_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2016/07/2016-07-15_the_grace_lord_jesus_christ_poured_out_upon_his_children_-_introduction.pdf",""
"en","en-20160710-1",2682,"Identifying the End of Time","2016-07-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/11/youtube_thumbnail_21855.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2016/07/2016-07-10-1-identifying_the_end_of_time.mp3","",""
"en","en-20160708-1",6466,"Identifying the End of Time —Introduction—","2016-07-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/10/youtube_thumbnail_21853.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/10/2016-07-08-1-identifying_the_end_of_time_introduction.mp3","",""
"en","en-20160626-1",2683,"The Word that Rejuvenates Us","2016-06-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-28.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/06/2016-06-26_the_word_rejuvenates_us.mp3","https://www.carpa.com/sites/default/files/messages/en/2016/06/2016-06-26_the_word_rejuvenates_us.pdf",""
"en","en-20160619-1",2684,"Ask the Father in His Name, and He shall reward thee openly","2016-06-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-34.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2016/06/2016-06-19_ask_father_his_name_and_he_shall_reward_thee_openly.pdf",""
"en","en-20160617-1",2685,"Ask the Father in His Name and He will reward us - Introduction","2016-06-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-38.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/06/2016-06-17_ask_father_his_name_and_he_will_reward_us_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2016/06/2016-06-17_ask_father_his_name_and_he_will_reward_us_-_introduction.pdf",""
"en","en-20160611-1",6268,"When the Omnipotent Speaks, Miracles Happen","2016-06-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/07/youtube_thumbnail_21844.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/07/2016-06-11-when_the_omnipotent_speaks_miracles_happen.mp3","",""
"en","en-20160605-1",6330,"The King's Message","2016-06-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_21842.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/08/2016-06-05-the_kings_message.mp3","",""
"en","en-20160529-1",2686,"The time to struggle to sit the Son of David on the Throne","2016-05-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-37.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2016/05/2016-05-29_the_time_struggle_sit_son_david_throne.pdf",""
"en","en-20160527-1",2687,"The time to struggle to sit the Son of David on the Throne - Introduction","2016-05-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-41.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2016/05/2016-05-27_the_time_struggle_sit_son_david_throne_-_introduction.pdf",""
"en","en-20160520-1",2688,"The Symphonic of God - Introduction","2016-05-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-33.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/05/2016-05-20_the_symphonic_god_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2016/05/2016-05-20_the_symphonic_god_-_introduction.pdf",""
"en","en-20160515-1",5363,"Obeying the Voice of the One Sent at Each Time","2016-05-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/3ZTVz7Ok-youtube_thumbnail_21836.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/10/2016-05-15-1-obeying_the_voice_of_the_one_sent_at_each_time.mp3","",""
"en","en-20160513-1",5348,"Obeying the Voice of the One Sent at Each Time - Introduction","2016-05-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/INnRyrrU-youtube_thumbnail_21835.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/10/2016-05-13-obeying_the_voice_of_the_one_send_at_each_time_introduction.mp3","",""
"en","en-20160430-1",5796,"Showers of Blessing by the Word of Elijah at the Last Day","2016-04-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/05/youtube_thumbnail_21830.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/05/2016-04-30-showers_of_blessings_by_the_word_of_elijah_at_the_last.mp3","",""
"en","en-20160424-1",5888,"The Sower Sowing the Seed of the Word","2016-04-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/07/youtube_thumbnail_21828.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2016/04/2016-04-24-the_sower_sowing_the_seed_of_the_word.mp3","",""
"en","en-20160416-1",5866,"Ladies, Youth and Adults Working and Collaborating on Gods Great Team","2016-04-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-20.jpg","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2016/04/2016-04-16-ladies_youth_and_adults_working_and_collaborating_on_gods_great_team.mp3","",""
"en","en-20160415-1",5719,"The Glory of the Shekinah in the Most Holy Place - Introduction","2016-04-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21823.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/04/2016-04-15-the_glory_of_the_shekinah_in_the_most_holy_place.mp3","",""
"en","en-20160409-1",5844,"Pillar in the Temple of God, Where the Name of God, Name of the City of God, and the New Name of the Lord Jesus Christ, Is Written","2016-04-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/06/youtube_thumbnail_21821.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2016/04/2016-04-09-RM-pillar_in_the_temple_of_god_where_the_name_of_god_name.mp3","",""
"en","en-20160403-1",6205,"The Forty Days of Jesus on Earth Before the Rapture","2016-04-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/06/youtube_thumbnail_21819.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/06/2016_04_03_the_forty_days_of_jesus_on_earth_before_the_rapture.mp3","",""
"en","en-20160313-1",5880,"The Morning Star","2016-03-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/07/youtube_thumbnail_21809.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2016/03/2016-03-13-the_morning_star.mp3","",""
"en","en-20160312-1",2689,"God provides blessing for Elijah and for those that serve him","2016-03-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-20-6.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2016/03/2016-03-12_god_provides_blessing_elijah_and_those_serve_him.pdf",""
"en","en-20160311-1",2690,"The Morning Star - Introduction","2016-03-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-6.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/03/2016-03-11_the_morning_star_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2016/03/2016-03-11_the_morning_star_-_introduction.pdf",""
"en","en-20160228-1",2691,"The sign of the Son of Men in Heaven","2016-02-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-21.jpg","","","",""
"en","en-20160226-1",2692,"The sign of the Son of Man in heaven - Introduction","2016-02-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-27.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/02/2016-02-26_the_sign_son_man_heaven.mp3","https://www.carpa.com/sites/default/files/messages/en/2016/02/2016-02-26_the_sign_son_man_heaven.pdf",""
"en","en-20160219-1",6112,"The Book Sealed with Seven Seals - Introduction","2016-02-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/04/youtube_thumbnail_21799.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/05/2016-02-19-1-the_book_sealed_with_seven_seals_introduction.mp3","",""
"en","en-20160131-1",2693,"The Angel sealing the tribes of Israel","2016-01-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-35.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2016/01/2016-01-31_the_angel_sealing_tribes_israel.pdf",""
"en","en-20160121-1",2694,"Ladies serving God out of gratitude","2016-01-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-29.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/01/2016-01-21_ladies_serving_god_out_gratitude.mp3","https://www.carpa.com/sites/default/files/messages/en/2016/01/2016-01-21_ladies_serving_god_out_gratitude.pdf",""
"en","en-20160115-1",6350,"Discerning the Spiritual Things","2016-01-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_21790.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/08/2016-01-15-discerning_the_spiritual_things.mp3","",""
"en","en-20160110-1",2695,"The Seventh Seal and the end of the world systems","2016-01-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-19.jpg","","https://www.carpa.com/sites/default/files/messages/en/2016/01/2016-01-08_the_seventh_seal_and_end_world_systems.mp3","https://www.carpa.com/sites/default/files/messages/en/2016/01/2016-01-08_the_seventh_seal_and_end_world_systems.pdf",""
"en","en-20151227-1",2696,"Where is He that is born King of the jews?","2015-12-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-26.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2015/12/2015-12-27_where_he_born_king_jews.pdf",""
"en","en-20151213-1",2697,"The wisdom of God","2015-12-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","https://www.carpa.com/sites/default/files/messages/en/2015/12/2015-12-13_the_wisdom_god.mp3","https://www.carpa.com/sites/default/files/messages/en/2015/12/2015-12-13_the_wisdom_god.pdf",""
"en","en-20151129-1",5679,"The Cornerstone","2015-11-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21774.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/03/2015-11-29-the_cornerstone.mp3","",""
"en","en-20151121-1",5581,"The Messianic Age","2015-11-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21771.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/02/2015-11-21-1-the_messianic_age.mp3","",""
"en","en-20151115-1",5474,"Be Prepared for the Coming of the Son of Man","2015-11-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/youtube_thumbnail_21768.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/11/2015-11-15-1-be_prepared_for_the_coming_of_the_son_of_man.mp3","",""
"en","en-20151114-1",5612,"Prepare To Meet Thy God","2015-11-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21767.png","","","",""
"en","en-20151113-1",5573,"Be Prepared for the Coming of the Son of Man - Introduction","2015-11-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21766.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/11/2015-11-13-be_prepared_for_the_coming_of_the_son_of_man.mp3","",""
"en","en-20151115-1",5469,"Victory Day","2015-11-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/youtube_thumbnail_21768.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/11/2015-11-10-1-victory_day.mp3","",""
"en","en-20151025-1",5776,"Preparing Ourselves for What Is to Come","2015-10-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/05/youtube_thumbnail_21759.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/10/2015-10-25-preparing_ourselves_for_what_is_to_come.mp3","",""
"en","en-20151018-1",2698,"The signs of the times","2015-10-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21756.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/10/2015-10-18-the_signs_of_the_tImes.mp3","",""
"en","en-20151004-1",2699,"Following the ark of the covenant at the last day","2015-10-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-13.jpg","","https://www.carpa.com/sites/default/files/messages/en/2015/10/2015-10-04_following_ark_covenant_last_day.mp3","https://www.carpa.com/sites/default/files/messages/en/2015/10/2015-10-04_following_ark_covenant_last_day.pdf",""
"en","en-20150927-1",2700,"The still small voice","2015-09-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/Cgn6tOQr-youtube_thumbnail_21751.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/09/2015-09-27-the_still_small_voice.mp3","",""
"en","en-20150920-1",5430,"The Two Olive Trees in the Dispensation of the Kingdom","2015-09-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-24.jpg","","","",""
"en","en-20150919-1",5742,"The House of God","2015-09-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21748.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/04/2015-09-19-the_house_of_god.mp3","",""
"en","en-20150918-1",5423,"The Two Olive Trees in the Dispensation of the Kingdom - Introduction","2015-09-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/01/youtube_thumbnail_21747-1.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/11/2015-09-18-the_two_olive_trees_in_the_dispensation_of_the_kingdom.mp3","",""
"en","en-20150913-1",5406,"The Proclamation of the Great Voice of Trumpet","2015-09-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_21745.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/11/2015-09-13-the_proclamation_of_the_great_voice_of_trumpet.mp3","",""
"en","en-20150906-1",2701,"The Kingdom of God is at hand","2015-09-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-20-5.jpg","","https://www.carpa.com/sites/default/files/messages/en/2015/09/2015-09-06_the_kingdom_god_hand.mp3","https://www.carpa.com/sites/default/files/messages/en/2015/09/2015-09-06_the_kingdom_god_hand.pdf",""
"en","en-20150904-1",5589,"The Kingdom of God is at Hand - Introduction","2015-09-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21741.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/09/2015-09-04-the_kingdom_of_god_is_at_hand.mp3","",""
"en","en-20150903-1",5414,"Be It According to Your Faith (According to Your Faith May It Be Done)","2015-09-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_21740.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/11/2015-09-03-be_It_according_to_your_faith.mp3","",""
"en","en-20150830-1",5369,"The Mystery of the Rapturing Faith Contained in the Thunders","2015-08-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/youtube_thumbnail_21739-1.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/10/2015-08-30-the_mystery_of_the_rapturing_faith_contained_in_the_thunders.mp3","",""
"en","en-20150823-1",5384,"The Day of the Son of Man and the Works He Will Do in His Coming","2015-08-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_21737.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/11/2015-08-23-1-the_day_of_the_son_of_man_and_the_works_he_will_do_in_his_coming.mp3","",""
"en","en-20150821-1",2702,"The Day of the Son of Man and the Works He Will Do in His Coming - Introduction","2015-08-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/11/youtube_thumbnail_21735.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/08/2015_08_21_1_the_day_of_the_son_of_man_and_the_works_he_will_do.mp3","",""
"en","en-20150816-1",2703,"The Divine Cycle for the restoration of all things","2015-08-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-20.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2015/08/2015-08-16_the_divine_cycle_restoration_all_things.pdf",""
"en","en-20150814-1",2704,"The Divine Cycle for the restoration of all things - Introduction","2015-08-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-15.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2015/08/2015-08-14_the_divine_cycle_restoration_all_things_-_introduction.pdf",""
"en","en-20150809-1",2705,"Summer is nigh","2015-08-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-14.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2015/08/2015-08-09_summer_nigh.pdf",""
"en","en-20150807-1",2706,"Summer is nigh - Introduction","2015-08-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18-11.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2015/08/2015-08-07_summer_nigh_-_introduction.pdf",""
"en","en-20150802-1",2707,"Once More, Lord","2015-08-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/09/youtube_thumbnail_21729.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/08/2015-08-02-once_more_lord.mp3","",""
"en","en-20150726-1",2708,"The introduction to the Millennium","2015-07-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-34.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2015/07/2015-07-26_the_introduction_millennium.pdf",""
"en","en-20150724-1",2709,"The introduction to the millennium - Introduction","2015-07-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-23.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2015/07/2015-07-24_the_introduction_millennium_-_introduction.pdf",""
"en","en-20150717-1",2710,"Where is the God of Elijah today? - Introduction","2015-07-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-22.jpg","","https://www.carpa.com/sites/default/files/messages/en/2015/07/2015-07-17_where_god_elijah_today_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2015/07/2015-07-17_where_god_elijah_today_-_introduction.pdf",""
"en","en-20150711-2",5859,"The Sweet-Smelling Savor of a Heavenly Citizen","2015-07-11","2","https://ewr1.vultrobjects.com/lgcc-conferences/2024/06/youtube_thumbnail_21722.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/07/2015-07-11-2-the_sweet_smelling_savor_of_a_heavenly_citizen.mp3","",""
"en","en-20150710-1",2711,"A touch of faith unto salvation - Introduction","2015-07-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-13.jpg","","https://www.carpa.com/sites/default/files/messages/en/2015/07/2015-07-10_a_touch_faith_unto_salvation_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/en/2015/07/2015-07-10_a_touch_faith_unto_salvation_-_introduction.pdf",""
"en","en-20150705-1",2712,"The position of the Church in the Last Day","2015-07-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18-10.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2015/07/2015-07-05_the_position_church_last_day.pdf",""
"en","en-20150621-1",2713,"The Fountain that gives Water for everlasting life","2015-06-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-22.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2015/06/2015-06-21_the_fountain_gives_water_everlasting_life.pdf",""
"en","en-20150612-1",5784,"The Coming of the Son of Man as the Lightning - Introduction","2015-06-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-18.jpg","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/05/2015-06-12-the_coming_of_the_son_of_man_as_the_lightning_introduction.mp3","",""
"en","en-20150607-1",2714,"The voice of the sign in each time","2015-06-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-13.jpg","","https://www.carpa.com/sites/default/files/messages/en/2015/06/2015-06-07_the_voice_sign_each_time.mp3","",""
"en","en-20150605-1",5624,"The Voice of the Sign","2015-06-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21707.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/06/2015-06-05-the_voice_of_the_sign.mp3","",""
"en","en-20150531-1",2715,"The great victory in Divine Love","2015-05-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-20.jpg","","https://www.carpa.com/sites/default/files/messages/en/2015/05/2015-05-31_the_great_victory_divine_love.mp3","https://www.carpa.com/sites/default/files/messages/en/2015/05/2015-05-31_the_great_victory_divine_love.pdf",""
"en","en-20150524-1",5648,"The Dimensions","2015-05-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21705.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/05/2015-05-24-the_dimensions.mp3","",""
"en","en-20150523-1",2716,"Words of greeting","2015-05-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2015/05/2015-05-23_words_greeting.pdf",""
"en","en-20150510-1",5605,"Jesus Christ, the King of Peace","2015-05-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21702.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/05/2015-05-10-jesus_christ_the_king_of_peace.mp3","",""
"en","en-20150509-1",5596,"The Seven Prophetic Visions of Reverend William Branham Before the Second Coming of Christ","2015-05-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21701.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/02/2015-05-09-the_seven_prophetic_visions_of_rev_wmb_before_the_2nd_coming.mp3","",""
"en","en-20150502-1",5698,"The Divine Order for the Resurrection and the Transformation","2015-05-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21698.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/03/2015-05-02-the_divine_order_for_the_resurrection_and_transformation.mp3","",""
"en","en-20150419-1",2717,"The seventh dispensation: The dispensation of the kingdom","2015-04-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21695-1.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/04/2015-04-19-1-the_seventh_dispensation_the_dispensation_of_the_kingdom-low.mp3","",""
"en","en-20150412-1",2718,"The Sixth Dispensation: Grace","2015-04-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2026/01/youtube_thumbnail_21694-1.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/04/2015-04-12-1-the_sixth_dispensation_grace.mp3","",""
"en","en-20150405-1",2719,"Jesus Resurrected, as the Scripture Said","2015-04-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21692-1.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/04/2015-04-02-jesus_resurrected_as_the_scripture_said.mp3","",""
"en","en-20150404-1",5559,"Jesus Preaching in the Fifth Dimension","2015-04-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21691.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/01/2015-04-04-jesus_preaching_in_the_fifth_dimension.mp3","",""
"en","en-20150329-1",2720,"Jesus entering into Jerusalem as it was written","2015-03-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-19.jpg","","https://www.carpa.com/sites/default/files/messages/en/2015/03/2015-03-29_jesus_entering_jerusalem_it_was_written.mp3","https://www.carpa.com/sites/default/files/messages/en/2015/03/2015-03-29_jesus_entering_jerusalem_it_was_written.pdf",""
"en","en-20150328-1",5764,"The Fifth Dispensation: The Law","2015-03-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/05/youtube_thumbnail_21686.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/05/2015-03-28-the_fifth_dispensation_the_law.mp3","",""
"en","en-20150322-1",2721,"The fourth dispensation: The promise","2015-03-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-19.jpg","","https://www.carpa.com/sites/default/files/messages/en/2015/03/2015-03-22_the_fourth_dispensation_promise.mp3","https://www.carpa.com/sites/default/files/messages/en/2015/03/2015-03-22_the_fourth_dispensation_promise.pdf",""
"en","en-20150315-1",2722,"The third dispensation: Human government","2015-03-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-11.jpg","","https://www.carpa.com/sites/default/files/messages/en/2015/03/2015-03-15_the_third_dispensation_human_government.mp3","https://www.carpa.com/sites/default/files/messages/en/2015/03/2015-03-15_the_third_dispensation_human_government.pdf",""
"en","en-20150314-1",2723,"The second dispensation: Conscience","2015-03-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/05/youtube_thumbnail_21681.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/03/2015-03-14-the_second_dispensation_conscience.mp3","",""
"en","en-20150308-1",2724,"The first dispensation: Innocence","2015-03-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21679.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/03/2015-03-08-the_first_dispensation_innocence.mp3","",""
"en","en-20150301-1",2725,"Who is the Son of Man for this Day?","2015-03-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21678.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/03/2015-03-01-who_is_the_son_of_man_for_this_day.mp3","",""
"en","en-20150228-1",5734,"The House of God of the New Covenant","2015-02-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21677.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/02/2015-02-28-the_house_of_god_of_the_new_covenant.mp3","",""
"en","en-20150221-1",5532,"Sealed By the Greatest Sign","2015-02-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21674.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/02/2015-02-21-sealed_by_the_greatest_sign.mp3","",""
"en","en-20150215-1",2726,"When the Son of Man cometh, shall He find faith on Earth?","2015-02-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/youtube_thumbnail_21673.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/02/2015_02_15_when_the_son_of_man_comes_shall_he_find_faith_on_the.mp3","",""
"en","en-20150214-1",5500,"United With the Angel, Working on the Divine Projects","2015-02-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/youtube_thumbnail_21672.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/12/2015-02-14-united_with_the_angel_working_on_the_divine_projects.mp3","",""
"en","en-20150210-1",5518,"The Inheritance of the Overcomer","2015-02-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21671.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/01/2015-02-10-the_inheritance_of_the_overcomer.mp3","",""
"en","en-20150208-1",2727,"The King of kings and Lord of lords","2015-02-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/cxS9ziAp-youtube_thumbnail_21670.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/02/2015-02-08-the_king_of_kings_and_lord_of_lords.mp3","",""
"en","en-20150206-1",5451,"The Four Titles of Jesus as Son","2015-02-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/EwHhRdyF-youtube_thumbnail_21669.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/02/2015-02-06-the_four_titles_of_jesus_as_son.mp3","",""
"en","en-20150201-1",2728,"The Son of Man","2015-02-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/rGJZrHWo-youtube_thumbnail_21668.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/02/2015-02-01-the_son_of_man.mp3","",""
"en","en-20150125-1",2729,"Son of God","2015-01-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-19.jpg","","https://www.carpa.com/sites/default/files/messages/en/2015/01/2015-01-25_son_god.mp3","https://www.carpa.com/sites/default/files/messages/en/2015/01/2015-01-25_son_god.pdf",""
"en","en-20150118-1",2730,"The Heir, the Son of David","2015-01-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-23.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2015/01/2015-01-18_the_heir_son_david.pdf",""
"en","en-20150111-1",2731,"The Four Son Titles Of Jesus: The Son Of Abraham","2015-01-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-28.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2015/01/2015-01-11_the_four_son_titles_jesus_son_abraham.pdf",""
"en","en-20150104-1",2732,"The Kingdom and Throne of David","2015-01-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-26.jpg","","https://www.carpa.com/sites/default/files/messages/en/2015/01/2015-01-04_the_kingdom_and_throne_david.mp3","https://www.carpa.com/sites/default/files/messages/en/2015/01/2015-01-04_the_kingdom_and_throne_david.pdf",""
"en","en-20150102-1",2733,"The prophecy of the Last Day","2015-01-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21662.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/01/2015-01-02-1-the_prophecy_of_the_last_day-low.mp3","",""
"en","en-20141221-1",5480,"The Birth of Jesus Christ","2014-12-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/mklKqOY2-youtube_thumbnail_21657.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/12/2014-12-21-1-the_birth_of_jesus_christ.mp3","",""
"en","en-20141130-1",5192,"He That Shall Come Will Come, and Will Not Tarry","2014-11-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21653.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/11/2014-11-30-he_that_shall_come_will_come_and_will_not_tarry.mp3","",""
"en","en-20141026-1",5711,"The Eternal One","2014-10-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21640.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/10/2014-10-26-the_eternal_one.mp3","",""
"en","en-20141005-1",2734,"The dispensation of the fullness of times","2014-10-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-9.jpg","","https://www.carpa.com/sites/default/files/messages/en/2014/10/2014-10-05_the_dispensation_fullness_times.mp3","https://www.carpa.com/sites/default/files/messages/en/2014/10/2014-10-05_the_dispensation_fullness_times.pdf",""
"en","en-20141004-1",5567,"Back to the Beginning","2014-10-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21631.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/01/2014-10-04-back_to_the_beginning.mp3","",""
"en","en-20140928-1",2735,"Following the footsteps of the Master","2014-09-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-15.jpg","","https://www.carpa.com/sites/default/files/messages/en/2014/09/2014-09-28_following_footsteps_master.mp3","https://www.carpa.com/sites/default/files/messages/en/2014/09/2014-09-28_following_footsteps_master.pdf",""
"en","en-20140921-1",2736,"A commandment of the Lord: that ye love one another","2014-09-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-9.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2014/09/2014-09-21_a_commandment_lord_ye_love_one_another.pdf",""
"en","en-20140914-1",2737,"The Gospel Will Return to the Jews","2014-09-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-8.jpg","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/09/2014-09-14-the_gospel_will_return_to_the_jews.mp3","",""
"en","en-20140907-1",2738,"God Providing What Is Needed For the Culmination of His Final Work","2014-09-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21619.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/09/2014-09-07-god_providing_what_is_needed_for_the_culmination_of_his_final_work.mp3","",""
"en","en-20140831-1",5641,"The People Striving To Complete the Work That Has Been Entrusted to Them in Each Time","2014-08-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21616.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/08/2014-08-31-the_people_striving_to_complete_the_work_entrusted_to_them_in_each_time.mp3","",""
"en","en-20140822-1",2739,"Elijah will turn the Heart of the Children to their Fathers Teaching","2014-08-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18-5.jpg","","https://www.carpa.com/sites/default/files/messages/en/2014/08/2014-08-22_elijah_will_turn_heart_children_their_fathers_teaching.mp3","https://www.carpa.com/sites/default/files/messages/en/2014/08/2014-08-22_elijah_will_turn_heart_children_their_fathers_teaching.pdf",""
"en","en-20140817-1",2740,"Thy kingdom come and thy will be done in earth, as it is in heaven","2014-08-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-20-4.jpg","","https://www.carpa.com/sites/default/files/messages/en/2014/08/2014-08-17_thy_kingdom_come_and_thy_will_be_done_earth_it_heaven.mp3","https://www.carpa.com/sites/default/files/messages/en/2014/08/2014-08-17_thy_kingdom_come_and_thy_will_be_done_earth_it_heaven.pdf",""
"en","en-20140803-1",2741,"The Spiritual Food for each time","2014-08-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-26-4.jpg","","https://www.carpa.com/sites/default/files/messages/en/2014/08/2014-08-03_the_spiritual_food_each_time.mp3","https://www.carpa.com/sites/default/files/messages/en/2014/08/2014-08-03_the_spiritual_food_each_time_0.pdf",""
"en","en-20140801-1",2742,"The Seventh Seal and the Seventh Trumpet","2014-08-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-27-4.jpg","","https://www.carpa.com/sites/default/files/messages/en/2014/08/2014-08-01_the_seventh_seal_and_seventh_trumpet.mp3","https://www.carpa.com/sites/default/files/messages/en/2014/08/2014-08-01_the_seventh_seal_and_seventh_trumpet_0.pdf",""
"en","en-20140719-1",5808,"May God Bless Our Goals for the Great Tent Cathedral","2014-07-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2014/07/2014-07-19-WSS-que_dios_bendiga_nuestras_metas_para_la_gran_carpa_catedral.jpg","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/05/2014-07-19-may_god_bless_our_goals_for_the_great_tent_cathedral.mp3","",""
"en","en-20140712-1",5770,"Elijah Comes Before the Great and Dreadful Day of the Lord","2014-07-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/05/youtube_thumbnail_21597.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/07/2014-07-12-elijah_comes_before_the_great_and_dreadful_day_of_the.mp3","",""
"en","en-20140706-1",2743,"Prepare yourself for the encounter with Jesus Christ","2014-07-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-21.jpg","","https://www.carpa.com/sites/default/files/messages/en/2014/07/2014-07-06_prepare_yourself_encounter_jesus_christ.mp3","https://www.carpa.com/sites/default/files/messages/en/2014/07/2014-07-06_prepare_yourself_encounter_jesus_christ.pdf",""
"en","en-20140705-1",2744,"The Beast and the Image of the Beast","2014-07-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-23.jpg","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/07/2014-07-05-the_beast_and_the_image_of_the_beast.mp3","",""
"en","en-20140704-1",5118,"Elijah Will Come Before the Second Coming of Christ","2014-07-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21594.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/07/2014-07-04-1-elijah_will_come_before_the_second_coming_of_christ-low.mp3","",""
"en","en-20140629-1",2746,"The revelation of Jesus Christ in the Last Day","2014-06-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-20.jpg","","https://www.carpa.com/sites/default/files/messages/en/2014/06/2014-06-29_the_revelation_jesus_christ_last_day.mp3","https://www.carpa.com/sites/default/files/messages/en/2014/06/2014-06-29_the_revelation_jesus_christ_last_day.pdf",""
"en","en-20140629-2",2745,"Our goal: Finish the work that God gave us to do","2014-06-29","2","https://ewr1.vultrobjects.com/lgcc-conferences/2024/11/youtube_thumbnail_21592.png","","https://www.carpa.com/sites/default/files/messages/en/2014/06/2014-06-29_our_goal_finish_work_god_gave_us_do.mp3","https://www.carpa.com/sites/default/files/messages/en/2014/06/2014-06-29_our_goal_finish_work_god_gave_us_do.pdf",""
"en","en-20140622-1",2747,"The Active Church of the Lord Jesus Christ","2014-06-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-22.jpg","","https://www.carpa.com/sites/default/files/messages/en/2014/06/2014-06-22_the_active_church_lord_jesus_christ.mp3","https://www.carpa.com/sites/default/files/messages/en/2014/06/2014-06-22_the_active_church_lord_jesus_christ.pdf",""
"en","en-20140621-1",2748,"Being successful by working alongside the Angel of the Lord Jesus Christ","2014-06-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-19.jpg","","https://www.carpa.com/sites/default/files/messages/en/2014/06/2014-06-21_being_successful_working_alongside_angel_lord_jesus_christ.mp3","https://www.carpa.com/sites/default/files/messages/en/2014/06/2014-06-21_being_successful_working_alongside_angel_lord_jesus_christ.pdf",""
"en","en-20140608-1",2749,"Time to see","2014-06-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-13.jpg","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/06/2014-06-08-time_to_see.mp3","",""
"en","en-20140601-1",2750,"What must I do to be saved?","2014-06-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-11.jpg","","https://www.carpa.com/sites/default/files/messages/en/2014/06/2014-06-01_what_must_i_do_be_saved.mp3","https://www.carpa.com/sites/default/files/messages/en/2014/06/2014-06-01_what_must_i_do_be_saved.pdf",""
"en","en-20140525-1",5821,"The Ripe Wheat","2014-05-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-19.jpg","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/06/2014-05-25-the_ripe_wheat.mp3","",""
"en","en-20140518-1",2751,"For here have we no continuing city, but we seek one to come","2014-05-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-21.jpg","","https://www.carpa.com/sites/default/files/messages/en/2014/05/2014-05-18_for_here_have_we_no_continuing_city_we_seek_one_come.mp3","https://www.carpa.com/sites/default/files/messages/en/2014/05/2014-05-18_for_here_have_we_no_continuing_city_we_seek_one_come.pdf",""
"en","en-20140503-1",6013,"Watching and Working for the Fulfillment of the Scriptures","2014-05-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/10/youtube_thumbnail_21576.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/05/2014-05-03-watching_and_working_for_the_fulfillment_of_the_scriptures.mp3","",""
"en","en-20140502-1",6518,"The Spiritual and Physical Rapture of Gods Elect","2014-05-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/11/youtube_thumbnail_21575.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/11/2014_05_02_mm_the_spiritual_and_physical_rapture_of_gods_elect.mp3","",""
"en","en-20140413-1",5691,"The Works of Jesus Upon Entering Jerusalem","2014-04-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21567.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/04/2014-04-13-1-the_works_of_jesus_upon_entering_jerusalem.mp3","",""
"en","en-20140405-1",5993,"Heeding the Voice of Christ and Laboring in His Work","2014-04-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/09/youtube_thumbnail_21564.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/04/2014-04-05-heeding_the_voice_of_christ_and_laboring_in_his_work.mp3","",""
"en","en-20140330-1",5663,"The Angelic Visitation to the Human Family","2014-03-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21563.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/03/2014-03-30-the_angelic_visitation_to_the_human_family_1.mp3","",""
"en","en-20140323-1",5341,"What There Is Behind the Door","2014-03-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/youtube_thumbnail_21562.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/03/2014-03-23-what_there_is_behind_the_door.mp3","",""
"en","en-20140308-1",6280,"Casting the Net Based on the Word of the Lord Jesus Christ","2014-03-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/07/youtube_thumbnail_21558.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/07/2014_03_08_1_MM_casting_the_net_based_on_the_word_of_the_lord_jesus.mp3","",""
"en","en-20140228-1",6029,"Come Up Hither","2014-02-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/10/youtube_thumbnail_21553.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/02/2014_02_28_Come-Up-Hither.mp3","",""
"en","en-20140214-1",5631,"The Coming of the Son of Man With His Angels","2014-02-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21547.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/03/2014-02-14-1-the_coming_of_the_son_of_man_with_his_angels.mp3","",""
"en","en-20140209-2",5872,"The Simplicity Of God","2014-02-09","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-7.jpg","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/02/2014-02-09-the_simplicity_of_god.mp3","",""
"en","en-20140207-1",5985,"The Rewards for the Believers in Christ","2014-02-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/09/youtube_thumbnail_21544.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/02/2014-02-07-the_rewards_for_the_believers_in_christ.mp3","",""
"en","en-20140202-1",2752,"The mystery of the resurrection of the believers in Christ","2014-02-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-4.jpg","","https://www.carpa.com/sites/default/files/messages/en/2014/02/2014-02-02_the-mystery-resurrection-believers-christ.mp3","",""
"en","en-20140119-1",2753,"The signs of the end of time","2014-01-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-16.jpg","","https://www.carpa.com/sites/default/files/messages/en/2014/01/2014-01-19_the-signs-end-time.mp3","",""
"en","en-20140112-1",2754,"The Ten Virgins and the Great Tribulation","2014-01-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21536.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/01/2014-01-12-the_ten_virgins_and_the_great_tribulation.mp3","",""
"en","en-20140105-1",2755,"The Order of Worship","2014-01-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-20.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2014/01/2014-01-05_the_order_worship.pdf",""
"en","en-20131215-1",2756,"The Steadfasteness of your faith in Christ","2013-12-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-3.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/12/2013-12-15_the_steadfasteness_your_faith_christ.pdf",""
"en","en-20131211-1",2757,"The Pastors Feeding the Sheep of the Lord Jesus Christ With Knowledge and Understanding","2013-12-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_21520.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/12/2013-12-11-the_pastors_feeding_the_sheep_of_the_lord_jesus_christ.mp3","",""
"en","en-20131208-1",2758,"What is Written Must be Fulfilled","2013-12-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-25-3.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/12/2013-12-08_what_written_must_be_fulfilled.pdf",""
"en","en-20131206-1",2759,"The Presence of Jesus","2013-12-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_21518.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/12/2013-12-06-1-the_presence_of_jesus.mp3","",""
"en","en-20131201-1",2760,"The Spirit of Elijah riding the ministerial trail for the Fifth time","2013-12-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/04/youtube_thumbnail_21517.png","","","https://www.carpa.com/sites/default/files/messages/en/2013/12/2013-12-01_the_spirit_elijah_riding_ministerial_trail_fifth_time.pdf",""
"en","en-20131124-1",2761,"The Revival of the Holy Spirit","2013-11-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-5-6.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/11/2013-11-24_the_revival_holy_spirit.pdf",""
"en","en-20131117-1",2762,"Jesus Among the Multitude","2013-11-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-13.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/11/2013-11-17_jesus_among_multitude.pdf",""
"en","en-20131110-1",2763,"The Man Who Can Turn On the Light","2013-11-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-15.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/11/2013-11-10_the_man_who_can_turn_light.pdf",""
"en","en-20131103-1",2764,"Ask and it shall be given you","2013-11-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-15.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/11/2013-11-03_ask_and_it_shall_be_given_you.pdf",""
"en","en-20131027-1",2765,"The Greatest Bliss, Receiving the Revelation from God through His Sent One","2013-10-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-12.jpg","","https://www.carpa.com/sites/default/files/messages/en/2013/10/2013-10-27_the-greatest-bliss-receiving-revelation-god-through-his-sent-one.mp3","",""
"en","en-20131020-1",2766,"Message that will cover the whole Earth","2013-10-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-14.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/10/2013-10-20_message_will_cover_whole_earth.pdf",""
"en","en-20131006-1",2767,"I can do all things through Christ which strengtheneth me","2013-10-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-18.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/10/2013-10-06_i_can_do_all_things_through_christ_which_strengtheneth_me.pdf",""
"en","en-20130922-1",2768,"Jesus Christ the same yesterday, and today and forever","2013-09-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-17.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/09/2013-09-22_jesu_christ_same_yesterday_and_today_and_forever.pdf",""
"en","en-20130921-1",2769,"The Good and Faithful Servant","2013-09-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-8.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/09/2013-09-21_the_good_and_faithful_servant.pdf",""
"en","en-20130920-1",2770,"We are Laborers together with God","2013-09-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-8.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/09/2013-09-20_we_are_laboreres_together_god.pdf",""
"en","en-20130912-1",2771,"Seek Ye the Lord While He May be Found","2013-09-12","1","","","","https://www.carpa.com/sites/default/files/messages/en/2013/09/2013-09-12_seek_ye_lord_while_he_may_be_found_0.pdf",""
"en","en-20130911-1",6259,"God Performing His Word for Today","2013-09-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/07/youtube_thumbnail_21496.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/07/2013-09-11-mm-god_performing_his_word_for_today.mp3","",""
"en","en-20130827-1",2773,"The Secret of Prosperity for we were born to overcome","2013-08-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-16.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/08/2013-08-27_the_secret_prosperity_we_were_born_overcome.pdf",""
"en","en-20130825-1",2774,"The Token to Leave on the Exodus","2013-08-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-7.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/08/2013-08-25_the_token_leave_exodus.pdf",""
"en","en-20130818-1",2775,"The Importance of Worship","2013-08-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/08/youtube_thumbnail_21489.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/08/2013-08-18-the_importance_of_worship.mp3","",""
"en","en-20130811-1",2776,"Attentive to the Voice of the Angel that will take us into the Promise Land","2013-08-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-6.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/08/2013-08-11_attentive_voice_angel_will_take_us_promise_land.pdf",""
"en","en-20130808-1",2777,"Except a man be born again, he cannot see the Kingdom of God","2013-08-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-4.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/08/2013-08-08_except_man_be_born_again_he_cannot_see_kingdom_god.pdf",""
"en","en-20130807-1",2778,"Believe His prophets, so shall ye prosper","2013-08-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-3.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/08/2013-08-07_believe_his_prophets_so_shall_ye_prosper.pdf",""
"en","en-20130806-1",2779,"Prepare your self to meet Jesus Christ","2013-08-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-2.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/08/2013-08-06_prepare_your_self_meet_jesus_christ.pdf",""
"en","en-20130804-1",2780,"Faith, more precious than gold.","2013-08-04","1","","","https://www.carpa.com/sites/default/files/messages/en/2013/08/2013-08-04_faith_more_precious_gold.mp3","https://www.carpa.com/sites/default/files/messages/en/2013/08/2013-08-04_faith_more_precious_gold.pdf",""
"en","en-20130803-1",2781,"Touch not mine anointed, and do my Prophets no harm","2013-08-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18-2.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/08/2013-08-03_touch_not_mine_anointed_and_do_my_prophets_no_harm.pdf",""
"en","en-20130802-1",2783,"Making good use of the Time that Remains for us","2013-08-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-20-2.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/08/2013-08-02_making_good_useof_time_remains_us.pdf",""
"en","en-20130802-2",2782,"The Leadership of the Angel of the Lord","2013-08-02","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-2.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/08/2013-08-02_the_leadership_angel_lord.pdf",""
"en","en-20130801-1",2784,"The importance of knowing the time we live in to obey the Voice of God today","2013-08-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-2.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/08/2013-08-01_the_important_knowing_thetime_we_live_obeythe_voice_god_today.pdf",""
"en","en-20130731-1",2785,"God's Visitation","2013-07-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-11.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/07/2013-07-31_gods_visitation.pdf",""
"en","en-20130728-1",2786,"The Divine Counsel","2013-07-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-13.jpg","","https://www.carpa.com/sites/default/files/messages/en/2013/07/2013-07-28_the-divine-counsel.mp3","",""
"en","en-20130721-1",2787,"The Revelation of the Word of God is brought by the Holy Spirit","2013-07-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-13.jpg","","https://www.carpa.com/sites/default/files/messages/en/2013/07/2013-07-21_the_revelation_word_god_brought_holy_spirit.mp3","https://www.carpa.com/sites/default/files/messages/en/2013/07/2013-07-21_the_revelation_word_god_brought_holy_spirit.pdf",""
"en","en-20130714-1",2788,"Knowing the time of the visitation of God to avoid the jugments that will come","2013-07-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21474.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/07/2013-07-14-1-knowing_the_time_of_visitation_of_god_to_avoid_the_jugments_that_will_come-low.mp3","",""
"en","en-20130707-1",2789,"Where the Name of God is, there shall be the Blessing","2013-07-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-14.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/07/2013-07-07_where_name_god_there_shall_be_blessing.pdf",""
"en","en-20130705-1",2790,"The Time of Trial and Blessing","2013-07-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/10/youtube_thumbnail_21471.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/07/2013-07-15-1-time_of_trial_and_blessing.mp3","",""
"en","en-20130630-1",2792,"God's the Visitation to Seed of Abraham","2013-06-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-12.jpg","","https://www.carpa.com/sites/default/files/messages/en/2013/06/2013-06-30_gods_visitation_seed_abraham.mp3","https://www.carpa.com/sites/default/files/messages/en/2013/06/2013-06-30_gods_visitation_seed_abraham.pdf",""
"en","en-20130630-3",2791,"The Visitation of God, the Greatest Blessing","2013-06-30","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-12.jpg","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/06/2013-06-30-the_visitation_of_god_the_greatest_blessing.mp3","",""
"en","en-20130623-1",2793,"Fear God","2013-06-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/09/youtube_thumbnail_21466.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/06/2013-06-23-fear_god.mp3","",""
"en","en-20130616-1",2794,"The House of God Today","2013-06-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-13.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/06/2013-06-16_the_house_god_today.pdf",""
"en","en-20130609-1",2795,"Hunger to Hear the Word of God Today","2013-06-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_21463.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/06/2013-06-09-1-hunger_to_hear_the_word_of_god_today-low.mp3","",""
"en","en-20130606-1",2796,"Created in Christ Jesus for good works","2013-06-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-6.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/06/2013-06-06_created_christ_jesus_good_works.pdf",""
"en","en-20130602-1",2797,"Lord, Increase our Faith","2013-06-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-6.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/06/2013-06-02_lord_increase_our_faith.pdf",""
"en","en-20130531-2",5095,"The Time is Fulfilled and the Kingdom of the Heavens Is at Hand","2013-05-31","2","https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_21458.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/05/2013-05-31-2-the_time_is_fulfilled_and_the_kingdom_of_god_is_at_hand-low.mp3","",""
"en","en-20130526-1",2798,"The Kingdoms of this World will become fo Jesus Christ","2013-05-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-11.jpg","","https://www.carpa.com/sites/default/files/messages/en/2013/05/2013-05-26_the_kingdoms_world_will_become_fo_jesus_christ.mp3","https://www.carpa.com/sites/default/files/messages/en/2013/05/2013-05-26_the_kingdoms_world_will_become_fo_jesus_christ.pdf",""
"en","en-20130512-1",2799,"The Book of Redemption","2013-05-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-14.jpg","","https://www.carpa.com/sites/default/files/messages/en/2013/05/2013-05-12_the_book_redemption.mp3","https://www.carpa.com/sites/default/files/messages/en/2013/05/2013-05-12_the_book_redemption.pdf",""
"en","en-20130505-1",2800,"The confrontation between the thow seeds","2013-05-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-12.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/05/2013-05-05_the_confrontation_between_thow_seeds.pdf",""
"en","en-20130503-1",2801,"The Two Seeds","2013-05-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/08/youtube_thumbnail_21452.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/05/2013-05-13-the_two_seeds.mp3","",""
"en","en-20130428-1",2802,"Crying out for the glorious liberty of the children of God","2013-04-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-10.jpg","","https://www.carpa.com/sites/default/files/messages/en/2013/04/2013-04-28_crying-out-glorious-liberty-children-god.mp3","",""
"en","en-20130421-1",2803,"The Manifestations of the power of God","2013-04-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/11/youtube_thumbnail_21447.png","","","https://www.carpa.com/sites/default/files/messages/en/2013/04/2013-04-21_the_manifestations_power_god.pdf",""
"en","en-20130417-1",2804,"The only eternal refuge","2013-04-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-12.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/04/2013-04-17_the_only_eternal_refuge.pdf",""
"en","en-20130414-1",2805,"The Watchful Church","2013-04-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-5.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/04/2013-04-14_the_watchful_church.pdf",""
"en","en-20130413-1",2806,"Blessed ladies choosing the best part","2013-04-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-5.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/04/2013-04-13_blessed_ladies_choosing_best_part.pdf",""
"en","en-20130411-1",2807,"The Coming of the Lord as a Thief in the Night","2013-04-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-5.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/04/2013-04-11_the_coming_lord_thief_night.pdf",""
"en","en-20130407-1",2808,"The Revelation Contained in the Seven Thunders That John Heard and Was Forbidden to Write","2013-04-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-3.jpg","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/04/2013-04-07-the_revelation_contained_in_the_seven_thunders_that_John-low.mp3","",""
"en","en-20130331-1",2809,"Jesus Christ has Risen from Among the Dead","2013-03-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-12.jpg","","https://www.carpa.com/sites/default/files/messages/en/2013/03/2013-03-31_jesus_christ_has_risen_among_dead.mp3","https://www.carpa.com/sites/default/files/messages/en/2013/03/2013-03-31_jesus_christ_has_risen_among_dead.pdf",""
"en","en-20130329-1",2810,"The Sentence of Jesus The Crucifixion","2013-03-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-10.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/03/2013-03-29_the_sentence_jesus_crucifixion.pdf",""
"en","en-20130324-1",2811,"The Entrance of Jeus Christ to Jerusalem","2013-03-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-11.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/03/2013-03-24_the_entrance_jeus_christ_jerusalem.pdf",""
"en","en-20130321-1",6526,"Words of Greeting","2013-03-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/11/youtube_thumbnail_21434.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/11/2013-03-21-1-words_of_greeting.mp3","",""
"en","en-20130317-1",2813,"Time to be Prepare for the Coming of the Lord","2013-03-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-4.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/03/2013-03-17_time_be_prepare_coming_lord.pdf",""
"en","en-20130310-1",2814,"The Ministries of Moses and Elijah Operating at the End of Time","2013-03-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/09/youtube_thumbnail_21432.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/03/2013-03-10-the-ministries_of_moses_and_elijah_operating_at_the_end_of_time.mp3","",""
"en","en-20130303-1",2815,"The Third Pull","2013-03-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_21431.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/03/2013-03-03-the_third_pull.mp3","",""
"en","en-20130301-1",2816,"The Sign of the Son of Man","2013-03-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21430.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/03/2013-03-01-the_sign_of_the_son_of_man.mp3","",""
"en","en-20130224-1",2817,"The Beginning of the Creation","2013-02-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-9.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/02/2013-02-24_the_beginning_creation.pdf",""
"en","en-20130217-1",2818,"All Things Under Heaven Have Their Time","2013-02-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21428.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/02/2013-02-17-1-all_things_under_heaven_have_their_time.mp3","",""
"en","en-20130210-1",2819,"The Requirements to enter in to the Promised Land","2013-02-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-9.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/02/2013-02-10_the_requirements_enter_promised_land.pdf",""
"en","en-20130203-1",2820,"The Eternal Gospel to be Preached to the inhabitants of the Earth","2013-02-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-10.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/02/2013-02-03_the_eternal_gospel_be_preached_inhabitants_earth.pdf",""
"en","en-20130202-1",2821,"At The End There Shall Be One Fold And One Shepherd","2013-02-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-9.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/02/2013-02-02_at_end_there_shall_be_one_fold_and_one_shepherd.pdf",""
"en","en-20130201-2",2822,"He that hath an ear, let him hear what the Spirit hath to said unto the Churches","2013-02-01","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-11.jpg","","https://www.carpa.com/sites/default/files/messages/en/2013/02/2013-02-01_he-hath-ear-let-him-hear-what-spirit-hath-said-unto-churches.mp3","",""
"en","en-20130127-1",2823,"The Restoration Of The Firstborn Son Of God","2013-01-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_21420.png","","","https://www.carpa.com/sites/default/files/messages/en/2013/01/2013-01-27_the_restoration_firstborn_son_god.pdf",""
"en","en-20130120-1",2824,"God Providing at the Time of the End","2013-01-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/10/youtube_thumbnail_21419.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/01/2013-01-20-god_providing_at_the_tIme_of_the_end.mp3","",""
"en","en-20130113-1",2825,"The Spirit of Truth","2013-01-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-8.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/01/2013-01-13_the_spirit_truth.pdf",""
"en","en-20130106-1",2826,"The Age of the Cornerstone in the church of the Lord Jesus Christ","2013-01-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-9.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2013/01/2013-01-06_the_age_cornerstone_church_lord_jesus_christ.pdf",""
"en","en-20121216-1",2827,"Persevering Until the End","2012-12-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/11/youtube_thumbnail_21409.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2012/12/2012-12-16-persevering_until_the_end.mp3","",""
"en","en-20121201-1",2828,"A divine goal: The Restoration of the Kingdom of David","2012-12-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-1.jpg","","https://www.carpa.com/sites/default/files/messages/en/2012/12/2012-12-01_a-divine-goal-restoration-kingdom-david.mp3","",""
"en","en-20121103-1",6428,"Promises and Prophecies in the Great Tent Cathedral","2012-11-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/10/youtube_thumbnail_21398.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2012/11/2012_11_03_1_promises_and_prophecies_in_the_great_tent_cathedral.mp3","",""
"en","en-20121028-1",2829,"The Trajectory of the Construction of God's Temple","2012-10-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21397.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2012/10/2012-10-28-1-the_trajectory_of_the_construction_of_gods_temple-low.mp3","",""
"en","en-20121021-1",2830,"Joseph Among the Gentiles","2012-10-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-6.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/10/2012-10-21_joseph_among_gentiles.pdf",""
"en","en-20121014-1",2831,"The Open of the Sixth Seal","2012-10-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-7.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/10/2012-10-14_the_open_sixth_seal.pdf",""
"en","en-20121007-2",2833,"The Feast of the Tabernacles","2012-10-07","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-6.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/10/2012-10-07_the_feast_tabernacles.pdf",""
"en","en-20121007-1",2832,"The Inauguration of the Class Room of the Bible School","2012-10-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-7.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/10/2012-10-07_the_inauguration_class_room_bible_school.pdf",""
"en","en-20120930-1",2835,"We are a People Reddemed with the Blood of the Lord Jesus Christ","2012-09-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-6.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/09/2012-09-30_we_are_people_reddemed_blood_lord_jesus_christ.pdf",""
"en","en-20120929-1",2836,"The Feast of the Atonement","2012-09-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-5.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/09/2012-09-29_the_feast_atonement.pdf",""
"en","en-20120923-1",2837,"The Feast of the Trumpet","2012-09-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-6.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/09/2012-09-23_the_feast_trumpet.pdf",""
"en","en-20120916-1",2838,"The Spirit of the Eternal One giving LIfe","2012-09-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-2.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/09/2012-09-16_the_spirit_eternal_one_giving_life.pdf",""
"en","en-20120909-1",2839,"The Call to Come Up","2012-09-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-2.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/09/2012-09-09_the_call_come.pdf",""
"en","en-20120902-1",2840,"Zion, the Mount of God","2012-09-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-2.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/09/2012-09-02_zion_mount_god.pdf",""
"en","en-20120901-1",2841,"The Amnesty in the Kingdom of God","2012-09-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/09/2012-09-01_the_amnesty_kingdom_god.pdf",""
"en","en-20120826-1",2843,"The Seed of Abraham","2012-08-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-6.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/08/2012-08-26_the_seed_abraham.pdf",""
"en","en-20120819-1",2844,"The Great Victory in Love Divine","2012-08-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-5.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/08/2012-08-19_the_great_victory_love_divine.pdf",""
"en","en-20120812-1",2845,"Full Obedience to God's Anointed","2012-08-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-5.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/08/2012-08-12_full_obedience_gods_anointed.pdf",""
"en","en-20120805-1",2846,"Lord, What wilt thou have me to do?","2012-08-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-4.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/08/2012-08-05_lord_what_wilt_thou_have_me_do.pdf",""
"en","en-20120729-1",2847,"Adding to your Faith all the Virtues","2012-07-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-3.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/07/2012-07-29_adding_your_faith_all_virtues.pdf",""
"en","en-20120722-1",2849,"The Predestinated Path for the Adoption of the Children of God","2012-07-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-4.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/07/2012-07-22_the_predestinated_path_adoption_children_god.pdf",""
"en","en-20120715-1",2850,"The Authority of Jesus Christ","2012-07-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/07/2012-07-15_the_authority_jesus_christ.pdf",""
"en","en-20120708-1",2851,"The Title Deed in the Hands of a Man","2012-07-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/07/2012-07-08_the_title_deed_hands_man.pdf",""
"en","en-20120707-1",2852,"God Vindicating His Word in each Time","2012-07-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/07/2012-07-07_god_vindicating_his_word_each_time.pdf",""
"en","en-20120701-1",2853,"What's the Time on God's Clock","2012-07-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/08/2012-08-10_whats_time_gods_clock.pdf",""
"en","en-20120624-1",2854,"Putting the Hands on the Plow without looking Back","2012-06-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-5.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/06/2012-06-24_putting_hands_plow_without_looking_back.pdf",""
"en","en-20120617-1",2855,"The Heavenly Father","2012-06-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_21366.png","","","https://www.carpa.com/sites/default/files/messages/en/2012/06/2012-06-17_the_heavenly_father.pdf",""
"en","en-20120610-2",2857,"Closing Words in the Special Activity of Holy Supper and Washing of Feet","2012-06-10","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-4.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/06/2012-06-10_closing_words_special_activity_holy_supper_and_washing_feet.pdf",""
"en","en-20120610-1",2856,"Sanctify Yourselves for Tomorrow the Lord will do Wonders Among You","2012-06-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-4.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/06/2012-06-10_sanctify_yourselves_tomorrow_lord_will_do_wonders_among_you.pdf",""
"en","en-20120609-1",2858,"God Defers His Anger","2012-06-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_21362.png","","","https://www.carpa.com/sites/default/files/messages/en/2012/06/2012-06-09_god_defers_his_anger.pdf",""
"en","en-20120603-1",2859,"Faith: The Substance of Things Hoped for","2012-06-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-3.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/06/2012-06-03_faith_substance_things_hoped.pdf",""
"en","en-20120527-1",2860,"New Heavens and New Earth","2012-05-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/k3A7UH4H-youtube_thumbnail_21358.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2012/05/2012-05-27-new_heavens_and_new_earth.mp3","",""
"en","en-20120520-1",2861,"A People Waiting for the Manifestation of God all It's Fullness","2012-05-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_21357.png","","","https://www.carpa.com/sites/default/files/messages/en/2012/05/2012-05-20_a_people_waiting_manifestation_god_all_its_fullness.pdf",""
"en","en-20120513-1",2862,"The Mourning of the Nations when they see the coming of the Son of Man","2012-05-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-3.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/05/2012-05-13_the_mourning_nations_when_they_see_coming_son_man.pdf",""
"en","en-20120506-1",2863,"The Influence of the Heavenly Dimension over the Earthly Realm","2012-05-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-5.jpg","","","",""
"en","en-20120505-1",2864,"The Mission of the Archangels of God","2012-05-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-4.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/05/2012-05-05_the_mission_archangels_god.pdf",""
"en","en-20120429-1",2865,"Receiving a Kingdom which cannot be Moved","2012-04-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-2.jpg","","","",""
"en","en-20120422-1",2866,"The Lamb's Book of Life","2012-04-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-2.jpg","","","",""
"en","en-20120415-1",2867,"The Church, a product of the Masterpiece","2012-04-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-3.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/04/2012-04-15_the_church_product_masterpiece.pdf",""
"en","en-20120408-1",2868,"The Resurrection of Jesus Christ","2012-04-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-2.jpg","","","",""
"en","en-20120407-1",2869,"Jesus Christ Preaching to the Spirits in Prison","2012-04-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-4.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/04/2012-04-07_jesus_christ_preaching_spirits_prison.pdf",""
"en","en-20120406-1",2870,"Crucifixion and Death of Christ","2012-04-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_21344.png","","","",""
"en","en-20120401-1",2871,"Christ's Triumphal Entry for the Salvation of the World","2012-04-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2026/01/youtube_thumbnail_21343.png","","","https://www.carpa.com/sites/default/files/messages/en/2012/04/2012-04-01_christs_triumphal_entry_salvation_world.pdf",""
"en","en-20120325-1",2872,"In Route to the Promised Land with three Kinds of Believer","2012-03-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-5-3.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/03/2012-03-25_in_route_promised_land_three_kinds_believer.pdf",""
"en","en-20120318-1",2873,"Preparing for the Fulfillment of the Prophecies","2012-03-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-2.jpg","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2012/03/2012-03-18-preparing_ourselves_for_the_fullfillment_of_the_prophecies.mp3","",""
"en","en-20120311-1",2874,"Christ, the Light","2012-03-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-3.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/03/2012-03-11_christ_light.pdf",""
"en","en-20120304-1",2876,"Endued with Power from on High","2012-03-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/2012/03/2012-03-04_endued_power_high.pdf",""
"en","en-20120303-1",2875,"A Sign that cannot be Overlooked","2012-03-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/03/youtube_thumbnail_21334.png","","","https://www.carpa.com/sites/default/files/messages/en/2012/03/2012-03-03_a_sign_cannot_be_overlooked.pdf",""
"en","en-20120226-1",2877,"The Word of God which effectually works in the believer","2012-02-26","1","","","https://www.carpa.com/sites/default/files/messages/en/2012/02/2012-02-26_the-word-god-which-effectually-works-believer.mp3","",""
"en","en-20120219-1",2878,"Parallel Times","2012-02-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-2.jpg","","https://www.carpa.com/sites/default/files/messages/en/2012/02/2012-02-19_parallel-times.mp3","",""
"en","en-20120212-1",2879,"The promise for permanent peace for Jerusalem","2012-02-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-2.jpg","","https://www.carpa.com/sites/default/files/messages/en/2012/02/2012-02-12_the-promise-permanent-peace-jerusalem.mp3","",""
"en","en-20120205-1",2880,"Christ revealed through the Trajectory of the human race","2012-02-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-5-2.jpg","","https://www.carpa.com/sites/default/files/messages/en/2012/02/2012-02-05_christ-revealed-through-trajectory-human-race.mp3","",""
"en","en-20120101-1",2881,"The New Year","2012-01-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-1.jpg","","https://www.carpa.com/sites/default/files/messages/en/2012/01/2012-01-01_the_new_year.mp3","",""
"en","en-20110819-1",6487,"The Power of Transformation","2011-08-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/11/youtube_thumbnail_21260.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/11/2011-08-19-1-the_power_of_transformation.mp3","",""
"en","en-20110721-2",6434,"Its Already Time To Be in the Safe Place","2011-07-21","2","https://ewr1.vultrobjects.com/lgcc-conferences/2025/10/youtube_thumbnail_21244.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/10/2000-12-01-1-MM-lord_what_do_you_want_me_to_do-1.mp3","",""
"en","en-20110604-1",6606,"Time to Gather with the Lord","2011-06-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2026/01/youtube_thumbnail_21224.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2026/02/2011-06-04-1-time_to_gather_wIth_the_lord.mp3","",""
"en","en-20110514-2",6585,"Being Vigilant and Watching for Gods Anointed One","2011-05-14","2","https://ewr1.vultrobjects.com/lgcc-conferences/2026/01/youtube_thumbnail_21212.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2026/01/2011_05_14_1_mm_watching_and_being_vigilant_for_gods_anointed_one.mp3","",""
"en","en-20110513-1",6199,"Time to Ripen in the Light of the Word","2011-05-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/06/youtube_thumbnail_21209.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/06/2011-05-13-mm-time_to_ripen_in_the_light_of_the_word.mp3","",""
"en","en-20110508-1",5726,"The Spirit of God and the Spirit of the Antichrist","2011-05-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21207.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/04/2011-05-08-the_spirit_of_god_and_the_spirit_of_the_antichrist.mp3","",""
"en","en-20110429-1",5802,"Time of Expectation for Salvation or for Judgment","2011-04-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/05/youtube_thumbnail_21203.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/05/2011-04-29-time_for_expectation_for_salvation_or_for_judgment.mp3","",""
"en","en-20110402-1",6231,"The Identification of the Disciples of the Lord Jesus Christ","2011-04-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/06/youtube_thumbnail_21194.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/06/2017-03-03-1-gods_promise_to_abraham_introduction.mp3","",""
"en","en-20110319-1",5753,"The Security of Gods Anointed","2011-03-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21190.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/04/2011-03-19-the_security_of_gods_anointed.mp3","",""
"en","en-20101224-1",6289,"The Law of Repetition","2010-12-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/07/youtube_thumbnail_21159.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/07/2010-12-24-mm-the_law_of_repetition.mp3","",""
"en","en-20101106-1",6302,"The Prophecy of the Two Olive Trees","2010-11-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_21142.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2016/11/2010-11-06-the_prophecy_of_the_two_olive_trees.mp3","",""
"en","en-20100928-2",5221,"The Greatness and Content of the Seventh Seal","2010-09-28","2","https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21125.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2010/09/2010-09-28-2-the_greatness_and_content_of_the_seventh_seal.mp3","",""
"en","en-20100927-1",6073,"Elohims Visit to Abrahams Seed and Its Purpose","2010-09-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/02/youtube_thumbnail_21124-1.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2010/09/2010-09-27-MM-elohims_visit_to_abrahams_seed_and_its_purpose.mp3","",""
"en","en-20100925-1",5229,"Speak, Lord, for Thy Servant Heareth","2010-09-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21122-1.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2010/09/2010-09-25-1-speak_lord_for_thy_servant_heareth.mp3","",""
"en","en-20100924-1",2882,"The evangelism of the end time","2010-09-24","1","","","","https://www.carpa.com/sites/default/files/messages/en/2010/09/2010-09-24_the_evangelism_end_time.pdf",""
"en","en-20100918-1",6063,"The Blessing of Following Gods Counsel in Our Time","2010-09-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/02/youtube_thumbnail_21117.png","","","",""
"en","en-20100904-1",5161,"God Giving His Children Wisdom and Intelligence for the Work They Have Been Entrusted With","2010-09-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21112.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/07/2010-09-04-god_giving_his_children_wisdom_and_intelligence_for_the_work_they_have_been_entrusted_with.mp3","",""
"en","en-20100828-1",6370,"The Mystery of the Second Adam and the Second Eve Together, At the Last Day, Finishing His Work","2010-08-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/09/youtube_thumbnail_21107.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/09/2010_08_28_the_mystery_of_the_second_adam_and_the_second_eve_together.mp3","",""
"en","en-20100812-2",5177,"Jesus Christ Delivering What the Enemy Bound","2010-08-12","2","https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21088.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/08/2010-08-12-2-jesus_christ_delivering_what_the_enemy_bound-low.mp3","",""
"en","en-20100812-1",5184,"The Duality of the Second Adam: The Great Mystery of Christ and His Church","2010-08-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21089.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/08/2010-08-10-1-the_duality_of_the_second_adam_the_great_mystery_of_christ_and_his_church-low.mp3","",""
"en","en-20100717-2",6058,"The Mighty Men and Women of the Son of David Doing a Greater Work","2010-07-17","2","https://ewr1.vultrobjects.com/lgcc-conferences/2025/01/youtube_thumbnail_21066.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/02/2010-07-17-2-MM-the_mighty_men_and_women_of_the_son_of_david_doing_a_greater_work.mp3","",""
"en","en-20100706-1",5705,"A Heavenly Cry","2010-07-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21057.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/04/2010-07-06-a_heavenly_cry.mp3","",""
"en","en-20100506-2",5281,"The Sun, the Moon, and the Stars Indicating the Time and Giving Us the Signs of the End","2010-05-06","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_21025.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/09/2010-05-06-2-the_sun_the_moon_and_the_stars_indicating_the_time.mp3","",""
"en","en-20100110-1",6172,"Joseph Reveals Himself to His Brothers","2010-01-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/05/youtube_thumbnail_20927.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/05/2010-01-10-joseph-reveals-himself-to-his-brothers.mp3","",""
"en","en-20091205-1",6309,"The Son of Man: A Sign for This Generation","2009-12-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_20903.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/08/2009-12-05-the_son_of_man_a_sign_for_this_generation.mp3","",""
"en","en-20091116-2",5962,"The Man Who Receives the Vesture, the Horse and the Crown of the King (and the Scepter)","2009-11-16","2","https://ewr1.vultrobjects.com/lgcc-conferences/2024/08/youtube_thumbnail_20895.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2009/11/2009-11-16-2-the_man_who_receives_the_vesture_the_horse_and_crown_of_the_king_and_scepter.mp3","",""
"en","en-20091018-1",6157,"On Gods Agenda: The Elect and the Fig Tree","2009-10-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/05/youtube_thumbnail_20877.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/05/2009-10-18-1-in_gods_agenda_the_elect_and_the_fig_tree.mp3","",""
"en","en-20090905-1",5300,"Obedient to the Heavenly Vision","2009-09-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_20848.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/09/2009-09-05-RM-obedient_to_the_heavenly_vision.mp3","",""
"en","en-20090822-4",6376,"Prophet of God: Interpreter of the Word of God","2009-08-22","4","https://ewr1.vultrobjects.com/lgcc-conferences/2025/09/youtube_thumbnail_20829.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/09/2009_08_22_4_mm_prophet_of_god_an_interpreter_of_the_word_of_god.mp3","",""
"en","en-20090522-1",5980,"The Angel With the Seven Thunders Finalizing Time","2009-05-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/09/youtube_thumbnail_20758.png","","","",""
"en","en-20090424-2",5322,"Good Tidings of Great Joy for the First and Second Coming of Christ","2009-04-24","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/youtube_thumbnail_20738.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/10/2009-04-24-2-good_tidings_of_great_joy_for_the_first_and_second.mp3","",""
"en","en-20090420-1",5969,"The Visit of the Angels to the Seed of Abraham","2009-04-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/09/youtube_thumbnail_20733.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/09/2009-04-20-the_visit_of_the_angels_to_the_seed_of_abraham.mp3","",""
"en","en-20090331-1",6475,"Moses and Elijah on the Mountain of God","2009-03-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/11/youtube_thumbnail_20721.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/11/2016-07-08-1-identifying_the_end_of_time_introduction.mp3","",""
"en","en-20090330-1",6545,"Words of Greeting to the Pastors","2009-03-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/12/youtube_thumbnail_20719.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/12/2009-03-30-1-mm-words_of_greeting_to_the_pastors-1.mp3","",""
"en","en-20090325-1",6101,"Words of Greeting to the Ministers","2009-03-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/04/youtube_thumbnail_20715.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/05/2009-03-25-mm-words_of_greeting_to_the_ministers.mp3","",""
"en","en-20090323-1",5828,"The Mighty Angel with the Rainbow upon His Head, Swearing That Time Is No More","2009-03-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/06/youtube_thumbnail_20712.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/06/2009-03-23-the_mighty_angel_with_the_rainbow_upon.mp3","",""
"en","en-20090322-2",6149,"The Power of the Holy Spirit Becoming Incarnate and Working in His Church","2009-03-22","2","https://ewr1.vultrobjects.com/lgcc-conferences/2025/05/youtube_thumbnail_20709.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/05/2009_03_22_2_MM_the_power_of_the_holy_spirit_becoming_incarnate.mp3","",""
"en","en-20090321-2",5944,"Words of Greeting to the Pastors","2009-03-21","2","https://ewr1.vultrobjects.com/lgcc-conferences/2024/08/youtube_thumbnail_20708.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/08/2009-03-21-words_of_greeting_to_the-_pastors.mp3","",""
"en","en-20090309-2",5915,"Pastors Honoring the Ministry of the Last Day","2009-03-09","2","https://ewr1.vultrobjects.com/lgcc-conferences/2024/07/youtube_thumbnail_20687.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2009/03/2009-03-09-pastors_honoring_the_ministry_of_the_last_day.mp3","",""
"en","en-20090307-1",6006,"Ministers Doing the Will of God Until the Promise Is Obtained","2009-03-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/09/youtube_thumbnail_20684.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2009/03/2009-03-07-ministers_doing_the_will_of_god_until_the_promise_is_obtained.mp3","",""
"en","en-20090221-1",6067,"The One Who Reveals Secret Things","2009-02-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/02/youtube_thumbnail_20669.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2009/02/2009-02-21-MM-the_one_who_reveals_secret_things.mp3","",""
"en","en-20090205-1",5933,"The Preaching of the Gospel of the Kingdom","2009-02-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/08/youtube_thumbnail_20651.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2009/02/2009-02-05-the-preaching_of_the_gospel_of_the_kingdom.mp3","",""
"en","en-20090130-1",5956,"Pastors Attentive and Obedient to the Word of God","2009-01-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/08/youtube_thumbnail_20641.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2009/01/2009-01-30-pastors_attentive_and_bedient_to_the_word_of_god.mp3","",""
"en","en-20090122-1",6337,"Words of Greeting to the Pastors","2009-01-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_20634.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/08/2016-06-05-the_kings_message-1.mp3","",""
"en","en-20081221-1",6562,"The Son of the Virgin Is Born","2008-12-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/12/youtube_thumbnail_20620.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/12/2008-12-21-1-the_son_of_the_virgin_is_born.mp3","",""
"en","en-20081220-1",6211,"Words of Greeting to the Pastors","2008-12-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/06/youtube_thumbnail_20619.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/06/2008-12-20-mm-words_of_greeting_to_the_pastors.mp3","",""
"en","en-20081122-2",6356,"The Marriage Yoke between Christ and His Church","2008-11-22","2","https://ewr1.vultrobjects.com/lgcc-conferences/2025/09/youtube_thumbnail_20610.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/09/2008_11_22_2_MM_the_marriage_yoke_between_christ_and_his_church.mp3","",""
"en","en-20081004-1",6000,"What Happens at the Last Trumpet","2008-10-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/09/youtube_thumbnail_20567.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/09/2008-10-04-what_happens_at_the_last_trumpet.mp3","",""
"en","en-20080918-1",5434,"Who, Then, Is the Faithful and Wise Servant?","2008-09-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_20552.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2008/09/2008-09-18-who_then_is_the_faithful_and_wise_servant.mp3","",""
"en","en-20080917-2",6238,"The Priestly Blessing","2008-09-17","2","https://ewr1.vultrobjects.com/lgcc-conferences/2025/06/youtube_thumbnail_20551.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/07/2008-09-17-2-MM-the_priestly_blessing.mp3","",""
"en","en-20080913-2",6508,"Ministers Who Take Heed, Working on and with the Living Prophecy","2008-09-13","2","https://ewr1.vultrobjects.com/lgcc-conferences/2025/11/youtube_thumbnail_20544.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/11/2008_09_13_2_mm_ministers_who_take_heed_working_on_and_with_the.mp3","",""
"en","en-20080621-1",6594,"Words of Greeting to the Pastors","2008-06-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2026/01/youtube_thumbnail_20499.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2026/01/2008-06-21-mm-words_of_greeting_to_the_pastors.mp3","",""
"en","en-20080208-1",5922,"The Sword of the King of Kings and Lord of Lords","2008-02-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/07/youtube_thumbnail_20440.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/07/2008-02-08-the_sword_of_the_king_of_kings_and_lord_of_lords.mp3","",""
"en","en-20071222-1",5908,"Joseph by the Well","2007-12-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/07/youtube_thumbnail_67152.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2007/12/2007-12-22-joseph_by_the_well.mp3","",""
"en","en-20070929-2",6093,"Faithful Stewards of Gods Mysteries","2007-09-29","2","https://ewr1.vultrobjects.com/lgcc-conferences/2025/02/youtube_thumbnail_67875.png","","","",""
"en","en-20070826-1",5950,"The Fourth Watch","2007-08-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/08/youtube_thumbnail_20369.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2007/08/2007-08-26-the_fourth_watch.mp3","",""
"en","en-20070811-2",6619,"The Prophetic Ministry of the Last Day and Its Stages","2007-08-11","2","https://ewr1.vultrobjects.com/lgcc-conferences/2026/02/youtube_thumbnail_68903.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2026/02/2007_08_11_2_mm_the_prophetic_ministry_of_the_last_day_and_its_stages.mp3","",""
"en","en-20070331-1",6323,"The Preparation to Enter the Promised Land","2007-03-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_68413.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/08/2007-03-31-MM-the_preparation_to_enter_the_promised_land.mp3","",""
"en","en-20070317-1",6097,"Jesus Christ Restoring the Power to His Church Through the Prophet Elijah","2007-03-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/02/youtube_thumbnail_67886.png","","","",""
"en","en-20070308-1",6132,"Pastors Overcoming the Enemy With the Spirit of the God of Israel","2007-03-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/05/youtube_thumbnail_68069.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/05/2007_03_08_mm_pastors_overcoming_the_enemy_with_the_spirit_of_the.mp3","",""
"en","en-20070127-1",6143,"The Trajectory of the Creative Word","2007-01-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/05/youtube_thumbnail_68080.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/05/2007-01-27-MM-the_trajectory_of_the_creative_word.mp3","",""
"en","en-20061125-1",6390,"The Restoration of All Things","2006-11-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/09/youtube_thumbnail_20270.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/09/2006-11-25-mm-the_restoration_of-_all_things.mp3","",""
"en","en-20060506-1",6405,"The Great Men of the Bible","2006-05-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/10/youtube_thumbnail_68556.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/10/2006-05-06-1-mm-the_great_men_of_the_bible.mp3","",""
"en","en-20060429-2",6088,"The Hidden Manna","2006-04-29","2","https://ewr1.vultrobjects.com/lgcc-conferences/2025/02/youtube_thumbnail_20149.png","","","",""
"en","en-20060415-2",6183,"Where Is the God of Elijah?","2006-04-15","2","https://ewr1.vultrobjects.com/lgcc-conferences/2025/05/youtube_thumbnail_20129.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/06/2009-10-18-1-in_gods_agenda_the_elect_and_the_fig_tree.mp3","",""
"en","en-20060402-1",6192,"The Only One Worthy to Open the Book of the Seven Seals","2006-04-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/06/youtube_thumbnail_20124.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/06/2006_04_02_the_only_one_worthy_to_open_the_book_of_the_seven_seals.mp3","",""
"en","en-20060325-1",5904,"The Work of the Stone That God Slings","2006-03-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/07/youtube_thumbnail_20118.png","","","",""
"en","en-20051217-1",6048,"Thus Saith the Lord to His Anointed","2005-12-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/01/youtube_thumbnail_67764-1.png","","","",""
"en","en-20051112-2",6345,"The Shepherd of Shepherds","2005-11-12","2","https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_68443.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/08/2005-11-12-2-MM-the_shepherd_of_shepherds.mp3","",""
"en","en-20050824-3",6084,"The Angels of God","2005-08-24","3","https://ewr1.vultrobjects.com/lgcc-conferences/2025/02/youtube_thumbnail_19959.png","","","",""
"en","en-20050820-2",6500,"The Mystery of the Two Anointed Ones That Stand before the Lord","2005-08-20","2","https://ewr1.vultrobjects.com/lgcc-conferences/2025/11/youtube_thumbnail_19955.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/11/2005_08_20_2_mm_the_mystery_of_the_two_anointed_ones_that_stand.mp3","",""
"en","en-20050514-2",5354,"The Requirements for a Revival","2005-05-14","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/youtube_thumbnail_19881.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/10/2005-05-14-2-RM-the_requirements_for_a_revival.mp3","",""
"en","en-20050506-1",5255,"Works of Faith","2005-05-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_19871.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2005/05/2005-05-06-1-works_of_faith.mp3","",""
"en","en-20050504-3",5198,"The Voice That Will Shake the Heavens and the Earth","2005-05-04","3","https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_19867.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2005/05/2005-05-04-the_voice_that_will_shake_the_heavens_and_the_earth.mp3","",""
"en","en-20041204-2",6558,"We Are Being Rushed from Heaven; Lets Do Everything Quickly and Well Done","2004-12-04","2","https://ewr1.vultrobjects.com/lgcc-conferences/2025/12/youtube_thumbnail_19725.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/12/2004_12_04_mm_we_are_being_rushed_from_heaven_lets_do_everything.mp3","",""
"en","en-20041203-1",6053,"We Are Being Rushed From Heaven","2004-12-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/01/youtube_thumbnail_19723.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/02/2004-12-03-we_are_being_rushed_from_heaven.mp3","",""
"en","en-20040826-1",5248,"Everything Depends on the Word of God","2004-08-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/09/youtube_thumbnail_66060.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2004/08/2004-08-26-1-everything_depends_on_the_word_of_god.mp3","",""
"en","en-20040508-1",6383,"Fighting for Our People and for Our Family","2004-05-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/09/youtube_thumbnail_19553.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/09/2004-05-08-MM-fighting_for_our_people_and_for_our_family.mp3","",""
"en","en-20031227-1",6079,"The Title Deed in the Hands of the Human Race","2003-12-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/02/youtube_thumbnail_67823.png","","","",""
"en","en-20030404-1",5401,"The Authority of the Son of God","2003-04-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_66285.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/11/2003-04-04-RM-the_authoritiy_of_the_son_of_god.mp3","",""
"en","en-20030215-1",5272,"Vessels Separated for God","2003-02-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_19258.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/09/2003-02-15-RM-vessels_separated_for_god.mp3","",""
"en","en-20021110-1",6570,"God Is Among His People","2002-11-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2026/01/youtube_thumbnail_19198.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2026/01/2002-11-10-1-god_is_among_his_people.mp3","",""
"en","en-20020602-1",6044,"The Content of the Seventh Seal","2002-06-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/12/youtube_thumbnail_19073.png","","","",""
"en","en-20020518-2",6538,"The Mystery of God","2002-05-18","2","https://ewr1.vultrobjects.com/lgcc-conferences/2025/12/youtube_thumbnail_68767.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/12/2002-05-18-2-mm-the_mystery_of_god.mp3","",""
"en","en-20020415-1",5288,"Fighting the Good Fight","2002-04-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_66110.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2002/04/2002-04-15-fighting_the_good_fight.mp3","",""
"en","en-20020302-4",6245,"The Princes of God","2002-03-02","4","https://ewr1.vultrobjects.com/lgcc-conferences/2025/06/youtube_thumbnail_68251.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/07/2002-03-02-mm-the_princes_of_god.mp3","",""
"en","en-20020228-1",2883,"A notable sign in heaven","2002-02-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-1-5.jpg","","https://www.carpa.com/sites/default/files/messages/en/2002/02/2002-02-28_a_notable_sign_heaven.mp3","https://www.carpa.com/sites/default/files/messages/en/2002/02/2002-02-28_a_notable_sign_heaven.pdf",""
"en","en-20020106-2",6578,"The Trajectory of the King of Kings","2002-01-06","2","https://ewr1.vultrobjects.com/lgcc-conferences/2026/01/youtube_thumbnail_18970.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2026/01/2002-01-06-2-the_trajectory_of_the_king_of_kings.mp3","",""
"en","en-20010802-1",6363,"Davids Training for the Battle","2001-08-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/09/youtube_thumbnail_18877.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/09/2001-08-02-davids_training_for_the_battle.mp3","",""
"en","en-20010728-2",6441,"The Only Light of the Last Day","2001-07-28","2","https://ewr1.vultrobjects.com/lgcc-conferences/2025/10/youtube_thumbnail_68602.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/10/2001-07-28-1-MM-the_only_light_of_the_last_day.mp3","",""
"en","en-20010714-2",5541,"The Mighty Man of Valor","2001-07-14","2","https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_66544.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/01/2001-07-14-2-the_mighty_man_of_valor.mp3","",""
"en","en-20010712-1",4232,"The parallelism between Jesus Christ and His Church","2001-07-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","","",""
"en","en-20001201-1",6418,"Lord, What Do You Want Me to Do?","2000-12-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/10/youtube_thumbnail_18682.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/10/2000-12-01-1-MM-lord_what_do_you_want_me_to_do.mp3","",""
"en","en-20001110-1",5295,"The Order of the Manifestation of Gods Glory","2000-11-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_18656.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/09/2000-11-10-1-the_order_of_the_manifestation_of_god.mp3","",""
"en","en-20001022-3",5328,"The Parallelism Between Christ and His Angel","2000-10-22","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/youtube_thumbnail_18627.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/10/2000-10-22-RM-the_parallelism_between_christ_and_his_angel.mp3","",""
"en","en-19991231-1",4114,"The things that are prophesied for the end of the world","1999-12-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_18381.png","","","",""
"en","en-19991203-2",2884,"The blessing of doing God's Will","1999-12-03","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_18363-5.png","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-19981231-1",4118,"The High Priest interceding for the people","1998-12-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17877.png","","","",""
"en","en-19981227-2",4074,"Time to awaken to the reality of what God is doing today","1998-12-27","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17874.png","","","",""
"en","en-19981227-1",4058,"What God has promised for the Last Day","1998-12-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17875.png","","","",""
"en","en-19981220-1",4039,"The trajectory of the Temple of God","1998-12-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17867.png","","","",""
"en","en-19981220-2",4049,"A conception of the Holy Spirit","1998-12-20","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17866.png","","","",""
"en","en-19981213-2",4030,"The blessing of obeying the Angel of God","1998-12-13","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17864.png","","","",""
"en","en-19981213-1",4021,"God's thoughts expressed in the Last Day","1998-12-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17865.png","","","",""
"en","en-19981206-1",4008,"The exodus of the Last Day","1998-12-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17863.png","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-19981129-2",3994,"The mystery of the Angel of Jesus","1998-11-29","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17850-1.png","","","",""
"en","en-19981126-1",3887,"He who has a greater testimony than that of John the Baptist","1998-11-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17848-6.png","","","",""
"en","en-19981124-1",3933,"The Son working as the Father shows Him","1998-11-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17846-3.png","","","",""
"en","en-19981123-1",3932,"Working while the Father works","1998-11-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17845-2.png","","","",""
"en","en-19981115-1",4147,"Jesus Christ seeking and calling those who will dine with Him","1998-11-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17835.png","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-19981101-1",3931,"The things that were, the ones that are and the ones that are to be","1998-11-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17807-2.png","","","",""
"en","en-19981030-1",3930,"The Son of Man with the keys of hell and death","1998-10-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17803-2.png","","","",""
"en","en-19981028-2",2952,"A description of the Son of Man in the midst of the seven candlesticks","1998-10-28","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17798-1.png","","","",""
"en","en-19981026-2",2953,"Jesus Christ, the Alpha and Omega","1998-10-26","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17794-5.png","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-19981025-2",2954,"The Coming of the Lord with the clouds","1998-10-25","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17792-5.png","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-19980829-2",4132,"The prophet's hands lifted up for the victory of the people","1998-08-29","2","https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17700.png","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-19980825-2",4128,"The end of the world and the Angels of the Harvest","1998-08-25","2","https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17688.png","","","",""
"en","en-19980825-3",4142,"Working in the missionary work with a positive mind","1998-08-25","3","https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17687.png","","","",""
"en","en-19980823-3",4109,"The Trajectory of the Blood of Christ","1998-08-23","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17681.png","","","",""
"en","en-19980823-2",4097,"The Sign of the Blood applied today","1998-08-23","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17682.png","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-19980821-1",4087,"The eternal youth","1998-08-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17677.png","","","",""
"en","en-19980820-3",4078,"The Rod that will do the signs","1998-08-20","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17672.png","","","",""
"en","en-19980820-1",4070,"The time of hunger and thirst of hearing the Word of God for today","1998-08-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17674.png","","","",""
"en","en-19980819-2",4035,"Greetings to the mighty men and women","1998-08-19","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17670.png","","","",""
"en","en-19980819-4",4053,"Delivered by the Word of God","1998-08-19","4","https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17668.png","","","",""
"en","en-19980819-3",4043,"God in the mouth of His prophets to bless His people","1998-08-19","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17669.png","","","",""
"en","en-19980818-2",4026,"God delivers His people","1998-08-18","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17666.png","","","",""
"en","en-19980817-1",4016,"Two peoples from the same father","1998-08-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_62193.png","","","",""
"en","en-19980817-2",4000,"Being gathered to his people","1998-08-17","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17664.png","","","",""
"en","en-19980816-3",3990,"God's Mighty Hand extended","1998-08-16","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17660.png","","","",""
"en","en-19980815-2",3875,"The glorious freedom of the third exodus","1998-08-15","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17658-6.png","","","",""
"en","en-19980814-3",3929,"The Work of Christ from Genesis to Revelation","1998-08-14","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17653-4.png","","","",""
"en","en-19980814-1",3928,"The Work of Christ in the Last Day","1998-08-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17655-2.png","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-19980805-2",2991,"The seven years of work for His Wife","1998-08-05","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-1-4.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/08/1998-08-05_the_seven_years_work_his_wife.pdf",""
"en","en-19980722-2",2992,"We will all be tested","1998-07-22","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-1-3.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/07/1998-07-22_we_will_all_be_tested.pdf",""
"en","en-19980721-1",2993,"The son of the bondwoman shall not inherit with the son of the free woman","1998-07-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17616.png","","","https://www.carpa.com/sites/default/files/messages/en/1998/07/1998-07-21_the_son_bondwoman_shall_not_inherit_son_free_woman.pdf",""
"en","en-19980719-1",2994,"The memory that keeps us alert: Remembering the wife of Lot","1998-07-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17613.png","","","https://www.carpa.com/sites/default/files/messages/en/1998/07/1998-07-19_the_memory_keeps_us_alert_remembering_wife_lot.pdf",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-19980713-1",2996,"Melchisedec's Blessing","1998-07-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17602.png","","","https://www.carpa.com/sites/default/files/messages/en/1998/07/1998-07-13_melchisedecs_blessing.pdf",""
"en","en-19980710-2",2997,"The rainbow, sign of God's Covenant","1998-07-10","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17597.png","","","https://www.carpa.com/sites/default/files/messages/en/1998/07/1998-07-10_the_rainbow_sign_gods_covenant.pdf",""
"en","en-19980709-1",2999,"A universal judgment through which God speaks to us today","1998-07-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17596.png","","","https://www.carpa.com/sites/default/files/messages/en/1998/07/1998-07-09_a_universal_judgment_through_which_god_speaks_us_today.pdf",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-19980708-2",3001,"Noah's Ark updated","1998-07-08","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/07/1998-07-08_noahs_ark_updated.pdf",""
"en","en-19980708-1",3000,"The union that produces good results","1998-07-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-2-3.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/07/1998-07-08_the_union_produces_good_results.pdf",""
"en","en-19980707-1",3002,"The blessing of walking with God","1998-07-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17592.png","","","https://www.carpa.com/sites/default/files/messages/en/1998/07/1998-07-07_the_blessing_walking_god.pdf",""
"en","en-19980706-1",3003,"The trajectory of the Name of God","1998-07-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17590.png","","","https://www.carpa.com/sites/default/files/messages/en/1998/07/1998-07-06_the_trajectory_name_god.pdf",""
"en","en-19980627-1",3004,"Protected against the cunningness of the serpent","1998-06-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17580.png","","","https://www.carpa.com/sites/default/files/messages/en/1998/06/1998-06-27_protected_against_cunningness_serpent.pdf",""
"en","en-19980626-1",3006,"Privileges and duties of the Wife of Christ","1998-06-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17579.png","","","https://www.carpa.com/sites/default/files/messages/en/1998/06/1998-06-26_privileges_and_duties_wife_christ.pdf",""
"en","en-19980626-4",3005,"The creation of the Wife of the first Adam and the second Adam","1998-06-26","4","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17576.png","","","https://www.carpa.com/sites/default/files/messages/en/1998/06/1998-06-26_the_creation_wife_first_adam_and_second_adam.pdf",""
"en","en-19980625-1",3927,"The human being facing the crossroads of life","1998-06-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17575-2.png","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-19980621-1",3926,"God's order and process in His Work from beginning to end","1998-06-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17569-2.png","","","",""
"en","en-19980620-2",3009,"Each tree producing according to its nature","1998-06-20","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/06/1998-06-20_each_tree_producing_according_its_nature.pdf",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-19980618-2",3010,"The Spirit of God moving through time","1998-06-18","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-1-2.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/06/1998-06-18_the_spirit_god_moving_through_time.pdf",""
"en","en-19980617-2",3011,"The creative Word throughout the entire Bible","1998-06-17","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17561.png","","","https://www.carpa.com/sites/default/files/messages/en/1998/06/1998-06-17_the_creative_word_throughout_entire_bible.pdf",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-19980531-2",3014,"The Seventh Seal and the Day and the Hour of His Coming","1998-05-31","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17552.png","","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-31_the_seventh_seal_and_day_and_hour_his_coming.pdf",""
"en","en-19980531-1",3013,"The Seventh Seal and the Three Witnesses","1998-05-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-57.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-31_the_seventh_seal_and_three_witnesses.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-31_the_seventh_seal_and_three_witnesses.pdf",""
"en","en-19980523-2",3015,"The Seventh Seal and the Fourth Watch","1998-05-23","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-29-2.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-23_the_seventh_seal_and_fourth_watch.pdf",""
"en","en-19980521-2",3016,"Steadfast with the Seventh Seal","1998-05-21","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-32-2.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-21_steadfast_seventh_seal.pdf",""
"en","en-19980519-3",3017,"The Seventh Seal: The revelation of the Last Day","1998-05-19","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-36-2.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-19_the_seventh_seal_revelation_last_day.pdf",""
"en","en-19980516-1",3018,"The Seventh Seal and the wrath of God","1998-05-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17527.png","","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-16_the_seventh_seal_and_wrath_god.pdf",""
"en","en-19980515-1",3019,"The Seventh Seal and the Mercy of God","1998-05-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17526.png","","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-15_the_seventh_seal_and_mercy_god.pdf",""
"en","en-19980514-2",3020,"The Seventh Seal and the Latin American people","1998-05-14","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-34-2.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-14_the_seventh_seal_and_latin_american_people.pdf",""
"en","en-19980513-1",3021,"The Seventh Seal and the hidden Manna","1998-05-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17523.png","","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-13_the_seventh_seal_and_hidden_manna.pdf",""
"en","en-19980511-2",3023,"The Work of the Last Trumpet","1998-05-11","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17519.png","","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-11_the_work_last_trumpet.pdf",""
"en","en-19980511-1",3022,"The Businesses of the Seventh Seal","1998-05-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-42.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-11_the_businesses_seventh_seal.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-11_the_businesses_seventh_seal.pdf",""
"en","en-19980510-4",3026,"Helped by the Seventh Seal","1998-05-10","4","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-43.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-10_helped_seventh_seal.pdf",""
"en","en-19980510-3",3025,"The Seventh Seal and the Seven Thunders","1998-05-10","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-44.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-10_the_seventh_seal_and_seven_thunders.pdf",""
"en","en-19980510-1",3024,"The Seventh Seal and the Seventh Trumpet","1998-05-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17518.png","","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-10_the_seventh_seal_and_seventh_trumpet.pdf",""
"en","en-19980509-4",3029,"The mighty men of the Seventh Seal","1998-05-09","4","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-46.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-09_the_mighty_men_seventh_seal.pdf",""
"en","en-19980509-3",3028,"Dedicated by the Seventh Seal","1998-05-09","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-48.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-09_dedicated_seventh_seal.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-09_dedicated_seventh_seal.pdf",""
"en","en-19980509-5",3027,"The culmination of the Seventh Seal","1998-05-09","5","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-39.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-09_the_culmination_seventh_seal.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-09_the_culmination_seventh_seal.pdf",""
"en","en-19980508-4",3031,"The Seventh Seal and the New Creation","1998-05-08","4","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-41.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-08_the_seventh_seal_and_new_creation.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-08_the_seventh_seal_and_new_creation.pdf",""
"en","en-19980508-2",3030,"Being born with the Seventh Seal","1998-05-08","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-45.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-08_being_born_seventh_seal.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-08_being_born_seventh_seal.pdf",""
"en","en-19980507-3",3032,"The Power of the Seventh Seal","1998-05-07","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-47.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-07_the_power_seventh_seal.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-07_the_power_seventh_seal.pdf",""
"en","en-19980506-1",3033,"The Exodus of the Seventh Seal","1998-05-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17502.png","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-06_the_exodus_seventh_seal.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-06_the_exodus_seventh_seal.pdf",""
"en","en-19980505-1",3035,"The Light of the Seventh Seal","1998-05-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-51.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-05_the_light_seventh_seal.pdf",""
"en","en-19980505-2",3034,"The Victory of the Seventh Seal","1998-05-05","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17500.png","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-05_the_victory_seventh_seal.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-05_the_victory_seventh_seal.pdf",""
"en","en-19980504-4",3037,"The Works of the Seventh Seal","1998-05-04","4","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-55.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-04_the_works_seventh_seal.mp3","",""
"en","en-19980504-3",3036,"The Message of the Seventh Seal","1998-05-04","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-56.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-04_the_message_seventh_seal.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-04_the_message_seventh_seal.pdf",""
"en","en-19980503-3",3040,"The Almighty God veiled and revealed in His Angel Messenger","1998-05-03","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17492.png","","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-03_the_almighty_god_veiled_and_revealed_his_angel_messenger.pdf",""
"en","en-19980503-2",3039,"The path of the Seventh Seal under the mystery of the establishment of the Kingdom of Christ","1998-05-03","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-53.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-03_the_path_seventh_seal_under_mystery_establishment_kingdom_christ.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-03_the_path_seventh_seal_under_mystery_establishment_kingdom_christ.pdf",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-19980501-2",3041,"The Angel with the Seal of the living God","1998-05-01","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17488.png","","","https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-01_the_angel_seal_living_god.pdf",""
"en","en-19980430-3",3043,"The Book opened in Heaven","1998-04-30","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17485.png","","","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-30_the_book_opened_heaven.pdf",""
"en","en-19980430-1",3042,"The Light of the Seventh Seal","1998-04-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17486.png","","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-30_the_light_seventh_seal.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-30_the_light_seventh_seal.pdf",""
"en","en-19980427-6",3044,"The position of the Seventh Seal in the Temple of God","1998-04-27","6","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17474.png","","","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-27_the_position_seventh_seal_temple_god.pdf",""
"en","en-19980426-1",3047,"The Seventh Seal identified in the Scripture","1998-04-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-26_the_seventh_seal_identified_scripture.pdf",""
"en","en-19980426-3",3046,"Persevering in the blessing of the Seventh Seal","1998-04-26","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-20-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-26_persevering_blessing_seventh_seal.pdf",""
"en","en-19980426-2",3045,"Gathering with the Seventh Seal","1998-04-26","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-1.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-26_gathering_seventh_seal.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-26_gathering_seventh_seal.pdf",""
"en","en-19980425-1",3049,"The Seventh Seal and the adoption of the children of God","1998-04-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-25_the_seventh_seal_and_adoption_children_god.pdf",""
"en","en-19980425-2",3048,"Bringing forth fruit to the maximum with the Seventh Seal","1998-04-25","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-22-1.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-25_bringing_forth_fruit_maximum_seventh_seal.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-25_bringing_forth_fruit_maximum_seventh_seal.pdf",""
"en","en-19980422-4",3050,"The Seventh Seal and the Eternal Youth","1998-04-22","4","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-24.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-22_the_seventh_seal_and_eternal_youth.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-22_the_seventh_seal_and_eternal_youth.pdf",""
"en","en-19980421-3",3052,"The Seventh Seal and the mighty men of the Son of David","1998-04-21","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-26-1.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-21_the_seventh_seal_and_mighty_men_son_david.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-21_the_seventh_seal_and_mighty_men_son_david.pdf",""
"en","en-19980421-2",3051,"The Blessings of the Seventh Seal","1998-04-21","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-27-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-21_the_blessings_seventh_seal.pdf",""
"en","en-19980420-2",3055,"The fruits of the new birth in the light of the Seventh Seal","1998-04-20","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-29-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-20_the_fruits_new_birth_light_seventh_seal.pdf",""
"en","en-19980420-1",3054,"The things that will happen when the Seventh Seal comes to an end","1998-04-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-30-1.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-20_the_things_will_happen_when_seventh_seal_comes_end.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-20_the_things_will_happen_when_seventh_seal_comes_end.pdf",""
"en","en-19980420-3",3053,"The Calling of the Seventh Seal","1998-04-20","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-28.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-20_the_calling_seventh_seal.pdf",""
"en","en-19980419-2",3057,"The definitive victory of the Seventh Seal over Satan","1998-04-19","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-36-1.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-19_the_definitive_victory_seventh_seal_over_satan.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-19_the_definitive_victory_seventh_seal_over_satan.pdf",""
"en","en-19980419-3",3056,"The Watchman of the Last Day with the Seventh Seal in his hand","1998-04-19","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-31-1.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-19_the_watchman_last_day_seventh_seal_his_hand.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-19_the_watchman_last_day_seventh_seal_his_hand.pdf",""
"en","en-19980418-2",3059,"The Seventh Seal and the elect of the Last Day","1998-04-18","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-32-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-18_the_seventh_seal_and_elect_last_day.pdf",""
"en","en-19980418-1",3058,"The Seventh Seal finishing the construction of the Mystical Body of Christ","1998-04-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-33-1.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-18_the_seventh_seal_finishing_construction_mystical_body_christ.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-18_the_seventh_seal_finishing_construction_mystical_body_christ.pdf",""
"en","en-19980417-1",3925,"The Voice of God in the Last Day","1998-04-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17449-6.png","","","",""
"en","en-19980417-3",3060,"The Seventh Seal and the Safety Zone for the elect of the Last Day","1998-04-17","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-34-1.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-17_the_seventh_seal_and_safety_zone_elect_last_day.pdf",""
"en","en-19980415-2",3061,"The mystery of the Second Coming of Christ and North America's destiny in the Last Day","1998-04-15","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17443-2.png","","","",""
"en","en-19980414-2",3062,"The Seventh Seal and the American Nation","1998-04-14","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17441.png","","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-14_the_seventh_seal_and_american_nation.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-14_the_seventh_seal_and_american_nation.pdf",""
"en","en-19980412-1",4911,"The Mystery of the Resurrection of the Lord Jesus Christ","1998-04-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17440.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/04/ENG19980412_the_mystery_of_the_resurrection_of_the_lord_jesus_christ.mp3","",""
"en","en-19980410-2",4906,"The Mystery of the Death of the Lord Jesus Christ","1998-04-10","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17435.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/04/ENG19980418_the_mystery_of_the_death_of_the_lord_jesus_christ.mp3","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-19980405-1",3063,"The triumphal entry of Jesus into Jerusalem","1998-04-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17432-1.png","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-19980330-1",3066,"The Rapture of the Seventh Seal","1998-03-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17429.png","","","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-30_the_rapture_seventh_seal.pdf",""
"en","en-19980329-2",3068,"The Seventh Seal and the Divine Love","1998-03-29","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-29_the_seventh_seal_and_divine_love.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-29_the_seventh_seal_and_divine_love.pdf",""
"en","en-19980329-1",3067,"The Victory of the Seventh Seal","1998-03-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-29_the_victory_seventh_seal.pdf",""
"en","en-19980328-1",3069,"The Voice of Christ under the Seventh Seal","1998-03-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-20.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-28_the_voice_christ_under_seventh_seal.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-28_the_voice_christ_under_seventh_seal.pdf",""
"en","en-19980327-1",3070,"The Seventh Seal and the time of mercy and judgment","1998-03-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17424.png","","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-27_the_seventh_seal_and_time_mercy_and_judgment.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-27_the_seventh_seal_and_time_mercy_and_judgment.pdf",""
"en","en-19980325-1",3071,"The Seventh Seal and the last revival of the elect","1998-03-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17422.png","","","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-25_the_seventh_seal_and_last_revival_elect.pdf",""
"en","en-19980324-1",3072,"Time to awaken with the Message of the Seventh Seal","1998-03-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17421.png","","","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-24_time_awaken_message_seventh_seal.pdf",""
"en","en-19980323-2",3924,"The Message of the Gospel of the Kingdom in the Last Day","1998-03-23","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17419-3.png","","","",""
"en","en-19980320-1",3073,"The Seventh Seal and the restoration of the Kingdom of God","1998-03-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17413.png","","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-20_the_seventh_seal_and_restoration_kingdom_god.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-20_the_seventh_seal_and_restoration_kingdom_god.pdf",""
"en","en-19980318-2",3074,"The Seventh Seal and the sign of the end of the world","1998-03-18","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/05/youtube_thumbnail_17410.png","","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-18_the_seventh_seal_and_sign_end_world.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-18_the_seventh_seal_and_sign_end_world.pdf",""
"en","en-19980317-2",3075,"The mysteries contained in the Seventh Seal","1998-03-17","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-23.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-17_the_mysteries_contained_seventh_seal.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-17_the_mysteries_contained_seventh_seal.pdf",""
"en","en-19980314-2",3076,"The Seventh Seal putting an end to all things","1998-03-14","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-26.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-14_the_seventh_seal_putting_end_all_things.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-14_the_seventh_seal_putting_end_all_things.pdf",""
"en","en-19980311-2",3077,"The Seventh Seal and the Seven Thunders","1998-03-11","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-31.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-11_the_seventh_seal_and_seven_thunders.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-11_the_seventh_seal_and_seven_thunders.pdf",""
"en","en-19980309-2",3078,"The Seventh Seal and the Age of the Cornerstone","1998-03-09","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-32.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-09_the_seventh_seal_and_age_cornerstone.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-09_the_seventh_seal_and_age_cornerstone.pdf",""
"en","en-19980308-2",3079,"The Seventh Seal and the spirit of Moses and Elijah","1998-03-08","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-35.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-08_the_seventh_seal_and_spirit_moses_and_elijah.pdf",""
"en","en-19980306-3",3081,"The Seventh Seal searching for the elect","1998-03-06","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-33.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-06_the_seventh_seal_searching_elect.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-06_the_seventh_seal_searching_elect.pdf",""
"en","en-19980306-1",3080,"The Explosions of the Seventh Seal","1998-03-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17388.png","","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-06_the_explosions_seventh_seal.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-06_the_explosions_seventh_seal.pdf",""
"en","en-19980304-3",3082,"Working under the Seventh Seal","1998-03-04","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17380.png","","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-04_working_under_seventh_seal.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-04_working_under_seventh_seal.pdf",""
"en","en-19980302-1",3083,"The Light of the Seventh Seal","1998-03-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17377.png","","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-02_the_light_seventh_seal.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-02_the_light_seventh_seal.pdf",""
"en","en-19980301-3",3084,"The Coming of the Kingdom: The time and the territory","1998-03-01","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17374-1.png","","","",""
"en","en-19980226-1",3085,"The Seventh Seal and the Reclaiming Work","1998-02-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17368.png","","https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-26_the_seventh_seal_and_reclaiming_work.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-26_the_seventh_seal_and_reclaiming_work.pdf",""
"en","en-19980224-1",3086,"The Seventh Seal gathering the elect of God","1998-02-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17365.png","","https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-24_the_seventh_seal_gathering_elect_god.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-24_the_seventh_seal_gathering_elect_god.pdf",""
"en","en-19980222-2",3087,"The judgments in the Seventh Seal","1998-02-22","2","","","https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-22_the_judgments_seventh_seal.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-22_the_judgments_seventh_seal.pdf",""
"en","en-19980220-2",3088,"The Seventh Seal: A Door opened in Heaven","1998-02-20","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-1-1.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-20_the_seventh_seal_door_opened_heaven.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-20_the_seventh_seal_door_opened_heaven.pdf",""
"en","en-19980219-2",3923,"The Door of God's House","1998-02-19","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17357-2.png","","","",""
"en","en-19980217-3",3089,"The Seventh Seal: The Coming of the Son of Man with His Angels","1998-02-17","3","","","","https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-17_the_seventh_seal_coming_son_man_his_angels.pdf",""
"en","en-19980216-2",3090,"The Seventh Seal: The Second Coming of Christ","1998-02-16","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-5.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-16_the_seventh_seal_second_coming_christ.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-16_the_seventh_seal_second_coming_christ.pdf",""
"en","en-19980215-2",3091,"The Leadership of the Seventh Seal","1998-02-15","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-15_the_leadership_seventh_seal.pdf",""
"en","en-19980213-3",3092,"The Seventh Seal and the Rapturing Faith","1998-02-13","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17345.png","","","https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-13_the_seventh_seal_and_rapturing_faith.pdf",""
"en","en-19980212-2",3093,"The Stages of the Seventh Seal","1998-02-12","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-12_the_stages_seventh_seal.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-12_the_stages_seventh_seal.pdf",""
"en","en-19980211-1",3094,"The Seventh Seal throughout the entire Scripture","1998-02-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12.jpg","","","https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-11_the_seventh_seal_throughout_entire_scripture.pdf",""
"en","en-19980210-1",3095,"The secrets kept in the Seventh Seal","1998-02-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13.jpg","","https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-10_the_secrets_kept_seventh_seal.mp3","https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-10_the_secrets_kept_seventh_seal.pdf",""
"en","en-19980209-1",3922,"The mystery of the Last Day's evangelization","1998-02-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17338-3.png","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-19980207-1",3097,"The Work of the Harvest at the end of the world","1998-02-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17335-2.png","","","",""
"en","en-19980206-1",3098,"The God of Abraham","1998-02-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17334-1.png","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-19980127-2",5047,"Gods Fishermen at the Last Day","1998-01-27","2","https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_17330.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1998/01/1998-01-27-2-gods_fisherman_at_the_last_day.mp3","",""
"en","en-19980125-1",5058,"The Mystery of the Fulfillment of the Second Coming of Christ","1998-01-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_17325.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1998/01/1998_01_25_1_The_Mystery_of_the_fulfillment_of_the_Second_Coming.mp3","",""
"en","en-19980124-1",3100,"The mystery of a change of dispensation","1998-01-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17324-1.png","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-20260530-undefined",,,,,"","","","",""
"en","en-19971228-2",4123,"The rapture of the Church","1997-12-28","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17304.png","","","",""
"en","en-19971228-1",4102,"The New Temple","1997-12-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17305.png","","","",""
"en","en-19971226-1",4091,"The life of the forerunner and his Message","1997-12-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17303.png","","","",""
"en","en-19971224-1",4083,"The mystery of the date of the birth of Jesus","1997-12-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17302.png","","","",""
"en","en-19971221-2",4156,"The Mystery of the Marriage Supper of the Lamb","1997-12-21","2","https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17300.png","","","",""
"en","en-19971221-1",4163,"The Mystery of the Marriage of the Lamb","1997-12-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17301.png","","","",""
"en","en-19971220-1",4167,"The Mystery of the Garment of the Marriage of the Lamb","1997-12-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17299-2.png","","","",""
"en","en-19971217-1",4171,"The mystery of the end of the world and the things that will happen in the Last Day","1997-12-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17298.png","","","",""
"en","en-19971214-1",4939,"Things That Can Only Be Fulfilled at the Last Day","1997-12-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17296.png","","https://lgccc-conferences.ewr1.vultrobjects.com/1997/1997-12-14-things_that_can_only_be_fulfilled_at_the_last_day.mp3","",""
"en","en-19971207-2",4883,"The Mystery of the Year of Jubilee","1997-12-07","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17289.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/03/ENG19971207-2-the-mystery-of-the-year-of-jubilee.mp3","",""
"en","en-19971205-2",4819,"The Coming of the Son of Man at the Last Day","1997-12-05","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17286.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/02/ENG19971205-2-the-coming-of-the-son-of-man-at-the-last-day.mp3","",""
"en","en-19971202-1",4805,"The Mystery of the General Assembly and Church of the Firstborn Written in Heaven","1997-12-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17281.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/12/ENG19971202ENG19971202_the_mystery_of_the_general_assembly_and_church.mp3","",""
"en","en-19971201-1",4795,"The Mystery of the Light That Scatters Darkness","1997-12-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17280.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/02/ENG19971201-the-mystery-of-the-light-that-scatters-darkness.mp3","",""
"en","en-19971130-2",4785,"The Mystery of the Coming of the Son of Man With His Angels in the West","1997-11-30","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17278.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/01/ENG19971130_2_the_mystery_of_the_coming_of_the_son_of_man_with_his.mp3","",""
"en","en-19971126-2",4772,"The Mystery of the four kinds of ground","1997-11-26","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17272.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/01/ENG19971126_2_the_mystery_of_he_four_kinds_of_ground.mp3","",""
"en","en-19971125-1",4750,"The Mystery of the Father of Creation","1997-11-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17271.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/01/ENG19971025-the-mystery-of-the-father-of-creation.mp3","",""
"en","en-19971125-2",4760,"The Mystery of the Good Ground That Is Blessed","1997-11-25","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17270.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/01/ENG19971102_The_Mystery_of_the_Good_Ground_That_Is_Blessed_web.mp3","",""
"en","en-19971124-1",4740,"The Mystery of the West","1997-11-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17269.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/12/ENG19971124-the-mystery-of-the-west.mp3","",""
"en","en-19971123-1",4730,"The Mystery of Gabriel and Michael at the Last Day","1997-11-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/05/youtube_thumbnail_17268.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/12/ENG19971123_2_the_mystery_of_gabriel_and_michael_at_the_last_day.mp3","",""
"en","en-19971123-1",5006,"The Mystery of Moses, Elijah, and Jesus","1997-11-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/05/youtube_thumbnail_17268.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/11/1997-11-23-1-the_mystery_of_moses_elijah_and_jesus.mp3","",""
"en","en-19971122-3",4852,"The Mystery of the Harvesters of the Last Day","1997-11-22","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17264.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/03/ENG19971122-the-mystery-of-the-harvesters-of-the-last-day.mp3","",""
"en","en-19971122-4",4873,"The Mystery of Gods Masterpiece","1997-11-22","4","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17263.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/03/ENG19971122-4-the-mystery-of-gods-masterpiece-booklet.mp3","",""
"en","en-19971121-1",4862,"The Mystery of the Coming of the Lord as the Sun of Righteousness","1997-11-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17262.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/03/ENG19971121_the_mystery_of_the_coming_of_the_lord_as_the_sun_of.mp3","",""
"en","en-19971120-1",4720,"The Mystery of His Coming as a Thief in the Night","1997-11-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17261.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/12/ENG19971120_the_mystery_of_his_coming_as_a_thief_in_the_night.mp3","",""
"en","en-19971119-1",4842,"The Mystery of the Angels of the Harvest","1997-11-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17260.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/03/ENG1997119-the-mystery-of-the-angels-of-the-harvest.mp3","",""
"en","en-19971118-1",4847,"The Mystery of the Fullness of the Gentiles","1997-11-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17259.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/03/ENG19971118-the-mystery-of-the-fullness-of-the-gentiles.mp3","",""
"en","en-19971117-1",4708,"The Mystery of the Transformation and the Catching Away","1997-11-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17258.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/11/ENG19971117_the_mystery_of_the_transformation_and_the_catching_away.mp3","",""
"en","en-19971116-1",4836,"The Mystery of the Coming of the Lord in the Clouds","1997-11-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17257.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/02/ENG19971116_the_mystery_of_the_coming_of_the_lord_in_the_clouds.mp3","",""
"en","en-19971115-3",4826,"The Mystery of the Three Bibles","1997-11-15","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17252.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/02/ENG19971115-3-the-mystery-of-the-three-bibles.mp3","",""
"en","en-19971114-4",4814,"The Mystery of the Sun, the Moon, and the Stars Indicating the Time","1997-11-14","4","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17248.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/02/ENG19971114_4_the_mystery_of_the_sun_the_moon_and_the_stars_indicating.mp3","",""
"en","en-19971113-1",4800,"The Mystery of the Watches","1997-11-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17247.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/02/ENG19971113-the-mystery-of-the-watches.mp3","",""
"en","en-19971112-1",4790,"The Mystery of the Dimensions","1997-11-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17246.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/01/ENG19971112-the-mystery-of-the-dimensions.mp3","",""
"en","en-19971109-1",4831,"Discerning Gods Thought at the Last Day","1997-11-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17244.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/02/ENG19971109-discerning-gods-thought-at-the-last-day.mp3","",""
"en","en-19971109-2",4696,"Opening the Understanding With the Scriptures","1997-11-09","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17243.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/12/ENG199709-2-opening-the-understanding-with-the-scriptures..mp3","",""
"en","en-19971108-2",4684,"The Mystery Of Being Taught of God","1997-11-08","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17240.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/11/ENG19971108-2-THE-MYSTERY-OF-BEING-TAUGHT-OF-GOD.mp3","",""
"en","en-19971107-1",4674,"The Ripened Wheat","1997-11-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17239.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/11/ENG19971107-the-ripened-wheat.mp3","",""
"en","en-19971106-1",4664,"The Mystery of the Rewards to the Overcomers","1997-11-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17236.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/11/ENG19971106-the-mystery-of-the-rewards-to-the-overcomers.mp3","",""
"en","en-19971106-2",4949,"The Mystery of the Rewards","1997-11-06","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17235.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/04/1997-11-06-2-the_mystery_of_the_rewards.mp3","",""
"en","en-19971104-1",4780,"The Mystery of Gods Glory Manifested","1997-11-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17231.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/01/ENG19971104-the-mystery-of-gods-glory-manifested.mp3","",""
"en","en-19971103-3",4755,"The Mystery of Divine Simplicity","1997-11-03","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17228.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/01/ENG19971103-3-the-mystery-of-divine-simplicity.mp3","",""
"en","en-19971102-1",4765,"The Mystery of the Seven Seals of Revelation, Chapter 5","1997-11-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17227.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/01/ENG19971102_the_mystery_of_the_seven_seals_of_revelation_chapter.mp3","",""
"en","en-19971031-1",4629,"Prophecies Fulfilled at the Last Day","1997-10-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17223.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/10/ENG19971031-prophecies-fulfilled-at-the-last-day.mp3","",""
"en","en-19971031-2",4653,"Under the Wings of the Cherubims","1997-10-31","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17222.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/11/ENG19971031-2-under-the-wings-of-the-cherubims.mp3","",""
"en","en-19971031-3",4745,"The Mystery of the Seed of the Creative Word","1997-10-31","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17221.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/01/ENG19971031-3-the-mystery-of-the-seed-of-the-creative-word.mp3","",""
"en","en-19971030-2",4669,"The Mystery of the Eighth Star That Is Not Seen in Revelation 1:20","1997-10-30","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17219.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/11/ENG19971030_2_the_mystery_of_the_eighth_star_that_is_not_seen_in.mp3","",""
"en","en-19971029-2",4615,"The Mystery of Godliness","1997-10-29","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17217.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/10/ENG19971029-2-the-mystery-of-godliness.mp3","",""
"en","en-19971029-1",4735,"The Mystery of the Firstborn of Heaven","1997-10-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17218.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/12/ENG19971029-the-mystery-of-the-firstborn-of-heaven.mp3","",""
"en","en-19971028-2",4593,"The Fountain of the Water of Life","1997-10-28","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_64046.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/10/ENG19970928-the-mystery-of-the-birthright-blessings-fix.mp3","",""
"en","en-19971026-2",4598,"The Mystery of the Cherubims of Gold and the Cherubims of Olive Tree","1997-10-26","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17212.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/10/ENG19971026_2_ENG19971026_2_the_mystery_of_the_cherubims_of_gold.mp3","",""
"en","en-19971025-1",4576,"The Mystery of the Ark of the Covenant and Its Content","1997-10-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_64021.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/10/ENG19971025_2_the_mystery_of_the_ark_of_the_covenant_and_its_content.mp3","",""
"en","en-19971021-4",4565,"The Mystery of the Angel With the Everlasting Gospel","1997-10-21","4","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17201.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/09/ENG19971021_4_the_mystery_of_the_angel_with_the_everlasting_gospel.mp3","",""
"en","en-19971020-1",4725,"The Mystery of the Millennial Kingdom","1997-10-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17200.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/12/ENG19971020-the-mystery-of-the-millennial-kingdom.mp3","",""
"en","en-19971019-2",4991,"The Mystery of the Names Written in Heaven","1997-10-19","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/05/youtube_thumbnail_17198.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/10/1997-10-19-2-the_mystery_of_the_names_written_in_heaven.mp3","",""
"en","en-19971017-2",4555,"The Mystery of the Seven Thunders of Revelation, Chapter 10","1997-10-17","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17194.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/09/ENG19971017_2_the_mystery_of_the_seven_thunders_of_revelation_chapter.mp3","",""
"en","en-19971016-2",4544,"The Mystery of the Fourth Watch","1997-10-16","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17192.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/09/AUDIO-2022-09-09-12-56-32.mp3","",""
"en","en-19971015-2",4534,"The Mystery of the New Body","1997-10-15","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17190.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/09/ENG19971015-2-The-Mystery-of-the-New-Body.mp3","",""
"en","en-19971014-2",4715,"The Mystery of the Times and the Seasons Under the Fathers Power","1997-10-14","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/QmIi8R7v-youtube_thumbnail_17188.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/12/ENG19971014_2_the_mystery_of_the_times_and_the_seasons_under_the.mp3","",""
"en","en-19971014-1",4703,"The Mystery of the Dimensions","1997-10-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17189.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/12/ENG19971014-the-mystery-of-the-dimensions.mp3","",""
"en","en-19971013-2",4691,"The Mystery of the Half Hour of Silence in Heaven","1997-10-13","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/YEZDfuU7-youtube_thumbnail_17186.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/11/ENG19971013_2_the_mystery_of_the_half_hour_of_silence_in_heaven.mp3","",""
"en","en-19971012-1",5070,"The Mystery of the Fifth Horse of Revelation","1997-10-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_17185.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/10/1997-10-12-1-the_mystery_of_the_fifth_horse_of_revelation-low.mp3","",""
"en","en-19971012-2",4971,"The Mystery of the Angel with the Seal of the Living God","1997-10-12","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/05/youtube_thumbnail_17184.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/05/1997-10-12-2-the_mystery_of_the_angel_with_the_seal_of_the_living.mp3","",""
"en","en-19971010-1",4679,"The Mystery of the Faith of the Mighty Men and Women of the Son of David","1997-10-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17182.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/11/ENG19971010_the_mystery_of_the_faith_of_the_mighty_men_and_women.mp3","",""
"en","en-19971009-1",4659,"The Mysteries That Are Already Fulfilled, the Mysteries That Are Being Fulfilled, and the Mysteries That Will Be Fulfilled","1997-10-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17181.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/11/ENG19971009_the_mysteries_that_are_already_fulfilled_the_mysteries.mp3","",""
"en","en-19971008-1",4603,"The Mysteries of God That Are Being Fulfilled Today","1997-10-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17180.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/10/ENG19971008_the_mysteries_of_god_that_are_being_fulfilled_today.mp3","",""
"en","en-19971005-2",4634,"The Mystery of the Book That John Ate","1997-10-05","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17178.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/10/ENG19971005-2-the-mystery-of-the-book-that-john-ate.mp3","",""
"en","en-19971005-1",4620,"The Mystery of What John Heard but Couldnt Write","1997-10-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17179.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/10/ENG19971005_the_mystery_of_what_john_heard_but_couldnt_write_Fix.mp3","",""
"en","en-19971003-1",4609,"The mystery of the Kingdom of God that all the elect must know","1997-10-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17177.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/10/ENG19971003_the_mystery_of_the_kingdom_of_god_that_all_the_elect.mp3","",""
"en","en-19970829-1",4415,"The Mystery of the Spiritual Food in Due Season","1997-08-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17133.png","","http://ewr1.vultrobjects.com/lgccc-conferences/en/ENG19970829_the_mystery_of_the_spiritual_food_in_due_season_web.mp3","",""
"en","en-19970928-1",4581,"The Mystery of the Birthright Blessings","1997-09-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17176.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/09/ENG19970928-the-mystery-of-the-birthright-blessings-fix.mp3","",""
"en","en-19970924-1",4570,"The Mystery of the Word of Prophecy","1997-09-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17173.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/09/ENG19970924-the-mystery-of-the-word-of-prophecy.mp3","",""
"en","en-19970922-1",4560,"The Mystery of the Harvest at the End of the World","1997-09-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17171.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/09/ENG19970922_the_mystery_of_the_harvest_at_the_end_of_the_world.mp3","",""
"en","en-19970921-2",4523,"The Mystery of the East and the West","1997-09-21","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17169.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/08/ENG19970921-2.-the-mystery-of-the-east-and-the-west.mp3","",""
"en","en-19970920-2",4550,"The Mystery of the Seventh Seal","1997-09-20","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17167.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/09/ENG19970920-2-the-mystery-of-the-seventh-seal.mp3","",""
"en","en-19970920-1",4933,"The Mystery of Faith","1997-09-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17168.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/04/1997-09-20_1_audiocassette-el_misterio_de_la_fe.mp3","",""
"en","en-19970919-1",4504,"The mystery of the lamb and the lion","1997-09-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17166.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/08/ENG19970919-the-mystery-of-the-lamb-and-the-lion.mp3","",""
"en","en-19970918-1",4494,"The Heavenly Jerusalem and the Earthly Jerusalem","1997-09-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17165.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/08/ENG19970918-the-heavenly-jerusalem-and-the-earthly-jerusalem.mp3","",""
"en","en-19970917-1",4539,"The Mystery of the Church of the Lord Jesus Christ","1997-09-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17164.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/09/ENG19970917_the_mystery_of_the_church_of_the_lord_jesus_christ.mp3","",""
"en","en-19970916-1",4528,"The Mystery of the Lamb With the Seven Horns and the Seven Eyes","1997-09-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17163.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/08/ENG19970916_the_mystery_of_the_lamb_with_the_seven_horns_and_the.mp3","",""
"en","en-19970915-1",4512,"The Mystery of the Word of God: Food in Due Season","1997-09-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17162.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/09/ENG19970915_the_mystery_of_the_word_of_god_food_in_due_season_fix.mp3","",""
"en","en-19970914-1",4469,"The Mystery of the Incarnation of the Word","1997-09-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17161.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/07/ENG19970914-the-mystery-of-the-incarnation-of-the-word.mp3","",""
"en","en-19970914-2",4482,"The Mystery of the Word of Blessing and Judgment","1997-09-14","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17160.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/09/ENG19970914_2_the_mystery_of_the_word_of_blessing_and_judgment.mp3","",""
"en","en-19970912-2",4499,"The Mystery of the Wheat and the Tares","1997-09-12","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17156.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/08/ENG19970912-2-the-mystery-of-the-wheat-and-the-tares.mp3","",""
"en","en-19970911-1",4488,"The Mystery of the Foolish Virgins and the Wise Virgins","1997-09-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17155.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/08/ENG19970911_the_mystery_of_the_foolish_virgins_and_the_wise_virgins.mp3","",""
"en","en-19970910-3",4477,"The Mystery of the Fullness of the Gentiles","1997-09-10","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17152.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/07/ENG19970910-3-the-mystery-of-the-fullness-of-the-gentiles.mp3","",""
"en","en-19970909-1",4460,"The Mystery of the Year of Jubilee","1997-09-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17151.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/07/ENG19970909-the-mystery-of-the-year-of-jubilee.mp3","",""
"en","en-19970908-1",4465,"The Mystery of the Fathers Business","1997-09-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17150.png","","","",""
"en","en-19970907-1",4445,"The Mystery of the Blood of Christ","1997-09-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17149.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/07/ENG19970907-the-mystery-of-the-blood-of-christ-boklet.mp3","",""
"en","en-19970907-2",4455,"The Mystery of the Day of Atonement","1997-09-07","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17148.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/07/ENG19970907-2-the-mystery-of-the-day-of-atonement.mp3","",""
"en","en-19970906-1",4431,"The Mystery of Redemption","1997-09-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17147.png","","http://ewr1.vultrobjects.com/lgccc-conferences/en/ENG19970906-the-mystery-of-redemption.mp3","",""
"en","en-19970905-2",4405,"The Mystery of the Kingdom of God Coming in Power and Glory","1997-09-05","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17145.png","","http://ewr1.vultrobjects.com/lgccc-conferences/en/ENG19970905_2_the_mystery_of_the_kingdom_of_god_coming_in_power.mp3","",""
"en","en-19970904-1",4410,"The Mystery of the Restoration of All Things","1997-09-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17144.png","","http://ewr1.vultrobjects.com/lgccc-conferences/en/ENG19970904-the-mystery-of-the-restoration-of-all-things.mp3","",""
"en","en-19970902-2",4393,"The Mystery of the Parables","1997-09-02","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17140.png","","http://ewr1.vultrobjects.com/lgccc-conferences/en/ENG19970902-2-the-mystery-of-the-parables.mp3","",""
"en","en-19970901-2",4382,"The Mystery of the Fulfilled Prophecy","1997-09-01","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17138.png","","http://ewr1.vultrobjects.com/lgccc-conferences/en/ENG19970901-2-the-mystery-of-the-fulfilled-prophecy.mp3","",""
"en","en-19970831-1",4918,"The Mystery of the New Creation","1997-08-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17136.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/04/1997-08-31-the_mistery_of_the_new_creation-mexico.mp3","",""
"en","en-19970830-2",4450,"The Mystery of the Tree of Life and the Tree of the Knowledge of Good and Evil","1997-08-30","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17135.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/07/ENG19970830_2_the_mystery_of_the_tree_of_life_and_of_the_tree_of.mp3","",""
"en","en-19970830-1",4438,"The Mystery of the Order of Melchizedek","1997-08-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17134.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/08/ENG19970830-the-mystery-of-the-order-of-melchizedek-.mp3","",""
"en","en-19970829-3",4888,"The Mystery of the Seven Stars and the Seven Candlesticks","1997-08-29","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17131.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/03/ENG19970829_3_the_mystery_of_the_seven_stars_and_the_seven_candlesticks.mp3","",""
"en","en-19970829-2",4424,"The Mystery of the Rapture of the Elect","1997-08-29","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17132.png","","https://ewr1.vultrobjects.com/lgccc-conferences/en/ENG19970829-2-the-mystery-of-the-rapture-of-the-elect.mp3","",""
"en","en-19970828-3",4398,"The Mystery of the Resurrection and the Forty Days","1997-08-28","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17129.png","","https://ewr1.vultrobjects.com/lgccc-conferences/en/ENG19970828_3_the_mystery_of_the_resurrection_and_the_forty_days.mp3","",""
"en","en-19970827-1",4878,"The Revival Brought by the Revelation","1997-08-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17126.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/03/ENG19970827-the-revival-brought-by-the-revelation.mp3","",""
"en","en-19970827-2",4388,"The Mystery of the Transformation","1997-08-27","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17127.png","","https://ewr1.vultrobjects.com/lgccc-conferences/en/ENG19970827-2-the-mystery-of-the-transformation.mp3","",""
"en","en-19970826-1",4377,"The Mystery of the Hidden Manna","1997-08-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17125.png","","http://ewr1.vultrobjects.com/lgccc-conferences/en/ENG19970826-the-mystery-of-the-hidden-manna.mp3","",""
"en","en-19970825-2",4867,"The Mystery of the Coming of the Son of Man","1997-08-25","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17124.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/03/ENG19970825-the-mystery-of-the-coming-of-the-son-of-man.mp3","",""
"en","en-19970824-3",4372,"The mystery of the white horse of Revelation","1997-08-24","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17121.png","","","",""
"en","en-19970824-2",4362,"The secrets under the Seventh Seal","1997-08-24","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17122.png","","","",""
"en","en-19970823-3",4368,"The mystery of the Angel of Jesus at the Last Day","1997-08-23","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_63432.png","","","",""
"en","en-19970823-",4965,"Train Up a Child in the Way He Should Go","1997-08-23","","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/05/youtube_thumbnail_17117.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/05/1997-08-23-1-train_up_a_child_in_the_way_he_should_go.mp3","",""
"en","en-19970822-1",4354,"The mystery of the gathering of the elect","1997-08-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17116.png","","","",""
"en","en-19970821-2",4345,"The mystery of Mount Transfiguration","1997-08-21","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17115.png","","","",""
"en","en-19970821-1",4349,"The mystery of the Trumpet of Jubilee","1997-08-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17114.png","","","",""
"en","en-19970820-1",4341,"The mystery of the open Book","1997-08-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17112.png","","","",""
"en","en-19970819-1",4329,"The mystery of the Seventh Seal","1997-08-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17110.png","","","",""
"en","en-19970818-2",4336,"The two greatest mysteries of the Kingdom of Heaven","1997-08-18","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17109.png","","","",""
"en","en-19970818-1",4307,"The greater mystery of the Kingdom of Heaven","1997-08-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17108.png","","","",""
"en","en-19970817-1",4299,"The mystery of Divine Justice in the Plan of Redemption","1997-08-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17107.png","","","",""
"en","en-19970816-3",4315,"The mystery of the Angel of Jesus","1997-08-16","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17103.png","","","",""
"en","en-19970816-1",5039,"Greetings to Ministers: The House of God","1997-08-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_17102.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/08/1997-08-16-1-greetings_to_ministers_the_house_of_god.mp3","",""
"en","en-19970815-4",4289,"The mystery of the signs in heaven revealing the Lord Jesus Christ in the Last Day","1997-08-15","4","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17098.png","","","",""
"en","en-19970815-2",4324,"The mystery of the fulfillment of the order of the resurrection awaited by those who are to be transformed","1997-08-15","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17101.png","","","",""
"en","en-19970814-2",4278,"The mystery of the signs in heaven","1997-08-14","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17097.png","","","",""
"en","en-19970813-1",4293,"The mystery of the glory of God manifested in His Temple","1997-08-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17093.png","","","",""
"en","en-19970813-3",4311,"The mystery of the Second Coming of Christ with His Angels at the Last Day","1997-08-13","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17094.png","","","",""
"en","en-19970813-2",4303,"The mystery of the Trumpet that sounds at the Last Day","1997-08-13","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17095.png","","","",""
"en","en-19970812-1",4258,"The mystery of the fulfillment of the prophecy","1997-08-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17089.png","","","",""
"en","en-19970812-4",4284,"The mystery of the Great Voice as of a trumpet in the Last Day","1997-08-12","4","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17090.png","","","",""
"en","en-19970812-3",4270,"The Mystery of the Faithful Voice of Jesus Christ in Human Flesh","1997-08-12","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17091.png","","","",""
"en","en-19970811-2",4249,"The mystery of the redemption and the grace to be adopted","1997-08-11","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17088.png","","","",""
"en","en-19970811-1",4264,"The Mystery of the Message of the Angel of Jesus Christ in simplicity","1997-08-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17087.png","","","",""
"en","en-19970810-2",4244,"The secrets of the mystery of the Seventh Seal that God stored away","1997-08-10","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17086.png","","","",""
"en","en-19970810-4",4253,"The mystery of the universe in a clay vessel today","1997-08-10","4","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17084.png","","","",""
"en","en-19970809-5",4239,"The mystery of the hidden Manna given by the faithful and wise shepherd","1997-08-09","5","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17078.png","","","",""
"en","en-19970809-2",4214,"The mystery of the Seven Thunders for the final awakening, transformation and rapture","1997-08-09","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/02/youtube_thumbnail_17081.png","","","",""
"en","en-19970808-3",4208,"The Mystery of the True and Faithful Rider","1997-08-08","3","https://ewr1.vultrobjects.com/lgcc-conferences/2022/02/youtube_thumbnail_17074.png","","","",""
"en","en-19970807-2",4194,"The mystery of the truth and the guidance of the Holy Spirit in the last messenger","1997-08-07","2","https://ewr1.vultrobjects.com/lgcc-conferences/2022/02/youtube_thumbnail_17072.png","","","",""
"en","en-19970807-3",4204,"The mystery of the call of the Lord Jesus Christ and His Bride, from His House, in the Last Day","1997-08-07","3","https://ewr1.vultrobjects.com/lgcc-conferences/2022/02/youtube_thumbnail_17071.png","","","",""
"en","en-19970807-4",4218,"The theophanic and mysterious cloud full of blessings for the firstborn","1997-08-07","4","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/02/youtube_thumbnail_17070.png","","","",""
"en","en-19970806-4",4199,"The mystery of the manifestation of the ministries of Moses and Elijah in the Last Day","1997-08-06","4","https://ewr1.vultrobjects.com/lgcc-conferences/2022/02/youtube_thumbnail_17066.png","","","",""
"en","en-19970806-3",4183,"The mystery of the revelation to understand the mysteries of the Kingdom of Heaven","1997-08-06","3","https://ewr1.vultrobjects.com/lgcc-conferences/2022/02/youtube_thumbnail_17067.png","","","",""
"en","en-19970725-1",4176,"The mysteries of the Kingdom of Heaven being revealed to the Church of the Lord Jesus Christ","1997-07-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2022/02/youtube_thumbnail_17056.png","","","",""
"en","en-19970628-1",4926,"The Strong Wind from the East","1997-06-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17005.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/04/1998-06-28-1-The_Strong_Wind_From_The_East.mp3","",""
"en","en-19970601-1",4958,"Gods Partner of the Last Day","1997-06-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_16975.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/06/1997-06-01-1-gods_partner_of_the_Last_day.mp3","",""
"en","en-19970406-2",5026,"The Second Coming of the Lord Jesus Christ to Earth at the Last Day - Part II","1997-04-06","2","https://ewr1.vultrobjects.com/lgcc-conferences/2023/05/youtube_thumbnail_16914.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/04/1997-04-06-2-the_second_coming_of_the_lord_jesus_christ_to_earth-low.mp3","",""
"en","en-19970404-1",4982,"The Children of God and the End of Time","1997-04-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/05/youtube_thumbnail_16909.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/04/1997-04-04-1-the_children_of_god_and_the_end_of_time.mp3","",""
"en","en-19970323-1",4895,"The Triumphal Entry of the Son of David Into Jerusalem","1997-03-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_16900.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/04/ENG19970323_the_triumphal_entry_of_the_son_of_david_into_jerusalem.mp3","",""
"en","en-19970215-1",5078,"The Fruitful Tree","1997-02-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_16851.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/02/1997-02-15-1-the_fruitful_tree-low.mp3","",""
"en","en-19970214-2",5017,"Gods Last Blessing for This Generation","1997-02-14","2","https://ewr1.vultrobjects.com/lgcc-conferences/2023/05/VS3eZlH3-youtube_thumbnail_16849.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/05/1997-02-14-2-gods_last_blessing_for_this_generation.mp3","",""
"en","en-19970209-2",5065,"The Ministry in the House of the Lord Jesus Christ at the Last Day","1997-02-09","2","https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_16841.png","","","",""
"en","en-19970206-1",5000,"Latin America and the Most Holy Place of Gods Temple","1997-02-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/05/youtube_thumbnail_16837.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/05/1997-02-06-1-latin_america_and_the_most_Holy_place_of_gods_temple.mp3","",""
"en","en-19970112-2",5033,"Time of Jubilee in the House of God","1997-01-12","2","https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_16824.png","","https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/06/1997_01_12_2_Time-of-Jubilee-in-the-House-of-God.mp3","",""
"en","en-19960225-2",4190,"The Son of the Right Hand","1996-02-25","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","","",""
"en","en-19930117-2",4228,"The Keys of the Kingdom","1993-01-17","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","","",""
"en","en-19910621-",4223,"The march of the firstborn","1991-06-21","","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","","",""
"en","en-19910227-1",3108,"Melchisedec visits His people","1991-02-27","1","","","","https://www.carpa.com/sites/default/files/messages/en/1991/02/1991-02-27_melchisedec_visits_his_people.pdf",""
1 locale code id title date activity thumbnail video audio booklet simple
2 en en-20181223-1 2496 Introduction to the topic: The Seventh Seal and the Most Holy Place of the Temple of God 2018-12-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/02/youtube_thumbnail_22090.png https://www.carpa.com/sites/default/files/messages/en/2018/12/2018-12-23_introduction_topic_seventh_seal_and_most_holy_place_temple_god.pdf
3 en en-20181221-1 2497 Introduction to the topic The Seventh Seal and the eternal youth 2018-12-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-118.jpg
4 en en-20181216-1 2498 Introduction to the topic: The Seventh Seal and the mighty men of the Son of David 2018-12-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-119.jpg https://www.carpa.com/sites/default/files/messages/en/2018/12/2018-12-16_introduction_topic_seventh_seal_and_mighty_men_son_david.pdf
5 en en-20181214-1 2499 Introduction to the topic The reign of the Seventh Seal and the children 2018-12-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-120.jpg https://www.carpa.com/sites/default/files/messages/en/2018/12/2018-12-14_introduction_topic_reign_seventh_seal_and_children.pdf
6 en en-20181209-1 2500 Introduction to the topic: The Blessings of the Seventh Seal 2018-12-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg https://www.carpa.com/sites/default/files/messages/en/2018/12/2018-12-09_introduction_topic_blessings_seventh_seal.pdf
7 en en-20181207-1 2501 Introduction to the topic: The calling of the Seventh Seal 2018-12-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-121.jpg https://www.carpa.com/sites/default/files/messages/en/2018/12/2018-12-07_introduction_topic_calling_seventh_seal.pdf
8 en en-20181202-1 2502 Introduction to the topic: The fruits of the new birth in light of the Seventh Seal 2018-12-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-122.jpg https://www.carpa.com/sites/default/files/messages/en/2018/12/2018-12-02_introduction_topic_fruits_new_birth_light_seventh_seal.pdf
9 en en-20181130-1 2503 Introduction to the topic: The things that will happen when the Seventh Seal comes to an end 2018-11-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-171-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/11/2018-11-30_introduction_topic_things_will_happen_when_seventh_seal_comes_end.pdf
10 en en-20181125-1 2504 Introduction to the topic: The Seventh Seal and the American nation 2018-11-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-172-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/11/2018-11-25_introduction_topic_seventh_seal_and_american_nation.pdf
11 en en-20181123-1 2505 Introduction to the topic: The Watchman of the Last Day with the Seventh Seal in his hand 2018-11-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-173-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/11/2018-11-23_introduction_topic_watchman_last_day_seventh_seal_his_hand.pdf
12 en en-20181118-1 2506 Introduction to the topic: The Seventh Seal and the Divine Love 2018-11-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-174-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/11/2018-11-18_introduction_topic_seventh_seal_and_divine_love.pdf
13 en en-20181116-1 2507 Introduction to the topic: The Seventh Seal and the elect of the Last Day 2018-11-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-175-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/11/2018-11-16_introduction_topic_seventh_seal_and_elect_last_day.pdf
14 en en-20181113-1 2508 Condolences for the departure of brother Israel Alvarez Perez 2018-11-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-176-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/11/2018-11-13_condolences_departure_brother_israel_alvarez_perez.pdf
15 en en-20181111-1 2509 Introduction to the topic: The Victory of the Seventh Seal 2018-11-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-177-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/11/2018-11-11_introduction_topic_victory_seventh_seal.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/11/2018-11-11_introduction_topic_victory_seventh_seal.pdf
16 en en-20181109-1 2510 Introduction to the topic The Seventh Seal finishing the construction of the Mystical Body of Christ 2018-11-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-178-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/11/2018-11-09_introduction_topic_seventh_seal_finishing_construction_mystical_body_christ.pdf
17 en en-20181104-1 2511 Introduction to the topic: The Revelation and the Angel of Jesus 2018-11-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg https://www.carpa.com/sites/default/files/messages/en/2018/11/2018-11-04_introduction_topic_revelation_and_angel_jesus.pdf
18 en en-20181102-1 2512 Introduction to the topic: The Seventh Seal and the safety zone for the elect of the Last Day 2018-11-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-179-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/11/2018-11-02_introduction_topic_seventh_seal_and_safety_zone_elect_last_day.pdf
19 en en-20181028-1 2513 Introduction to the topic: The Seventh Seal and the day and the hour of His Coming 2018-10-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-132.jpg https://www.carpa.com/sites/default/files/messages/en/2018/10/2018-10-28_introduction_topic_seventh_seal_and_day_and_hour_his_coming.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/10/2018-10-28_introduction_topic_seventh_seal_and_day_and_hour_his_coming.pdf
20 en en-20181026-1 2514 Introduction to the topic: The Seventh Seal and the Mercy of God for the last time 2018-10-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg https://www.carpa.com/sites/default/files/messages/en/2018/10/2018-10-26_introduction_topic_seventh_seal_and_mercy_god_last_time.pdf
21 en en-20181021-1 2515 Introduction to the topic: The Seventh Seal and the Three Witnesses 2018-10-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-133-2.jpg https://www.carpa.com/sites/default/files/messages/en/2018/10/2018-10-21_introduction_topic_seventh_seal_and_three_witnesses.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/10/2018-10-21_introduction_topic_seventh_seal_and_three_witnesses.pdf
22 en en-20181019-1 2516 Introduction to the topic: The rapture of the Seventh Seal 2018-10-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-134-2.jpg https://www.carpa.com/sites/default/files/messages/en/2018/10/2018-10-19_introduction_topic_rapture_seventh_seal.pdf
23 en en-20181014-1 2517 Introduction to the topic: The Voice of Christ under the Seventh Seal 2018-10-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-135-2.jpg https://www.carpa.com/sites/default/files/messages/en/2018/10/2018-10-14_introduction_topic_voice_christ_under_seventh_seal.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/10/2018-10-14_introduction_topic_voice_christ_under_seventh_seal.pdf
24 en en-20181012-1 2518 Introduction to the topic: Time to awaken with the Message of the Seventh Seal 2018-10-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-136-2.jpg https://www.carpa.com/sites/default/files/messages/en/2018/10/2018-10-12_introduction_topic_time_awaken_message_seventh_seal.pdf
25 en en-20181007-1 2519 Introduction to the topic: The Seventh Seal and the time of mercy and judgment 2018-10-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-137-2.jpg https://www.carpa.com/sites/default/files/messages/en/2018/10/2018-10-07_introduction_topic_seventh_seal_and_time_mercy_and_judgment.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/10/2018-10-07_introduction_topic_seventh_seal_and_time_mercy_and_judgment.pdf
26 en en-20181005-1 2520 Introduction to the topic: The Seventh Seal and the restoration of the Throne of David 2018-10-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-138-2.jpg https://www.carpa.com/sites/default/files/messages/en/2018/10/2018-10-05_introduction_topic_seventh_seal_and_restoration_throne_david.pdf
27 en en-20180930-1 2521 Introduction to the topic: The Seventh Seal and the only hope of the Church 2018-09-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg https://www.carpa.com/sites/default/files/messages/en/2018/09/2018-09-30_introduction_topic_seventh_seal_and_only_hope_church.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/09/2018-09-30_introduction_topic_seventh_seal_and_only_hope_church.pdf
28 en en-20180928-1 2522 Introduction to the topic: The Seventh Seal and the restoration of the Kingdom of God 2018-09-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-133-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/09/2018-09-28_introduction_topic_seventh_seal_and_restoration_kingdom_god.pdf
29 en en-20180923-1 2523 Introduction to the topic: The Seventh Seal and the last revival of the elect 2018-09-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-134-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/09/2018-09-23_introduction_topic_seventh_seal_and_last_revival_elect.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/09/2018-09-23_introduction_topic_seventh_seal_and_last_revival_elect.pdf
30 en en-20180921-1 2524 Introduction to the topic: The time for the transformation 2018-09-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-135-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/09/2018-09-21_introduction_topic_time_transformation.pdf
31 en en-20180914-1 2525 Introduction to the topic: The mysteries contained in the Seventh Seal 2018-09-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-137-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/09/2018-09-14_introduction_topic_mysteries_contained_seventh_seal.pdf
32 en en-20180909-1 2526 Introduction to the topic: The Seventh Seal and the restoration of all things 2018-09-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg https://www.carpa.com/sites/default/files/messages/en/2018/09/2018-09-09_introduction_topic_seventh_seal_and_restoration_all_things.pdf
33 en en-20180907-1 2527 Introduction to the topic: The Seventh Seal putting an end to all things 2018-09-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-138-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/09/2018-09-07_introduction_topic_seventh_seal_putting_end_all_things.pdf
34 en en-20180902-1 2528 Introduction to the topic: The Seventh Seal and the sign of the end of the world 2018-09-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-139-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/09/2018-09-02_introduction_topic_seventh_seal_and_sign_end_world.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/09/2018-09-02_introduction_topic_seventh_seal_and_sign_end_world.pdf
35 en en-20180826-1 2529 Introduction to the topic The Seventh Seal and the Third Pull 2018-08-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-153-3.jpg https://www.carpa.com/sites/default/files/messages/en/2018/08/2018-08-26_introduction_topic_seventh_seal_and_third_pull.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/08/2018-08-26_introduction_topic_seventh_seal_and_third_pull.pdf
36 en en-20180824-1 2530 Introduction to the topic: The Seventh seal and the Message of the Gospel of the Kindom 2018-08-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-154-3.jpg https://www.carpa.com/sites/default/files/messages/en/2018/08/2018-08-24_introduction_topic_seventh_seal_and_message_gospel_kindom.pdf
37 en en-20180819-1 2531 Introduction to the topic: The Seventh Seal and the Rapture of the Church 2018-08-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-155-3.jpg https://www.carpa.com/sites/default/files/messages/en/2018/08/2018-08-19_introduction_topic_seventh_seal_and_rapture_church.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/08/2018-08-19_introduction_topic_seventh_seal_and_rapture_church.pdf
38 en en-20180817-1 2532 Introduction to the topic: The Seventh Seal and the Seven Thunders 2018-08-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-156-3.jpg https://www.carpa.com/sites/default/files/messages/en/2018/08/2018-08-17_introduction_topic_seventh_seal_and_seven_thunders.pdf
39 en en-20180812-1 2533 Introduction to the topic: The Seventh Seal and the Age of the Cornerstone 2018-08-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-157-3.jpg https://www.carpa.com/sites/default/files/messages/en/2018/08/2018-08-12_introduction_topic_seventh_seal_and_age_cornerstone.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/08/2018-08-12_introduction_topic_seventh_seal_and_age_cornerstone.pdf
40 en en-20180810-1 2534 Introduction to the topic: The Seventh Seal and the revival of the Church 2018-08-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-158-3.jpg https://www.carpa.com/sites/default/files/messages/en/2018/08/2018-08-10_introduction_topic_seventh_seal_and_revival_church.pdf
41 en en-20180805-1 2535 Introduction to the topic: The explosions of the Seventh Seal 2018-08-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-159-2.jpg https://www.carpa.com/sites/default/files/messages/en/2018/08/2018-08-05_introduction_topic_explosions_seventh_seal.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/08/2018-08-05_introduction_topic_explosions_seventh_seal.pdf
42 en en-20180803-1 2536 Introduction to the topic: The Seventh Seal looking for the elect 2018-08-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-160.jpg https://www.carpa.com/sites/default/files/messages/en/2018/08/2018-08-03_introduction_topic_seventh_seal_looking_elect.pdf
43 en en-20180729-1 2537 Introduction to the topic: The Seventh Seal and the incarnate Word 2018-07-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-152-2.jpg https://www.carpa.com/sites/default/files/messages/en/2018/07/2018-07-29_introduction_topic_seventh_seal_and_incarnate_word.pdf
44 en en-20180727-1 2538 Introduction to the topic: The Seventh Seal and the Spirit of Moses and Elijah 2018-07-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_22046.png https://www.carpa.com/sites/default/files/messages/en/2018/07/2018-07-28_introduction_topic_seventh_seal_and_spirit_moses_and_elijah.pdf
45 en en-20180720-1 2539 Introduction to the topic: Working under the Seventh Seal 2018-07-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg https://www.carpa.com/sites/default/files/messages/en/2018/07/2018-07-20_introduction_topic_working_under_seventh_seal.pdf
46 en en-20180715-1 2540 Introduction to the topic: The Seventh Seal and the Youth of the Last Day 2018-07-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-154-2.jpg https://www.carpa.com/sites/default/files/messages/en/2018/07/2018-07-15_introduction_topic_seventh_seal_and_youth_last_day.pdf
47 en en-20180713-1 2541 Introduction to the topic: The Light of the Seventh Seal 2018-07-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-155-2.jpg https://www.carpa.com/sites/default/files/messages/en/2018/07/2018-07-13_introduction_topic_light_seventh_seal.pdf
48 en en-20180708-1 2542 Introduction to the topic: The fruits of the Seventh Seal 2018-07-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-156-2.jpg https://www.carpa.com/sites/default/files/messages/en/2018/07/2018-07-08_introduction_topic_fruits_seventh_seal.pdf
49 en en-20180706-1 2543 Introduction to the topic: The Seventh Seal and the Reclaiming Work 2018-07-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-157-2.jpg https://www.carpa.com/sites/default/files/messages/en/2018/07/2018-07-06_introduction_topic_seventh_seal_and_reclaiming_work.pdf
50 en en-20180701-1 2544 Introduction to the topic: The manifestation of the Seventh Seal in simplicity 2018-07-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-158-2.jpg https://www.carpa.com/sites/default/files/messages/en/2018/07/2018-07-01_introduction_topic_manifestation_seventh_seal_simplicity.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/07/2018-07-01_introduction_topic_manifestation_seventh_seal_simplicity.pdf
51 en en-20180629-1 2545 Introduction to the topic: The Seventh Seal gathering the elect of God 2018-06-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-133.jpg https://www.carpa.com/sites/default/files/messages/en/2018/06/2018-06-29_introduction_topic_seventh_seal_gathering_elect_god.pdf
52 en en-20180624-1 2546 Introduction to the topic: The beginning and end of the Seventh Seal 2018-06-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-134.jpg https://www.carpa.com/sites/default/files/messages/en/2018/06/2018-06-24_introduction_topic_beginning_and_end_seventh_seal.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/06/2018-06-24_introduction_topic_beginning_and_end_seventh_seal.pdf
53 en en-20180622-1 2547 Introduction to the topic: The Seventh Seal: A Door opened in Heaven 2018-06-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-135.jpg https://www.carpa.com/sites/default/files/messages/en/2018/06/2018-06-22_introduction_topic_seventh_seal_door_opened_heaven.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/06/2018-06-22_introduction_topic_seventh_seal_door_opened_heaven.pdf
54 en en-20180617-1 2548 Introduction to the topic: The Seventh Seal and the sign of the Son of Man in Heaven 2018-06-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-136.jpg https://www.carpa.com/sites/default/files/messages/en/2018/06/2018-06-17_introduction_topic_seventh_seal_and_sign_son_man_heaven.pdf
55 en en-20180615-1 2549 Introduction to the topic: The Seventh Seal: The Coming of the Son of Man with His Angels 2018-06-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-137.jpg https://www.carpa.com/sites/default/files/messages/en/2018/06/2018-06-15_introduction_topic_seventh_seal_coming_son_man_his_angels.pdf
56 en en-20180610-1 2550 Introduction to the topic: The judgments in the Seventh Seal 2018-06-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-138.jpg https://www.carpa.com/sites/default/files/messages/en/2018/06/2018-06-10_introduction_topic_judgments_seventh_seal.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/06/2018-06-10_introduction_topic_judgments_seventh_seal.pdf
57 en en-20180608-1 2551 Introduction to the topic: The Seventh Seal: The Second Coming of Christ 2018-06-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-139.jpg https://www.carpa.com/sites/default/files/messages/en/2018/06/2018-06-08_introduction_topic_seventh_seal_second_coming_christ.pdf
58 en en-20180603-1 2552 Introduction to the topic: The blessings in the Seventh Seal 2018-06-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg https://www.carpa.com/sites/default/files/messages/en/2018/06/2018-06-03_introduction_topic_blessings_seventh_seal.pdf
59 en en-20180601-1 2553 Introduction to the topic: The leadership of the Seventh Seal 2018-06-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/11/youtube_thumbnail_22030.png https://www.carpa.com/sites/default/files/messages/en/2018/06/2018-06-01_introduction_topic_leadership_seventh_seal.pdf
60 en en-20180527-1 2554 Introduction to the topic: The mystery of the Book of the Seven Seals 2018-05-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-42-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/05/2018-05-27_introduction_topic_mystery_book_seven_seals.pdf
61 en en-20180525-1 2555 Introduction to the topic: The Seventh Seal and the rapturing faith 2018-05-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-43-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/05/2018-05-25_introduction_topic_seventh_seal_and_rapturing_faith.pdf
62 en en-20180520-1 2556 Introduction to the topic: The stages of the Seventh Seal 2018-05-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-44-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/05/2018-05-20_introduction_topic_stages_seventh_seal.pdf
63 en en-20180518-1 2557 Introduction to the topic: The Seventh Seal in the Last Day 2018-05-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg https://www.carpa.com/sites/default/files/messages/en/2018/05/2018-05-18_introduction_topic_seventh_seal_last_day.pdf
64 en en-20180513-1 2558 Introduction to the topic: The Seventh Seal throughout the entire Scripture 2018-05-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-45-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/05/2018-05-13_introduction_topic_seventh_seal_throughout_entire_scripture.pdf
65 en en-20180511-1 2559 Introduction to the topic: The secrets kept in the Seventh Seal 2018-05-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-46-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/05/2018-05-11_introduction_topic_secrets_kept_seventh_seal.pdf
66 en en-20180506-1 2560 Introduction to the topic: The Spiritual Food for each time 2018-05-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-47-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/05/2018-05-06_introduction_topic_spiritual_food_each_time.pdf
67 en en-20180504-1 2561 Introduction to the topic: The Seventh Seal and the Seventh Trumpet 2018-05-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-49-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/05/2018-05-04_introduction_topic_seventh_seal_and_seventh_trumpet.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/05/2018-05-04_introduction_topic_seventh_seal_and_seventh_trumpet.pdf
68 en en-20180429-1 2562 Introduction to the topic: The Day of the Son of Man and the works He will do in His Coming - Sunday 2018-04-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-171.jpg https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-29_introduction_topic_day_son_man_and_works_he_will_do_his_coming_-_sunday.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-29_introduction_topic_day_son_man_and_works_he_will_do_his_coming_-_sunday.pdf
69 en en-20180427-1 2563 Introduction to the topic: The Day of the Son of Man and the works He will do in His Coming - Friday 2018-04-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-172.jpg https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-27_introduction_topic_day_son_man_and_works_he_will_do_his_coming_-_friday.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-27_introduction_topic_day_son_man_and_works_he_will_do_his_coming_-_friday.pdf
70 en en-20180422-1 2564 Introduction to the topic: The Divine Cycle of the restoration of all things - Sunday 2018-04-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-173.jpg https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-22_introduction_topic_divine_cycle_restoration_all_things_-_sunday.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-22_introduction_topic_divine_cycle_restoration_all_things_-_sunday.pdf
71 en en-20180420-1 2565 Introduction to the topic: The Divine Cycle for the restoration of all things - Friday 2018-04-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-174.jpg https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-20_introduction_topic_divine_cycle_restoration_all_things_-_friday.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-20_introduction_topic_divine_cycle_restoration_all_things_-_friday.pdf
72 en en-20180415-1 2566 Introduction to the topic: Summer is nigh - Sunday 2018-04-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-175.jpg https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-15_introduction_topic_summer_nigh_-_sunday.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-15_introduction_topic_summer_nigh_-_sunday.pdf
73 en en-20180413-1 2567 Introduction to the topic: Summer is nigh - Friday 2018-04-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-176.jpg https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-13_introduction_topic_summer_nigh_-_friday.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-13_introduction_topic_summer_nigh_-_friday.pdf
74 en en-20180408-1 2568 Introduction to the topic: Where is the God of Elijah today? - Sunday 2018-04-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-178.jpg https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-08_introduction_topic_where_god_elijah_today_-_sunday.pdf
75 en en-20180401-2 2570 Holy Supper and Washing of Feet Service 2018-04-01 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-180.jpg https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-01_holy_supper_and_washing_feet_service.pdf
76 en en-20180401-1 2569 Introduction to the topic: The Resurrection of Jesus Christ according to the Scripture - Sunday 2018-04-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-181.jpg https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-01_introduction_topic_resurrection_jesus_christ_according_scripture_-_sunday.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/04/2018-04-01_introduction_topic_resurrection_jesus_christ_according_scripture_-_sunday.pdf
77 en en-20180330-1 2571 Introduction to the topic: The Crucifixion and Resurrection of Jesus Christ according to the Scripture 2018-03-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-152-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-30_introduction_topic_crucifixion_and_resurrection_jesus_christ_according_scripture.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-30_introduction_topic_crucifixion_and_resurrection_jesus_christ_according_scripture.pdf
78 en en-20180325-1 2572 Introduction to the topic: Israel, behold, thy King cometh unto thee - Sunday 2018-03-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-153-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-25_israel_behold_thy_king_cometh_unto_thee_-_sunday.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-25_israel_behold_thy_king_cometh_unto_thee_-_sunday.pdf
79 en en-20180323-1 2573 Introduction to the topic: Israel, behold, thy King cometh unto thee - Friday 2018-03-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-154-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-23_israel_behold_thy_king_cometh_unto_thee_-_friday.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-23_israel_behold_thy_king_cometh_unto_thee_-_friday.pdf
80 en en-20180318-1 2574 Introduction to the topic: Once more, Lord - Sunday 2018-03-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-155-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-18_introduction_topic_once_more_lord_-_sunday.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-18_introduction_topic_once_more_lord_-_sunday.pdf
81 en en-20180316-1 2575 Introduction to the topic: Once more, Lord - Friday 2018-03-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-16_introduction_topic_once_more_lord_-_friday.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-16_introduction_topic_once_more_lord_-_friday.pdf
82 en en-20180311-1 2576 Introduction to the topic: The introduction to the Millennium - Sunday 2018-03-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-156-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-11_introduction_topic_introduction_millennium_-_sunday.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-11_introduction_topic_introduction_millennium_-_sunday.pdf
83 en en-20180309-1 2577 Introduction to the topic: The introduction to the Millennium - Friday 2018-03-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-157-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-09_introduction_topic_introduction_millennium_-_friday.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-09_introduction_topic_introduction_millennium_-_friday.pdf
84 en en-20180304-1 2578 Introduction to the topic: A touch of faith unto salvation - Sunday 2018-03-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-158-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-04_introduction_topic_touch_faith_unto_salvation_-_sunday.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-04_introduction_topic_touch_faith_unto_salvation_-_sunday.pdf
85 en en-20180302-1 2579 Introduction to the topic: A touch of faith unto salvation - Friday 2018-03-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-159-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-02_introduction_topic_touch_faith_unto_salvation_-_friday.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/03/2018-03-02_introduction_topic_touch_faith_unto_salvation_-_friday.pdf
86 en en-20180225-1 2580 Introduction to the topic: The position of the Church in the Last Day - Sunday 2018-02-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-152.jpg https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-25_introduction_topic_position_church_last_day_-_sunday.pdf
87 en en-20180223-1 2581 Introduction to the topic: The position of the Church in the Last Day - Friday 2018-02-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-153.jpg https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-23_introduction_topic_position_church_last_day_-_friday.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-23_introduction_topic_position_church_last_day_-_friday.pdf
88 en en-20180218-1 2582 Introduction to the topic: The Fountain of that gives Water for everlasting life - Sunday 2018-02-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-154.jpg https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-18_introduction_topic_fountain_gives_water_everlasting_life_-_sunday.pdf
89 en en-20180216-1 2583 Introduction to the topic: The Fountain that gives Water for everlasting life - Friday 2018-02-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-155.jpg https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-16_introduction_topic_fountain_gives_water_everlasting_life_-_friday.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-16_introduction_topic_fountain_gives_water_everlasting_life_-_friday.pdf
90 en en-20180211-1 2584 Introduction to the topic: The Voice of the Holy Spirit speaking to the Church in the Last Day - Sunday 2018-02-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-156.jpg https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-11_introduction_topic_voice_holy_spirit_speaking_church_last_day_-_sunday.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-11_introduction_topic_voice_holy_spirit_speaking_church_last_day_-_sunday.pdf
91 en en-20180209-1 2585 Introduction to the topic: The Voice of the Holy Spirit speaking to the Church in the Last Day - Friday 2018-02-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-157.jpg https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-09_introduction_topic_voice_holy_spirit_speaking_church_last_day_-_friday.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-09_introduction_topic_voice_holy_spirit_speaking_church_last_day_-_friday.pdf
92 en en-20180204-1 2586 Introduction to the topic: The Fountain that gives Water for everlasting life - Sunday 2018-02-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-158.jpg https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-04_introduction_topic_fountain_gives_water_everlasting_life_-_sunday.pdf
93 en en-20180202-1 2587 Introduction to the topic: The Fountain of Water that gives everlasting life - Friday 2018-02-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-159.jpg https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-02_introduction_topic_fountain_water_gives_everlasting_life_-_friday.mp3 https://www.carpa.com/sites/default/files/messages/en/2018/02/2018-02-02_introduction_topic_fountain_water_gives_everlasting_life_-_friday.pdf
94 en en-20180128-1 2588 Introduction to the topic: The Coming of the Son of Man as the Lightning - Sunday 2018-01-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-30-3.jpg https://www.carpa.com/sites/default/files/messages/en/2018/01/2018-01-28_introduction_topic_coming_son_man_lightning_-_sunday.pdf
95 en en-20180121-1 2589 Introduction to the topic: The Voice of the Sign in each time - Sunday 2018-01-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg https://www.carpa.com/sites/default/files/messages/en/2018/01/2018-01-21_introduction_topic_voice_sign_each_time_-_sunday.pdf
96 en en-20180119-1 2590 Introduction to the topic: The Voice of the Sign - Friday 2018-01-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-32-3.jpg https://www.carpa.com/sites/default/files/messages/en/2018/01/2018-01-19_introduction_topic_voice_sign_-_friday.pdf
97 en en-20180114-1 2591 Introduction to the topic: The Royal Seed of Abraham - Sunday 2018-01-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-33-3.jpg https://www.carpa.com/sites/default/files/messages/en/2018/01/2018-01-14_introduction_topic_royal_seed_abraham_-_sunday.pdf
98 en en-20180112-1 2592 Introduction to the topic: The Royal Seed of Abraham - Friday 2018-01-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-34-3.jpg https://www.carpa.com/sites/default/files/messages/en/2018/01/2018-01-12_introduction_topic_royal_seed_abraham_-_friday.pdf
99 en en-20180107-2 2593 Condolences to the family of Carlos Rodriguez 2018-01-07 2 https://www.carpa.com/sites/default/files/messages/en/2018/01/2018-01-07_condolences_family_carlos_rodriguez.pdf
100 en en-20180105-1 2594 Introduction to the topic: The Stone with a New Name 2018-01-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-37-1.jpg https://www.carpa.com/sites/default/files/messages/en/2018/01/2018-01-05_introduction_topic_stone_new_name.pdf
101 en en-20171231-1 2595 Introduccion to the topic: It will be according to the Divine Vision - Sunday 2017-12-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-5-9.jpg https://www.carpa.com/sites/default/files/messages/en/2017/12/2017-12-31_introduccion_topic_it_will_be_according_divine_vision_-_sunday.pdf
102 en en-20171229-1 2596 Introduccion to the topic: It will be according to the Divine Vision - Friday 2017-12-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-17.jpg https://www.carpa.com/sites/default/files/messages/en/2017/12/2017-12-29_introduccion_topic_it_will_be_according_divine_vision_-_friday.pdf
103 en en-20171222-1 2597 Introduction to the topic: Melchisedec, the King of Peace 2017-12-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-23.jpg https://www.carpa.com/sites/default/files/messages/en/2017/12/2017-12-22_introduction_topic_melchisedec_king_peace.pdf
104 en en-20171215-1 2598 The One sent by the Father 2017-12-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg https://www.carpa.com/sites/default/files/messages/en/2017/12/2017-12-15_the_one_sent_father.mp3 https://www.carpa.com/sites/default/files/messages/en/2017/12/2017-12-15_the_one_sent_father.pdf
105 en en-20171208-1 2599 Introduction to the topic: The trajectory of the ministry of Elijah by five times 2017-12-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-35.jpg https://www.carpa.com/sites/default/files/messages/en/2017/12/2017-12-08_introduction_topic_trajectory_ministry_elijah_five_times.pdf
106 en en-20171203-1 2600 Introduction to the topic: The last call of the twelve tribes of Israel 2017-12-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-42.jpg https://www.carpa.com/sites/default/files/messages/en/2017/12/2017-12-03_introduction_topic_last_call_twelve_tribes_israel.pdf
107 en en-20171126-1 2601 Introduction to the topic: Joseph in front of the people for the preservation of life 2017-11-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-5-8.jpg https://www.carpa.com/sites/default/files/messages/en/2017/11/2017-11-26_introduction_topic_joseph_front_people_preservation_life.pdf
108 en en-20171119-1 2602 Introduction to the topic: God's promise to Abraham 2017-11-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-16.jpg https://www.carpa.com/sites/default/files/messages/en/2017/11/2017-11-19_introduction_topic_gods_promise_abraham.pdf
109 en en-20171112-1 2603 Introduction to the topic: The Angels bringing the revelation of the Seven Seals 2017-11-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-22.jpg https://www.carpa.com/sites/default/files/messages/en/2017/11/2017-11-12_introduction_topic_angels_bringing_revelation_seven_seals.pdf
110 en en-20171105-1 2604 Introduction to the topic: David, the eighth son of Jesse, anointed as king of Israel 2017-11-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-34.jpg https://www.carpa.com/sites/default/files/messages/en/2017/11/2017-11-05_introduction_topic_david_eighth_son_jesse_anointed_king_israel.pdf
111 en en-20171029-1 2605 Introduction to the topic: The revelation of God through the prophets 2017-10-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_21973.png https://www.carpa.com/sites/default/files/messages/en/2017/10/2017-10-30_introduction_topic_revelation_god_through_prophets.pdf
112 en en-20171022-1 2606 Introduction to the topic: The return of the heavenly citizens to the House of the Father 2017-10-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-2-6.jpg https://www.carpa.com/sites/default/files/messages/en/2017/10/2017-10-28_introduction_topic_return_heavenly_citizens_house_father.pdf
113 en en-20171015-1 2607 Introduction to the topic: The New Year 2017-10-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-3-3.jpg https://www.carpa.com/sites/default/files/messages/en/2017/10/2017-10-15_introduction_topic_new_year.pdf
114 en en-20171008-1 2608 Introduction to the topic: The King is Born 2017-10-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg https://www.carpa.com/sites/default/files/messages/en/2017/10/2017-10-08_introduction_topic_king_born.pdf
115 en en-20171001-1 2609 Introduction to the topic: The mission of the forerunner and the foreman of the First and Second Coming of Christ 2017-10-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp https://www.carpa.com/sites/default/files/messages/en/2017/10/2017-10-01_introduction_topic_mission_forerunner_and_foreman_first_and_second_coming_christ.pdf
116 en en-20170924-1 2610 Introduction to the topic: Elijah on the Mount of God 2017-09-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp https://www.carpa.com/sites/default/files/messages/en/2017/09/2017-09-24_introduction_topic_elijah_mount_god.mp3 https://www.carpa.com/sites/default/files/messages/en/2017/09/2017-09-24_introduction_topic_elijah_mount_god.pdf
117 en en-20170917-1 2611 Introduction to the topic: The Harvesting Time 2017-09-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp https://www.carpa.com/sites/default/files/messages/en/2017/09/2017-09-17_introduction_topic_harvesting_time.mp3 https://www.carpa.com/sites/default/files/messages/en/2017/09/2017-09-17_introduction_topic_harvesting_time.pdf
118 en en-20170910-1 2612 Words of Greetings, Sunday, September 10, 2017 - Dr. William Soto Santiago 2017-09-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp https://www.carpa.com/sites/default/files/messages/en/2017/09/2017-09-10_words_greetings_sunday_september_10_2017_-_dr_william_soto_santiago.mp3 https://www.carpa.com/sites/default/files/messages/en/2017/09/2017-09-10_words_greetings_sunday_september_10_2017_-_dr_william_soto_santiago.pdf
119 en en-20170903-1 2613 Words of Greetings, Sunday, September 3, 2017 - Dr. William Soto Santiago 2017-09-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp https://www.carpa.com/sites/default/files/messages/en/2017/09/2017-09-03_words_greetings_sunday_september_3_2017_-_dr_william_soto_santiago.mp3 https://www.carpa.com/sites/default/files/messages/en/2017/09/2017-09-03_words_greetings_sunday_september_3_2017_-_dr_william_soto_santiago.pdf
120 en en-20170827-1 2614 Words of Greetings, Sunday, August 27, 2017 - Dr. William Soto Santiago 2017-08-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp https://www.carpa.com/sites/default/files/messages/en/2017/08/2017-08-27_words_greetings_sunday_august_27_2017_-_dr_william_soto_santiago.pdf
121 en en-20170813-1 2615 Words of greeting - Dr. William Soto Santiago 2017-08-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp https://www.carpa.com/sites/default/files/messages/en/2017/08/2017-08-13_words_greeting_-_dr_william_soto_santiago.pdf
122 en en-20170514-1 2616 Faith Based on the Divine Promises 2017-05-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2017/05/photo_2025-05-23_11-22-11.jpg https://www.carpa.com/sites/default/files/messages/en/2017/05/2017-05-14_faith_based_divine_promises.pdf
123 en en-20170507-1 2617 Seeking God in the time in which one lives 2017-05-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-3-2.jpg https://www.carpa.com/sites/default/files/messages/en/2017/05/2017-05-07_seeking_god_time_which_one_lives.pdf
124 en en-20170428-1 2618 The return to Eden - Introduction 2017-04-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-41.jpg https://www.carpa.com/sites/default/files/messages/en/2017/04/2017-04-28_the_return_eden_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2017/04/2017-04-28_the_return_eden_-_introduction.pdf
125 en en-20170416-1 2619 The Resurrection of Jesus Christ according to the Scripture 2017-04-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-51.jpg https://www.carpa.com/sites/default/files/messages/en/2017/04/2017-04-16_the_resurrection_jesus_christ_according_scripture.pdf
126 en en-20170414-1 2620 The Crucifixion and Resurrection of Jesus Christ according to the Scripture - Introduction 2017-04-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-43.jpg https://www.carpa.com/sites/default/files/messages/en/2017/04/2017-04-14_the_crucifixion_and_resurrection_jesus_christ_according_scripture_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2017/04/2017-04-14_the_crucifixion_and_resurrection_jesus_christ_according_scripture_-_introduction.pdf
127 en en-20170409-1 2621 Israel, behold, thy King cometh unto thee 2017-04-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-43.jpg https://www.carpa.com/sites/default/files/messages/en/2017/04/2017-04-09_israel_behold_thy_king_cometh_unto_thee.pdf
128 en en-20170407-1 2622 Israel, behold, thy King cometh unto thee - Introduction 2017-04-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-41.jpg https://www.carpa.com/sites/default/files/messages/en/2017/04/2017-04-07_israel_behold_thy_king_cometh_unto_thee_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2017/04/2017-04-07_israel_behold_thy_king_cometh_unto_thee_-_introduction.pdf
129 en en-20170402-1 5547 The Trajectory of Elijah’s Ministry Five Times 2017-04-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21952-1.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/01/2017-04-02-the_trajectory_of_elijahs_ministry_five_times.mp3
130 en en-20170331-1 2623 The trajectory of the ministry of Elijah by five times - Introduction 2017-03-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/04/youtube_thumbnail_21951.png https://www.carpa.com/sites/default/files/messages/en/2017/03/2017-03-31_the_trajectory_ministry_elijah_five_times_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2017/03/2017-03-31_the_trajectory_ministry_elijah_five_times_-_introduction.pdf
131 en en-20170326-1 2624 A Prophet Like Moses 2017-03-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_21950.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2017/03/2017-03-26-a_prophet_like_moses.mp3
132 en en-20170324-1 2625 A Prophet Like Moses — Introduction 2017-03-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/10/youtube_thumbnail_21949.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2017/03/2000-12-01-1-MM-lord_what_do_you_want_me_to_do.mp3
133 en en-20170318-1 2626 The greatest sign of the Earth: A prophet 2017-03-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg https://www.carpa.com/sites/default/files/messages/en/2017/03/2017-03-18_the_greatest_sign_earth_prophet.pdf
134 en en-20170312-1 2627 Joseph in front of the people for the preservation of life 2017-03-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg https://www.carpa.com/sites/default/files/messages/en/2017/03/2017-03-12_joseph_front_people_preservation_life.pdf
135 en en-20170305-1 2628 God's promise to Abraham 2017-03-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/01/youtube_thumbnail_21942.png https://www.carpa.com/sites/default/files/messages/en/2017/03/2017-03-05_gods_promise_abraham.pdf
136 en en-20170303-1 2629 God's Promise to Abraham - Introduction 2017-03-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/06/youtube_thumbnail_21941-1.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2017/03/2017-03-03-1-gods_promise_to_abraham_introduction-1.mp3
137 en en-20170226-1 2630 The Angels bringing the revelation of the Seven Seals 2017-02-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_21940-1.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2017/02/2017-02-26-the_angels_bringing_the_revelation_of_the_seven_seals.mp3
138 en en-20170224-1 2631 The angels bringing the revelation of the Seven Seals - Introduction 2017-02-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-39.jpg https://www.carpa.com/sites/default/files/messages/en/2017/02/2017-02-24_the_angels_bringing_revelation_seven_seals_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2017/02/2017-02-24_the_angels_bringing_revelation_seven_seals_-_introduction.pdf
139 en en-20170219-1 2632 David, the Eighth Son of Jesse, Anointed as King of Israel 2017-02-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2017/02/vlcsnap-2025-10-24-09h38m38s251.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2017/02/2017_02_19_1_david_the_eighth_son_of_jesse_anointed_as_the_king.mp3
140 en en-20170217-1 2633 David, the eighth son of Jesse, anointed as the king of Israel - Introduction 2017-02-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-49.jpg https://www.carpa.com/sites/default/files/messages/en/2017/02/2017-02-17_david_eighth_son_jesse_anointed_king_israel_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2017/02/2017-02-17_david_eighth_son_jesse_anointed_king_israel_-_introduction.pdf
141 en en-20170212-1 2634 The Time for the Establishment of the Kingdom of the Messiah on Earth 2017-02-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-41.jpg https://www.carpa.com/sites/default/files/messages/en/2017/02/2017-02-12_the_time_establishment_kingdom_messiah_earth.mp3 https://www.carpa.com/sites/default/files/messages/en/2017/02/2017-02-12_the_time_establishment_kingdom_messiah_earth.pdf
142 en en-20170210-1 2635 The time for the establishment of the Kingdom of the Messiah on Earth - Introduction 2017-02-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-41.jpg https://www.carpa.com/sites/default/files/messages/en/2017/02/2017-02-10_the_time_establishment_kingdom_messiah_earth_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2017/02/2017-02-10_the_time_establishment_kingdom_messiah_earth_-_introduction.pdf
143 en en-20170205-1 2636 The revelation of God through the prophets 2017-02-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-39.jpg https://www.carpa.com/sites/default/files/messages/en/2017/02/2017-02-05_the_revelation_god_through_prophets.pdf
144 en en-20170203-1 2637 The Revelation of God Through the Prophets - Introduction 2017-02-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-37.jpg https://www.carpa.com/sites/default/files/messages/en/2017/02/2017-02-03_the_revelation_god_through_prophets_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2017/02/2017-02-03_the_revelation_god_through_prophets_-_introduction.pdf
145 en en-20170129-1 5335 The Return of the Heavenly Citizens to the House of the Father 2017-01-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/PSeTvB0e-youtube_thumbnail_21931.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/10/2017-01-29-the_return_of_the_heavenly_citizens_to_the_house_of_the_father.mp3
146 en en-20170127-1 2638 The return of the heavenly citizens to the House of the Father - Introduction 2017-01-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-38.jpg https://www.carpa.com/sites/default/files/messages/en/2017/01/2017-01-27_the_return_heavenly_citizens_house_father_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2017/01/2017-01-27_the_return_heavenly_citizens_house_father_-_introduction.pdf
147 en en-20170120-1 2639 The First Waved Sheaf - Introduction 2017-01-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-48.jpg https://www.carpa.com/sites/default/files/messages/en/2017/01/2017-01-20_the_first_waved_sheaf_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2017/01/2017-01-20_the_first_waved_sheaf_-_introduction.pdf
148 en en-20170115-1 2640 The Royal Seed of Abraham 2017-01-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/WIZGzS9x-youtube_thumbnail_21927.png https://www.carpa.com/sites/default/files/messages/en/2017/01/2017-01-15_the_royal_seed_abraham.mp3 https://www.carpa.com/sites/default/files/messages/en/2017/01/2017-01-15_the_royal_seed_abraham.pdf
149 en en-20170113-1 2641 The Royal Seed of Abraham - Introduction 2017-01-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/2gwWOr6O-youtube_thumbnail_21926.png https://www.carpa.com/sites/default/files/messages/en/2017/01/2017-01-13_the_royal_seed_abraham_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2017/01/2017-01-13_the_royal_seed_abraham_-_introduction.pdf
150 en en-20170108-1 2642 The Stone with a New Name 2017-01-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_21925.png https://www.carpa.com/sites/default/files/messages/en/2017/01/2017-01-08_the_stone_new_name.mp3 https://www.carpa.com/sites/default/files/messages/en/2017/01/2017-01-08_the_stone_new_name.pdf
151 en en-20170106-1 2643 The Stone with a New Name - Introduction 2017-01-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/rk7nsZAV-youtube_thumbnail_21924.png https://www.carpa.com/sites/default/files/messages/en/2017/01/2017-01-06_the_stone_new_name_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2017/01/2017-01-06_the_stone_new_name_-_introduction.pdf
152 en en-20170101-1 2644 The New Year 2017-01-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/07/youtube_thumbnail_21923.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2017/01/2017-01-01-the_new_year.mp3
153 en en-20161230-1 2645 The New Year - Introduction 2016-12-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/HUzJa8LY-youtube_thumbnail_21920.png https://www.carpa.com/sites/default/files/messages/en/2016/12/2016-12-30_the_new_year_-_introduction.pdf
154 en en-20161225-1 2646 The King is Born 2016-12-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-39.jpg https://www.carpa.com/sites/default/files/messages/en/2016/12/2016-12-25_the_king_born.mp3 https://www.carpa.com/sites/default/files/messages/en/2016/12/2016-12-25_the_king_born.pdf
155 en en-20161218-1 2647 The Throne and Kingdom of The Son of David 2016-12-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-27.jpg https://www.carpa.com/sites/default/files/messages/en/2016/12/2016-12-18_the_throne_and_kingdom_son_david.mp3 https://www.carpa.com/sites/default/files/messages/en/2016/12/2016-12-18_the_throne_and_kingdom_son_david.pdf
156 en en-20161216-1 2648 The Throne and Kingdom of the Son of David - Introduction 2016-12-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-26.jpg https://www.carpa.com/sites/default/files/messages/en/2016/12/2016-12-16_the_throne_and_kingdom_son_david_-_introduction.pdf
157 en en-20161203-1 6252 The Holy Spirit, Our Sustaining Strength 2016-12-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/07/youtube_thumbnail_21912-1.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/07/2016-12-03-the_holy_spirit_our_sustaining_strength.mp3
158 en en-20161202-1 2649 The Throne of Grace - Introduction 2016-12-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-9.jpg https://www.carpa.com/sites/default/files/messages/en/2016/12/2016-12-02_the_throne_grace_-_introduction.pdf
159 en en-20161125-1 2650 The Mission of the Forerunner and the Foreran for the First and Second coming of Christ - Introduction 2016-11-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/2ZVcWItt-youtube_thumbnail_21908.png https://www.carpa.com/sites/default/files/messages/en/2016/11/2016-11-25_the_mission_forerunner_and_foreran_first_and_second_coming_christ_-_introduction.mp3
160 en en-20161120-1 2651 Following The One Who Knows the Way to the Promised Land 2016-11-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-46.jpg https://www.carpa.com/sites/default/files/messages/en/2016/11/2016-11-20_following_one_who_knows_way_promised_land.mp3 https://www.carpa.com/sites/default/files/messages/en/2016/11/2016-11-20_following_one_who_knows_way_promised_land.pdf
161 en en-20161119-1 6123 Be Not Afraid, Neither Be Thou Dismayed 2016-11-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/05/youtube_thumbnail_21906-1.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2016/11/2016-11-19-1-be_not_afraid_neither_be_thou_dismayed.mp3
162 en en-20161119-1 2652 Be Not Afraid, Neither Be Thou Dismayed 2016-11-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/05/youtube_thumbnail_21906-1.png https://www.carpa.com/sites/default/files/messages/en/2016/11/2016-11-19_be_not_afraid_neither_be_thou_dismayed.mp3 https://www.carpa.com/sites/default/files/messages/en/2016/11/2016-11-19_be_not_afraid_neither_be_thou_dismayed_0.pdf
163 en en-20161118-1 2653 Following the One Who Knows the Way to the Promised Land - Introduction 2016-11-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-38.jpg https://www.carpa.com/sites/default/files/messages/en/2016/11/2016-11-18_following_one_who_knows_way_promised_land_-_introduction.mp3
164 en en-20161111-1 2654 The Valley of Shadow and Death - Introduction 2016-11-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-34.jpg https://www.carpa.com/sites/default/files/messages/en/2016/11/2016-11-11_the_valley_shadow_and_death_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2016/11/2016-11-11_the_valley_shadow_and_death_-_introduction.pdf
165 en en-20161106-1 2655 Elijah on the Mountain of God 2016-11-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/KNLBnduu-youtube_thumbnail_21900.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2016/11/2016-11-06-1-elijah_on_the_mountain_of_god-low.mp3
166 en en-20161104-1 2656 Elijah on the Mountain of God - Introduction 2016-11-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_21898.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2016/11/2016-11-04-elijah_on_the_mountain_of_god_introduction.mp3
167 en en-20161030-1 2657 The Harvesting Time 2016-10-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-29.jpg https://www.carpa.com/sites/default/files/messages/en/2016/10/2016-10-30_the_harvesting_time.mp3 https://www.carpa.com/sites/default/files/messages/en/2016/10/2016-10-30_the_harvesting_time.pdf
168 en en-20161028-1 2658 Harvesting Time - Introduction 2016-10-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-36.jpg https://www.carpa.com/sites/default/files/messages/en/2016/10/2016-10-28_harvesting_time_-_introduction.pdf
169 en en-20161023-1 2659 The Light shineth in darkness 2016-10-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-41.jpg https://www.carpa.com/sites/default/files/messages/en/2016/10/2016-10-23_the_light_shineth_darkness.pdf
170 en en-20161021-1 2660 The Light Shineth in Darkness - Introduction 2016-10-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-45.jpg https://www.carpa.com/sites/default/files/messages/en/2016/10/2016-10-21_the_light_shineth_darkness_-_introduction.pdf
171 en en-20161016-1 2661 The Sword in the Hand and Mouth of The Son of Man 2016-10-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-37.jpg https://www.carpa.com/sites/default/files/messages/en/2016/10/2016-10-16_the_sword_hand_and_mouth_son_man.mp3
172 en en-20161014-1 2662 The Sword in the Hand and Mouth of The Son of Man - Introduction 2016-10-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-37.jpg https://www.carpa.com/sites/default/files/messages/en/2016/10/2016-10-14_the_sword_hand_and_mouth_son_man_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2016/10/2016-10-14_the_sword_hand_and_mouth_son_man_-_introduction.pdf
173 en en-20161009-1 2663 The One Who Announces Peace 2016-10-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-35.jpg https://www.carpa.com/sites/default/files/messages/en/2016/10/2016-10-09_the_one_who_announces_peace.mp3 https://www.carpa.com/sites/default/files/messages/en/2016/10/2016-10-09_the_one_who_announces_peace.pdf
174 en en-20160930-1 2664 The Spirit of the Lord Lifting up a Standard Against the Enemy — Introduction 2016-09-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/05/youtube_thumbnail_21886.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2016/09/2016_09_30_the_spirit_of_the_lord_lifting_up_a_standard_against.mp3
175 en en-20160925-1 2665 The People Rejoicing that their Names are Written in Heaven 2016-09-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-40.jpg https://www.carpa.com/sites/default/files/messages/en/2016/09/2016-09-25_the_people_rejoicing_their_names_are_written_heaven.mp3 https://www.carpa.com/sites/default/files/messages/en/2016/09/2016-09-25_the_people_rejoicing_their_names_are_written_heaven.pdf
176 en en-20160918-1 5134 The Greatest Sign on Earth: A Prophet 2016-09-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21883.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2016/09/2016-09-18-1-the_greatest_sign_on_earth_a_prophet.mp3
177 en en-20160916-1 2666 A prophet: the greatest sign on Earth - Introduction 2016-09-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-36.jpg https://www.carpa.com/sites/default/files/messages/en/2016/09/2016-09-16_a_prophet_greatest_sign_earth_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2016/09/2016-09-16_a_prophet_greatest_sign_earth_-_introduction.pdf
178 en en-20160911-1 2667 Melchisedec, the King of Peace 2016-09-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-34.jpg https://www.carpa.com/sites/default/files/messages/en/2016/09/2016-09-11_melchisedec_king_peace.pdf
179 en en-20160909-1 2668 Melchisedec, the King of Peace - Introduction 2016-09-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-32.jpg https://www.carpa.com/sites/default/files/messages/en/2016/09/2016-09-09_melchisedec_king_peace_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2016/09/2016-09-09_melchisedec_king_peace_-_introduction.pdf
180 en en-20160904-1 2669 The Blessings Contained in the Birthright 2016-09-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/08/youtube_thumbnail_21879-1.png https://www.carpa.com/sites/default/files/messages/en/2016/09/2016-09-04_the_blessing_contained_birthright.mp3 https://www.carpa.com/sites/default/files/messages/en/2016/09/2016-09-04_the_blessing_contained_birthright.pdf
181 en en-20160902-2 2670 The blessings contained in the Birthright - Introduction 2016-09-02 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_21878.png
182 en en-20160828-1 2671 The Two Sticks of Israel in the Hand of the Son of Man 2016-08-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-39.jpg https://www.carpa.com/sites/default/files/messages/en/2016/08/2016-08-28_the_two_sticks_israel_hand_son_man.pdf
183 en en-20160826-1 2672 The Two Sticks of Israel in the Hand of the Son of Man - Introduction 2016-08-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-43.jpg https://www.carpa.com/sites/default/files/messages/en/2016/08/2016-08-26_the_two_sticks_israel_hand_son_man_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2016/08/2016-08-26_the_two_sticks_israel_hand_son_man_-_introduction.pdf
184 en en-20160821-1 2673 The Church of God receiving the Power of God by faith 2016-08-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/06/youtube_thumbnail_21873.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2016/08/2016-08-21-the_church_of_god_receiving_gods_power_by_faith.mp3
185 en en-20160819-1 2674 The Church of God receiving the Power of God by faith - Introduction 2016-08-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-35.jpg https://www.carpa.com/sites/default/files/messages/en/2016/08/2016-08-19_the_church_god_receiving_power_god_faith_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2016/08/2016-08-19_the_church_god_receiving_power_god_faith_-_introduction.pdf
186 en en-20160814-1 2675 The Archangels Gabriel and Michael working on the changing of kingdoms 2016-08-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-31.jpg https://www.carpa.com/sites/default/files/messages/en/2016/08/2016-08-14_the_archangels_gabriel_and_michael_working_changing_kingdoms.pdf
187 en en-20160812-1 2676 The Archangels Gabriel and Michael working on the changing of Kingdoms - Introduction 2016-08-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-24.jpg https://www.carpa.com/sites/default/files/messages/en/2016/08/2016-08-12_the_archangels_gabriel_and_michael_working_changing_kingdoms_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2016/08/2016-08-12_the_archangels_gabriel_and_michael_working_changing_kingdoms_-_introduction.pdf
188 en en-20160807-1 2677 The Evening Light 2016-08-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-23.jpg https://www.carpa.com/sites/default/files/messages/en/2016/08/2016-08-07_the_evening_light.mp3 https://www.carpa.com/sites/default/files/messages/en/2016/08/2016-08-07_the_evening_light.pdf
189 en en-20160731-1 6531 The Complete Fulfillment of the Prophecies for the Last Day 2016-07-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/11/youtube_thumbnail_21864.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/11/2016_07_31_1_the_complete_fulfillment_of_the_prophecies_for_the.mp3
190 en en-20160730-1 2678 Between the Lines 2016-07-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-30.jpg https://www.carpa.com/sites/default/files/messages/en/2016/07/2016-07-30_between-lines.mp3
191 en en-20160729-1 2679 The total fulfillment of the prophecies for the Last Day - Introduction 2016-07-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-22.jpg https://www.carpa.com/sites/default/files/messages/en/2016/07/2016-07-29_the_total_fulfillment_prophecies_last_day_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2016/07/2016-07-29_the_total_fulfillment_prophecies_last_day_-_introduction.pdf
192 en en-20160722-1 2680 The Works of Jesus Christ among his church - Introduction 2016-07-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-19.jpg https://www.carpa.com/sites/default/files/messages/en/2016/07/2016-07-22_the_works_jesus_christ_among_his_church_-_introduction.mp3
193 en en-20160715-1 2681 The Grace of the Lord Jesus Christ poured out upon His children - Introduction 2016-07-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-8.jpg https://www.carpa.com/sites/default/files/messages/en/2016/07/2016-07-15_the_grace_lord_jesus_christ_poured_out_upon_his_children_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2016/07/2016-07-15_the_grace_lord_jesus_christ_poured_out_upon_his_children_-_introduction.pdf
194 en en-20160710-1 2682 Identifying the End of Time 2016-07-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/11/youtube_thumbnail_21855.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2016/07/2016-07-10-1-identifying_the_end_of_time.mp3
195 en en-20160708-1 6466 Identifying the End of Time —Introduction— 2016-07-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/10/youtube_thumbnail_21853.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/10/2016-07-08-1-identifying_the_end_of_time_introduction.mp3
196 en en-20160626-1 2683 The Word that Rejuvenates Us 2016-06-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-28.jpg https://www.carpa.com/sites/default/files/messages/en/2016/06/2016-06-26_the_word_rejuvenates_us.mp3 https://www.carpa.com/sites/default/files/messages/en/2016/06/2016-06-26_the_word_rejuvenates_us.pdf
197 en en-20160619-1 2684 Ask the Father in His Name, and He shall reward thee openly 2016-06-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-34.jpg https://www.carpa.com/sites/default/files/messages/en/2016/06/2016-06-19_ask_father_his_name_and_he_shall_reward_thee_openly.pdf
198 en en-20160617-1 2685 Ask the Father in His Name and He will reward us - Introduction 2016-06-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-38.jpg https://www.carpa.com/sites/default/files/messages/en/2016/06/2016-06-17_ask_father_his_name_and_he_will_reward_us_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2016/06/2016-06-17_ask_father_his_name_and_he_will_reward_us_-_introduction.pdf
199 en en-20160611-1 6268 When the Omnipotent Speaks, Miracles Happen 2016-06-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/07/youtube_thumbnail_21844.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/07/2016-06-11-when_the_omnipotent_speaks_miracles_happen.mp3
200 en en-20160605-1 6330 The King's Message 2016-06-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_21842.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/08/2016-06-05-the_kings_message.mp3
201 en en-20160529-1 2686 The time to struggle to sit the Son of David on the Throne 2016-05-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-37.jpg https://www.carpa.com/sites/default/files/messages/en/2016/05/2016-05-29_the_time_struggle_sit_son_david_throne.pdf
202 en en-20160527-1 2687 The time to struggle to sit the Son of David on the Throne - Introduction 2016-05-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-41.jpg https://www.carpa.com/sites/default/files/messages/en/2016/05/2016-05-27_the_time_struggle_sit_son_david_throne_-_introduction.pdf
203 en en-20160520-1 2688 The Symphonic of God - Introduction 2016-05-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-33.jpg https://www.carpa.com/sites/default/files/messages/en/2016/05/2016-05-20_the_symphonic_god_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2016/05/2016-05-20_the_symphonic_god_-_introduction.pdf
204 en en-20160515-1 5363 Obeying the Voice of the One Sent at Each Time 2016-05-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/3ZTVz7Ok-youtube_thumbnail_21836.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/10/2016-05-15-1-obeying_the_voice_of_the_one_sent_at_each_time.mp3
205 en en-20160513-1 5348 Obeying the Voice of the One Sent at Each Time - Introduction 2016-05-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/INnRyrrU-youtube_thumbnail_21835.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/10/2016-05-13-obeying_the_voice_of_the_one_send_at_each_time_introduction.mp3
206 en en-20160430-1 5796 Showers of Blessing by the Word of Elijah at the Last Day 2016-04-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/05/youtube_thumbnail_21830.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/05/2016-04-30-showers_of_blessings_by_the_word_of_elijah_at_the_last.mp3
207 en en-20160424-1 5888 The Sower Sowing the Seed of the Word 2016-04-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/07/youtube_thumbnail_21828.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2016/04/2016-04-24-the_sower_sowing_the_seed_of_the_word.mp3
208 en en-20160416-1 5866 Ladies, Youth and Adults Working and Collaborating on God’s Great Team 2016-04-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-20.jpg https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2016/04/2016-04-16-ladies_youth_and_adults_working_and_collaborating_on_gods_great_team.mp3
209 en en-20160415-1 5719 The Glory of the Shekinah in the Most Holy Place - Introduction 2016-04-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21823.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/04/2016-04-15-the_glory_of_the_shekinah_in_the_most_holy_place.mp3
210 en en-20160409-1 5844 Pillar in the Temple of God, Where the Name of God, Name of the City of God, and the New Name of the Lord Jesus Christ, Is Written 2016-04-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/06/youtube_thumbnail_21821.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2016/04/2016-04-09-RM-pillar_in_the_temple_of_god_where_the_name_of_god_name.mp3
211 en en-20160403-1 6205 The Forty Days of Jesus on Earth Before the Rapture 2016-04-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/06/youtube_thumbnail_21819.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/06/2016_04_03_the_forty_days_of_jesus_on_earth_before_the_rapture.mp3
212 en en-20160313-1 5880 The Morning Star 2016-03-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/07/youtube_thumbnail_21809.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2016/03/2016-03-13-the_morning_star.mp3
213 en en-20160312-1 2689 God provides blessing for Elijah and for those that serve him 2016-03-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-20-6.jpg https://www.carpa.com/sites/default/files/messages/en/2016/03/2016-03-12_god_provides_blessing_elijah_and_those_serve_him.pdf
214 en en-20160311-1 2690 The Morning Star - Introduction 2016-03-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-6.jpg https://www.carpa.com/sites/default/files/messages/en/2016/03/2016-03-11_the_morning_star_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2016/03/2016-03-11_the_morning_star_-_introduction.pdf
215 en en-20160228-1 2691 The sign of the Son of Men in Heaven 2016-02-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-21.jpg
216 en en-20160226-1 2692 The sign of the Son of Man in heaven - Introduction 2016-02-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-27.jpg https://www.carpa.com/sites/default/files/messages/en/2016/02/2016-02-26_the_sign_son_man_heaven.mp3 https://www.carpa.com/sites/default/files/messages/en/2016/02/2016-02-26_the_sign_son_man_heaven.pdf
217 en en-20160219-1 6112 The Book Sealed with Seven Seals - Introduction 2016-02-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/04/youtube_thumbnail_21799.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/05/2016-02-19-1-the_book_sealed_with_seven_seals_introduction.mp3
218 en en-20160131-1 2693 The Angel sealing the tribes of Israel 2016-01-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-35.jpg https://www.carpa.com/sites/default/files/messages/en/2016/01/2016-01-31_the_angel_sealing_tribes_israel.pdf
219 en en-20160121-1 2694 Ladies serving God out of gratitude 2016-01-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-29.jpg https://www.carpa.com/sites/default/files/messages/en/2016/01/2016-01-21_ladies_serving_god_out_gratitude.mp3 https://www.carpa.com/sites/default/files/messages/en/2016/01/2016-01-21_ladies_serving_god_out_gratitude.pdf
220 en en-20160115-1 6350 Discerning the Spiritual Things 2016-01-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_21790.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/08/2016-01-15-discerning_the_spiritual_things.mp3
221 en en-20160110-1 2695 The Seventh Seal and the end of the world systems 2016-01-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-19.jpg https://www.carpa.com/sites/default/files/messages/en/2016/01/2016-01-08_the_seventh_seal_and_end_world_systems.mp3 https://www.carpa.com/sites/default/files/messages/en/2016/01/2016-01-08_the_seventh_seal_and_end_world_systems.pdf
222 en en-20151227-1 2696 Where is He that is born King of the jews? 2015-12-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-26.jpg https://www.carpa.com/sites/default/files/messages/en/2015/12/2015-12-27_where_he_born_king_jews.pdf
223 en en-20151213-1 2697 The wisdom of God 2015-12-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg https://www.carpa.com/sites/default/files/messages/en/2015/12/2015-12-13_the_wisdom_god.mp3 https://www.carpa.com/sites/default/files/messages/en/2015/12/2015-12-13_the_wisdom_god.pdf
224 en en-20151129-1 5679 The Cornerstone 2015-11-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21774.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/03/2015-11-29-the_cornerstone.mp3
225 en en-20151121-1 5581 The Messianic Age 2015-11-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21771.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/02/2015-11-21-1-the_messianic_age.mp3
226 en en-20151115-1 5474 Be Prepared for the Coming of the Son of Man 2015-11-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/youtube_thumbnail_21768.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/11/2015-11-15-1-be_prepared_for_the_coming_of_the_son_of_man.mp3
227 en en-20151114-1 5612 Prepare To Meet Thy God 2015-11-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21767.png
228 en en-20151113-1 5573 Be Prepared for the Coming of the Son of Man - Introduction 2015-11-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21766.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/11/2015-11-13-be_prepared_for_the_coming_of_the_son_of_man.mp3
229 en en-20151115-1 5469 Victory Day 2015-11-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/youtube_thumbnail_21768.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/11/2015-11-10-1-victory_day.mp3
230 en en-20151025-1 5776 Preparing Ourselves for What Is to Come 2015-10-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/05/youtube_thumbnail_21759.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/10/2015-10-25-preparing_ourselves_for_what_is_to_come.mp3
231 en en-20151018-1 2698 The signs of the times 2015-10-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21756.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/10/2015-10-18-the_signs_of_the_tImes.mp3
232 en en-20151004-1 2699 Following the ark of the covenant at the last day 2015-10-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-13.jpg https://www.carpa.com/sites/default/files/messages/en/2015/10/2015-10-04_following_ark_covenant_last_day.mp3 https://www.carpa.com/sites/default/files/messages/en/2015/10/2015-10-04_following_ark_covenant_last_day.pdf
233 en en-20150927-1 2700 The still small voice 2015-09-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/Cgn6tOQr-youtube_thumbnail_21751.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/09/2015-09-27-the_still_small_voice.mp3
234 en en-20150920-1 5430 The Two Olive Trees in the Dispensation of the Kingdom 2015-09-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-24.jpg
235 en en-20150919-1 5742 The House of God 2015-09-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21748.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/04/2015-09-19-the_house_of_god.mp3
236 en en-20150918-1 5423 The Two Olive Trees in the Dispensation of the Kingdom - Introduction 2015-09-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/01/youtube_thumbnail_21747-1.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/11/2015-09-18-the_two_olive_trees_in_the_dispensation_of_the_kingdom.mp3
237 en en-20150913-1 5406 The Proclamation of the Great Voice of Trumpet 2015-09-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_21745.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/11/2015-09-13-the_proclamation_of_the_great_voice_of_trumpet.mp3
238 en en-20150906-1 2701 The Kingdom of God is at hand 2015-09-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-20-5.jpg https://www.carpa.com/sites/default/files/messages/en/2015/09/2015-09-06_the_kingdom_god_hand.mp3 https://www.carpa.com/sites/default/files/messages/en/2015/09/2015-09-06_the_kingdom_god_hand.pdf
239 en en-20150904-1 5589 The Kingdom of God is at Hand - Introduction 2015-09-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21741.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/09/2015-09-04-the_kingdom_of_god_is_at_hand.mp3
240 en en-20150903-1 5414 Be It According to Your Faith (According to Your Faith May It Be Done) 2015-09-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_21740.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/11/2015-09-03-be_It_according_to_your_faith.mp3
241 en en-20150830-1 5369 The Mystery of the Rapturing Faith Contained in the Thunders 2015-08-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/youtube_thumbnail_21739-1.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/10/2015-08-30-the_mystery_of_the_rapturing_faith_contained_in_the_thunders.mp3
242 en en-20150823-1 5384 The Day of the Son of Man and the Works He Will Do in His Coming 2015-08-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_21737.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/11/2015-08-23-1-the_day_of_the_son_of_man_and_the_works_he_will_do_in_his_coming.mp3
243 en en-20150821-1 2702 The Day of the Son of Man and the Works He Will Do in His Coming - Introduction 2015-08-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/11/youtube_thumbnail_21735.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/08/2015_08_21_1_the_day_of_the_son_of_man_and_the_works_he_will_do.mp3
244 en en-20150816-1 2703 The Divine Cycle for the restoration of all things 2015-08-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-20.jpg https://www.carpa.com/sites/default/files/messages/en/2015/08/2015-08-16_the_divine_cycle_restoration_all_things.pdf
245 en en-20150814-1 2704 The Divine Cycle for the restoration of all things - Introduction 2015-08-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-15.jpg https://www.carpa.com/sites/default/files/messages/en/2015/08/2015-08-14_the_divine_cycle_restoration_all_things_-_introduction.pdf
246 en en-20150809-1 2705 Summer is nigh 2015-08-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-14.jpg https://www.carpa.com/sites/default/files/messages/en/2015/08/2015-08-09_summer_nigh.pdf
247 en en-20150807-1 2706 Summer is nigh - Introduction 2015-08-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18-11.jpg https://www.carpa.com/sites/default/files/messages/en/2015/08/2015-08-07_summer_nigh_-_introduction.pdf
248 en en-20150802-1 2707 Once More, Lord 2015-08-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/09/youtube_thumbnail_21729.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/08/2015-08-02-once_more_lord.mp3
249 en en-20150726-1 2708 The introduction to the Millennium 2015-07-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-34.jpg https://www.carpa.com/sites/default/files/messages/en/2015/07/2015-07-26_the_introduction_millennium.pdf
250 en en-20150724-1 2709 The introduction to the millennium - Introduction 2015-07-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-23.jpg https://www.carpa.com/sites/default/files/messages/en/2015/07/2015-07-24_the_introduction_millennium_-_introduction.pdf
251 en en-20150717-1 2710 Where is the God of Elijah today? - Introduction 2015-07-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-22.jpg https://www.carpa.com/sites/default/files/messages/en/2015/07/2015-07-17_where_god_elijah_today_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2015/07/2015-07-17_where_god_elijah_today_-_introduction.pdf
252 en en-20150711-2 5859 The Sweet-Smelling Savor of a Heavenly Citizen 2015-07-11 2 https://ewr1.vultrobjects.com/lgcc-conferences/2024/06/youtube_thumbnail_21722.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/07/2015-07-11-2-the_sweet_smelling_savor_of_a_heavenly_citizen.mp3
253 en en-20150710-1 2711 A touch of faith unto salvation - Introduction 2015-07-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-13.jpg https://www.carpa.com/sites/default/files/messages/en/2015/07/2015-07-10_a_touch_faith_unto_salvation_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/en/2015/07/2015-07-10_a_touch_faith_unto_salvation_-_introduction.pdf
254 en en-20150705-1 2712 The position of the Church in the Last Day 2015-07-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18-10.jpg https://www.carpa.com/sites/default/files/messages/en/2015/07/2015-07-05_the_position_church_last_day.pdf
255 en en-20150621-1 2713 The Fountain that gives Water for everlasting life 2015-06-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-22.jpg https://www.carpa.com/sites/default/files/messages/en/2015/06/2015-06-21_the_fountain_gives_water_everlasting_life.pdf
256 en en-20150612-1 5784 The Coming of the Son of Man as the Lightning - Introduction 2015-06-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-18.jpg https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/05/2015-06-12-the_coming_of_the_son_of_man_as_the_lightning_introduction.mp3
257 en en-20150607-1 2714 The voice of the sign in each time 2015-06-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-13.jpg https://www.carpa.com/sites/default/files/messages/en/2015/06/2015-06-07_the_voice_sign_each_time.mp3
258 en en-20150605-1 5624 The Voice of the Sign 2015-06-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21707.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/06/2015-06-05-the_voice_of_the_sign.mp3
259 en en-20150531-1 2715 The great victory in Divine Love 2015-05-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-20.jpg https://www.carpa.com/sites/default/files/messages/en/2015/05/2015-05-31_the_great_victory_divine_love.mp3 https://www.carpa.com/sites/default/files/messages/en/2015/05/2015-05-31_the_great_victory_divine_love.pdf
260 en en-20150524-1 5648 The Dimensions 2015-05-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21705.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/05/2015-05-24-the_dimensions.mp3
261 en en-20150523-1 2716 Words of greeting 2015-05-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg https://www.carpa.com/sites/default/files/messages/en/2015/05/2015-05-23_words_greeting.pdf
262 en en-20150510-1 5605 Jesus Christ, the King of Peace 2015-05-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21702.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/05/2015-05-10-jesus_christ_the_king_of_peace.mp3
263 en en-20150509-1 5596 The Seven Prophetic Visions of Reverend William Branham Before the Second Coming of Christ 2015-05-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21701.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/02/2015-05-09-the_seven_prophetic_visions_of_rev_wmb_before_the_2nd_coming.mp3
264 en en-20150502-1 5698 The Divine Order for the Resurrection and the Transformation 2015-05-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21698.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/03/2015-05-02-the_divine_order_for_the_resurrection_and_transformation.mp3
265 en en-20150419-1 2717 The seventh dispensation: The dispensation of the kingdom 2015-04-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21695-1.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/04/2015-04-19-1-the_seventh_dispensation_the_dispensation_of_the_kingdom-low.mp3
266 en en-20150412-1 2718 The Sixth Dispensation: Grace 2015-04-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2026/01/youtube_thumbnail_21694-1.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/04/2015-04-12-1-the_sixth_dispensation_grace.mp3
267 en en-20150405-1 2719 Jesus Resurrected, as the Scripture Said 2015-04-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21692-1.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/04/2015-04-02-jesus_resurrected_as_the_scripture_said.mp3
268 en en-20150404-1 5559 Jesus Preaching in the Fifth Dimension 2015-04-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21691.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/01/2015-04-04-jesus_preaching_in_the_fifth_dimension.mp3
269 en en-20150329-1 2720 Jesus entering into Jerusalem as it was written 2015-03-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-19.jpg https://www.carpa.com/sites/default/files/messages/en/2015/03/2015-03-29_jesus_entering_jerusalem_it_was_written.mp3 https://www.carpa.com/sites/default/files/messages/en/2015/03/2015-03-29_jesus_entering_jerusalem_it_was_written.pdf
270 en en-20150328-1 5764 The Fifth Dispensation: The Law 2015-03-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/05/youtube_thumbnail_21686.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/05/2015-03-28-the_fifth_dispensation_the_law.mp3
271 en en-20150322-1 2721 The fourth dispensation: The promise 2015-03-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-19.jpg https://www.carpa.com/sites/default/files/messages/en/2015/03/2015-03-22_the_fourth_dispensation_promise.mp3 https://www.carpa.com/sites/default/files/messages/en/2015/03/2015-03-22_the_fourth_dispensation_promise.pdf
272 en en-20150315-1 2722 The third dispensation: Human government 2015-03-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-11.jpg https://www.carpa.com/sites/default/files/messages/en/2015/03/2015-03-15_the_third_dispensation_human_government.mp3 https://www.carpa.com/sites/default/files/messages/en/2015/03/2015-03-15_the_third_dispensation_human_government.pdf
273 en en-20150314-1 2723 The second dispensation: Conscience 2015-03-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/05/youtube_thumbnail_21681.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/03/2015-03-14-the_second_dispensation_conscience.mp3
274 en en-20150308-1 2724 The first dispensation: Innocence 2015-03-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21679.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/03/2015-03-08-the_first_dispensation_innocence.mp3
275 en en-20150301-1 2725 Who is the Son of Man for this Day? 2015-03-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21678.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/03/2015-03-01-who_is_the_son_of_man_for_this_day.mp3
276 en en-20150228-1 5734 The House of God of the New Covenant 2015-02-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21677.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/02/2015-02-28-the_house_of_god_of_the_new_covenant.mp3
277 en en-20150221-1 5532 Sealed By the Greatest Sign 2015-02-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21674.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/02/2015-02-21-sealed_by_the_greatest_sign.mp3
278 en en-20150215-1 2726 When the Son of Man cometh, shall He find faith on Earth? 2015-02-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/youtube_thumbnail_21673.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/02/2015_02_15_when_the_son_of_man_comes_shall_he_find_faith_on_the.mp3
279 en en-20150214-1 5500 United With the Angel, Working on the Divine Projects 2015-02-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/youtube_thumbnail_21672.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/12/2015-02-14-united_with_the_angel_working_on_the_divine_projects.mp3
280 en en-20150210-1 5518 The Inheritance of the Overcomer 2015-02-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21671.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/01/2015-02-10-the_inheritance_of_the_overcomer.mp3
281 en en-20150208-1 2727 The King of kings and Lord of lords 2015-02-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/cxS9ziAp-youtube_thumbnail_21670.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/02/2015-02-08-the_king_of_kings_and_lord_of_lords.mp3
282 en en-20150206-1 5451 The Four Titles of Jesus as Son 2015-02-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/EwHhRdyF-youtube_thumbnail_21669.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/02/2015-02-06-the_four_titles_of_jesus_as_son.mp3
283 en en-20150201-1 2728 The Son of Man 2015-02-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/rGJZrHWo-youtube_thumbnail_21668.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/02/2015-02-01-the_son_of_man.mp3
284 en en-20150125-1 2729 Son of God 2015-01-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-19.jpg https://www.carpa.com/sites/default/files/messages/en/2015/01/2015-01-25_son_god.mp3 https://www.carpa.com/sites/default/files/messages/en/2015/01/2015-01-25_son_god.pdf
285 en en-20150118-1 2730 The Heir, the Son of David 2015-01-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-23.jpg https://www.carpa.com/sites/default/files/messages/en/2015/01/2015-01-18_the_heir_son_david.pdf
286 en en-20150111-1 2731 The Four Son Titles Of Jesus: The Son Of Abraham 2015-01-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-28.jpg https://www.carpa.com/sites/default/files/messages/en/2015/01/2015-01-11_the_four_son_titles_jesus_son_abraham.pdf
287 en en-20150104-1 2732 The Kingdom and Throne of David 2015-01-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-26.jpg https://www.carpa.com/sites/default/files/messages/en/2015/01/2015-01-04_the_kingdom_and_throne_david.mp3 https://www.carpa.com/sites/default/files/messages/en/2015/01/2015-01-04_the_kingdom_and_throne_david.pdf
288 en en-20150102-1 2733 The prophecy of the Last Day 2015-01-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21662.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2015/01/2015-01-02-1-the_prophecy_of_the_last_day-low.mp3
289 en en-20141221-1 5480 The Birth of Jesus Christ 2014-12-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/mklKqOY2-youtube_thumbnail_21657.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/12/2014-12-21-1-the_birth_of_jesus_christ.mp3
290 en en-20141130-1 5192 He That Shall Come Will Come, and Will Not Tarry 2014-11-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21653.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/11/2014-11-30-he_that_shall_come_will_come_and_will_not_tarry.mp3
291 en en-20141026-1 5711 The Eternal One 2014-10-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21640.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/10/2014-10-26-the_eternal_one.mp3
292 en en-20141005-1 2734 The dispensation of the fullness of times 2014-10-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-9.jpg https://www.carpa.com/sites/default/files/messages/en/2014/10/2014-10-05_the_dispensation_fullness_times.mp3 https://www.carpa.com/sites/default/files/messages/en/2014/10/2014-10-05_the_dispensation_fullness_times.pdf
293 en en-20141004-1 5567 Back to the Beginning 2014-10-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21631.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/01/2014-10-04-back_to_the_beginning.mp3
294 en en-20140928-1 2735 Following the footsteps of the Master 2014-09-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-15.jpg https://www.carpa.com/sites/default/files/messages/en/2014/09/2014-09-28_following_footsteps_master.mp3 https://www.carpa.com/sites/default/files/messages/en/2014/09/2014-09-28_following_footsteps_master.pdf
295 en en-20140921-1 2736 A commandment of the Lord: that ye love one another 2014-09-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-9.jpg https://www.carpa.com/sites/default/files/messages/en/2014/09/2014-09-21_a_commandment_lord_ye_love_one_another.pdf
296 en en-20140914-1 2737 The Gospel Will Return to the Jews 2014-09-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-8.jpg https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/09/2014-09-14-the_gospel_will_return_to_the_jews.mp3
297 en en-20140907-1 2738 God Providing What Is Needed For the Culmination of His Final Work 2014-09-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21619.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/09/2014-09-07-god_providing_what_is_needed_for_the_culmination_of_his_final_work.mp3
298 en en-20140831-1 5641 The People Striving To Complete the Work That Has Been Entrusted to Them in Each Time 2014-08-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21616.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/08/2014-08-31-the_people_striving_to_complete_the_work_entrusted_to_them_in_each_time.mp3
299 en en-20140822-1 2739 Elijah will turn the Heart of the Children to their Fathers Teaching 2014-08-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18-5.jpg https://www.carpa.com/sites/default/files/messages/en/2014/08/2014-08-22_elijah_will_turn_heart_children_their_fathers_teaching.mp3 https://www.carpa.com/sites/default/files/messages/en/2014/08/2014-08-22_elijah_will_turn_heart_children_their_fathers_teaching.pdf
300 en en-20140817-1 2740 Thy kingdom come and thy will be done in earth, as it is in heaven 2014-08-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-20-4.jpg https://www.carpa.com/sites/default/files/messages/en/2014/08/2014-08-17_thy_kingdom_come_and_thy_will_be_done_earth_it_heaven.mp3 https://www.carpa.com/sites/default/files/messages/en/2014/08/2014-08-17_thy_kingdom_come_and_thy_will_be_done_earth_it_heaven.pdf
301 en en-20140803-1 2741 The Spiritual Food for each time 2014-08-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-26-4.jpg https://www.carpa.com/sites/default/files/messages/en/2014/08/2014-08-03_the_spiritual_food_each_time.mp3 https://www.carpa.com/sites/default/files/messages/en/2014/08/2014-08-03_the_spiritual_food_each_time_0.pdf
302 en en-20140801-1 2742 The Seventh Seal and the Seventh Trumpet 2014-08-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-27-4.jpg https://www.carpa.com/sites/default/files/messages/en/2014/08/2014-08-01_the_seventh_seal_and_seventh_trumpet.mp3 https://www.carpa.com/sites/default/files/messages/en/2014/08/2014-08-01_the_seventh_seal_and_seventh_trumpet_0.pdf
303 en en-20140719-1 5808 May God Bless Our Goals for the Great Tent Cathedral 2014-07-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2014/07/2014-07-19-WSS-que_dios_bendiga_nuestras_metas_para_la_gran_carpa_catedral.jpg https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/05/2014-07-19-may_god_bless_our_goals_for_the_great_tent_cathedral.mp3
304 en en-20140712-1 5770 Elijah Comes Before the Great and Dreadful Day of the Lord 2014-07-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/05/youtube_thumbnail_21597.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/07/2014-07-12-elijah_comes_before_the_great_and_dreadful_day_of_the.mp3
305 en en-20140706-1 2743 Prepare yourself for the encounter with Jesus Christ 2014-07-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-21.jpg https://www.carpa.com/sites/default/files/messages/en/2014/07/2014-07-06_prepare_yourself_encounter_jesus_christ.mp3 https://www.carpa.com/sites/default/files/messages/en/2014/07/2014-07-06_prepare_yourself_encounter_jesus_christ.pdf
306 en en-20140705-1 2744 The Beast and the Image of the Beast 2014-07-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-23.jpg https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/07/2014-07-05-the_beast_and_the_image_of_the_beast.mp3
307 en en-20140704-1 5118 Elijah Will Come Before the Second Coming of Christ 2014-07-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21594.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/07/2014-07-04-1-elijah_will_come_before_the_second_coming_of_christ-low.mp3
308 en en-20140629-1 2746 The revelation of Jesus Christ in the Last Day 2014-06-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-20.jpg https://www.carpa.com/sites/default/files/messages/en/2014/06/2014-06-29_the_revelation_jesus_christ_last_day.mp3 https://www.carpa.com/sites/default/files/messages/en/2014/06/2014-06-29_the_revelation_jesus_christ_last_day.pdf
309 en en-20140629-2 2745 Our goal: Finish the work that God gave us to do 2014-06-29 2 https://ewr1.vultrobjects.com/lgcc-conferences/2024/11/youtube_thumbnail_21592.png https://www.carpa.com/sites/default/files/messages/en/2014/06/2014-06-29_our_goal_finish_work_god_gave_us_do.mp3 https://www.carpa.com/sites/default/files/messages/en/2014/06/2014-06-29_our_goal_finish_work_god_gave_us_do.pdf
310 en en-20140622-1 2747 The Active Church of the Lord Jesus Christ 2014-06-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-22.jpg https://www.carpa.com/sites/default/files/messages/en/2014/06/2014-06-22_the_active_church_lord_jesus_christ.mp3 https://www.carpa.com/sites/default/files/messages/en/2014/06/2014-06-22_the_active_church_lord_jesus_christ.pdf
311 en en-20140621-1 2748 Being successful by working alongside the Angel of the Lord Jesus Christ 2014-06-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-19.jpg https://www.carpa.com/sites/default/files/messages/en/2014/06/2014-06-21_being_successful_working_alongside_angel_lord_jesus_christ.mp3 https://www.carpa.com/sites/default/files/messages/en/2014/06/2014-06-21_being_successful_working_alongside_angel_lord_jesus_christ.pdf
312 en en-20140608-1 2749 Time to see 2014-06-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-13.jpg https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/06/2014-06-08-time_to_see.mp3
313 en en-20140601-1 2750 What must I do to be saved? 2014-06-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-11.jpg https://www.carpa.com/sites/default/files/messages/en/2014/06/2014-06-01_what_must_i_do_be_saved.mp3 https://www.carpa.com/sites/default/files/messages/en/2014/06/2014-06-01_what_must_i_do_be_saved.pdf
314 en en-20140525-1 5821 The Ripe Wheat 2014-05-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-19.jpg https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/06/2014-05-25-the_ripe_wheat.mp3
315 en en-20140518-1 2751 For here have we no continuing city, but we seek one to come 2014-05-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-21.jpg https://www.carpa.com/sites/default/files/messages/en/2014/05/2014-05-18_for_here_have_we_no_continuing_city_we_seek_one_come.mp3 https://www.carpa.com/sites/default/files/messages/en/2014/05/2014-05-18_for_here_have_we_no_continuing_city_we_seek_one_come.pdf
316 en en-20140503-1 6013 Watching and Working for the Fulfillment of the Scriptures 2014-05-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/10/youtube_thumbnail_21576.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/05/2014-05-03-watching_and_working_for_the_fulfillment_of_the_scriptures.mp3
317 en en-20140502-1 6518 The Spiritual and Physical Rapture of God’s Elect 2014-05-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/11/youtube_thumbnail_21575.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/11/2014_05_02_mm_the_spiritual_and_physical_rapture_of_gods_elect.mp3
318 en en-20140413-1 5691 The Works of Jesus Upon Entering Jerusalem 2014-04-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21567.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/04/2014-04-13-1-the_works_of_jesus_upon_entering_jerusalem.mp3
319 en en-20140405-1 5993 Heeding the Voice of Christ and Laboring in His Work 2014-04-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/09/youtube_thumbnail_21564.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/04/2014-04-05-heeding_the_voice_of_christ_and_laboring_in_his_work.mp3
320 en en-20140330-1 5663 The Angelic Visitation to the Human Family 2014-03-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21563.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/03/2014-03-30-the_angelic_visitation_to_the_human_family_1.mp3
321 en en-20140323-1 5341 What There Is Behind the Door 2014-03-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/youtube_thumbnail_21562.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/03/2014-03-23-what_there_is_behind_the_door.mp3
322 en en-20140308-1 6280 Casting the Net Based on the Word of the Lord Jesus Christ 2014-03-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/07/youtube_thumbnail_21558.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/07/2014_03_08_1_MM_casting_the_net_based_on_the_word_of_the_lord_jesus.mp3
323 en en-20140228-1 6029 Come Up Hither 2014-02-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/10/youtube_thumbnail_21553.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/02/2014_02_28_Come-Up-Hither.mp3
324 en en-20140214-1 5631 The Coming of the Son of Man With His Angels 2014-02-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21547.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/03/2014-02-14-1-the_coming_of_the_son_of_man_with_his_angels.mp3
325 en en-20140209-2 5872 The Simplicity Of God 2014-02-09 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-7.jpg https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/02/2014-02-09-the_simplicity_of_god.mp3
326 en en-20140207-1 5985 The Rewards for the Believers in Christ 2014-02-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/09/youtube_thumbnail_21544.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/02/2014-02-07-the_rewards_for_the_believers_in_christ.mp3
327 en en-20140202-1 2752 The mystery of the resurrection of the believers in Christ 2014-02-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-4.jpg https://www.carpa.com/sites/default/files/messages/en/2014/02/2014-02-02_the-mystery-resurrection-believers-christ.mp3
328 en en-20140119-1 2753 The signs of the end of time 2014-01-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-16.jpg https://www.carpa.com/sites/default/files/messages/en/2014/01/2014-01-19_the-signs-end-time.mp3
329 en en-20140112-1 2754 The Ten Virgins and the Great Tribulation 2014-01-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21536.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2014/01/2014-01-12-the_ten_virgins_and_the_great_tribulation.mp3
330 en en-20140105-1 2755 The Order of Worship 2014-01-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-20.jpg https://www.carpa.com/sites/default/files/messages/en/2014/01/2014-01-05_the_order_worship.pdf
331 en en-20131215-1 2756 The Steadfasteness of your faith in Christ 2013-12-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-3.jpg https://www.carpa.com/sites/default/files/messages/en/2013/12/2013-12-15_the_steadfasteness_your_faith_christ.pdf
332 en en-20131211-1 2757 The Pastors Feeding the Sheep of the Lord Jesus Christ With Knowledge and Understanding 2013-12-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_21520.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/12/2013-12-11-the_pastors_feeding_the_sheep_of_the_lord_jesus_christ.mp3
333 en en-20131208-1 2758 What is Written Must be Fulfilled 2013-12-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-25-3.jpg https://www.carpa.com/sites/default/files/messages/en/2013/12/2013-12-08_what_written_must_be_fulfilled.pdf
334 en en-20131206-1 2759 The Presence of Jesus 2013-12-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_21518.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/12/2013-12-06-1-the_presence_of_jesus.mp3
335 en en-20131201-1 2760 The Spirit of Elijah riding the ministerial trail for the Fifth time 2013-12-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/04/youtube_thumbnail_21517.png https://www.carpa.com/sites/default/files/messages/en/2013/12/2013-12-01_the_spirit_elijah_riding_ministerial_trail_fifth_time.pdf
336 en en-20131124-1 2761 The Revival of the Holy Spirit 2013-11-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-5-6.jpg https://www.carpa.com/sites/default/files/messages/en/2013/11/2013-11-24_the_revival_holy_spirit.pdf
337 en en-20131117-1 2762 Jesus Among the Multitude 2013-11-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-13.jpg https://www.carpa.com/sites/default/files/messages/en/2013/11/2013-11-17_jesus_among_multitude.pdf
338 en en-20131110-1 2763 The Man Who Can Turn On the Light 2013-11-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-15.jpg https://www.carpa.com/sites/default/files/messages/en/2013/11/2013-11-10_the_man_who_can_turn_light.pdf
339 en en-20131103-1 2764 Ask and it shall be given you 2013-11-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-15.jpg https://www.carpa.com/sites/default/files/messages/en/2013/11/2013-11-03_ask_and_it_shall_be_given_you.pdf
340 en en-20131027-1 2765 The Greatest Bliss, Receiving the Revelation from God through His Sent One 2013-10-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-12.jpg https://www.carpa.com/sites/default/files/messages/en/2013/10/2013-10-27_the-greatest-bliss-receiving-revelation-god-through-his-sent-one.mp3
341 en en-20131020-1 2766 Message that will cover the whole Earth 2013-10-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-14.jpg https://www.carpa.com/sites/default/files/messages/en/2013/10/2013-10-20_message_will_cover_whole_earth.pdf
342 en en-20131006-1 2767 I can do all things through Christ which strengtheneth me 2013-10-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-18.jpg https://www.carpa.com/sites/default/files/messages/en/2013/10/2013-10-06_i_can_do_all_things_through_christ_which_strengtheneth_me.pdf
343 en en-20130922-1 2768 Jesus Christ the same yesterday, and today and forever 2013-09-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-17.jpg https://www.carpa.com/sites/default/files/messages/en/2013/09/2013-09-22_jesu_christ_same_yesterday_and_today_and_forever.pdf
344 en en-20130921-1 2769 The Good and Faithful Servant 2013-09-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-8.jpg https://www.carpa.com/sites/default/files/messages/en/2013/09/2013-09-21_the_good_and_faithful_servant.pdf
345 en en-20130920-1 2770 We are Laborers together with God 2013-09-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-8.jpg https://www.carpa.com/sites/default/files/messages/en/2013/09/2013-09-20_we_are_laboreres_together_god.pdf
346 en en-20130912-1 2771 Seek Ye the Lord While He May be Found 2013-09-12 1 https://www.carpa.com/sites/default/files/messages/en/2013/09/2013-09-12_seek_ye_lord_while_he_may_be_found_0.pdf
347 en en-20130911-1 6259 God Performing His Word for Today 2013-09-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/07/youtube_thumbnail_21496.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/07/2013-09-11-mm-god_performing_his_word_for_today.mp3
348 en en-20130827-1 2773 The Secret of Prosperity for we were born to overcome 2013-08-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-16.jpg https://www.carpa.com/sites/default/files/messages/en/2013/08/2013-08-27_the_secret_prosperity_we_were_born_overcome.pdf
349 en en-20130825-1 2774 The Token to Leave on the Exodus 2013-08-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-7.jpg https://www.carpa.com/sites/default/files/messages/en/2013/08/2013-08-25_the_token_leave_exodus.pdf
350 en en-20130818-1 2775 The Importance of Worship 2013-08-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/08/youtube_thumbnail_21489.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/08/2013-08-18-the_importance_of_worship.mp3
351 en en-20130811-1 2776 Attentive to the Voice of the Angel that will take us into the Promise Land 2013-08-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-6.jpg https://www.carpa.com/sites/default/files/messages/en/2013/08/2013-08-11_attentive_voice_angel_will_take_us_promise_land.pdf
352 en en-20130808-1 2777 Except a man be born again, he cannot see the Kingdom of God 2013-08-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-4.jpg https://www.carpa.com/sites/default/files/messages/en/2013/08/2013-08-08_except_man_be_born_again_he_cannot_see_kingdom_god.pdf
353 en en-20130807-1 2778 Believe His prophets, so shall ye prosper 2013-08-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-3.jpg https://www.carpa.com/sites/default/files/messages/en/2013/08/2013-08-07_believe_his_prophets_so_shall_ye_prosper.pdf
354 en en-20130806-1 2779 Prepare your self to meet Jesus Christ 2013-08-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-2.jpg https://www.carpa.com/sites/default/files/messages/en/2013/08/2013-08-06_prepare_your_self_meet_jesus_christ.pdf
355 en en-20130804-1 2780 Faith, more precious than gold. 2013-08-04 1 https://www.carpa.com/sites/default/files/messages/en/2013/08/2013-08-04_faith_more_precious_gold.mp3 https://www.carpa.com/sites/default/files/messages/en/2013/08/2013-08-04_faith_more_precious_gold.pdf
356 en en-20130803-1 2781 Touch not mine anointed, and do my Prophets no harm 2013-08-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18-2.jpg https://www.carpa.com/sites/default/files/messages/en/2013/08/2013-08-03_touch_not_mine_anointed_and_do_my_prophets_no_harm.pdf
357 en en-20130802-1 2783 Making good use of the Time that Remains for us 2013-08-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-20-2.jpg https://www.carpa.com/sites/default/files/messages/en/2013/08/2013-08-02_making_good_useof_time_remains_us.pdf
358 en en-20130802-2 2782 The Leadership of the Angel of the Lord 2013-08-02 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-2.jpg https://www.carpa.com/sites/default/files/messages/en/2013/08/2013-08-02_the_leadership_angel_lord.pdf
359 en en-20130801-1 2784 The importance of knowing the time we live in to obey the Voice of God today 2013-08-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-2.jpg https://www.carpa.com/sites/default/files/messages/en/2013/08/2013-08-01_the_important_knowing_thetime_we_live_obeythe_voice_god_today.pdf
360 en en-20130731-1 2785 God's Visitation 2013-07-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-11.jpg https://www.carpa.com/sites/default/files/messages/en/2013/07/2013-07-31_gods_visitation.pdf
361 en en-20130728-1 2786 The Divine Counsel 2013-07-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-13.jpg https://www.carpa.com/sites/default/files/messages/en/2013/07/2013-07-28_the-divine-counsel.mp3
362 en en-20130721-1 2787 The Revelation of the Word of God is brought by the Holy Spirit 2013-07-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-13.jpg https://www.carpa.com/sites/default/files/messages/en/2013/07/2013-07-21_the_revelation_word_god_brought_holy_spirit.mp3 https://www.carpa.com/sites/default/files/messages/en/2013/07/2013-07-21_the_revelation_word_god_brought_holy_spirit.pdf
363 en en-20130714-1 2788 Knowing the time of the visitation of God to avoid the jugments that will come 2013-07-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21474.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/07/2013-07-14-1-knowing_the_time_of_visitation_of_god_to_avoid_the_jugments_that_will_come-low.mp3
364 en en-20130707-1 2789 Where the Name of God is, there shall be the Blessing 2013-07-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-14.jpg https://www.carpa.com/sites/default/files/messages/en/2013/07/2013-07-07_where_name_god_there_shall_be_blessing.pdf
365 en en-20130705-1 2790 The Time of Trial and Blessing 2013-07-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/10/youtube_thumbnail_21471.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/07/2013-07-15-1-time_of_trial_and_blessing.mp3
366 en en-20130630-1 2792 God's the Visitation to Seed of Abraham 2013-06-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-12.jpg https://www.carpa.com/sites/default/files/messages/en/2013/06/2013-06-30_gods_visitation_seed_abraham.mp3 https://www.carpa.com/sites/default/files/messages/en/2013/06/2013-06-30_gods_visitation_seed_abraham.pdf
367 en en-20130630-3 2791 The Visitation of God, the Greatest Blessing 2013-06-30 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-12.jpg https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/06/2013-06-30-the_visitation_of_god_the_greatest_blessing.mp3
368 en en-20130623-1 2793 Fear God 2013-06-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/09/youtube_thumbnail_21466.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/06/2013-06-23-fear_god.mp3
369 en en-20130616-1 2794 The House of God Today 2013-06-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-13.jpg https://www.carpa.com/sites/default/files/messages/en/2013/06/2013-06-16_the_house_god_today.pdf
370 en en-20130609-1 2795 Hunger to Hear the Word of God Today 2013-06-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_21463.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/06/2013-06-09-1-hunger_to_hear_the_word_of_god_today-low.mp3
371 en en-20130606-1 2796 Created in Christ Jesus for good works 2013-06-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-6.jpg https://www.carpa.com/sites/default/files/messages/en/2013/06/2013-06-06_created_christ_jesus_good_works.pdf
372 en en-20130602-1 2797 Lord, Increase our Faith 2013-06-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-6.jpg https://www.carpa.com/sites/default/files/messages/en/2013/06/2013-06-02_lord_increase_our_faith.pdf
373 en en-20130531-2 5095 The Time is Fulfilled and the Kingdom of the Heavens Is at Hand 2013-05-31 2 https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_21458.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/05/2013-05-31-2-the_time_is_fulfilled_and_the_kingdom_of_god_is_at_hand-low.mp3
374 en en-20130526-1 2798 The Kingdoms of this World will become fo Jesus Christ 2013-05-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-11.jpg https://www.carpa.com/sites/default/files/messages/en/2013/05/2013-05-26_the_kingdoms_world_will_become_fo_jesus_christ.mp3 https://www.carpa.com/sites/default/files/messages/en/2013/05/2013-05-26_the_kingdoms_world_will_become_fo_jesus_christ.pdf
375 en en-20130512-1 2799 The Book of Redemption 2013-05-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-14.jpg https://www.carpa.com/sites/default/files/messages/en/2013/05/2013-05-12_the_book_redemption.mp3 https://www.carpa.com/sites/default/files/messages/en/2013/05/2013-05-12_the_book_redemption.pdf
376 en en-20130505-1 2800 The confrontation between the thow seeds 2013-05-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-12.jpg https://www.carpa.com/sites/default/files/messages/en/2013/05/2013-05-05_the_confrontation_between_thow_seeds.pdf
377 en en-20130503-1 2801 The Two Seeds 2013-05-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/08/youtube_thumbnail_21452.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/05/2013-05-13-the_two_seeds.mp3
378 en en-20130428-1 2802 Crying out for the glorious liberty of the children of God 2013-04-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-10.jpg https://www.carpa.com/sites/default/files/messages/en/2013/04/2013-04-28_crying-out-glorious-liberty-children-god.mp3
379 en en-20130421-1 2803 The Manifestations of the power of God 2013-04-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/11/youtube_thumbnail_21447.png https://www.carpa.com/sites/default/files/messages/en/2013/04/2013-04-21_the_manifestations_power_god.pdf
380 en en-20130417-1 2804 The only eternal refuge 2013-04-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-12.jpg https://www.carpa.com/sites/default/files/messages/en/2013/04/2013-04-17_the_only_eternal_refuge.pdf
381 en en-20130414-1 2805 The Watchful Church 2013-04-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-5.jpg https://www.carpa.com/sites/default/files/messages/en/2013/04/2013-04-14_the_watchful_church.pdf
382 en en-20130413-1 2806 Blessed ladies choosing the best part 2013-04-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-5.jpg https://www.carpa.com/sites/default/files/messages/en/2013/04/2013-04-13_blessed_ladies_choosing_best_part.pdf
383 en en-20130411-1 2807 The Coming of the Lord as a Thief in the Night 2013-04-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-5.jpg https://www.carpa.com/sites/default/files/messages/en/2013/04/2013-04-11_the_coming_lord_thief_night.pdf
384 en en-20130407-1 2808 The Revelation Contained in the Seven Thunders That John Heard and Was Forbidden to Write 2013-04-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-3.jpg https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/04/2013-04-07-the_revelation_contained_in_the_seven_thunders_that_John-low.mp3
385 en en-20130331-1 2809 Jesus Christ has Risen from Among the Dead 2013-03-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-12.jpg https://www.carpa.com/sites/default/files/messages/en/2013/03/2013-03-31_jesus_christ_has_risen_among_dead.mp3 https://www.carpa.com/sites/default/files/messages/en/2013/03/2013-03-31_jesus_christ_has_risen_among_dead.pdf
386 en en-20130329-1 2810 The Sentence of Jesus The Crucifixion 2013-03-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-10.jpg https://www.carpa.com/sites/default/files/messages/en/2013/03/2013-03-29_the_sentence_jesus_crucifixion.pdf
387 en en-20130324-1 2811 The Entrance of Jeus Christ to Jerusalem 2013-03-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-11.jpg https://www.carpa.com/sites/default/files/messages/en/2013/03/2013-03-24_the_entrance_jeus_christ_jerusalem.pdf
388 en en-20130321-1 6526 Words of Greeting 2013-03-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/11/youtube_thumbnail_21434.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/11/2013-03-21-1-words_of_greeting.mp3
389 en en-20130317-1 2813 Time to be Prepare for the Coming of the Lord 2013-03-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-4.jpg https://www.carpa.com/sites/default/files/messages/en/2013/03/2013-03-17_time_be_prepare_coming_lord.pdf
390 en en-20130310-1 2814 The Ministries of Moses and Elijah Operating at the End of Time 2013-03-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/09/youtube_thumbnail_21432.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/03/2013-03-10-the-ministries_of_moses_and_elijah_operating_at_the_end_of_time.mp3
391 en en-20130303-1 2815 The Third Pull 2013-03-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_21431.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/03/2013-03-03-the_third_pull.mp3
392 en en-20130301-1 2816 The Sign of the Son of Man 2013-03-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21430.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/03/2013-03-01-the_sign_of_the_son_of_man.mp3
393 en en-20130224-1 2817 The Beginning of the Creation 2013-02-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-9.jpg https://www.carpa.com/sites/default/files/messages/en/2013/02/2013-02-24_the_beginning_creation.pdf
394 en en-20130217-1 2818 All Things Under Heaven Have Their Time 2013-02-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21428.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/02/2013-02-17-1-all_things_under_heaven_have_their_time.mp3
395 en en-20130210-1 2819 The Requirements to enter in to the Promised Land 2013-02-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-9.jpg https://www.carpa.com/sites/default/files/messages/en/2013/02/2013-02-10_the_requirements_enter_promised_land.pdf
396 en en-20130203-1 2820 The Eternal Gospel to be Preached to the inhabitants of the Earth 2013-02-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-10.jpg https://www.carpa.com/sites/default/files/messages/en/2013/02/2013-02-03_the_eternal_gospel_be_preached_inhabitants_earth.pdf
397 en en-20130202-1 2821 At The End There Shall Be One Fold And One Shepherd 2013-02-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-9.jpg https://www.carpa.com/sites/default/files/messages/en/2013/02/2013-02-02_at_end_there_shall_be_one_fold_and_one_shepherd.pdf
398 en en-20130201-2 2822 He that hath an ear, let him hear what the Spirit hath to said unto the Churches 2013-02-01 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-11.jpg https://www.carpa.com/sites/default/files/messages/en/2013/02/2013-02-01_he-hath-ear-let-him-hear-what-spirit-hath-said-unto-churches.mp3
399 en en-20130127-1 2823 The Restoration Of The Firstborn Son Of God 2013-01-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_21420.png https://www.carpa.com/sites/default/files/messages/en/2013/01/2013-01-27_the_restoration_firstborn_son_god.pdf
400 en en-20130120-1 2824 God Providing at the Time of the End 2013-01-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/10/youtube_thumbnail_21419.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2013/01/2013-01-20-god_providing_at_the_tIme_of_the_end.mp3
401 en en-20130113-1 2825 The Spirit of Truth 2013-01-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-8.jpg https://www.carpa.com/sites/default/files/messages/en/2013/01/2013-01-13_the_spirit_truth.pdf
402 en en-20130106-1 2826 The Age of the Cornerstone in the church of the Lord Jesus Christ 2013-01-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-9.jpg https://www.carpa.com/sites/default/files/messages/en/2013/01/2013-01-06_the_age_cornerstone_church_lord_jesus_christ.pdf
403 en en-20121216-1 2827 Persevering Until the End 2012-12-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/11/youtube_thumbnail_21409.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2012/12/2012-12-16-persevering_until_the_end.mp3
404 en en-20121201-1 2828 A divine goal: The Restoration of the Kingdom of David 2012-12-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-1.jpg https://www.carpa.com/sites/default/files/messages/en/2012/12/2012-12-01_a-divine-goal-restoration-kingdom-david.mp3
405 en en-20121103-1 6428 Promises and Prophecies in the Great Tent Cathedral 2012-11-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/10/youtube_thumbnail_21398.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2012/11/2012_11_03_1_promises_and_prophecies_in_the_great_tent_cathedral.mp3
406 en en-20121028-1 2829 The Trajectory of the Construction of God's Temple 2012-10-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21397.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2012/10/2012-10-28-1-the_trajectory_of_the_construction_of_gods_temple-low.mp3
407 en en-20121021-1 2830 Joseph Among the Gentiles 2012-10-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-6.jpg https://www.carpa.com/sites/default/files/messages/en/2012/10/2012-10-21_joseph_among_gentiles.pdf
408 en en-20121014-1 2831 The Open of the Sixth Seal 2012-10-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-7.jpg https://www.carpa.com/sites/default/files/messages/en/2012/10/2012-10-14_the_open_sixth_seal.pdf
409 en en-20121007-2 2833 The Feast of the Tabernacles 2012-10-07 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-6.jpg https://www.carpa.com/sites/default/files/messages/en/2012/10/2012-10-07_the_feast_tabernacles.pdf
410 en en-20121007-1 2832 The Inauguration of the Class Room of the Bible School 2012-10-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-7.jpg https://www.carpa.com/sites/default/files/messages/en/2012/10/2012-10-07_the_inauguration_class_room_bible_school.pdf
411 en en-20120930-1 2835 We are a People Reddemed with the Blood of the Lord Jesus Christ 2012-09-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-6.jpg https://www.carpa.com/sites/default/files/messages/en/2012/09/2012-09-30_we_are_people_reddemed_blood_lord_jesus_christ.pdf
412 en en-20120929-1 2836 The Feast of the Atonement 2012-09-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-5.jpg https://www.carpa.com/sites/default/files/messages/en/2012/09/2012-09-29_the_feast_atonement.pdf
413 en en-20120923-1 2837 The Feast of the Trumpet 2012-09-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-6.jpg https://www.carpa.com/sites/default/files/messages/en/2012/09/2012-09-23_the_feast_trumpet.pdf
414 en en-20120916-1 2838 The Spirit of the Eternal One giving LIfe 2012-09-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-2.jpg https://www.carpa.com/sites/default/files/messages/en/2012/09/2012-09-16_the_spirit_eternal_one_giving_life.pdf
415 en en-20120909-1 2839 The Call to Come Up 2012-09-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-2.jpg https://www.carpa.com/sites/default/files/messages/en/2012/09/2012-09-09_the_call_come.pdf
416 en en-20120902-1 2840 Zion, the Mount of God 2012-09-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-2.jpg https://www.carpa.com/sites/default/files/messages/en/2012/09/2012-09-02_zion_mount_god.pdf
417 en en-20120901-1 2841 The Amnesty in the Kingdom of God 2012-09-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-1.jpg https://www.carpa.com/sites/default/files/messages/en/2012/09/2012-09-01_the_amnesty_kingdom_god.pdf
418 en en-20120826-1 2843 The Seed of Abraham 2012-08-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-6.jpg https://www.carpa.com/sites/default/files/messages/en/2012/08/2012-08-26_the_seed_abraham.pdf
419 en en-20120819-1 2844 The Great Victory in Love Divine 2012-08-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-5.jpg https://www.carpa.com/sites/default/files/messages/en/2012/08/2012-08-19_the_great_victory_love_divine.pdf
420 en en-20120812-1 2845 Full Obedience to God's Anointed 2012-08-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-5.jpg https://www.carpa.com/sites/default/files/messages/en/2012/08/2012-08-12_full_obedience_gods_anointed.pdf
421 en en-20120805-1 2846 Lord, What wilt thou have me to do? 2012-08-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-4.jpg https://www.carpa.com/sites/default/files/messages/en/2012/08/2012-08-05_lord_what_wilt_thou_have_me_do.pdf
422 en en-20120729-1 2847 Adding to your Faith all the Virtues 2012-07-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-3.jpg https://www.carpa.com/sites/default/files/messages/en/2012/07/2012-07-29_adding_your_faith_all_virtues.pdf
423 en en-20120722-1 2849 The Predestinated Path for the Adoption of the Children of God 2012-07-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-4.jpg https://www.carpa.com/sites/default/files/messages/en/2012/07/2012-07-22_the_predestinated_path_adoption_children_god.pdf
424 en en-20120715-1 2850 The Authority of Jesus Christ 2012-07-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-1.jpg https://www.carpa.com/sites/default/files/messages/en/2012/07/2012-07-15_the_authority_jesus_christ.pdf
425 en en-20120708-1 2851 The Title Deed in the Hands of a Man 2012-07-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-1.jpg https://www.carpa.com/sites/default/files/messages/en/2012/07/2012-07-08_the_title_deed_hands_man.pdf
426 en en-20120707-1 2852 God Vindicating His Word in each Time 2012-07-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-1.jpg https://www.carpa.com/sites/default/files/messages/en/2012/07/2012-07-07_god_vindicating_his_word_each_time.pdf
427 en en-20120701-1 2853 What's the Time on God's Clock 2012-07-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-1.jpg https://www.carpa.com/sites/default/files/messages/en/2012/08/2012-08-10_whats_time_gods_clock.pdf
428 en en-20120624-1 2854 Putting the Hands on the Plow without looking Back 2012-06-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-5.jpg https://www.carpa.com/sites/default/files/messages/en/2012/06/2012-06-24_putting_hands_plow_without_looking_back.pdf
429 en en-20120617-1 2855 The Heavenly Father 2012-06-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_21366.png https://www.carpa.com/sites/default/files/messages/en/2012/06/2012-06-17_the_heavenly_father.pdf
430 en en-20120610-2 2857 Closing Words in the Special Activity of Holy Supper and Washing of Feet 2012-06-10 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-4.jpg https://www.carpa.com/sites/default/files/messages/en/2012/06/2012-06-10_closing_words_special_activity_holy_supper_and_washing_feet.pdf
431 en en-20120610-1 2856 Sanctify Yourselves for Tomorrow the Lord will do Wonders Among You 2012-06-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-4.jpg https://www.carpa.com/sites/default/files/messages/en/2012/06/2012-06-10_sanctify_yourselves_tomorrow_lord_will_do_wonders_among_you.pdf
432 en en-20120609-1 2858 God Defers His Anger 2012-06-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_21362.png https://www.carpa.com/sites/default/files/messages/en/2012/06/2012-06-09_god_defers_his_anger.pdf
433 en en-20120603-1 2859 Faith: The Substance of Things Hoped for 2012-06-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-3.jpg https://www.carpa.com/sites/default/files/messages/en/2012/06/2012-06-03_faith_substance_things_hoped.pdf
434 en en-20120527-1 2860 New Heavens and New Earth 2012-05-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/k3A7UH4H-youtube_thumbnail_21358.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2012/05/2012-05-27-new_heavens_and_new_earth.mp3
435 en en-20120520-1 2861 A People Waiting for the Manifestation of God all It's Fullness 2012-05-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_21357.png https://www.carpa.com/sites/default/files/messages/en/2012/05/2012-05-20_a_people_waiting_manifestation_god_all_its_fullness.pdf
436 en en-20120513-1 2862 The Mourning of the Nations when they see the coming of the Son of Man 2012-05-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-3.jpg https://www.carpa.com/sites/default/files/messages/en/2012/05/2012-05-13_the_mourning_nations_when_they_see_coming_son_man.pdf
437 en en-20120506-1 2863 The Influence of the Heavenly Dimension over the Earthly Realm 2012-05-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-5.jpg
438 en en-20120505-1 2864 The Mission of the Archangels of God 2012-05-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-4.jpg https://www.carpa.com/sites/default/files/messages/en/2012/05/2012-05-05_the_mission_archangels_god.pdf
439 en en-20120429-1 2865 Receiving a Kingdom which cannot be Moved 2012-04-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-2.jpg
440 en en-20120422-1 2866 The Lamb's Book of Life 2012-04-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-2.jpg
441 en en-20120415-1 2867 The Church, a product of the Masterpiece 2012-04-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-3.jpg https://www.carpa.com/sites/default/files/messages/en/2012/04/2012-04-15_the_church_product_masterpiece.pdf
442 en en-20120408-1 2868 The Resurrection of Jesus Christ 2012-04-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-2.jpg
443 en en-20120407-1 2869 Jesus Christ Preaching to the Spirits in Prison 2012-04-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-4.jpg https://www.carpa.com/sites/default/files/messages/en/2012/04/2012-04-07_jesus_christ_preaching_spirits_prison.pdf
444 en en-20120406-1 2870 Crucifixion and Death of Christ 2012-04-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_21344.png
445 en en-20120401-1 2871 Christ's Triumphal Entry for the Salvation of the World 2012-04-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2026/01/youtube_thumbnail_21343.png https://www.carpa.com/sites/default/files/messages/en/2012/04/2012-04-01_christs_triumphal_entry_salvation_world.pdf
446 en en-20120325-1 2872 In Route to the Promised Land with three Kinds of Believer 2012-03-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-5-3.jpg https://www.carpa.com/sites/default/files/messages/en/2012/03/2012-03-25_in_route_promised_land_three_kinds_believer.pdf
447 en en-20120318-1 2873 Preparing for the Fulfillment of the Prophecies 2012-03-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-2.jpg https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2012/03/2012-03-18-preparing_ourselves_for_the_fullfillment_of_the_prophecies.mp3
448 en en-20120311-1 2874 Christ, the Light 2012-03-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-3.jpg https://www.carpa.com/sites/default/files/messages/en/2012/03/2012-03-11_christ_light.pdf
449 en en-20120304-1 2876 Endued with Power from on High 2012-03-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-1.jpg https://www.carpa.com/sites/default/files/messages/en/2012/03/2012-03-04_endued_power_high.pdf
450 en en-20120303-1 2875 A Sign that cannot be Overlooked 2012-03-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/03/youtube_thumbnail_21334.png https://www.carpa.com/sites/default/files/messages/en/2012/03/2012-03-03_a_sign_cannot_be_overlooked.pdf
451 en en-20120226-1 2877 The Word of God which effectually works in the believer 2012-02-26 1 https://www.carpa.com/sites/default/files/messages/en/2012/02/2012-02-26_the-word-god-which-effectually-works-believer.mp3
452 en en-20120219-1 2878 Parallel Times 2012-02-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-2.jpg https://www.carpa.com/sites/default/files/messages/en/2012/02/2012-02-19_parallel-times.mp3
453 en en-20120212-1 2879 The promise for permanent peace for Jerusalem 2012-02-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-2.jpg https://www.carpa.com/sites/default/files/messages/en/2012/02/2012-02-12_the-promise-permanent-peace-jerusalem.mp3
454 en en-20120205-1 2880 Christ revealed through the Trajectory of the human race 2012-02-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-5-2.jpg https://www.carpa.com/sites/default/files/messages/en/2012/02/2012-02-05_christ-revealed-through-trajectory-human-race.mp3
455 en en-20120101-1 2881 The New Year 2012-01-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-1.jpg https://www.carpa.com/sites/default/files/messages/en/2012/01/2012-01-01_the_new_year.mp3
456 en en-20110819-1 6487 The Power of Transformation 2011-08-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/11/youtube_thumbnail_21260.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/11/2011-08-19-1-the_power_of_transformation.mp3
457 en en-20110721-2 6434 It’s Already Time To Be in the Safe Place 2011-07-21 2 https://ewr1.vultrobjects.com/lgcc-conferences/2025/10/youtube_thumbnail_21244.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/10/2000-12-01-1-MM-lord_what_do_you_want_me_to_do-1.mp3
458 en en-20110604-1 6606 Time to Gather with the Lord 2011-06-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2026/01/youtube_thumbnail_21224.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2026/02/2011-06-04-1-time_to_gather_wIth_the_lord.mp3
459 en en-20110514-2 6585 Being Vigilant and Watching for God’s Anointed One 2011-05-14 2 https://ewr1.vultrobjects.com/lgcc-conferences/2026/01/youtube_thumbnail_21212.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2026/01/2011_05_14_1_mm_watching_and_being_vigilant_for_gods_anointed_one.mp3
460 en en-20110513-1 6199 Time to Ripen in the Light of the Word 2011-05-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/06/youtube_thumbnail_21209.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/06/2011-05-13-mm-time_to_ripen_in_the_light_of_the_word.mp3
461 en en-20110508-1 5726 The Spirit of God and the Spirit of the Antichrist 2011-05-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21207.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/04/2011-05-08-the_spirit_of_god_and_the_spirit_of_the_antichrist.mp3
462 en en-20110429-1 5802 Time of Expectation for Salvation or for Judgment 2011-04-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/05/youtube_thumbnail_21203.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/05/2011-04-29-time_for_expectation_for_salvation_or_for_judgment.mp3
463 en en-20110402-1 6231 The Identification of the Disciples of the Lord Jesus Christ 2011-04-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/06/youtube_thumbnail_21194.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/06/2017-03-03-1-gods_promise_to_abraham_introduction.mp3
464 en en-20110319-1 5753 The Security of God’s Anointed 2011-03-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21190.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/04/2011-03-19-the_security_of_gods_anointed.mp3
465 en en-20101224-1 6289 The Law of Repetition 2010-12-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/07/youtube_thumbnail_21159.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/07/2010-12-24-mm-the_law_of_repetition.mp3
466 en en-20101106-1 6302 The Prophecy of the Two Olive Trees 2010-11-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_21142.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2016/11/2010-11-06-the_prophecy_of_the_two_olive_trees.mp3
467 en en-20100928-2 5221 The Greatness and Content of the Seventh Seal 2010-09-28 2 https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21125.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2010/09/2010-09-28-2-the_greatness_and_content_of_the_seventh_seal.mp3
468 en en-20100927-1 6073 Elohim’s Visit to Abraham’s Seed and Its Purpose 2010-09-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/02/youtube_thumbnail_21124-1.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2010/09/2010-09-27-MM-elohims_visit_to_abrahams_seed_and_its_purpose.mp3
469 en en-20100925-1 5229 Speak, Lord, for Thy Servant Heareth 2010-09-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21122-1.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2010/09/2010-09-25-1-speak_lord_for_thy_servant_heareth.mp3
470 en en-20100924-1 2882 The evangelism of the end time 2010-09-24 1 https://www.carpa.com/sites/default/files/messages/en/2010/09/2010-09-24_the_evangelism_end_time.pdf
471 en en-20100918-1 6063 The Blessing of Following God’s Counsel in Our Time 2010-09-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/02/youtube_thumbnail_21117.png
472 en en-20100904-1 5161 God Giving His Children Wisdom and Intelligence for the Work They Have Been Entrusted With 2010-09-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21112.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/07/2010-09-04-god_giving_his_children_wisdom_and_intelligence_for_the_work_they_have_been_entrusted_with.mp3
473 en en-20100828-1 6370 The Mystery of the Second Adam and the Second Eve Together, At the Last Day, Finishing His Work 2010-08-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/09/youtube_thumbnail_21107.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/09/2010_08_28_the_mystery_of_the_second_adam_and_the_second_eve_together.mp3
474 en en-20100812-2 5177 Jesus Christ Delivering What the Enemy Bound 2010-08-12 2 https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21088.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/08/2010-08-12-2-jesus_christ_delivering_what_the_enemy_bound-low.mp3
475 en en-20100812-1 5184 The Duality of the Second Adam: The Great Mystery of Christ and His Church 2010-08-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21089.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/08/2010-08-10-1-the_duality_of_the_second_adam_the_great_mystery_of_christ_and_his_church-low.mp3
476 en en-20100717-2 6058 The Mighty Men and Women of the Son of David Doing a Greater Work 2010-07-17 2 https://ewr1.vultrobjects.com/lgcc-conferences/2025/01/youtube_thumbnail_21066.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/02/2010-07-17-2-MM-the_mighty_men_and_women_of_the_son_of_david_doing_a_greater_work.mp3
477 en en-20100706-1 5705 A Heavenly Cry 2010-07-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21057.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/04/2010-07-06-a_heavenly_cry.mp3
478 en en-20100506-2 5281 The Sun, the Moon, and the Stars Indicating the Time and Giving Us the Signs of the End 2010-05-06 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_21025.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/09/2010-05-06-2-the_sun_the_moon_and_the_stars_indicating_the_time.mp3
479 en en-20100110-1 6172 Joseph Reveals Himself to His Brothers 2010-01-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/05/youtube_thumbnail_20927.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/05/2010-01-10-joseph-reveals-himself-to-his-brothers.mp3
480 en en-20091205-1 6309 The Son of Man: A Sign for This Generation 2009-12-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_20903.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/08/2009-12-05-the_son_of_man_a_sign_for_this_generation.mp3
481 en en-20091116-2 5962 The Man Who Receives the Vesture, the Horse and the Crown of the King (and the Scepter) 2009-11-16 2 https://ewr1.vultrobjects.com/lgcc-conferences/2024/08/youtube_thumbnail_20895.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2009/11/2009-11-16-2-the_man_who_receives_the_vesture_the_horse_and_crown_of_the_king_and_scepter.mp3
482 en en-20091018-1 6157 On God’s Agenda: The Elect and the Fig Tree 2009-10-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/05/youtube_thumbnail_20877.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/05/2009-10-18-1-in_gods_agenda_the_elect_and_the_fig_tree.mp3
483 en en-20090905-1 5300 Obedient to the Heavenly Vision 2009-09-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_20848.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/09/2009-09-05-RM-obedient_to_the_heavenly_vision.mp3
484 en en-20090822-4 6376 Prophet of God: Interpreter of the Word of God 2009-08-22 4 https://ewr1.vultrobjects.com/lgcc-conferences/2025/09/youtube_thumbnail_20829.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/09/2009_08_22_4_mm_prophet_of_god_an_interpreter_of_the_word_of_god.mp3
485 en en-20090522-1 5980 The Angel With the Seven Thunders Finalizing Time 2009-05-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/09/youtube_thumbnail_20758.png
486 en en-20090424-2 5322 Good Tidings of Great Joy for the First and Second Coming of Christ 2009-04-24 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/youtube_thumbnail_20738.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/10/2009-04-24-2-good_tidings_of_great_joy_for_the_first_and_second.mp3
487 en en-20090420-1 5969 The Visit of the Angels to the Seed of Abraham 2009-04-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/09/youtube_thumbnail_20733.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/09/2009-04-20-the_visit_of_the_angels_to_the_seed_of_abraham.mp3
488 en en-20090331-1 6475 Moses and Elijah on the Mountain of God 2009-03-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/11/youtube_thumbnail_20721.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/11/2016-07-08-1-identifying_the_end_of_time_introduction.mp3
489 en en-20090330-1 6545 Words of Greeting to the Pastors 2009-03-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/12/youtube_thumbnail_20719.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/12/2009-03-30-1-mm-words_of_greeting_to_the_pastors-1.mp3
490 en en-20090325-1 6101 Words of Greeting to the Ministers 2009-03-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/04/youtube_thumbnail_20715.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/05/2009-03-25-mm-words_of_greeting_to_the_ministers.mp3
491 en en-20090323-1 5828 The Mighty Angel with the Rainbow upon His Head, Swearing That Time Is No More 2009-03-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/06/youtube_thumbnail_20712.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/06/2009-03-23-the_mighty_angel_with_the_rainbow_upon.mp3
492 en en-20090322-2 6149 The Power of the Holy Spirit Becoming Incarnate and Working in His Church 2009-03-22 2 https://ewr1.vultrobjects.com/lgcc-conferences/2025/05/youtube_thumbnail_20709.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/05/2009_03_22_2_MM_the_power_of_the_holy_spirit_becoming_incarnate.mp3
493 en en-20090321-2 5944 Words of Greeting to the Pastors 2009-03-21 2 https://ewr1.vultrobjects.com/lgcc-conferences/2024/08/youtube_thumbnail_20708.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/08/2009-03-21-words_of_greeting_to_the-_pastors.mp3
494 en en-20090309-2 5915 Pastors Honoring the Ministry of the Last Day 2009-03-09 2 https://ewr1.vultrobjects.com/lgcc-conferences/2024/07/youtube_thumbnail_20687.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2009/03/2009-03-09-pastors_honoring_the_ministry_of_the_last_day.mp3
495 en en-20090307-1 6006 Ministers Doing the Will of God Until the Promise Is Obtained 2009-03-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/09/youtube_thumbnail_20684.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2009/03/2009-03-07-ministers_doing_the_will_of_god_until_the_promise_is_obtained.mp3
496 en en-20090221-1 6067 The One Who Reveals Secret Things 2009-02-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/02/youtube_thumbnail_20669.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2009/02/2009-02-21-MM-the_one_who_reveals_secret_things.mp3
497 en en-20090205-1 5933 The Preaching of the Gospel of the Kingdom 2009-02-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/08/youtube_thumbnail_20651.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2009/02/2009-02-05-the-preaching_of_the_gospel_of_the_kingdom.mp3
498 en en-20090130-1 5956 Pastors Attentive and Obedient to the Word of God 2009-01-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/08/youtube_thumbnail_20641.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2009/01/2009-01-30-pastors_attentive_and_bedient_to_the_word_of_god.mp3
499 en en-20090122-1 6337 Words of Greeting to the Pastors 2009-01-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_20634.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/08/2016-06-05-the_kings_message-1.mp3
500 en en-20081221-1 6562 The Son of the Virgin Is Born 2008-12-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/12/youtube_thumbnail_20620.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/12/2008-12-21-1-the_son_of_the_virgin_is_born.mp3
501 en en-20081220-1 6211 Words of Greeting to the Pastors 2008-12-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/06/youtube_thumbnail_20619.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/06/2008-12-20-mm-words_of_greeting_to_the_pastors.mp3
502 en en-20081122-2 6356 The Marriage Yoke between Christ and His Church 2008-11-22 2 https://ewr1.vultrobjects.com/lgcc-conferences/2025/09/youtube_thumbnail_20610.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/09/2008_11_22_2_MM_the_marriage_yoke_between_christ_and_his_church.mp3
503 en en-20081004-1 6000 What Happens at the Last Trumpet 2008-10-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/09/youtube_thumbnail_20567.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/09/2008-10-04-what_happens_at_the_last_trumpet.mp3
504 en en-20080918-1 5434 Who, Then, Is the Faithful and Wise Servant? 2008-09-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_20552.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2008/09/2008-09-18-who_then_is_the_faithful_and_wise_servant.mp3
505 en en-20080917-2 6238 The Priestly Blessing 2008-09-17 2 https://ewr1.vultrobjects.com/lgcc-conferences/2025/06/youtube_thumbnail_20551.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/07/2008-09-17-2-MM-the_priestly_blessing.mp3
506 en en-20080913-2 6508 Ministers Who Take Heed, Working on and with the Living Prophecy 2008-09-13 2 https://ewr1.vultrobjects.com/lgcc-conferences/2025/11/youtube_thumbnail_20544.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/11/2008_09_13_2_mm_ministers_who_take_heed_working_on_and_with_the.mp3
507 en en-20080621-1 6594 Words of Greeting to the Pastors 2008-06-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2026/01/youtube_thumbnail_20499.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2026/01/2008-06-21-mm-words_of_greeting_to_the_pastors.mp3
508 en en-20080208-1 5922 The Sword of the King of Kings and Lord of Lords 2008-02-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/07/youtube_thumbnail_20440.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/07/2008-02-08-the_sword_of_the_king_of_kings_and_lord_of_lords.mp3
509 en en-20071222-1 5908 Joseph by the Well 2007-12-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/07/youtube_thumbnail_67152.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2007/12/2007-12-22-joseph_by_the_well.mp3
510 en en-20070929-2 6093 Faithful Stewards of God’s Mysteries 2007-09-29 2 https://ewr1.vultrobjects.com/lgcc-conferences/2025/02/youtube_thumbnail_67875.png
511 en en-20070826-1 5950 The Fourth Watch 2007-08-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/08/youtube_thumbnail_20369.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2007/08/2007-08-26-the_fourth_watch.mp3
512 en en-20070811-2 6619 The Prophetic Ministry of the Last Day and Its Stages 2007-08-11 2 https://ewr1.vultrobjects.com/lgcc-conferences/2026/02/youtube_thumbnail_68903.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2026/02/2007_08_11_2_mm_the_prophetic_ministry_of_the_last_day_and_its_stages.mp3
513 en en-20070331-1 6323 The Preparation to Enter the Promised Land 2007-03-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_68413.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/08/2007-03-31-MM-the_preparation_to_enter_the_promised_land.mp3
514 en en-20070317-1 6097 Jesus Christ Restoring the Power to His Church Through the Prophet Elijah 2007-03-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/02/youtube_thumbnail_67886.png
515 en en-20070308-1 6132 Pastors Overcoming the Enemy With the Spirit of the God of Israel 2007-03-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/05/youtube_thumbnail_68069.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/05/2007_03_08_mm_pastors_overcoming_the_enemy_with_the_spirit_of_the.mp3
516 en en-20070127-1 6143 The Trajectory of the Creative Word 2007-01-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/05/youtube_thumbnail_68080.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/05/2007-01-27-MM-the_trajectory_of_the_creative_word.mp3
517 en en-20061125-1 6390 The Restoration of All Things 2006-11-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/09/youtube_thumbnail_20270.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/09/2006-11-25-mm-the_restoration_of-_all_things.mp3
518 en en-20060506-1 6405 The Great Men of the Bible 2006-05-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/10/youtube_thumbnail_68556.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/10/2006-05-06-1-mm-the_great_men_of_the_bible.mp3
519 en en-20060429-2 6088 The Hidden Manna 2006-04-29 2 https://ewr1.vultrobjects.com/lgcc-conferences/2025/02/youtube_thumbnail_20149.png
520 en en-20060415-2 6183 Where Is the God of Elijah? 2006-04-15 2 https://ewr1.vultrobjects.com/lgcc-conferences/2025/05/youtube_thumbnail_20129.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/06/2009-10-18-1-in_gods_agenda_the_elect_and_the_fig_tree.mp3
521 en en-20060402-1 6192 The Only One Worthy to Open the Book of the Seven Seals 2006-04-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/06/youtube_thumbnail_20124.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/06/2006_04_02_the_only_one_worthy_to_open_the_book_of_the_seven_seals.mp3
522 en en-20060325-1 5904 The Work of the Stone That God Slings 2006-03-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/07/youtube_thumbnail_20118.png
523 en en-20051217-1 6048 Thus Saith the Lord to His Anointed 2005-12-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/01/youtube_thumbnail_67764-1.png
524 en en-20051112-2 6345 The Shepherd of Shepherds 2005-11-12 2 https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_68443.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/08/2005-11-12-2-MM-the_shepherd_of_shepherds.mp3
525 en en-20050824-3 6084 The Angels of God 2005-08-24 3 https://ewr1.vultrobjects.com/lgcc-conferences/2025/02/youtube_thumbnail_19959.png
526 en en-20050820-2 6500 The Mystery of the Two Anointed Ones That Stand before the Lord 2005-08-20 2 https://ewr1.vultrobjects.com/lgcc-conferences/2025/11/youtube_thumbnail_19955.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/11/2005_08_20_2_mm_the_mystery_of_the_two_anointed_ones_that_stand.mp3
527 en en-20050514-2 5354 The Requirements for a Revival 2005-05-14 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/youtube_thumbnail_19881.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/10/2005-05-14-2-RM-the_requirements_for_a_revival.mp3
528 en en-20050506-1 5255 Works of Faith 2005-05-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_19871.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2005/05/2005-05-06-1-works_of_faith.mp3
529 en en-20050504-3 5198 The Voice That Will Shake the Heavens and the Earth 2005-05-04 3 https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_19867.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2005/05/2005-05-04-the_voice_that_will_shake_the_heavens_and_the_earth.mp3
530 en en-20041204-2 6558 We Are Being Rushed from Heaven; Let’s Do Everything Quickly and Well Done 2004-12-04 2 https://ewr1.vultrobjects.com/lgcc-conferences/2025/12/youtube_thumbnail_19725.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/12/2004_12_04_mm_we_are_being_rushed_from_heaven_lets_do_everything.mp3
531 en en-20041203-1 6053 We Are Being Rushed From Heaven 2004-12-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/01/youtube_thumbnail_19723.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/02/2004-12-03-we_are_being_rushed_from_heaven.mp3
532 en en-20040826-1 5248 Everything Depends on the Word of God 2004-08-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/09/youtube_thumbnail_66060.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2004/08/2004-08-26-1-everything_depends_on_the_word_of_god.mp3
533 en en-20040508-1 6383 Fighting for Our People and for Our Family 2004-05-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/09/youtube_thumbnail_19553.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/09/2004-05-08-MM-fighting_for_our_people_and_for_our_family.mp3
534 en en-20031227-1 6079 The Title Deed in the Hands of the Human Race 2003-12-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/02/youtube_thumbnail_67823.png
535 en en-20030404-1 5401 The Authority of the Son of God 2003-04-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_66285.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/11/2003-04-04-RM-the_authoritiy_of_the_son_of_god.mp3
536 en en-20030215-1 5272 Vessels Separated for God 2003-02-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_19258.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/09/2003-02-15-RM-vessels_separated_for_god.mp3
537 en en-20021110-1 6570 God Is Among His People 2002-11-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2026/01/youtube_thumbnail_19198.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2026/01/2002-11-10-1-god_is_among_his_people.mp3
538 en en-20020602-1 6044 The Content of the Seventh Seal 2002-06-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/12/youtube_thumbnail_19073.png
539 en en-20020518-2 6538 The Mystery of God 2002-05-18 2 https://ewr1.vultrobjects.com/lgcc-conferences/2025/12/youtube_thumbnail_68767.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/12/2002-05-18-2-mm-the_mystery_of_god.mp3
540 en en-20020415-1 5288 Fighting the Good Fight 2002-04-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_66110.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2002/04/2002-04-15-fighting_the_good_fight.mp3
541 en en-20020302-4 6245 The Princes of God 2002-03-02 4 https://ewr1.vultrobjects.com/lgcc-conferences/2025/06/youtube_thumbnail_68251.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/07/2002-03-02-mm-the_princes_of_god.mp3
542 en en-20020228-1 2883 A notable sign in heaven 2002-02-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-1-5.jpg https://www.carpa.com/sites/default/files/messages/en/2002/02/2002-02-28_a_notable_sign_heaven.mp3 https://www.carpa.com/sites/default/files/messages/en/2002/02/2002-02-28_a_notable_sign_heaven.pdf
543 en en-20020106-2 6578 The Trajectory of the King of Kings 2002-01-06 2 https://ewr1.vultrobjects.com/lgcc-conferences/2026/01/youtube_thumbnail_18970.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2026/01/2002-01-06-2-the_trajectory_of_the_king_of_kings.mp3
544 en en-20010802-1 6363 David’s Training for the Battle 2001-08-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/09/youtube_thumbnail_18877.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/09/2001-08-02-davids_training_for_the_battle.mp3
545 en en-20010728-2 6441 The Only Light of the Last Day 2001-07-28 2 https://ewr1.vultrobjects.com/lgcc-conferences/2025/10/youtube_thumbnail_68602.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/10/2001-07-28-1-MM-the_only_light_of_the_last_day.mp3
546 en en-20010714-2 5541 The Mighty Man of Valor 2001-07-14 2 https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_66544.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2024/01/2001-07-14-2-the_mighty_man_of_valor.mp3
547 en en-20010712-1 4232 The parallelism between Jesus Christ and His Church 2001-07-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg
548 en en-20001201-1 6418 Lord, What Do You Want Me to Do? 2000-12-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/10/youtube_thumbnail_18682.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2025/10/2000-12-01-1-MM-lord_what_do_you_want_me_to_do.mp3
549 en en-20001110-1 5295 The Order of the Manifestation of God’s Glory 2000-11-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_18656.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/09/2000-11-10-1-the_order_of_the_manifestation_of_god.mp3
550 en en-20001022-3 5328 The Parallelism Between Christ and His Angel 2000-10-22 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/youtube_thumbnail_18627.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/10/2000-10-22-RM-the_parallelism_between_christ_and_his_angel.mp3
551 en en-19991231-1 4114 The things that are prophesied for the end of the world 1999-12-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_18381.png
552 en en-19991203-2 2884 The blessing of doing God's Will 1999-12-03 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_18363-5.png
553 en en-20260530-undefined
554 en en-20260530-undefined
555 en en-20260530-undefined
556 en en-20260530-undefined
557 en en-20260530-undefined
558 en en-20260530-undefined
559 en en-20260530-undefined
560 en en-20260530-undefined
561 en en-20260530-undefined
562 en en-20260530-undefined
563 en en-20260530-undefined
564 en en-20260530-undefined
565 en en-20260530-undefined
566 en en-20260530-undefined
567 en en-20260530-undefined
568 en en-20260530-undefined
569 en en-20260530-undefined
570 en en-20260530-undefined
571 en en-20260530-undefined
572 en en-20260530-undefined
573 en en-20260530-undefined
574 en en-20260530-undefined
575 en en-20260530-undefined
576 en en-20260530-undefined
577 en en-20260530-undefined
578 en en-20260530-undefined
579 en en-20260530-undefined
580 en en-20260530-undefined
581 en en-20260530-undefined
582 en en-20260530-undefined
583 en en-20260530-undefined
584 en en-20260530-undefined
585 en en-20260530-undefined
586 en en-20260530-undefined
587 en en-20260530-undefined
588 en en-20260530-undefined
589 en en-20260530-undefined
590 en en-20260530-undefined
591 en en-20260530-undefined
592 en en-20260530-undefined
593 en en-20260530-undefined
594 en en-20260530-undefined
595 en en-20260530-undefined
596 en en-20260530-undefined
597 en en-20260530-undefined
598 en en-20260530-undefined
599 en en-20260530-undefined
600 en en-20260530-undefined
601 en en-20260530-undefined
602 en en-20260530-undefined
603 en en-20260530-undefined
604 en en-20260530-undefined
605 en en-20260530-undefined
606 en en-20260530-undefined
607 en en-20260530-undefined
608 en en-20260530-undefined
609 en en-20260530-undefined
610 en en-20260530-undefined
611 en en-20260530-undefined
612 en en-20260530-undefined
613 en en-20260530-undefined
614 en en-20260530-undefined
615 en en-19981231-1 4118 The High Priest interceding for the people 1998-12-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17877.png
616 en en-19981227-2 4074 Time to awaken to the reality of what God is doing today 1998-12-27 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17874.png
617 en en-19981227-1 4058 What God has promised for the Last Day 1998-12-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17875.png
618 en en-19981220-1 4039 The trajectory of the Temple of God 1998-12-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17867.png
619 en en-19981220-2 4049 A conception of the Holy Spirit 1998-12-20 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17866.png
620 en en-19981213-2 4030 The blessing of obeying the Angel of God 1998-12-13 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17864.png
621 en en-19981213-1 4021 God's thoughts expressed in the Last Day 1998-12-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17865.png
622 en en-19981206-1 4008 The exodus of the Last Day 1998-12-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17863.png
623 en en-20260530-undefined
624 en en-19981129-2 3994 The mystery of the Angel of Jesus 1998-11-29 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17850-1.png
625 en en-19981126-1 3887 He who has a greater testimony than that of John the Baptist 1998-11-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17848-6.png
626 en en-19981124-1 3933 The Son working as the Father shows Him 1998-11-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17846-3.png
627 en en-19981123-1 3932 Working while the Father works 1998-11-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17845-2.png
628 en en-19981115-1 4147 Jesus Christ seeking and calling those who will dine with Him 1998-11-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17835.png
629 en en-20260530-undefined
630 en en-20260530-undefined
631 en en-20260530-undefined
632 en en-20260530-undefined
633 en en-19981101-1 3931 The things that were, the ones that are and the ones that are to be 1998-11-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17807-2.png
634 en en-19981030-1 3930 The Son of Man with the keys of hell and death 1998-10-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17803-2.png
635 en en-19981028-2 2952 A description of the Son of Man in the midst of the seven candlesticks 1998-10-28 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17798-1.png
636 en en-19981026-2 2953 Jesus Christ, the Alpha and Omega 1998-10-26 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17794-5.png
637 en en-20260530-undefined
638 en en-19981025-2 2954 The Coming of the Lord with the clouds 1998-10-25 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17792-5.png
639 en en-20260530-undefined
640 en en-20260530-undefined
641 en en-20260530-undefined
642 en en-20260530-undefined
643 en en-20260530-undefined
644 en en-20260530-undefined
645 en en-20260530-undefined
646 en en-20260530-undefined
647 en en-20260530-undefined
648 en en-20260530-undefined
649 en en-20260530-undefined
650 en en-20260530-undefined
651 en en-20260530-undefined
652 en en-20260530-undefined
653 en en-20260530-undefined
654 en en-20260530-undefined
655 en en-20260530-undefined
656 en en-20260530-undefined
657 en en-20260530-undefined
658 en en-20260530-undefined
659 en en-20260530-undefined
660 en en-20260530-undefined
661 en en-20260530-undefined
662 en en-20260530-undefined
663 en en-20260530-undefined
664 en en-20260530-undefined
665 en en-20260530-undefined
666 en en-19980829-2 4132 The prophet's hands lifted up for the victory of the people 1998-08-29 2 https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17700.png
667 en en-20260530-undefined
668 en en-20260530-undefined
669 en en-20260530-undefined
670 en en-20260530-undefined
671 en en-20260530-undefined
672 en en-19980825-2 4128 The end of the world and the Angels of the Harvest 1998-08-25 2 https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17688.png
673 en en-19980825-3 4142 Working in the missionary work with a positive mind 1998-08-25 3 https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17687.png
674 en en-19980823-3 4109 The Trajectory of the Blood of Christ 1998-08-23 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17681.png
675 en en-19980823-2 4097 The Sign of the Blood applied today 1998-08-23 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17682.png
676 en en-20260530-undefined
677 en en-20260530-undefined
678 en en-19980821-1 4087 The eternal youth 1998-08-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17677.png
679 en en-19980820-3 4078 The Rod that will do the signs 1998-08-20 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17672.png
680 en en-19980820-1 4070 The time of hunger and thirst of hearing the Word of God for today 1998-08-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17674.png
681 en en-19980819-2 4035 Greetings to the mighty men and women 1998-08-19 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17670.png
682 en en-19980819-4 4053 Delivered by the Word of God 1998-08-19 4 https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17668.png
683 en en-19980819-3 4043 God in the mouth of His prophets to bless His people 1998-08-19 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17669.png
684 en en-19980818-2 4026 God delivers His people 1998-08-18 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17666.png
685 en en-19980817-1 4016 Two peoples from the same father 1998-08-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_62193.png
686 en en-19980817-2 4000 Being gathered to his people 1998-08-17 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17664.png
687 en en-19980816-3 3990 God's Mighty Hand extended 1998-08-16 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17660.png
688 en en-19980815-2 3875 The glorious freedom of the third exodus 1998-08-15 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17658-6.png
689 en en-19980814-3 3929 The Work of Christ from Genesis to Revelation 1998-08-14 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17653-4.png
690 en en-19980814-1 3928 The Work of Christ in the Last Day 1998-08-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17655-2.png
691 en en-20260530-undefined
692 en en-19980805-2 2991 The seven years of work for His Wife 1998-08-05 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-1-4.jpg https://www.carpa.com/sites/default/files/messages/en/1998/08/1998-08-05_the_seven_years_work_his_wife.pdf
693 en en-19980722-2 2992 We will all be tested 1998-07-22 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-1-3.jpg https://www.carpa.com/sites/default/files/messages/en/1998/07/1998-07-22_we_will_all_be_tested.pdf
694 en en-19980721-1 2993 The son of the bondwoman shall not inherit with the son of the free woman 1998-07-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17616.png https://www.carpa.com/sites/default/files/messages/en/1998/07/1998-07-21_the_son_bondwoman_shall_not_inherit_son_free_woman.pdf
695 en en-19980719-1 2994 The memory that keeps us alert: Remembering the wife of Lot 1998-07-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17613.png https://www.carpa.com/sites/default/files/messages/en/1998/07/1998-07-19_the_memory_keeps_us_alert_remembering_wife_lot.pdf
696 en en-20260530-undefined
697 en en-19980713-1 2996 Melchisedec's Blessing 1998-07-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17602.png https://www.carpa.com/sites/default/files/messages/en/1998/07/1998-07-13_melchisedecs_blessing.pdf
698 en en-19980710-2 2997 The rainbow, sign of God's Covenant 1998-07-10 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17597.png https://www.carpa.com/sites/default/files/messages/en/1998/07/1998-07-10_the_rainbow_sign_gods_covenant.pdf
699 en en-19980709-1 2999 A universal judgment through which God speaks to us today 1998-07-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17596.png https://www.carpa.com/sites/default/files/messages/en/1998/07/1998-07-09_a_universal_judgment_through_which_god_speaks_us_today.pdf
700 en en-20260530-undefined
701 en en-19980708-2 3001 Noah's Ark updated 1998-07-08 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15.jpg https://www.carpa.com/sites/default/files/messages/en/1998/07/1998-07-08_noahs_ark_updated.pdf
702 en en-19980708-1 3000 The union that produces good results 1998-07-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-2-3.jpg https://www.carpa.com/sites/default/files/messages/en/1998/07/1998-07-08_the_union_produces_good_results.pdf
703 en en-19980707-1 3002 The blessing of walking with God 1998-07-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17592.png https://www.carpa.com/sites/default/files/messages/en/1998/07/1998-07-07_the_blessing_walking_god.pdf
704 en en-19980706-1 3003 The trajectory of the Name of God 1998-07-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17590.png https://www.carpa.com/sites/default/files/messages/en/1998/07/1998-07-06_the_trajectory_name_god.pdf
705 en en-19980627-1 3004 Protected against the cunningness of the serpent 1998-06-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17580.png https://www.carpa.com/sites/default/files/messages/en/1998/06/1998-06-27_protected_against_cunningness_serpent.pdf
706 en en-19980626-1 3006 Privileges and duties of the Wife of Christ 1998-06-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17579.png https://www.carpa.com/sites/default/files/messages/en/1998/06/1998-06-26_privileges_and_duties_wife_christ.pdf
707 en en-19980626-4 3005 The creation of the Wife of the first Adam and the second Adam 1998-06-26 4 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17576.png https://www.carpa.com/sites/default/files/messages/en/1998/06/1998-06-26_the_creation_wife_first_adam_and_second_adam.pdf
708 en en-19980625-1 3927 The human being facing the crossroads of life 1998-06-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17575-2.png
709 en en-20260530-undefined
710 en en-19980621-1 3926 God's order and process in His Work from beginning to end 1998-06-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17569-2.png
711 en en-19980620-2 3009 Each tree producing according to its nature 1998-06-20 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14.jpg https://www.carpa.com/sites/default/files/messages/en/1998/06/1998-06-20_each_tree_producing_according_its_nature.pdf
712 en en-20260530-undefined
713 en en-19980618-2 3010 The Spirit of God moving through time 1998-06-18 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-1-2.jpg https://www.carpa.com/sites/default/files/messages/en/1998/06/1998-06-18_the_spirit_god_moving_through_time.pdf
714 en en-19980617-2 3011 The creative Word throughout the entire Bible 1998-06-17 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17561.png https://www.carpa.com/sites/default/files/messages/en/1998/06/1998-06-17_the_creative_word_throughout_entire_bible.pdf
715 en en-20260530-undefined
716 en en-19980531-2 3014 The Seventh Seal and the Day and the Hour of His Coming 1998-05-31 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17552.png https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-31_the_seventh_seal_and_day_and_hour_his_coming.pdf
717 en en-19980531-1 3013 The Seventh Seal and the Three Witnesses 1998-05-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-57.jpg https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-31_the_seventh_seal_and_three_witnesses.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-31_the_seventh_seal_and_three_witnesses.pdf
718 en en-19980523-2 3015 The Seventh Seal and the Fourth Watch 1998-05-23 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-29-2.jpg https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-23_the_seventh_seal_and_fourth_watch.pdf
719 en en-19980521-2 3016 Steadfast with the Seventh Seal 1998-05-21 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-32-2.jpg https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-21_steadfast_seventh_seal.pdf
720 en en-19980519-3 3017 The Seventh Seal: The revelation of the Last Day 1998-05-19 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-36-2.jpg https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-19_the_seventh_seal_revelation_last_day.pdf
721 en en-19980516-1 3018 The Seventh Seal and the wrath of God 1998-05-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17527.png https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-16_the_seventh_seal_and_wrath_god.pdf
722 en en-19980515-1 3019 The Seventh Seal and the Mercy of God 1998-05-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17526.png https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-15_the_seventh_seal_and_mercy_god.pdf
723 en en-19980514-2 3020 The Seventh Seal and the Latin American people 1998-05-14 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-34-2.jpg https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-14_the_seventh_seal_and_latin_american_people.pdf
724 en en-19980513-1 3021 The Seventh Seal and the hidden Manna 1998-05-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17523.png https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-13_the_seventh_seal_and_hidden_manna.pdf
725 en en-19980511-2 3023 The Work of the Last Trumpet 1998-05-11 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17519.png https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-11_the_work_last_trumpet.pdf
726 en en-19980511-1 3022 The Businesses of the Seventh Seal 1998-05-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-42.jpg https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-11_the_businesses_seventh_seal.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-11_the_businesses_seventh_seal.pdf
727 en en-19980510-4 3026 Helped by the Seventh Seal 1998-05-10 4 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-43.jpg https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-10_helped_seventh_seal.pdf
728 en en-19980510-3 3025 The Seventh Seal and the Seven Thunders 1998-05-10 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-44.jpg https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-10_the_seventh_seal_and_seven_thunders.pdf
729 en en-19980510-1 3024 The Seventh Seal and the Seventh Trumpet 1998-05-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17518.png https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-10_the_seventh_seal_and_seventh_trumpet.pdf
730 en en-19980509-4 3029 The mighty men of the Seventh Seal 1998-05-09 4 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-46.jpg https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-09_the_mighty_men_seventh_seal.pdf
731 en en-19980509-3 3028 Dedicated by the Seventh Seal 1998-05-09 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-48.jpg https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-09_dedicated_seventh_seal.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-09_dedicated_seventh_seal.pdf
732 en en-19980509-5 3027 The culmination of the Seventh Seal 1998-05-09 5 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-39.jpg https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-09_the_culmination_seventh_seal.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-09_the_culmination_seventh_seal.pdf
733 en en-19980508-4 3031 The Seventh Seal and the New Creation 1998-05-08 4 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-41.jpg https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-08_the_seventh_seal_and_new_creation.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-08_the_seventh_seal_and_new_creation.pdf
734 en en-19980508-2 3030 Being born with the Seventh Seal 1998-05-08 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-45.jpg https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-08_being_born_seventh_seal.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-08_being_born_seventh_seal.pdf
735 en en-19980507-3 3032 The Power of the Seventh Seal 1998-05-07 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-47.jpg https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-07_the_power_seventh_seal.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-07_the_power_seventh_seal.pdf
736 en en-19980506-1 3033 The Exodus of the Seventh Seal 1998-05-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17502.png https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-06_the_exodus_seventh_seal.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-06_the_exodus_seventh_seal.pdf
737 en en-19980505-1 3035 The Light of the Seventh Seal 1998-05-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-51.jpg https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-05_the_light_seventh_seal.pdf
738 en en-19980505-2 3034 The Victory of the Seventh Seal 1998-05-05 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17500.png https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-05_the_victory_seventh_seal.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-05_the_victory_seventh_seal.pdf
739 en en-19980504-4 3037 The Works of the Seventh Seal 1998-05-04 4 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-55.jpg https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-04_the_works_seventh_seal.mp3
740 en en-19980504-3 3036 The Message of the Seventh Seal 1998-05-04 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-56.jpg https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-04_the_message_seventh_seal.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-04_the_message_seventh_seal.pdf
741 en en-19980503-3 3040 The Almighty God veiled and revealed in His Angel Messenger 1998-05-03 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17492.png https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-03_the_almighty_god_veiled_and_revealed_his_angel_messenger.pdf
742 en en-19980503-2 3039 The path of the Seventh Seal under the mystery of the establishment of the Kingdom of Christ 1998-05-03 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-53.jpg https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-03_the_path_seventh_seal_under_mystery_establishment_kingdom_christ.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-03_the_path_seventh_seal_under_mystery_establishment_kingdom_christ.pdf
743 en en-20260530-undefined
744 en en-19980501-2 3041 The Angel with the Seal of the living God 1998-05-01 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17488.png https://www.carpa.com/sites/default/files/messages/en/1998/05/1998-05-01_the_angel_seal_living_god.pdf
745 en en-19980430-3 3043 The Book opened in Heaven 1998-04-30 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17485.png https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-30_the_book_opened_heaven.pdf
746 en en-19980430-1 3042 The Light of the Seventh Seal 1998-04-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17486.png https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-30_the_light_seventh_seal.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-30_the_light_seventh_seal.pdf
747 en en-19980427-6 3044 The position of the Seventh Seal in the Temple of God 1998-04-27 6 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17474.png https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-27_the_position_seventh_seal_temple_god.pdf
748 en en-19980426-1 3047 The Seventh Seal identified in the Scripture 1998-04-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17.jpg https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-26_the_seventh_seal_identified_scripture.pdf
749 en en-19980426-3 3046 Persevering in the blessing of the Seventh Seal 1998-04-26 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-20-1.jpg https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-26_persevering_blessing_seventh_seal.pdf
750 en en-19980426-2 3045 Gathering with the Seventh Seal 1998-04-26 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-1.jpg https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-26_gathering_seventh_seal.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-26_gathering_seventh_seal.pdf
751 en en-19980425-1 3049 The Seventh Seal and the adoption of the children of God 1998-04-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18-1.jpg https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-25_the_seventh_seal_and_adoption_children_god.pdf
752 en en-19980425-2 3048 Bringing forth fruit to the maximum with the Seventh Seal 1998-04-25 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-22-1.jpg https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-25_bringing_forth_fruit_maximum_seventh_seal.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-25_bringing_forth_fruit_maximum_seventh_seal.pdf
753 en en-19980422-4 3050 The Seventh Seal and the Eternal Youth 1998-04-22 4 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-24.jpg https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-22_the_seventh_seal_and_eternal_youth.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-22_the_seventh_seal_and_eternal_youth.pdf
754 en en-19980421-3 3052 The Seventh Seal and the mighty men of the Son of David 1998-04-21 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-26-1.jpg https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-21_the_seventh_seal_and_mighty_men_son_david.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-21_the_seventh_seal_and_mighty_men_son_david.pdf
755 en en-19980421-2 3051 The Blessings of the Seventh Seal 1998-04-21 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-27-1.jpg https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-21_the_blessings_seventh_seal.pdf
756 en en-19980420-2 3055 The fruits of the new birth in the light of the Seventh Seal 1998-04-20 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-29-1.jpg https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-20_the_fruits_new_birth_light_seventh_seal.pdf
757 en en-19980420-1 3054 The things that will happen when the Seventh Seal comes to an end 1998-04-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-30-1.jpg https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-20_the_things_will_happen_when_seventh_seal_comes_end.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-20_the_things_will_happen_when_seventh_seal_comes_end.pdf
758 en en-19980420-3 3053 The Calling of the Seventh Seal 1998-04-20 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-28.jpg https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-20_the_calling_seventh_seal.pdf
759 en en-19980419-2 3057 The definitive victory of the Seventh Seal over Satan 1998-04-19 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-36-1.jpg https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-19_the_definitive_victory_seventh_seal_over_satan.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-19_the_definitive_victory_seventh_seal_over_satan.pdf
760 en en-19980419-3 3056 The Watchman of the Last Day with the Seventh Seal in his hand 1998-04-19 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-31-1.jpg https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-19_the_watchman_last_day_seventh_seal_his_hand.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-19_the_watchman_last_day_seventh_seal_his_hand.pdf
761 en en-19980418-2 3059 The Seventh Seal and the elect of the Last Day 1998-04-18 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-32-1.jpg https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-18_the_seventh_seal_and_elect_last_day.pdf
762 en en-19980418-1 3058 The Seventh Seal finishing the construction of the Mystical Body of Christ 1998-04-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-33-1.jpg https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-18_the_seventh_seal_finishing_construction_mystical_body_christ.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-18_the_seventh_seal_finishing_construction_mystical_body_christ.pdf
763 en en-19980417-1 3925 The Voice of God in the Last Day 1998-04-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17449-6.png
764 en en-19980417-3 3060 The Seventh Seal and the Safety Zone for the elect of the Last Day 1998-04-17 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-34-1.jpg https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-17_the_seventh_seal_and_safety_zone_elect_last_day.pdf
765 en en-19980415-2 3061 The mystery of the Second Coming of Christ and North America's destiny in the Last Day 1998-04-15 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17443-2.png
766 en en-19980414-2 3062 The Seventh Seal and the American Nation 1998-04-14 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17441.png https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-14_the_seventh_seal_and_american_nation.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/04/1998-04-14_the_seventh_seal_and_american_nation.pdf
767 en en-19980412-1 4911 The Mystery of the Resurrection of the Lord Jesus Christ 1998-04-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17440.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/04/ENG19980412_the_mystery_of_the_resurrection_of_the_lord_jesus_christ.mp3
768 en en-19980410-2 4906 The Mystery of the Death of the Lord Jesus Christ 1998-04-10 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17435.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/04/ENG19980418_the_mystery_of_the_death_of_the_lord_jesus_christ.mp3
769 en en-20260530-undefined
770 en en-19980405-1 3063 The triumphal entry of Jesus into Jerusalem 1998-04-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17432-1.png
771 en en-20260530-undefined
772 en en-19980330-1 3066 The Rapture of the Seventh Seal 1998-03-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17429.png https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-30_the_rapture_seventh_seal.pdf
773 en en-19980329-2 3068 The Seventh Seal and the Divine Love 1998-03-29 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16.jpg https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-29_the_seventh_seal_and_divine_love.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-29_the_seventh_seal_and_divine_love.pdf
774 en en-19980329-1 3067 The Victory of the Seventh Seal 1998-03-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18.jpg https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-29_the_victory_seventh_seal.pdf
775 en en-19980328-1 3069 The Voice of Christ under the Seventh Seal 1998-03-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-20.jpg https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-28_the_voice_christ_under_seventh_seal.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-28_the_voice_christ_under_seventh_seal.pdf
776 en en-19980327-1 3070 The Seventh Seal and the time of mercy and judgment 1998-03-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17424.png https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-27_the_seventh_seal_and_time_mercy_and_judgment.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-27_the_seventh_seal_and_time_mercy_and_judgment.pdf
777 en en-19980325-1 3071 The Seventh Seal and the last revival of the elect 1998-03-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17422.png https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-25_the_seventh_seal_and_last_revival_elect.pdf
778 en en-19980324-1 3072 Time to awaken with the Message of the Seventh Seal 1998-03-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17421.png https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-24_time_awaken_message_seventh_seal.pdf
779 en en-19980323-2 3924 The Message of the Gospel of the Kingdom in the Last Day 1998-03-23 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17419-3.png
780 en en-19980320-1 3073 The Seventh Seal and the restoration of the Kingdom of God 1998-03-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17413.png https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-20_the_seventh_seal_and_restoration_kingdom_god.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-20_the_seventh_seal_and_restoration_kingdom_god.pdf
781 en en-19980318-2 3074 The Seventh Seal and the sign of the end of the world 1998-03-18 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/05/youtube_thumbnail_17410.png https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-18_the_seventh_seal_and_sign_end_world.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-18_the_seventh_seal_and_sign_end_world.pdf
782 en en-19980317-2 3075 The mysteries contained in the Seventh Seal 1998-03-17 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-23.jpg https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-17_the_mysteries_contained_seventh_seal.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-17_the_mysteries_contained_seventh_seal.pdf
783 en en-19980314-2 3076 The Seventh Seal putting an end to all things 1998-03-14 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-26.jpg https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-14_the_seventh_seal_putting_end_all_things.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-14_the_seventh_seal_putting_end_all_things.pdf
784 en en-19980311-2 3077 The Seventh Seal and the Seven Thunders 1998-03-11 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-31.jpg https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-11_the_seventh_seal_and_seven_thunders.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-11_the_seventh_seal_and_seven_thunders.pdf
785 en en-19980309-2 3078 The Seventh Seal and the Age of the Cornerstone 1998-03-09 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-32.jpg https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-09_the_seventh_seal_and_age_cornerstone.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-09_the_seventh_seal_and_age_cornerstone.pdf
786 en en-19980308-2 3079 The Seventh Seal and the spirit of Moses and Elijah 1998-03-08 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-35.jpg https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-08_the_seventh_seal_and_spirit_moses_and_elijah.pdf
787 en en-19980306-3 3081 The Seventh Seal searching for the elect 1998-03-06 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-33.jpg https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-06_the_seventh_seal_searching_elect.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-06_the_seventh_seal_searching_elect.pdf
788 en en-19980306-1 3080 The Explosions of the Seventh Seal 1998-03-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17388.png https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-06_the_explosions_seventh_seal.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-06_the_explosions_seventh_seal.pdf
789 en en-19980304-3 3082 Working under the Seventh Seal 1998-03-04 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17380.png https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-04_working_under_seventh_seal.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-04_working_under_seventh_seal.pdf
790 en en-19980302-1 3083 The Light of the Seventh Seal 1998-03-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17377.png https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-02_the_light_seventh_seal.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/03/1998-03-02_the_light_seventh_seal.pdf
791 en en-19980301-3 3084 The Coming of the Kingdom: The time and the territory 1998-03-01 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17374-1.png
792 en en-19980226-1 3085 The Seventh Seal and the Reclaiming Work 1998-02-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17368.png https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-26_the_seventh_seal_and_reclaiming_work.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-26_the_seventh_seal_and_reclaiming_work.pdf
793 en en-19980224-1 3086 The Seventh Seal gathering the elect of God 1998-02-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17365.png https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-24_the_seventh_seal_gathering_elect_god.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-24_the_seventh_seal_gathering_elect_god.pdf
794 en en-19980222-2 3087 The judgments in the Seventh Seal 1998-02-22 2 https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-22_the_judgments_seventh_seal.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-22_the_judgments_seventh_seal.pdf
795 en en-19980220-2 3088 The Seventh Seal: A Door opened in Heaven 1998-02-20 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-1-1.jpg https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-20_the_seventh_seal_door_opened_heaven.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-20_the_seventh_seal_door_opened_heaven.pdf
796 en en-19980219-2 3923 The Door of God's House 1998-02-19 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17357-2.png
797 en en-19980217-3 3089 The Seventh Seal: The Coming of the Son of Man with His Angels 1998-02-17 3 https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-17_the_seventh_seal_coming_son_man_his_angels.pdf
798 en en-19980216-2 3090 The Seventh Seal: The Second Coming of Christ 1998-02-16 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-5.jpg https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-16_the_seventh_seal_second_coming_christ.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-16_the_seventh_seal_second_coming_christ.pdf
799 en en-19980215-2 3091 The Leadership of the Seventh Seal 1998-02-15 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7.jpg https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-15_the_leadership_seventh_seal.pdf
800 en en-19980213-3 3092 The Seventh Seal and the Rapturing Faith 1998-02-13 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17345.png https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-13_the_seventh_seal_and_rapturing_faith.pdf
801 en en-19980212-2 3093 The Stages of the Seventh Seal 1998-02-12 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11.jpg https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-12_the_stages_seventh_seal.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-12_the_stages_seventh_seal.pdf
802 en en-19980211-1 3094 The Seventh Seal throughout the entire Scripture 1998-02-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12.jpg https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-11_the_seventh_seal_throughout_entire_scripture.pdf
803 en en-19980210-1 3095 The secrets kept in the Seventh Seal 1998-02-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13.jpg https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-10_the_secrets_kept_seventh_seal.mp3 https://www.carpa.com/sites/default/files/messages/en/1998/02/1998-02-10_the_secrets_kept_seventh_seal.pdf
804 en en-19980209-1 3922 The mystery of the Last Day's evangelization 1998-02-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17338-3.png
805 en en-20260530-undefined
806 en en-19980207-1 3097 The Work of the Harvest at the end of the world 1998-02-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17335-2.png
807 en en-19980206-1 3098 The God of Abraham 1998-02-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17334-1.png
808 en en-20260530-undefined
809 en en-19980127-2 5047 God’s Fishermen at the Last Day 1998-01-27 2 https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_17330.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1998/01/1998-01-27-2-gods_fisherman_at_the_last_day.mp3
810 en en-19980125-1 5058 The Mystery of the Fulfillment of the Second Coming of Christ 1998-01-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_17325.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1998/01/1998_01_25_1_The_Mystery_of_the_fulfillment_of_the_Second_Coming.mp3
811 en en-19980124-1 3100 The mystery of a change of dispensation 1998-01-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17324-1.png
812 en en-20260530-undefined
813 en en-20260530-undefined
814 en en-20260530-undefined
815 en en-20260530-undefined
816 en en-20260530-undefined
817 en en-20260530-undefined
818 en en-20260530-undefined
819 en en-19971228-2 4123 The rapture of the Church 1997-12-28 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17304.png
820 en en-19971228-1 4102 The New Temple 1997-12-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17305.png
821 en en-19971226-1 4091 The life of the forerunner and his Message 1997-12-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17303.png
822 en en-19971224-1 4083 The mystery of the date of the birth of Jesus 1997-12-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17302.png
823 en en-19971221-2 4156 The Mystery of the Marriage Supper of the Lamb 1997-12-21 2 https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17300.png
824 en en-19971221-1 4163 The Mystery of the Marriage of the Lamb 1997-12-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17301.png
825 en en-19971220-1 4167 The Mystery of the Garment of the Marriage of the Lamb 1997-12-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17299-2.png
826 en en-19971217-1 4171 The mystery of the end of the world and the things that will happen in the Last Day 1997-12-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17298.png
827 en en-19971214-1 4939 Things That Can Only Be Fulfilled at the Last Day 1997-12-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17296.png https://lgccc-conferences.ewr1.vultrobjects.com/1997/1997-12-14-things_that_can_only_be_fulfilled_at_the_last_day.mp3
828 en en-19971207-2 4883 The Mystery of the Year of Jubilee 1997-12-07 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17289.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/03/ENG19971207-2-the-mystery-of-the-year-of-jubilee.mp3
829 en en-19971205-2 4819 The Coming of the Son of Man at the Last Day 1997-12-05 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17286.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/02/ENG19971205-2-the-coming-of-the-son-of-man-at-the-last-day.mp3
830 en en-19971202-1 4805 The Mystery of the General Assembly and Church of the Firstborn Written in Heaven 1997-12-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17281.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/12/ENG19971202ENG19971202_the_mystery_of_the_general_assembly_and_church.mp3
831 en en-19971201-1 4795 The Mystery of the Light That Scatters Darkness 1997-12-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17280.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/02/ENG19971201-the-mystery-of-the-light-that-scatters-darkness.mp3
832 en en-19971130-2 4785 The Mystery of the Coming of the Son of Man With His Angels in the West 1997-11-30 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17278.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/01/ENG19971130_2_the_mystery_of_the_coming_of_the_son_of_man_with_his.mp3
833 en en-19971126-2 4772 The Mystery of the four kinds of ground 1997-11-26 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17272.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/01/ENG19971126_2_the_mystery_of_he_four_kinds_of_ground.mp3
834 en en-19971125-1 4750 The Mystery of the Father of Creation 1997-11-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17271.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/01/ENG19971025-the-mystery-of-the-father-of-creation.mp3
835 en en-19971125-2 4760 The Mystery of the Good Ground That Is Blessed 1997-11-25 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17270.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/01/ENG19971102_The_Mystery_of_the_Good_Ground_That_Is_Blessed_web.mp3
836 en en-19971124-1 4740 The Mystery of the West 1997-11-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17269.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/12/ENG19971124-the-mystery-of-the-west.mp3
837 en en-19971123-1 4730 The Mystery of Gabriel and Michael at the Last Day 1997-11-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/05/youtube_thumbnail_17268.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/12/ENG19971123_2_the_mystery_of_gabriel_and_michael_at_the_last_day.mp3
838 en en-19971123-1 5006 The Mystery of Moses, Elijah, and Jesus 1997-11-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/05/youtube_thumbnail_17268.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/11/1997-11-23-1-the_mystery_of_moses_elijah_and_jesus.mp3
839 en en-19971122-3 4852 The Mystery of the Harvesters of the Last Day 1997-11-22 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17264.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/03/ENG19971122-the-mystery-of-the-harvesters-of-the-last-day.mp3
840 en en-19971122-4 4873 The Mystery of God’s Masterpiece 1997-11-22 4 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17263.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/03/ENG19971122-4-the-mystery-of-gods-masterpiece-booklet.mp3
841 en en-19971121-1 4862 The Mystery of the Coming of the Lord as the Sun of Righteousness 1997-11-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17262.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/03/ENG19971121_the_mystery_of_the_coming_of_the_lord_as_the_sun_of.mp3
842 en en-19971120-1 4720 The Mystery of His Coming as a Thief in the Night 1997-11-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17261.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/12/ENG19971120_the_mystery_of_his_coming_as_a_thief_in_the_night.mp3
843 en en-19971119-1 4842 The Mystery of the Angels of the Harvest 1997-11-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17260.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/03/ENG1997119-the-mystery-of-the-angels-of-the-harvest.mp3
844 en en-19971118-1 4847 The Mystery of the Fullness of the Gentiles 1997-11-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17259.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/03/ENG19971118-the-mystery-of-the-fullness-of-the-gentiles.mp3
845 en en-19971117-1 4708 The Mystery of the Transformation and the Catching Away 1997-11-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17258.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/11/ENG19971117_the_mystery_of_the_transformation_and_the_catching_away.mp3
846 en en-19971116-1 4836 The Mystery of the Coming of the Lord in the Clouds 1997-11-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17257.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/02/ENG19971116_the_mystery_of_the_coming_of_the_lord_in_the_clouds.mp3
847 en en-19971115-3 4826 The Mystery of the Three Bibles 1997-11-15 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17252.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/02/ENG19971115-3-the-mystery-of-the-three-bibles.mp3
848 en en-19971114-4 4814 The Mystery of the Sun, the Moon, and the Stars Indicating the Time 1997-11-14 4 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17248.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/02/ENG19971114_4_the_mystery_of_the_sun_the_moon_and_the_stars_indicating.mp3
849 en en-19971113-1 4800 The Mystery of the Watches 1997-11-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17247.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/02/ENG19971113-the-mystery-of-the-watches.mp3
850 en en-19971112-1 4790 The Mystery of the Dimensions 1997-11-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17246.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/01/ENG19971112-the-mystery-of-the-dimensions.mp3
851 en en-19971109-1 4831 Discerning God’s Thought at the Last Day 1997-11-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17244.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/02/ENG19971109-discerning-gods-thought-at-the-last-day.mp3
852 en en-19971109-2 4696 Opening the Understanding With the Scriptures 1997-11-09 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17243.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/12/ENG199709-2-opening-the-understanding-with-the-scriptures..mp3
853 en en-19971108-2 4684 The Mystery Of Being Taught of God 1997-11-08 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17240.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/11/ENG19971108-2-THE-MYSTERY-OF-BEING-TAUGHT-OF-GOD.mp3
854 en en-19971107-1 4674 The Ripened Wheat 1997-11-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17239.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/11/ENG19971107-the-ripened-wheat.mp3
855 en en-19971106-1 4664 The Mystery of the Rewards to the Overcomers 1997-11-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17236.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/11/ENG19971106-the-mystery-of-the-rewards-to-the-overcomers.mp3
856 en en-19971106-2 4949 The Mystery of the Rewards 1997-11-06 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17235.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/04/1997-11-06-2-the_mystery_of_the_rewards.mp3
857 en en-19971104-1 4780 The Mystery of God’s Glory Manifested 1997-11-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17231.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/01/ENG19971104-the-mystery-of-gods-glory-manifested.mp3
858 en en-19971103-3 4755 The Mystery of Divine Simplicity 1997-11-03 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17228.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/01/ENG19971103-3-the-mystery-of-divine-simplicity.mp3
859 en en-19971102-1 4765 The Mystery of the Seven Seals of Revelation, Chapter 5 1997-11-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17227.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/01/ENG19971102_the_mystery_of_the_seven_seals_of_revelation_chapter.mp3
860 en en-19971031-1 4629 Prophecies Fulfilled at the Last Day 1997-10-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17223.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/10/ENG19971031-prophecies-fulfilled-at-the-last-day.mp3
861 en en-19971031-2 4653 Under the Wings of the Cherubims 1997-10-31 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17222.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/11/ENG19971031-2-under-the-wings-of-the-cherubims.mp3
862 en en-19971031-3 4745 The Mystery of the Seed of the Creative Word 1997-10-31 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17221.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/01/ENG19971031-3-the-mystery-of-the-seed-of-the-creative-word.mp3
863 en en-19971030-2 4669 The Mystery of the Eighth Star That Is Not Seen in Revelation 1:20 1997-10-30 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17219.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/11/ENG19971030_2_the_mystery_of_the_eighth_star_that_is_not_seen_in.mp3
864 en en-19971029-2 4615 The Mystery of Godliness 1997-10-29 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17217.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/10/ENG19971029-2-the-mystery-of-godliness.mp3
865 en en-19971029-1 4735 The Mystery of the Firstborn of Heaven 1997-10-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17218.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/12/ENG19971029-the-mystery-of-the-firstborn-of-heaven.mp3
866 en en-19971028-2 4593 The Fountain of the Water of Life 1997-10-28 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_64046.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/10/ENG19970928-the-mystery-of-the-birthright-blessings-fix.mp3
867 en en-19971026-2 4598 The Mystery of the Cherubims of Gold and the Cherubims of Olive Tree 1997-10-26 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17212.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/10/ENG19971026_2_ENG19971026_2_the_mystery_of_the_cherubims_of_gold.mp3
868 en en-19971025-1 4576 The Mystery of the Ark of the Covenant and Its Content 1997-10-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_64021.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/10/ENG19971025_2_the_mystery_of_the_ark_of_the_covenant_and_its_content.mp3
869 en en-19971021-4 4565 The Mystery of the Angel With the Everlasting Gospel 1997-10-21 4 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17201.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/09/ENG19971021_4_the_mystery_of_the_angel_with_the_everlasting_gospel.mp3
870 en en-19971020-1 4725 The Mystery of the Millennial Kingdom 1997-10-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17200.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/12/ENG19971020-the-mystery-of-the-millennial-kingdom.mp3
871 en en-19971019-2 4991 The Mystery of the Names Written in Heaven 1997-10-19 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/05/youtube_thumbnail_17198.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/10/1997-10-19-2-the_mystery_of_the_names_written_in_heaven.mp3
872 en en-19971017-2 4555 The Mystery of the Seven Thunders of Revelation, Chapter 10 1997-10-17 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17194.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/09/ENG19971017_2_the_mystery_of_the_seven_thunders_of_revelation_chapter.mp3
873 en en-19971016-2 4544 The Mystery of the Fourth Watch 1997-10-16 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17192.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/09/AUDIO-2022-09-09-12-56-32.mp3
874 en en-19971015-2 4534 The Mystery of the New Body 1997-10-15 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17190.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/09/ENG19971015-2-The-Mystery-of-the-New-Body.mp3
875 en en-19971014-2 4715 The Mystery of the Times and the Seasons Under the Father’s Power 1997-10-14 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/QmIi8R7v-youtube_thumbnail_17188.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/12/ENG19971014_2_the_mystery_of_the_times_and_the_seasons_under_the.mp3
876 en en-19971014-1 4703 The Mystery of the Dimensions 1997-10-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17189.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/12/ENG19971014-the-mystery-of-the-dimensions.mp3
877 en en-19971013-2 4691 The Mystery of the Half Hour of Silence in Heaven 1997-10-13 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/YEZDfuU7-youtube_thumbnail_17186.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/11/ENG19971013_2_the_mystery_of_the_half_hour_of_silence_in_heaven.mp3
878 en en-19971012-1 5070 The Mystery of the Fifth Horse of Revelation 1997-10-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_17185.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/10/1997-10-12-1-the_mystery_of_the_fifth_horse_of_revelation-low.mp3
879 en en-19971012-2 4971 The Mystery of the Angel with the Seal of the Living God 1997-10-12 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/05/youtube_thumbnail_17184.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/05/1997-10-12-2-the_mystery_of_the_angel_with_the_seal_of_the_living.mp3
880 en en-19971010-1 4679 The Mystery of the Faith of the Mighty Men and Women of the Son of David 1997-10-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17182.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/11/ENG19971010_the_mystery_of_the_faith_of_the_mighty_men_and_women.mp3
881 en en-19971009-1 4659 The Mysteries That Are Already Fulfilled, the Mysteries That Are Being Fulfilled, and the Mysteries That Will Be Fulfilled 1997-10-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17181.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/11/ENG19971009_the_mysteries_that_are_already_fulfilled_the_mysteries.mp3
882 en en-19971008-1 4603 The Mysteries of God That Are Being Fulfilled Today 1997-10-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17180.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/10/ENG19971008_the_mysteries_of_god_that_are_being_fulfilled_today.mp3
883 en en-19971005-2 4634 The Mystery of the Book That John Ate 1997-10-05 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17178.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/10/ENG19971005-2-the-mystery-of-the-book-that-john-ate.mp3
884 en en-19971005-1 4620 The Mystery of What John Heard but Couldn’t Write 1997-10-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17179.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/10/ENG19971005_the_mystery_of_what_john_heard_but_couldnt_write_Fix.mp3
885 en en-19971003-1 4609 The mystery of the Kingdom of God that all the elect must know 1997-10-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17177.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/10/ENG19971003_the_mystery_of_the_kingdom_of_god_that_all_the_elect.mp3
886 en en-19970829-1 4415 The Mystery of the Spiritual Food in Due Season 1997-08-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17133.png http://ewr1.vultrobjects.com/lgccc-conferences/en/ENG19970829_the_mystery_of_the_spiritual_food_in_due_season_web.mp3
887 en en-19970928-1 4581 The Mystery of the Birthright Blessings 1997-09-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17176.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/09/ENG19970928-the-mystery-of-the-birthright-blessings-fix.mp3
888 en en-19970924-1 4570 The Mystery of the Word of Prophecy 1997-09-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17173.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/09/ENG19970924-the-mystery-of-the-word-of-prophecy.mp3
889 en en-19970922-1 4560 The Mystery of the Harvest at the End of the World 1997-09-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17171.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/09/ENG19970922_the_mystery_of_the_harvest_at_the_end_of_the_world.mp3
890 en en-19970921-2 4523 The Mystery of the East and the West 1997-09-21 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17169.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/08/ENG19970921-2.-the-mystery-of-the-east-and-the-west.mp3
891 en en-19970920-2 4550 The Mystery of the Seventh Seal 1997-09-20 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17167.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/09/ENG19970920-2-the-mystery-of-the-seventh-seal.mp3
892 en en-19970920-1 4933 The Mystery of Faith 1997-09-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17168.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/04/1997-09-20_1_audiocassette-el_misterio_de_la_fe.mp3
893 en en-19970919-1 4504 The mystery of the lamb and the lion 1997-09-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17166.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/08/ENG19970919-the-mystery-of-the-lamb-and-the-lion.mp3
894 en en-19970918-1 4494 The Heavenly Jerusalem and the Earthly Jerusalem 1997-09-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17165.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/08/ENG19970918-the-heavenly-jerusalem-and-the-earthly-jerusalem.mp3
895 en en-19970917-1 4539 The Mystery of the Church of the Lord Jesus Christ 1997-09-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17164.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/09/ENG19970917_the_mystery_of_the_church_of_the_lord_jesus_christ.mp3
896 en en-19970916-1 4528 The Mystery of the Lamb With the Seven Horns and the Seven Eyes 1997-09-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17163.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/08/ENG19970916_the_mystery_of_the_lamb_with_the_seven_horns_and_the.mp3
897 en en-19970915-1 4512 The Mystery of the Word of God: Food in Due Season 1997-09-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17162.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/09/ENG19970915_the_mystery_of_the_word_of_god_food_in_due_season_fix.mp3
898 en en-19970914-1 4469 The Mystery of the Incarnation of the Word 1997-09-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17161.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/07/ENG19970914-the-mystery-of-the-incarnation-of-the-word.mp3
899 en en-19970914-2 4482 The Mystery of the Word of Blessing and Judgment 1997-09-14 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17160.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/09/ENG19970914_2_the_mystery_of_the_word_of_blessing_and_judgment.mp3
900 en en-19970912-2 4499 The Mystery of the Wheat and the Tares 1997-09-12 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17156.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/08/ENG19970912-2-the-mystery-of-the-wheat-and-the-tares.mp3
901 en en-19970911-1 4488 The Mystery of the Foolish Virgins and the Wise Virgins 1997-09-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17155.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/08/ENG19970911_the_mystery_of_the_foolish_virgins_and_the_wise_virgins.mp3
902 en en-19970910-3 4477 The Mystery of the Fullness of the Gentiles 1997-09-10 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17152.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/07/ENG19970910-3-the-mystery-of-the-fullness-of-the-gentiles.mp3
903 en en-19970909-1 4460 The Mystery of the Year of Jubilee 1997-09-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17151.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/07/ENG19970909-the-mystery-of-the-year-of-jubilee.mp3
904 en en-19970908-1 4465 The Mystery of the Father’s Business 1997-09-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17150.png
905 en en-19970907-1 4445 The Mystery of the Blood of Christ 1997-09-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17149.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/07/ENG19970907-the-mystery-of-the-blood-of-christ-boklet.mp3
906 en en-19970907-2 4455 The Mystery of the Day of Atonement 1997-09-07 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17148.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/07/ENG19970907-2-the-mystery-of-the-day-of-atonement.mp3
907 en en-19970906-1 4431 The Mystery of Redemption 1997-09-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17147.png http://ewr1.vultrobjects.com/lgccc-conferences/en/ENG19970906-the-mystery-of-redemption.mp3
908 en en-19970905-2 4405 The Mystery of the Kingdom of God Coming in Power and Glory 1997-09-05 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17145.png http://ewr1.vultrobjects.com/lgccc-conferences/en/ENG19970905_2_the_mystery_of_the_kingdom_of_god_coming_in_power.mp3
909 en en-19970904-1 4410 The Mystery of the Restoration of All Things 1997-09-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17144.png http://ewr1.vultrobjects.com/lgccc-conferences/en/ENG19970904-the-mystery-of-the-restoration-of-all-things.mp3
910 en en-19970902-2 4393 The Mystery of the Parables 1997-09-02 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17140.png http://ewr1.vultrobjects.com/lgccc-conferences/en/ENG19970902-2-the-mystery-of-the-parables.mp3
911 en en-19970901-2 4382 The Mystery of the Fulfilled Prophecy 1997-09-01 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17138.png http://ewr1.vultrobjects.com/lgccc-conferences/en/ENG19970901-2-the-mystery-of-the-fulfilled-prophecy.mp3
912 en en-19970831-1 4918 The Mystery of the New Creation 1997-08-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17136.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/04/1997-08-31-the_mistery_of_the_new_creation-mexico.mp3
913 en en-19970830-2 4450 The Mystery of the Tree of Life and the Tree of the Knowledge of Good and Evil 1997-08-30 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17135.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2022/07/ENG19970830_2_the_mystery_of_the_tree_of_life_and_of_the_tree_of.mp3
914 en en-19970830-1 4438 The Mystery of the Order of Melchizedek 1997-08-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17134.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/08/ENG19970830-the-mystery-of-the-order-of-melchizedek-.mp3
915 en en-19970829-3 4888 The Mystery of the Seven Stars and the Seven Candlesticks 1997-08-29 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17131.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/03/ENG19970829_3_the_mystery_of_the_seven_stars_and_the_seven_candlesticks.mp3
916 en en-19970829-2 4424 The Mystery of the Rapture of the Elect 1997-08-29 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17132.png https://ewr1.vultrobjects.com/lgccc-conferences/en/ENG19970829-2-the-mystery-of-the-rapture-of-the-elect.mp3
917 en en-19970828-3 4398 The Mystery of the Resurrection and the Forty Days 1997-08-28 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17129.png https://ewr1.vultrobjects.com/lgccc-conferences/en/ENG19970828_3_the_mystery_of_the_resurrection_and_the_forty_days.mp3
918 en en-19970827-1 4878 The Revival Brought by the Revelation 1997-08-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17126.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/03/ENG19970827-the-revival-brought-by-the-revelation.mp3
919 en en-19970827-2 4388 The Mystery of the Transformation 1997-08-27 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17127.png https://ewr1.vultrobjects.com/lgccc-conferences/en/ENG19970827-2-the-mystery-of-the-transformation.mp3
920 en en-19970826-1 4377 The Mystery of the Hidden Manna 1997-08-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17125.png http://ewr1.vultrobjects.com/lgccc-conferences/en/ENG19970826-the-mystery-of-the-hidden-manna.mp3
921 en en-19970825-2 4867 The Mystery of the Coming of the Son of Man 1997-08-25 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17124.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/03/ENG19970825-the-mystery-of-the-coming-of-the-son-of-man.mp3
922 en en-19970824-3 4372 The mystery of the white horse of Revelation 1997-08-24 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17121.png
923 en en-19970824-2 4362 The secrets under the Seventh Seal 1997-08-24 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17122.png
924 en en-19970823-3 4368 The mystery of the Angel of Jesus at the Last Day 1997-08-23 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_63432.png
925 en en-19970823- 4965 Train Up a Child in the Way He Should Go 1997-08-23 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/05/youtube_thumbnail_17117.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/05/1997-08-23-1-train_up_a_child_in_the_way_he_should_go.mp3
926 en en-19970822-1 4354 The mystery of the gathering of the elect 1997-08-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17116.png
927 en en-19970821-2 4345 The mystery of Mount Transfiguration 1997-08-21 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17115.png
928 en en-19970821-1 4349 The mystery of the Trumpet of Jubilee 1997-08-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17114.png
929 en en-19970820-1 4341 The mystery of the open Book 1997-08-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17112.png
930 en en-19970819-1 4329 The mystery of the Seventh Seal 1997-08-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17110.png
931 en en-19970818-2 4336 The two greatest mysteries of the Kingdom of Heaven 1997-08-18 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17109.png
932 en en-19970818-1 4307 The greater mystery of the Kingdom of Heaven 1997-08-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17108.png
933 en en-19970817-1 4299 The mystery of Divine Justice in the Plan of Redemption 1997-08-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17107.png
934 en en-19970816-3 4315 The mystery of the Angel of Jesus 1997-08-16 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17103.png
935 en en-19970816-1 5039 Greetings to Ministers: The House of God 1997-08-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_17102.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/08/1997-08-16-1-greetings_to_ministers_the_house_of_god.mp3
936 en en-19970815-4 4289 The mystery of the signs in heaven revealing the Lord Jesus Christ in the Last Day 1997-08-15 4 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17098.png
937 en en-19970815-2 4324 The mystery of the fulfillment of the order of the resurrection awaited by those who are to be transformed 1997-08-15 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17101.png
938 en en-19970814-2 4278 The mystery of the signs in heaven 1997-08-14 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17097.png
939 en en-19970813-1 4293 The mystery of the glory of God manifested in His Temple 1997-08-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17093.png
940 en en-19970813-3 4311 The mystery of the Second Coming of Christ with His Angels at the Last Day 1997-08-13 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17094.png
941 en en-19970813-2 4303 The mystery of the Trumpet that sounds at the Last Day 1997-08-13 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17095.png
942 en en-19970812-1 4258 The mystery of the fulfillment of the prophecy 1997-08-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17089.png
943 en en-19970812-4 4284 The mystery of the Great Voice as of a trumpet in the Last Day 1997-08-12 4 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17090.png
944 en en-19970812-3 4270 The Mystery of the Faithful Voice of Jesus Christ in Human Flesh 1997-08-12 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17091.png
945 en en-19970811-2 4249 The mystery of the redemption and the grace to be adopted 1997-08-11 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17088.png
946 en en-19970811-1 4264 The Mystery of the Message of the Angel of Jesus Christ in simplicity 1997-08-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17087.png
947 en en-19970810-2 4244 The secrets of the mystery of the Seventh Seal that God stored away 1997-08-10 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17086.png
948 en en-19970810-4 4253 The mystery of the universe in a clay vessel today 1997-08-10 4 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17084.png
949 en en-19970809-5 4239 The mystery of the hidden Manna given by the faithful and wise shepherd 1997-08-09 5 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17078.png
950 en en-19970809-2 4214 The mystery of the Seven Thunders for the final awakening, transformation and rapture 1997-08-09 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/02/youtube_thumbnail_17081.png
951 en en-19970808-3 4208 The Mystery of the True and Faithful Rider 1997-08-08 3 https://ewr1.vultrobjects.com/lgcc-conferences/2022/02/youtube_thumbnail_17074.png
952 en en-19970807-2 4194 The mystery of the truth and the guidance of the Holy Spirit in the last messenger 1997-08-07 2 https://ewr1.vultrobjects.com/lgcc-conferences/2022/02/youtube_thumbnail_17072.png
953 en en-19970807-3 4204 The mystery of the call of the Lord Jesus Christ and His Bride, from His House, in the Last Day 1997-08-07 3 https://ewr1.vultrobjects.com/lgcc-conferences/2022/02/youtube_thumbnail_17071.png
954 en en-19970807-4 4218 The theophanic and mysterious cloud full of blessings for the firstborn 1997-08-07 4 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/02/youtube_thumbnail_17070.png
955 en en-19970806-4 4199 The mystery of the manifestation of the ministries of Moses and Elijah in the Last Day 1997-08-06 4 https://ewr1.vultrobjects.com/lgcc-conferences/2022/02/youtube_thumbnail_17066.png
956 en en-19970806-3 4183 The mystery of the revelation to understand the mysteries of the Kingdom of Heaven 1997-08-06 3 https://ewr1.vultrobjects.com/lgcc-conferences/2022/02/youtube_thumbnail_17067.png
957 en en-19970725-1 4176 The mysteries of the Kingdom of Heaven being revealed to the Church of the Lord Jesus Christ 1997-07-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2022/02/youtube_thumbnail_17056.png
958 en en-19970628-1 4926 The Strong Wind from the East 1997-06-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17005.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/04/1998-06-28-1-The_Strong_Wind_From_The_East.mp3
959 en en-19970601-1 4958 God’s Partner of the Last Day 1997-06-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_16975.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/06/1997-06-01-1-gods_partner_of_the_Last_day.mp3
960 en en-19970406-2 5026 The Second Coming of the Lord Jesus Christ to Earth at the Last Day - Part II 1997-04-06 2 https://ewr1.vultrobjects.com/lgcc-conferences/2023/05/youtube_thumbnail_16914.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/04/1997-04-06-2-the_second_coming_of_the_lord_jesus_christ_to_earth-low.mp3
961 en en-19970404-1 4982 The Children of God and the End of Time 1997-04-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/05/youtube_thumbnail_16909.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/04/1997-04-04-1-the_children_of_god_and_the_end_of_time.mp3
962 en en-19970323-1 4895 The Triumphal Entry of the Son of David Into Jerusalem 1997-03-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_16900.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/04/ENG19970323_the_triumphal_entry_of_the_son_of_david_into_jerusalem.mp3
963 en en-19970215-1 5078 The Fruitful Tree 1997-02-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_16851.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/1997/02/1997-02-15-1-the_fruitful_tree-low.mp3
964 en en-19970214-2 5017 God’s Last Blessing for This Generation 1997-02-14 2 https://ewr1.vultrobjects.com/lgcc-conferences/2023/05/VS3eZlH3-youtube_thumbnail_16849.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/05/1997-02-14-2-gods_last_blessing_for_this_generation.mp3
965 en en-19970209-2 5065 The Ministry in the House of the Lord Jesus Christ at the Last Day 1997-02-09 2 https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_16841.png
966 en en-19970206-1 5000 Latin America and the Most Holy Place of God’s Temple 1997-02-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/05/youtube_thumbnail_16837.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/05/1997-02-06-1-latin_america_and_the_most_Holy_place_of_gods_temple.mp3
967 en en-19970112-2 5033 Time of Jubilee in the House of God 1997-01-12 2 https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_16824.png https://conferenciaswp.carpa.com/en/wp-content/uploads/sites/2/2023/06/1997_01_12_2_Time-of-Jubilee-in-the-House-of-God.mp3
968 en en-19960225-2 4190 The Son of the Right Hand 1996-02-25 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg
969 en en-19930117-2 4228 The Keys of the Kingdom 1993-01-17 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg
970 en en-19910621- 4223 The march of the firstborn 1991-06-21 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg
971 en en-19910227-1 3108 Melchisedec visits His people 1991-02-27 1 https://www.carpa.com/sites/default/files/messages/en/1991/02/1991-02-27_melchisedec_visits_his_people.pdf

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,174 @@
"locale","code","id","title","date","activity","thumbnail","video","audio","booklet","simple"
"fr","fr-20180914-1",15,"Introduction au thème: Les mystères contenus dans le Septième Sceau","2018-09-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-137-1.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2018/09/2018-09-14_introduction_au_theme_les_mysteres_contenus_dans_le_septieme_sceau.pdf",""
"fr","fr-20180909-1",16,"Introduction au thème: Le Septième Sceau et le rétablissement de toutes choses","2018-09-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2018/09/2018-09-09_introduction_au_theme_le_septieme_sceau_et_le_retablissement_de_toutes_choses.pdf",""
"fr","fr-20180907-1",17,"Introduction au thème: Le Septième Sceau mettant fin à toutes choses","2018-09-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-138-1.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2018/09/2018-09-07_introduction_au_theme_le_septieme_sceau_mettant_fin_toutes_choses.pdf",""
"fr","fr-20180708-1",18,"Introduction au thème: LES FRUITS DU SEPTIÈME SCEAU","2018-07-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-156-2.jpg","","https://carpa.com/sites/default/files/messages/fr/2018/07/2018-07-08_introduction_au_theme_les_fruits_du_septieme_sceau.mp3","",""
"fr","fr-20180706-1",19,"Introduction au thème: LE SEPTIÈME SCEAU ET LŒUVRE DE RÉCLAMATION","2018-07-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-157-2.jpg","","https://carpa.com/sites/default/files/messages/fr/2018/07/2018-07-06_introduction_au_theme_le_septieme_sceau_et_loeuvre_de_reclamation.mp3","",""
"fr","fr-20180506-1",20,"Introduction au thème: Laliment spirituel à chaque temps","2018-05-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-47-1.jpg","","https://carpa.com/sites/default/files/messages/fr/2018/05/2018-05-06_introduction_au_theme_laliment_spirituel_chaque_temps.mp3","",""
"fr","fr-20180504-1",21,"Introduction au thème: Le Septième Sceau et la Septième Trompette","2018-05-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-49-1.jpg","","https://carpa.com/sites/default/files/messages/fr/2018/05/2018-05-04_introduction_au_theme_le_septieme_sceau_et_la_septieme_trompette.mp3","",""
"fr","fr-20180429-1",23,"Introduction au thème: Le Jour du Fils de lHomme et les œuvres quil fera dans sa Venue","2018-04-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-171.jpg","","https://carpa.com/sites/default/files/messages/fr/2018/04/2018-04-29_introduction_au_theme_l_e_j_our_du_f_ils_de_l_h_omme_et_les_oeuvres_quil_fera_dans_sa_v.mp3","",""
"fr","fr-20180427-1",22,"Introduction au thème: Le Jour du Fils de lHomme et les œuvres quil fera dans sa Venue","2018-04-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-172.jpg","","https://carpa.com/sites/default/files/messages/fr/2018/04/2018-04-27_introduction_au_theme_l_e_j_our_du_f_ils_de_l_h_omme_et_les_oeuvres_quil_fera_dans_sa_v.mp3","",""
"fr","fr-20180422-1",24,"Introduction au thème: Le cycle divin pour le rétablissement de toutes choses","2018-04-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-173.jpg","","https://carpa.com/sites/default/files/messages/fr/2018/04/2018-04-22_introduction_au_theme_le_cycle_divin_pour_le_retablissement_de_toutes_choses.mp3","",""
"fr","fr-20180420-1",25,"Introduction au thème: Le cycle divin pour le rétablissement de toutes choses","2018-04-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-174.jpg","","https://carpa.com/sites/default/files/messages/fr/2018/04/2018-04-20_introduction_au_theme_le_cycle_divin_pour_le_retablissement_de_toutes_choses.mp3","",""
"fr","fr-20171229-1",26,"Introduction au thème: Ce sera selon la Vision Divine","2017-12-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-17.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2017/12/2017-12-29_introduction_au_theme_ce_sera_selon_la_vision_divine.pdf",""
"fr","fr-20171222-1",27,"Introduction au thème: Melchisédek, le Roi de Paix","2017-12-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-23.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2017/12/2017-12-22_introduction_au_theme_melchisedek_le_roi_de_paix.pdf",""
"fr","fr-20171215-1",28,"Lenvoyé du Père","2017-12-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2017/12/2017-12-15_lenvoye_du_pere.pdf",""
"fr","fr-20171203-1",29,"Introduction au thème: Le dernier appel des douze Tribus dIsraël","2017-12-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-42.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2017/12/2017-12-03_introduction_au_theme_le_dernier_appel_des_douze_tribus_disrael.pdf",""
"fr","fr-20170924-1",30,"Introduction au thème: Élie sur la Montagne de Dieu","2017-09-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp","","","https://www.carpa.com/sites/default/files/messages/fr/2017/09/2017-09-24_introduction_au_theme_elie_sur_la_montagne_de_dieu.pdf",""
"fr","fr-20170917-1",31,"Introduction au thème: LE TEMPS DE RÉCOLTER","2017-09-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp","","","https://www.carpa.com/sites/default/files/messages/fr/2017/09/2017-09-17_introduction_au_theme_le_temps_de_recolter.pdf",""
"fr","fr-20170910-1",32,"Paroles des Salutations Dimanche 10 septembre 2017 - Dr. William Soto Santiago","2017-09-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp","","","https://www.carpa.com/sites/default/files/messages/fr/2017/09/2017-09-10_paroles_des_salutations_dimanche_10_septembre_2017_-_dr_william_soto_santiago.pdf",""
"fr","fr-20170903-1",33,"Paroles de salutation Dimanche 3 septembre 2017 - Dr. William Soto Santiago","2017-09-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp","","","https://www.carpa.com/sites/default/files/messages/fr/2017/09/2017-09-03_paroles_de_salutation_dimanche_3_septembre_2017_-_dr_william_soto_santiago.pdf",""
"fr","fr-20170428-1",34,"Le retour à lÉden - Introduction","2017-04-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-41.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2017/04/2017-04-28_le_retour_leden_-_introduction.pdf",""
"fr","fr-20170331-1",35,"La trajectoire du ministère dÉlie pour la cinquième fois - Introduction","2017-03-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/04/youtube_thumbnail_21951.png","","","https://www.carpa.com/sites/default/files/messages/fr/2017/03/2017-03-31_la_trajectoire_du_ministere_delie_pour_la_cinquieme_fois_-_introduction.pdf",""
"fr","fr-20170324-1",36,"Un prophète comme Moïse - Introduction","2017-03-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/10/youtube_thumbnail_21949.png","","","https://www.carpa.com/sites/default/files/messages/fr/2017/03/2017-03-24_un_prophete_comme_moise_-_introduction.pdf",""
"fr","fr-20170310-1",37,"Joseph devant le peuple pour la préservation de la vie - Introduction","2017-03-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2017/03/2017-03-10_joseph_devant_le_peuple_pour_la_preservation_de_la_vie_-_introduction.pdf",""
"fr","fr-20170224-1",38,"Les Anges apportant la révélation des Sept Sceaux - Introduction","2017-02-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-39.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2017/02/2017-02-24_les_anges_apportant_la_revelation_des_sept_sceaux_-_introduction.pdf",""
"fr","fr-20170217-1",39,"David, le huitième fils dIsaï, oint comme roi dIsraël - Introduction","2017-02-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-49.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2017/02/2017-02-17_david_le_huitieme_fils_disai_oint_comme_roi_disrael_-_introduction.pdf",""
"fr","fr-20170212-1",40,"Le temps pour létablissement du Royaume du Messie sur la Terre","2017-02-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-41.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2017/02/2017-02-12_le_temps_pour_letablissement_du_royaume_du_messie_sur_la_terre_-_introduction.pdf",""
"fr","fr-20170210-1",41,"Le temps pour létablissement du Royaume du Messie sur la Terre - Introduction","2017-02-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-41.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2017/02/2017-02-10_le_temps_pour_letablissement_du_royaume_du_messie_sur_la_terre_-_introduction.pdf",""
"fr","fr-20170205-1",42,"La révélation de Dieu par les prophètes","2017-02-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-39.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2017/02/2017-02-05_la_revelation_de_dieu_par_les_prophetes.pdf",""
"fr","fr-20170127-1",43,"Le retour des citoyens Célestes à la Maison du Père - Introduction","2017-01-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-38.jpg","","https://carpa.com/sites/default/files/messages/fr/2017/01/2017-01-27_le_retour_des_citoyens_celestes_la_maison_du_pere_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/fr/2017/01/2017-01-27_le_retour_des_citoyens_celestes_la_maison_du_pere_-_introduction.pdf",""
"fr","fr-20170122-1",44,"La première Gerbe agitée","2017-01-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-43.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2017/01/2017-01-22_la_premiere_gerbe_agitee.pdf",""
"fr","fr-20170120-1",45,"La première Gerbe agitée - Introduction","2017-01-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-48.jpg","","https://www.carpa.com/sites/default/files/messages/fr/2017/01/2017-01-20_la_premiere_gerbe_agitee_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/fr/2017/01/2017-01-20_la_premiere_gerbe_agitee_-_introduction.pdf",""
"fr","fr-20170113-1",46,"La Semence royale dAbraham - Introduction","2017-01-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/2gwWOr6O-youtube_thumbnail_21926.png","","https://www.carpa.com/sites/default/files/messages/fr/2017/01/2017-01-13_la_semence_royale_dabraham_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/fr/2017/01/2017-01-13_la_semence_royale_dabraham_-_introduction.pdf",""
"fr","fr-20170108-1",47,"Le Caillou avec un Nom nouveau","2017-01-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_21925.png","","","https://www.carpa.com/sites/default/files/messages/fr/2017/01/2017-01-08_le_caillou_avec_un_nom_nouveau.pdf",""
"fr","fr-20161218-1",48,"Trône et Royaume du Fils de David","2016-12-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-27.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/12/2016-12-18_trone_et_royaume_du_fils_de_david.pdf",""
"fr","fr-20161211-1",49,"LAlliance éternelle de Dieu avec Son peuple Israël","2016-12-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18-21.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/12/2016-12-11_lalliance_eternelle_de_dieu_avec_son_peuple_israel.pdf",""
"fr","fr-20161202-1",50,"Le trône de la Grâce - Introduction","2016-12-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-9.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/12/2016-12-02_le_trone_de_la_grace_-_introduction.pdf",""
"fr","fr-20161127-1",51,"La mission du Précurseur de la Première et Seconde Venue de Christ et de celui qui a été annoncé","2016-11-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/dfk3sjdQ-youtube_thumbnail_21910.png","","","https://www.carpa.com/sites/default/files/messages/fr/2016/11/2016-11-27_la_mission_du_precurseur_de_la_premiere_et_seconde_venue_de_christ_et_de_celui_qui_ete.pdf",""
"fr","fr-20161125-1",52,"La mission du précurseur de la première et seconde venue de Christ et de celui qui a été annoncé - Introduction","2016-11-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/2ZVcWItt-youtube_thumbnail_21908.png","","","https://www.carpa.com/sites/default/files/messages/fr/2016/11/2016-11-25_la_mission_du_precurseur_de_la_premiere_et_seconde_venue_de_christ_et_de_celui_qui_ete.pdf",""
"fr","fr-20161120-1",53,"Poursuivant celui qui connaît le chemin de la Terre promise","2016-11-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-46.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/11/2016-11-20_poursuivant_celui_qui_connait_le_chemin_de_la_terre_promise.pdf",""
"fr","fr-20161118-1",54,"Poursuivant celui qui connaît le chemin de la terre Promise - Introduction","2016-11-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-38.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/11/2016-11-18_poursuivant_celui_qui_connait_le_chemin_de_la_terre_promise_-_introduction.pdf",""
"fr","fr-20161113-1",55,"La vallée de lombre de la mort","2016-11-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-36.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/11/2016-11-13_la_vallee_de_lombre_de_la_mort.pdf",""
"fr","fr-20161111-1",56,"La vallée de lombre de la mort - Introduction","2016-11-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-34.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/11/2016-11-11_la_vallee_de_lombre_de_la_mort_-_introduction.pdf",""
"fr","fr-20161106-1",57,"Élie sur la montagne de Dieu","2016-11-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/KNLBnduu-youtube_thumbnail_21900.png","","","https://www.carpa.com/sites/default/files/messages/fr/2016/11/2016-11-06_elie_sur_la_montagne_de_dieu.pdf",""
"fr","fr-20161104-1",58,"Élie sur la montagne de Dieu - Introduction","2016-11-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_21898.png","","","https://www.carpa.com/sites/default/files/messages/fr/2016/11/2016-11-04_elie_sur_la_montagne_de_dieu_-_introduction.pdf",""
"fr","fr-20161030-1",59,"Le Temps de la récolte","2016-10-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-29.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/10/2016-10-30_le_temps_de_la_recolte.pdf",""
"fr","fr-20161028-1",60,"Le temps de la récolte - Introduction","2016-10-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-36.jpg","","https://www.carpa.com/sites/default/files/messages/fr/2016/10/2016-10-28_le_temps_de_la_recolte_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/fr/2016/10/2016-10-28_le_temps_de_la_recolte_-_introduction.pdf",""
"fr","fr-20161021-1",61,"La lumière luit dans les ténèbres - Introduction","2016-10-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-45.jpg","","https://www.carpa.com/sites/default/files/messages/fr/2016/10/2016-10-21_la_lumiere_luit_dans_les_tenebres_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/fr/2016/10/2016-10-21_la_lumiere_luit_dans_les_tenebres_-_introduction.pdf",""
"fr","fr-20161014-1",62,"LÉpée dans la main et la bouche du Fils de lhomme - Introduction","2016-10-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-37.jpg","","https://www.carpa.com/sites/default/files/messages/fr/2016/10/2016-10-14_lepee_dans_la_main_et_la_bouche_du_fils_de_lhomme_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/fr/2016/10/2016-10-14_lepee_dans_la_main_et_la_bouche_du_fils_de_lhomme_-_introduction.pdf",""
"fr","fr-20161002-1",63,"LEsprit du Seigneur levant létendard contre lennemi","2016-10-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-33.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/10/2016-10-02_lesprit_du_seigneur_levant_letendard_contre_lennemi.pdf",""
"fr","fr-20160930-1",64,"LEsprit du Seigneur levant létendard contre lennemi - Introduction","2016-09-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/05/youtube_thumbnail_21886.png","","","https://www.carpa.com/sites/default/files/messages/fr/2016/09/2016-09-30_lesprit_du_seigneur_levant_letendard_contre_lennemi_-_introduction.pdf",""
"fr","fr-20160925-1",65,"Le peuple qui se réjouit de ce que leurs noms soient écrits dans les cieux","2016-09-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-40.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/09/2016-09-25_le_peuple_qui_se_rejouit_de_ce_que_leurs_noms_soient_ecrits_dans_les_cieux.pdf",""
"fr","fr-20160923-1",66,"Le peuple joyeux que leurs noms soient inscrits dans les Cieux - Introduction","2016-09-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-44.jpg","","https://www.carpa.com/sites/default/files/messages/fr/2016/09/2016-09-23_le_peuple_joyeux_que_leurs_noms_soient_inscrits_dans_les_cieux_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/fr/2016/09/2016-09-23_le_peuple_joyeux_que_leurs_noms_soient_inscrits_dans_les_cieux_-_introduction.pdf",""
"fr","fr-20160918-1",67,"Un Prophète, le signe le plus grand sur la Terre","2016-09-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21883.png","","","https://www.carpa.com/sites/default/files/messages/fr/2016/09/2016-09-18_un_prophete_le_signe_le_plus_grand_sur_la_terre.pdf",""
"fr","fr-20160916-1",68,"Un prophète, le plus grand signe sur la Terre - Introduction","2016-09-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-36.jpg","","https://www.carpa.com/sites/default/files/messages/fr/2016/09/2016-09-16_un_prophete_le_plus_grand_signe_sur_la_terre_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/fr/2016/09/2016-09-16_un_prophete_le_plus_grand_signe_sur_la_terre_-_introduction.pdf",""
"fr","fr-20160909-1",69,"Melchisédek, le Roi de paix - Introduction","2016-09-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-32.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/09/2016-09-09_melchisedek_le_roi_de_paix_-_introduction.pdf",""
"fr","fr-20160902-2",70,"LES BÉNÉDICTIONS CONTENUES DANS LA PRIMOGÉNITURE - Introduction","2016-09-02","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_21878.png","","","https://www.carpa.com/sites/default/files/messages/fr/2016/09/2016-09-02_les_benedictions_contenues_dans_la_primogeniture_-_introduction.pdf",""
"fr","fr-20160812-1",71,"Les Archanges Gabriel et Michel Oeuvrant dans les changements de royaume - Introduction","2016-08-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-24.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/08/2016-08-12_les_archanges_gabriel_et_michel_oeuvrant_dans_les_changements_de_royaume_-_introduction.pdf",""
"fr","fr-20160805-1",72,"La Lumière du soir - Introduction","2016-08-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-20.jpg","","","",""
"fr","fr-20160729-1",73,"Le plein accomplissement des prophéties pour le dernier jour - Introduction","2016-07-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-22.jpg","","https://www.carpa.com/sites/default/files/messages/fr/2016/07/2016-07-29_le_plein_accomplissement_des_propheties_pour_le_dernier_jour_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/fr/2016/07/2016-07-29_le_plein_accomplissement_des_propheties_pour_le_dernier_jour_-_introduction.pdf",""
"fr","fr-20160722-1",74,"Les ceuvres de Jésus-Christ au milieu de son église - Introduction","2016-07-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-19.jpg","","https://www.carpa.com/sites/default/files/messages/fr/2016/07/2016-07-22_les_ceuvres_de_jesus-christ_au_milieu_de_son_eglise_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/fr/2016/07/2016-07-22_les_ceuvres_de_jesus-christ_au_milieu_de_son_eglise_-_introduction.pdf",""
"fr","fr-20160717-1",75,"LA GRÂCE DU SEIGNEUR JÉSUS-CHRIST RÉPANDUE SUR SES ENFANTS","2016-07-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-20-8.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/07/2016-07-17_la_grace_du_seigneur_jesus-christ_repandue_sur_ses_enfants.pdf",""
"fr","fr-20160715-1",76,"La grace du seigneur Jésus-Christ répandue á ses enfants - Introduction","2016-07-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-8.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/07/2016-07-15_la_grace_du_seigneur_jesus-christ_repandue_ses_enfants_-_introduction.pdf",""
"fr","fr-20160701-1",77,"Ourant vers le but - Introduction","2016-07-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-26-5.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/07/2016-07-01_ourant_vers_le_-_introduction.pdf",""
"fr","fr-20160617-1",78,"DEMANDEZ AU PÈRE EN SON NOM ET IL NOUS RÉCOMPENSERA- Introduction","2016-06-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-38.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/06/2016-06-17_demandez_au_pere_en_son_nom_et_il_nous_recompensera-_introduction.pdf",""
"fr","fr-20160610-1",79,"Par amour aux élus - Introduction","2016-06-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-34.jpg","","","",""
"fr","fr-20160603-1",80,"Le Message du Roi - Introduction","2016-06-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-29.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/06/2016-06-03_le_message_du_roi_-_introduction.pdf",""
"fr","fr-20160527-1",81,"Le temps de se battre pour asseoir le Fils de David sur le Trône - Introduction","2016-05-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-41.jpg","","https://www.carpa.com/sites/default/files/messages/fr/2016/05/2016-05-27_le_temps_de_se_battre_pour_asseoir_le_fils_de_david_sur_le_trone_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/fr/2016/05/2016-05-27_le_temps_de_se_battre_pour_asseoir_le_fils_de_david_sur_le_trone_-_introduction.pdf",""
"fr","fr-20160520-1",82,"Lorchestre de Dieu - Introduction","2016-05-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-33.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/05/2016-05-20_lorchestre_de_dieu_-_introduction.pdf",""
"fr","fr-20160508-1",83,"JÉSUS-CHRIST, LESPÉRANCE DE LA GLOIRE","2016-05-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-22.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/05/2016-05-08_jesus-christ_lesperance_de_la_gloire.pdf",""
"fr","fr-20160415-1",84,"La gloire de la shekinah dans le lieu trés saint","2016-04-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21823.png","","","https://www.carpa.com/sites/default/files/messages/fr/2016/04/2016-04-15_la_gloire_de_la_shekinah_dans_le_lieu_tres_saint.pdf",""
"fr","fr-20160408-1",85,"Unanimes et ensemble dans la chambre haute recevant le Saint-Esprit - Introduction","2016-04-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-7.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/04/2016-04-08_unanimes_et_ensemble_dans_la_chambre_haute_recevant_le_saint-esprit_-_introduction.pdf",""
"fr","fr-20160401-1",86,"Les quarante jours de Jésus sur terre, avant lenlèvement - Introduction","2016-04-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-23-6.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/04/2016-04-01_les_quarante_jours_de_jesus_sur_terre_avant_lenlevement_-_introduction.pdf",""
"fr","fr-20160325-1",87,"Jésus-Christ a couronné Son ministère sur a Croix","2016-03-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-29.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/03/2016-03-25_jesus-christ_couronne_son_ministere_sur_croix.pdf",""
"fr","fr-20160320-1",88,"Le vainqueur sasseyant sur le trône de David","2016-03-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-26.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/03/2016-03-20_le_vainqueur_sasseyant_sur_le_trone_de_david.pdf",""
"fr","fr-20160317-1",89,"Le vainqueur sasseyant sur le trône de David - Introduction","2016-03-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-20.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/03/2016-03-17_le_vainqueur_sasseyant_sur_le_trone_de_david_-_introduction.pdf",""
"fr","fr-20160313-1",90,"Létoile du matin","2016-03-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/07/youtube_thumbnail_21809.png","","","https://www.carpa.com/sites/default/files/messages/fr/2016/03/2016-03-13_letoile_du_matin.pdf",""
"fr","fr-20160311-1",91,"Létoile du matin - Introduction","2016-03-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-6.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/03/2016-03-11_letoile_du_matin_-_introduction.pdf",""
"fr","fr-20160306-1",92,"Le caillou avec un nom nouveau","2016-03-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-22-5.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/03/2016-03-06_le_caillou_avec_un_nom_nouveau.pdf",""
"fr","fr-20160304-1",93,"Le caillou avec un nom nouveau - Introduction","2016-03-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-23-5.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/03/2016-03-04_le_caillou_avec_un_nom_nouveau_-_introduction.pdf",""
"fr","fr-20160228-1",94,"Le signe du Fils de lhomme dans le Ciel","2016-02-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-21.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/02/2016-02-28_le_signe_du_fils_de_lhomme_dans_le_ciel.pdf",""
"fr","fr-20160226-1",95,"Le signe du fils de l'homme dans le ciel - Introduction","2016-02-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-27.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/02/2016-02-26_le_signe_du_fils_de_lhomme_dans_le_ciel_-_introduction.pdf",""
"fr","fr-20160221-1",96,"Le libre scelle de sept sceaux","2016-02-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-33.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/02/2016-02-21_le_libre_scelle_de_sept_sceaux.pdf",""
"fr","fr-20160219-1",97,"LE LIVRE SCELLÉ DE SEPT SCEAUX - Introduction","2016-02-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/04/youtube_thumbnail_21799.png","","","https://www.carpa.com/sites/default/files/messages/fr/2016/02/2016-02-19_le_livre_scelle_de_sept_sceaux_-_introduction.pdf",""
"fr","fr-20160214-1",98,"La famille de la foi","2016-02-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-40.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/02/2016-02-14_la_famille_de_la_foi.pdf",""
"fr","fr-20160207-1",99,"La nouvelle Jérusalem","2016-02-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-30.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/02/2016-02-07_la_nouvelle_jerusalem.pdf",""
"fr","fr-20160131-1",100,"L'ange sellant les tribus d'Israël","2016-01-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-35.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/01/2016-01-31_lange_sellant_les_tribus_disrael.pdf",""
"fr","fr-20160124-1",101,"LE TÉMOIGNAGE DE JÉSUS EST LESPRIT DE LA PROPHÉTIE / PRÉDESTINÉS POUR ÊTRE ENLEVÉS AU DERNIER JOUR","2016-01-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-39.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/01/2016-01-24_le_temoignage_de_jesus_est_lesprit_de_la_prophetie/predestines_pour_etre_enleves_au_dernier_jour.pdf",""
"fr","fr-20160110-1",102,"LE SEPTIÈME SCEAU ET LA FIN DES SYSTÈMES MONDIAUX","2016-01-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-19.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/01/2016-01-10_le_septieme_sceau_et_la_fin_des_systemes_mondiaux.pdf",""
"fr","fr-20160108-1",103,"LE SEPTIÈME SCEAU ET LA FIN DES SYSTÈMES MONDIAUX - Introduction","2016-01-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-18.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/01/2016-01-08_le_septieme_sceau_et_la_fin_des_systemes_mondiaux_-_introduction.pdf",""
"fr","fr-20160103-1",104,"Ce sera selon la vision divine","2016-01-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2016/01/2025-03-15-13.00.41.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2016/01/2016-01-03_ce_sera_selon_la_vision_divine.pdf",""
"fr","fr-20150927-1",105,"Un murmure doux et léger","2015-09-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/Cgn6tOQr-youtube_thumbnail_21751.png","","","https://www.carpa.com/sites/default/files/messages/fr/2015/09/2015-09-25_un_murmure_doux_et_leger.pdf",""
"fr","fr-20150906-1",106,"Le Royaume de Dieu est proche","2015-09-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-20-5.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2015/09/2015-09-06_le_royaume_de_dieu_est_proche.pdf",""
"fr","fr-20150830-1",107,"Le mystére de la foi d'enlévement contenu dans les sept tonnerres","2015-08-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/youtube_thumbnail_21739-1.png","","","https://www.carpa.com/sites/default/files/messages/fr/2015/08/2015-08-28_le_mystere_de_la_foi_denlevement_contenu_dans_les_sept_tonnerres.pdf",""
"fr","fr-20150731-1",108,"Une fois de plus Seigneur - Introduction","2015-07-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-30.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2015/07/2015-07-31_une_fois_de_plus_seigneur_-_introduction.pdf",""
"fr","fr-20150717-1",109,"Où est l'Éternel, le Dieu d'Élie? - Introduction","2015-07-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-22.jpg","https://www.carpa.com/system/files_force/messages/fr/2015/07/2015-07-17_ou_est_leternel_le_dieu_delie_-_introduction.mp4","https://www.carpa.com/sites/default/files/messages/fr/2015/07/2015-07-17_ou_est_leternel_le_dieu_delie_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/fr/2015/07/2015-07-17_ou_est_leternel_le_dieu_delie_-_introduction.pdf",""
"fr","fr-20150710-1",110,"Le toucher par la foi pour le salut - Introduction","2015-07-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-13.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2015/07/2015-07-10_le_toucher_par_la_foi_pour_le_salut_-_introduction.pdf",""
"fr","fr-20150705-1",111,"La position de l'église au dernier jour","2015-07-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18-10.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2015/07/2015-07-03_la_position_de_leglise_au_dernier_jour.pdf",""
"fr","fr-20150619-1",112,"La source d'eau pour la vie éternelle - Introduction","2015-06-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-23.jpg","https://www.carpa.com/system/files_force/messages/fr/2015/06/2015-06-19_la_source_deau_pour_la_vie_eternelle_-_introduction.mp4?download=1","https://www.carpa.com/sites/default/files/messages/fr/2015/06/2015-06-19_la_source_deau_pour_la_vie_eternelle_-_introduction.mp3","https://www.carpa.com/sites/default/files/messages/fr/2015/06/2015-06-19_la_source_deau_pour_la_vie_eternelle_-_introduction.pdf",""
"fr","fr-20150524-1",113,"Les Dimensions","2015-05-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21705.png","","","https://www.carpa.com/sites/default/files/messages/fr/2015/05/2015-05-24_les_dimensions.pdf",""
"fr","fr-20150419-1",114,"La septiéme dispensation: Le royaume","2015-04-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21695-1.png","","","https://www.carpa.com/sites/default/files/messages/fr/2015/04/2015-04-19_la_septieme_dispensation_le_royaume.pdf",""
"fr","fr-20150412-1",115,"La sixieme dispensation: La Grace","2015-04-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2026/01/youtube_thumbnail_21694-1.png","","","",""
"fr","fr-20150405-1",116,"Jésus ressuscité comme l'écriture l'a dit","2015-04-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21692-1.png","","","https://www.carpa.com/sites/default/files/messages/fr/2015/04/2015-04-05_jesus_ressuscite_comme_lecriture_la_dit.pdf",""
"fr","fr-20150328-1",117,"La cinquième dispensation: La loi","2015-03-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/05/youtube_thumbnail_21686.png","","","https://www.carpa.com/sites/default/files/messages/fr/2015/03/2015-03-28_la_cinquieme_dispensation_la_loi.pdf",""
"fr","fr-20150322-1",118,"La quatriéme dispensation: La Promesse","2015-03-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-19.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2015/03/2015-03-22_la_quatrieme_dispensation_la_promesse.pdf",""
"fr","fr-20150315-1",119,"La Troisième Dispensation : Le Gouvernement Humain","2015-03-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-11.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2015/03/2015-03-15_la_troisieme_dispensation_le_gouvernement_humain.pdf",""
"fr","fr-20150314-1",120,"La seconde dispensation: La conscience","2015-03-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/05/youtube_thumbnail_21681.png","","","https://www.carpa.com/sites/default/files/messages/fr/2015/03/2015-03-14_la_seconde_dispensation_la_conscience.pdf",""
"fr","fr-20150308-1",121,"La premiere dispensation: L'innocence","2015-03-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21679.png","","https://www.carpa.com/sites/default/files/messages/fr/2015/03/2015-03-08_la_premiere_dispensation_linnocence.mp3","https://www.carpa.com/sites/default/files/messages/fr/2015/03/2015-03-08_la_premiere_dispensation_linnocence.pdf",""
"fr","fr-20150301-1",122,"Qui est-ce le fils de l'homme aujourd'hui, pour ce temps de la fin?","2015-03-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21678.png","","https://www.carpa.com/sites/default/files/messages/fr/2015/03/2015-03-01_qui_est-ce_le_fils_de_lhomme_aujourdhui_pour_ce_temps_de_la_fin.mp3","https://www.carpa.com/sites/default/files/messages/fr/2015/03/2015-03-01_qui_est-ce_le_fils_de_lhomme_aujourdhui_pour_ce_temps_de_la_fin.pdf",""
"fr","fr-20150222-1",123,"Le Salut de ce qui était Perdu","2015-02-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-18.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2015/02/2015-02-22_le_salut_de_ce_qui_etait_perdu.pdf",""
"fr","fr-20150208-1",124,"Le Roi des rois et Seigneur des seigneurs","2015-02-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/cxS9ziAp-youtube_thumbnail_21670.png","","","https://www.carpa.com/sites/default/files/messages/fr/2015/02/2015-02-08_le_roi_des_rois_et_seigneur_des_seigneurs.pdf",""
"fr","fr-20150201-1",125,"Le fils de lhomme","2015-02-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/rGJZrHWo-youtube_thumbnail_21668.png","","","https://www.carpa.com/sites/default/files/messages/fr/2015/02/2015-02-01_le_fils_de_lhomme.pdf",""
"fr","fr-20150125-1",126,"Fils de Dieu","2015-01-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-19.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2015/01/2015-01-25_fils_de_dieu.pdf",""
"fr","fr-20150118-1",127,"Lheritier, le fils de David","2015-01-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-23.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2015/01/2015-01-18_lheritier_le_fils_de_david.pdf",""
"fr","fr-20150111-1",128,"Les Quatre Titres De Fils De Jésus: Le Fils DAbraham","2015-01-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-28.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2015/01/2015-01-11_les_quatre_titres_de_fils_de_jesus_le_fils_dabraham.pdf",""
"fr","fr-20150104-1",129,"Le royaume et le trone de David","2015-01-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-26.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2015/01/2015-01-04_le_royaume_et_le_trone_de_david.pdf",""
"fr","fr-20141102-1",130,"Le Précurseur et Celui Qui A Été Annoncé Par Lui Dans Le Vieux et Nouveau Monde","2014-11-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-14.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/11/2014-11-02_le_precurseur_et_celui_qui_ete_annonce_par_lui_dans_le_vieux_et_nouveau_monde.pdf",""
"fr","fr-20140928-1",131,"Suivant les Empreintes du Maître","2014-09-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-15.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/09/2014-09-28_suivant_les_empreintes_du_maitre.pdf",""
"fr","fr-20140921-1",132,"Un Commandement du Seigneur: Aimez-vous les uns les autres","2014-09-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-9.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/09/2014-09-21_un_commandement_du_seigneur_aimez-vous_les_uns_les_autres.pdf",""
"fr","fr-20140914-1",133,"LÉvangile Retournera aux Juifs","2014-09-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-8.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/09/2014-09-14_levangile_retournera_aux_juifs.pdf",""
"fr","fr-20140907-1",134,"Dieu approvisionnant ce qui manque pour son œuvre finale","2014-09-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21619.png","","","https://www.carpa.com/sites/default/files/messages/fr/2014/09/2014-09-07_dieu_approvisionnant_ce_qui_manque_pour_son_oeuvre_finale.pdf",""
"fr","fr-20140831-1",135,"Le Peuple qui fait des efforts pour culminer lŒuvre qui lui a été confiée pour chaque temps","2014-08-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21616.png","","","https://www.carpa.com/sites/default/files/messages/fr/2014/08/2014-08-31_le_peuple_qui_fait_des_efforts_pour_culminer_loeuvre_qui_lui_ete_confiee_pour_chaque.pdf",""
"fr","fr-20140824-1",136,"Avec la Parole de Dieu, Nous Enseignons lÂme","2014-08-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-8.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/08/2014-08-24_avec_la_parole_de_dieu_nous_enseignons_lame.pdf",""
"fr","fr-20140817-1",137,"QUE TON REGNE VIENNE QUE TA VOLONTE SOIT FAITE SUR LA TERRE COMME AU CIEL","2014-08-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-20-4.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/08/2014-08-17_que_ton_regne_vienne_que_ta_volonte_soit_faite_sur_la_terre_comme_au_ciel.pdf",""
"fr","fr-20140727-1",138,"Les tribus disraël","2014-07-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-17.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/07/2014-07-27_les_tribus_disrael.pdf",""
"fr","fr-20140720-1",139,"LE JOUR DE CHRIST","2014-07-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-20.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/07/2014-07-20_le_jour_de_christ.pdf",""
"fr","fr-20140706-1",140,"Prépare-toi pour la rencontre avec Jésus-christ","2014-07-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-21.jpg","https://www.carpa.com/system/files_force/messages/fr/2014/07/2014-07-06_prepare-toi_pour_la_rencontre_avec_jesus-christ.mp4","https://www.carpa.com/sites/default/files/messages/fr/2014/07/2014-07-06_prepare-toi_pour_la_rencontre_avec_jesus-christ.mp3","https://www.carpa.com/sites/default/files/messages/fr/2014/07/2014-07-06_prepare-toi_pour_la_rencontre_avec_jesus-christ.pdf",""
"fr","fr-20140629-1",141,"La révélation de Jésus-christ pour le dérnier jour","2014-06-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-20.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/06/2014-06-29_la_revelation_de_jesus-christ_pour_le_dernier_jour.pdf",""
"fr","fr-20140622-1",142,"Léglise active du seigneur Jésus-christ","2014-06-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-22.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/06/2014-06-22_leglise_active_du_seigneur_jesus-christ.pdf",""
"fr","fr-20140615-1",143,"LA PAROLE DE DIEU DANS LES PROPHÈTES","2014-06-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-13.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/06/2014-06-15_la_parole_de_dieu_dans_les_prophetes.pdf",""
"fr","fr-20140608-1",144,"LE TEMPS POUR VOIR","2014-06-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-13.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/06/2014-06-08_le_temps_pour_voir.pdf",""
"fr","fr-20140601-1",145,"QUE DOIS-JE FAIRE POUR ÊTRE SAUVÉ","2014-06-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-11.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/06/2014-06-01_que_dois-je_faire_pour_etre_sauve.pdf",""
"fr","fr-20140525-1",146,"LE BLÉ MÛR","2014-05-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-19.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/05/2014-05-25_le_ble_mur.pdf",""
"fr","fr-20140518-1",147,"CAR NOUS NAVONS POINT ICI-BAS DE CITÉ PERMANENTE, MAIS NOUS CHERCHONS CELLE QUI EST À VENIR","2014-05-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-21.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/05/2014-05-18_car_nous_navons_point_ici-bas_de_cite_permanente_mais_nous_cherchons_celle_qui_est_venir.pdf",""
"fr","fr-20140511-1",148,"OBÉISSANT LA VOIX DE LANGE DE LALLIANCE EN ATTENDANT LA TRANSFORMATION","2014-05-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-12.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/05/2014-05-11_obeissant_la_voix_de_lange_de_lalliance_en_attendant_la_transformation.pdf",""
"fr","fr-20140504-1",149,"LA VICTOIRE PAR NOTRE SEIGNEUR JÉSUS-CHRIST","2014-05-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-12.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/05/2014-05-04_la_victoire_par_notre_seigneur_jesus-christ.pdf",""
"fr","fr-20140427-1",150,"PRÉPARONS-NOUS POUR LA VENUE DU SEIGNEUR, CAR LES JOURS SONT MAUVAIS","2014-04-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-22.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/04/2014-04-27_preparons-nous_pour_la_venue_du_seigneur_car_les_jours_sont_mauvais.pdf",""
"fr","fr-20140413-1",151,"LES ŒUVRES DE JÉSUS EN ENTRANT À JÉRUSALEM","2014-04-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21567.png","","","https://www.carpa.com/sites/default/files/messages/fr/2014/04/2014-04-13_les_oeuvres_de_jesus_en_entrant_jerusalem.pdf",""
"fr","fr-20140406-1",152,"LANGE DUSEIGNEUR JÉSUS-CHRIST CHERCHANT JUSQUAU DERNIER ÉLU DE DIEU","2014-04-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-7.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/04/2014-04-06_lange_duseigneur_jesus-christ_cherchant_jusquau_dernier_elu_de_dieu.pdf",""
"fr","fr-20140330-1",153,"LA VISITE D'UN ANGE À LA FAMILLE HUMAINE","2014-03-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21563.png","","","https://www.carpa.com/sites/default/files/messages/fr/2014/03/2014-03-30_la_visite_dun_ange_la_famille_humaine.pdf",""
"fr","fr-20140323-1",154,"Ce qui est derriére la porte","2014-03-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/youtube_thumbnail_21562.png","","","https://www.carpa.com/sites/default/files/messages/fr/2014/03/2014-03-23_ce_qui_est_derriere_la_porte.pdf",""
"fr","fr-20140316-1",155,"Les promesses de Dieu pour la fin des temps","2014-03-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-17.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/03/2014-03-16_les_promesses_de_dieu_pour_la_fin_des_temps.pdf",""
"fr","fr-20140309-1",156,"Les Sept Âges de L'Église du Seigneur Jésus","2014-03-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-10.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/03/2014-03-09_les_sept_ages_de_leglise_du_seigneur_jesus.pdf",""
"fr","fr-20140302-1",157,"LE TEMPS POUR ȆTRE PURIFIÉS","2014-03-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-10.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/03/2014-03-02_le_temps_pour_etre_purifies.pdf",""
"fr","fr-20140228-1",158,"Monte Ici","2014-02-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/10/youtube_thumbnail_21553.png","","","https://www.carpa.com/sites/default/files/messages/fr/2014/02/2014-02-28_monte_ici.pdf",""
"fr","fr-20140223-1",159,"Les Générations de Jésus-Christ","2014-02-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-18.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/02/2014-02-23_les_generations_de_jesus-christ.pdf",""
"fr","fr-20140216-1",160,"Santifiez-Vous, car demain l´éternel fera des merveilles au milieu de vous","2014-02-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-9.jpg","https://www.carpa.com/system/files_force/messages/fr/2014/02/2014-02-16_santifiez-vous_car_demain_leternel_fera_des_merveilles_au_milieu_de_vous.mp4","https://www.carpa.com/sites/default/files/messages/fr/2014/02/2014-02-16_santifiez-vous_car_demain_leternel_fera_des_merveilles_au_milieu_de_vous.mp3","https://www.carpa.com/sites/default/files/messages/fr/2014/02/2014-02-16_santifiez-vous_car_demain_leternel_fera_des_merveilles_au_milieu_de_vous.pdf",""
"fr","fr-20140209-2",161,"La Simplicité de Dieu","2014-02-09","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-7.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/02/2014-02-09_la_simplicite_de_dieu.pdf",""
"fr","fr-20140202-1",162,"Le mystere de la resurrection des croyants en Christ","2014-02-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-4.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/02/2014-02-02_le_mystere_de_la_resurrection_des_croyants_en_christ.pdf",""
"fr","fr-20140126-1",163,"La criante révérencielle","2014-01-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-5-7.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/01/2014-01-26_la_criante_reverencielle.pdf",""
"fr","fr-20140119-1",164,"Les signes de la fin du temps","2014-01-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-16.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/2014/01/2014-01-19_les_signes_de_la_fin_du_temps.pdf",""
"fr","fr-20140112-1",165,"Les dix vierges et la grande tribulation","2014-01-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21536.png","https://www.carpa.com/system/files_force/messages/fr/2014/01/2014-01-12_les_dix_vierges_et_la_grande_tribulation.mp4","https://www.carpa.com/sites/default/files/messages/fr/2014/01/2014-01-12_les_dix_vierges_et_la_grande_tribulation.mp3","https://www.carpa.com/sites/default/files/messages/fr/2014/01/2014-01-12_les_dix_vierges_et_la_grande_tribulation.pdf",""
"fr","fr-20140105-1",166,"L'ordre du culte","2014-01-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-20.jpg","","https://www.carpa.com/sites/default/files/messages/es/2014/01/2014-01-05_el_orden_del_culto.mp3","https://www.carpa.com/sites/default/files/messages/fr/2014/01/2014-01-05_lordre_du_culte.pdf",""
"fr","fr-19980504-3",167,"Le Message du Septième Sceau","1998-05-04","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-56.jpg","","https://www.carpa.com/sites/default/files/messages/fr/1998/05/1998-05-04_le_message_du_septieme_sceau.mp3","https://www.carpa.com/sites/default/files/messages/fr/1998/05/1998-05-04_le_message_du_septieme_sceau.pdf",""
"fr","fr-19980430-1",168,"La Lumière de Septième Sceau","1998-04-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17486.png","","https://www.carpa.com/sites/default/files/messages/fr/1998/04/1998-04-30_la_lumiere_du_septieme_sceau.mp3","https://www.carpa.com/sites/default/files/messages/fr/1998/04/1998-04-30_la_lumiere_du_septieme_sceau.pdf",""
"fr","fr-19980329-1",169,"La Victoire du Septième Sceau","1998-03-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18.jpg","","https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-29_la_victoire_du_septieme_sceau.mp3","https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-29_la_victoire_du_septieme_sceau.pdf",""
"fr","fr-19980326-1",170,"Le Septième Sceau et la seule espérance de lÉglise","1998-03-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17423.png","","","https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-26_le_septieme_sceau_et_la_seule_esperance_de_leglise.pdf",""
"fr","fr-19980324-1",171,"Le temps de se réveiller avec le message du Septième Sceau","1998-03-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17421.png","","","https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-24_le_temps_de_se_reveiller_avec_le_message_du_septieme_sceau.pdf",""
"fr","fr-19980322-1",172,"Le Septième Sceau et le rétablissement de toutes choses","1998-03-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-25.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-22_le_septieme_sceau_et_le_retablissement_de_toutes_choses.pdf",""
"fr","fr-19980321-2",173,"Le Septième Sceau et l e rétablissement du Trône de David","1998-03-21","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-21_le_septieme_sceau_et_l_e_retablissement_du_trone_de_david.pdf",""
"fr","fr-19980318-2",174,"Le Septièmes Sceau et le signe de la fin du monde","1998-03-18","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/05/youtube_thumbnail_17410.png","","","https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-18_le_septiemes_seau_et_le_signe_de_la_fin_du_monde.pdf",""
"fr","fr-19980315-2",175,"Le Septième Sceau et le Troisième Pull","1998-03-15","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17404.png","","","https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-15_le_septieme_sceau_et_le_troisieme_pull.pdf",""
"fr","fr-19980314-2",176,"Le Septième Sceau mettant fin à toutes choses","1998-03-14","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-26.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-14_le_septieme_sceau_mettant_fin_toutes_choses.pdf",""
"fr","fr-19980311-2",178,"Le Septième Sceau et les Sept Tonnerres","1998-03-11","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-31.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-11_le_septieme_sceau_et_les_sept_tonnerres.pdf",""
"fr","fr-19980310-1",179,"Le Septième Sceau et le réveil de l'Église","1998-03-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17394.png","","","https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-10_le_septieme_sceau_et_le_reveil_de_leglise.pdf",""
"fr","fr-19980308-2",181,"Le Septième Sceau et lEsprit de Moïse et dÉlie","1998-03-08","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-35.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-08_le_septieme_sceau_et_lesprit_de_moise_et_delie.pdf",""
"fr","fr-19980308-1",180,"Le Septième Sceau et la Parole incarnée","1998-03-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-34.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-08_le_septieme_sceau_et_la_parole_incarnee.pdf",""
"fr","fr-19980217-3",182,"Le Septième Sceau: la Venue du Fils de lHomme avec Ses Anges","1998-02-17","3","","","","https://www.carpa.com/sites/default/files/messages/fr/1998/02/1998-02-17_le_septieme_sceau_la_venue_du_fils_de_lhomme_avec_ses_anges.pdf",""
"fr","fr-19980212-2",183,"Les étapes du Septième Sceau","1998-02-12","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/1998/02/1998-02-12_les_etapes_du_septieme_sceau.pdf",""
"fr","fr-19971125-2",494,"Le mystère de la bonne terre qui est bénie","1997-11-25","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17270.png","","","",""
"fr","fr-19971112-1",490,"Le mystère des dimensions","1997-11-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17246.png","","","",""
"fr","fr-19970914-1",445,"Le mystère de lincarnation de la Parole","1997-09-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17161.png","","","",""
"fr","fr-19970812-1",486,"Le mystère de l'accomplissement de la prophétie","1997-08-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17089.png","","","",""
"fr","fr-19980312-2",177,"Le Septième Sceau et le Message de lÉvangile du Royaume","1998-03-12","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","","https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-12_le_septieme_sceau_et_le_message_de_levangile_du_royaume.pdf",""
1 locale code id title date activity thumbnail video audio booklet simple
2 fr fr-20180914-1 15 Introduction au thème: Les mystères contenus dans le Septième Sceau 2018-09-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-137-1.jpg https://www.carpa.com/sites/default/files/messages/fr/2018/09/2018-09-14_introduction_au_theme_les_mysteres_contenus_dans_le_septieme_sceau.pdf
3 fr fr-20180909-1 16 Introduction au thème: Le Septième Sceau et le rétablissement de toutes choses 2018-09-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg https://www.carpa.com/sites/default/files/messages/fr/2018/09/2018-09-09_introduction_au_theme_le_septieme_sceau_et_le_retablissement_de_toutes_choses.pdf
4 fr fr-20180907-1 17 Introduction au thème: Le Septième Sceau mettant fin à toutes choses 2018-09-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-138-1.jpg https://www.carpa.com/sites/default/files/messages/fr/2018/09/2018-09-07_introduction_au_theme_le_septieme_sceau_mettant_fin_toutes_choses.pdf
5 fr fr-20180708-1 18 Introduction au thème: LES FRUITS DU SEPTIÈME SCEAU 2018-07-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-156-2.jpg https://carpa.com/sites/default/files/messages/fr/2018/07/2018-07-08_introduction_au_theme_les_fruits_du_septieme_sceau.mp3
6 fr fr-20180706-1 19 Introduction au thème: LE SEPTIÈME SCEAU ET L’ŒUVRE DE RÉCLAMATION 2018-07-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-157-2.jpg https://carpa.com/sites/default/files/messages/fr/2018/07/2018-07-06_introduction_au_theme_le_septieme_sceau_et_loeuvre_de_reclamation.mp3
7 fr fr-20180506-1 20 Introduction au thème: L’aliment spirituel à chaque temps 2018-05-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-47-1.jpg https://carpa.com/sites/default/files/messages/fr/2018/05/2018-05-06_introduction_au_theme_laliment_spirituel_chaque_temps.mp3
8 fr fr-20180504-1 21 Introduction au thème: Le Septième Sceau et la Septième Trompette 2018-05-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-49-1.jpg https://carpa.com/sites/default/files/messages/fr/2018/05/2018-05-04_introduction_au_theme_le_septieme_sceau_et_la_septieme_trompette.mp3
9 fr fr-20180429-1 23 Introduction au thème: ​L​e ​J​our du ​F​ils de l’​H​omme et les ​​œuvres qu’il fera dans sa ​V​enue 2018-04-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-171.jpg https://carpa.com/sites/default/files/messages/fr/2018/04/2018-04-29_introduction_au_theme_l_e_j_our_du_f_ils_de_l_h_omme_et_les_oeuvres_quil_fera_dans_sa_v.mp3
10 fr fr-20180427-1 22 Introduction au thème: ​L​e ​J​our du ​F​ils de l’​H​omme et les ​​œuvres qu’il fera dans sa ​V​enue 2018-04-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-172.jpg https://carpa.com/sites/default/files/messages/fr/2018/04/2018-04-27_introduction_au_theme_l_e_j_our_du_f_ils_de_l_h_omme_et_les_oeuvres_quil_fera_dans_sa_v.mp3
11 fr fr-20180422-1 24 Introduction au thème: Le cycle divin pour le rétablissement de toutes choses 2018-04-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-173.jpg https://carpa.com/sites/default/files/messages/fr/2018/04/2018-04-22_introduction_au_theme_le_cycle_divin_pour_le_retablissement_de_toutes_choses.mp3
12 fr fr-20180420-1 25 Introduction au thème: Le cycle divin pour le rétablissement de toutes choses 2018-04-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-174.jpg https://carpa.com/sites/default/files/messages/fr/2018/04/2018-04-20_introduction_au_theme_le_cycle_divin_pour_le_retablissement_de_toutes_choses.mp3
13 fr fr-20171229-1 26 Introduction au thème: Ce sera selon la Vision Divine 2017-12-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-17.jpg https://www.carpa.com/sites/default/files/messages/fr/2017/12/2017-12-29_introduction_au_theme_ce_sera_selon_la_vision_divine.pdf
14 fr fr-20171222-1 27 Introduction au thème: Melchisédek, le Roi de Paix 2017-12-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-23.jpg https://www.carpa.com/sites/default/files/messages/fr/2017/12/2017-12-22_introduction_au_theme_melchisedek_le_roi_de_paix.pdf
15 fr fr-20171215-1 28 L’envoyé du Père 2017-12-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg https://www.carpa.com/sites/default/files/messages/fr/2017/12/2017-12-15_lenvoye_du_pere.pdf
16 fr fr-20171203-1 29 Introduction au thème: Le dernier appel des douze Tribus d’Israël 2017-12-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-42.jpg https://www.carpa.com/sites/default/files/messages/fr/2017/12/2017-12-03_introduction_au_theme_le_dernier_appel_des_douze_tribus_disrael.pdf
17 fr fr-20170924-1 30 Introduction au thème: Élie sur la Montagne de Dieu 2017-09-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp https://www.carpa.com/sites/default/files/messages/fr/2017/09/2017-09-24_introduction_au_theme_elie_sur_la_montagne_de_dieu.pdf
18 fr fr-20170917-1 31 Introduction au thème: LE TEMPS DE RÉCOLTER 2017-09-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp https://www.carpa.com/sites/default/files/messages/fr/2017/09/2017-09-17_introduction_au_theme_le_temps_de_recolter.pdf
19 fr fr-20170910-1 32 Paroles des Salutations Dimanche 10 septembre 2017 - Dr. William Soto Santiago 2017-09-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp https://www.carpa.com/sites/default/files/messages/fr/2017/09/2017-09-10_paroles_des_salutations_dimanche_10_septembre_2017_-_dr_william_soto_santiago.pdf
20 fr fr-20170903-1 33 Paroles de salutation Dimanche 3 septembre 2017 - Dr. William Soto Santiago 2017-09-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp https://www.carpa.com/sites/default/files/messages/fr/2017/09/2017-09-03_paroles_de_salutation_dimanche_3_septembre_2017_-_dr_william_soto_santiago.pdf
21 fr fr-20170428-1 34 Le retour à l’Éden - Introduction 2017-04-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-41.jpg https://www.carpa.com/sites/default/files/messages/fr/2017/04/2017-04-28_le_retour_leden_-_introduction.pdf
22 fr fr-20170331-1 35 La trajectoire du ministère d’Élie pour la cinquième fois - Introduction 2017-03-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/04/youtube_thumbnail_21951.png https://www.carpa.com/sites/default/files/messages/fr/2017/03/2017-03-31_la_trajectoire_du_ministere_delie_pour_la_cinquieme_fois_-_introduction.pdf
23 fr fr-20170324-1 36 Un prophète comme Moïse - Introduction 2017-03-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/10/youtube_thumbnail_21949.png https://www.carpa.com/sites/default/files/messages/fr/2017/03/2017-03-24_un_prophete_comme_moise_-_introduction.pdf
24 fr fr-20170310-1 37 Joseph devant le peuple pour la préservation de la vie - Introduction 2017-03-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg https://www.carpa.com/sites/default/files/messages/fr/2017/03/2017-03-10_joseph_devant_le_peuple_pour_la_preservation_de_la_vie_-_introduction.pdf
25 fr fr-20170224-1 38 Les Anges apportant la révélation des Sept Sceaux - Introduction 2017-02-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-39.jpg https://www.carpa.com/sites/default/files/messages/fr/2017/02/2017-02-24_les_anges_apportant_la_revelation_des_sept_sceaux_-_introduction.pdf
26 fr fr-20170217-1 39 David, le huitième fils d’Isaï, oint comme roi d’Israël - Introduction 2017-02-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-49.jpg https://www.carpa.com/sites/default/files/messages/fr/2017/02/2017-02-17_david_le_huitieme_fils_disai_oint_comme_roi_disrael_-_introduction.pdf
27 fr fr-20170212-1 40 Le temps pour l’établissement du Royaume du Messie sur la Terre 2017-02-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-41.jpg https://www.carpa.com/sites/default/files/messages/fr/2017/02/2017-02-12_le_temps_pour_letablissement_du_royaume_du_messie_sur_la_terre_-_introduction.pdf
28 fr fr-20170210-1 41 Le temps pour l’établissement du Royaume du Messie sur la Terre - Introduction 2017-02-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-41.jpg https://www.carpa.com/sites/default/files/messages/fr/2017/02/2017-02-10_le_temps_pour_letablissement_du_royaume_du_messie_sur_la_terre_-_introduction.pdf
29 fr fr-20170205-1 42 La révélation de Dieu par les prophètes 2017-02-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-39.jpg https://www.carpa.com/sites/default/files/messages/fr/2017/02/2017-02-05_la_revelation_de_dieu_par_les_prophetes.pdf
30 fr fr-20170127-1 43 Le retour des citoyens Célestes à la Maison du Père - Introduction 2017-01-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-38.jpg https://carpa.com/sites/default/files/messages/fr/2017/01/2017-01-27_le_retour_des_citoyens_celestes_la_maison_du_pere_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/fr/2017/01/2017-01-27_le_retour_des_citoyens_celestes_la_maison_du_pere_-_introduction.pdf
31 fr fr-20170122-1 44 La première Gerbe agitée 2017-01-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-43.jpg https://www.carpa.com/sites/default/files/messages/fr/2017/01/2017-01-22_la_premiere_gerbe_agitee.pdf
32 fr fr-20170120-1 45 La première Gerbe agitée - Introduction 2017-01-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-48.jpg https://www.carpa.com/sites/default/files/messages/fr/2017/01/2017-01-20_la_premiere_gerbe_agitee_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/fr/2017/01/2017-01-20_la_premiere_gerbe_agitee_-_introduction.pdf
33 fr fr-20170113-1 46 La Semence royale d’Abraham - Introduction 2017-01-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/2gwWOr6O-youtube_thumbnail_21926.png https://www.carpa.com/sites/default/files/messages/fr/2017/01/2017-01-13_la_semence_royale_dabraham_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/fr/2017/01/2017-01-13_la_semence_royale_dabraham_-_introduction.pdf
34 fr fr-20170108-1 47 Le Caillou avec un Nom nouveau 2017-01-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_21925.png https://www.carpa.com/sites/default/files/messages/fr/2017/01/2017-01-08_le_caillou_avec_un_nom_nouveau.pdf
35 fr fr-20161218-1 48 Trône et Royaume du Fils de David 2016-12-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-27.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/12/2016-12-18_trone_et_royaume_du_fils_de_david.pdf
36 fr fr-20161211-1 49 L’Alliance éternelle de Dieu avec Son peuple Israël 2016-12-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18-21.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/12/2016-12-11_lalliance_eternelle_de_dieu_avec_son_peuple_israel.pdf
37 fr fr-20161202-1 50 Le trône de la Grâce - Introduction 2016-12-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-9.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/12/2016-12-02_le_trone_de_la_grace_-_introduction.pdf
38 fr fr-20161127-1 51 La mission du Précurseur de la Première et Seconde Venue de Christ et de celui qui a été annoncé 2016-11-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/dfk3sjdQ-youtube_thumbnail_21910.png https://www.carpa.com/sites/default/files/messages/fr/2016/11/2016-11-27_la_mission_du_precurseur_de_la_premiere_et_seconde_venue_de_christ_et_de_celui_qui_ete.pdf
39 fr fr-20161125-1 52 La mission du précurseur de la première et seconde venue de Christ et de celui qui a été annoncé - Introduction 2016-11-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/2ZVcWItt-youtube_thumbnail_21908.png https://www.carpa.com/sites/default/files/messages/fr/2016/11/2016-11-25_la_mission_du_precurseur_de_la_premiere_et_seconde_venue_de_christ_et_de_celui_qui_ete.pdf
40 fr fr-20161120-1 53 Poursuivant celui qui connaît le chemin de la Terre promise 2016-11-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-46.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/11/2016-11-20_poursuivant_celui_qui_connait_le_chemin_de_la_terre_promise.pdf
41 fr fr-20161118-1 54 Poursuivant celui qui connaît le chemin de la terre Promise - Introduction 2016-11-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-38.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/11/2016-11-18_poursuivant_celui_qui_connait_le_chemin_de_la_terre_promise_-_introduction.pdf
42 fr fr-20161113-1 55 La vallée de l’ombre de la mort 2016-11-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-36.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/11/2016-11-13_la_vallee_de_lombre_de_la_mort.pdf
43 fr fr-20161111-1 56 La vallée de l’ombre de la mort - Introduction 2016-11-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-34.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/11/2016-11-11_la_vallee_de_lombre_de_la_mort_-_introduction.pdf
44 fr fr-20161106-1 57 Élie sur la montagne de Dieu 2016-11-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/KNLBnduu-youtube_thumbnail_21900.png https://www.carpa.com/sites/default/files/messages/fr/2016/11/2016-11-06_elie_sur_la_montagne_de_dieu.pdf
45 fr fr-20161104-1 58 Élie sur la montagne de Dieu - Introduction 2016-11-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_21898.png https://www.carpa.com/sites/default/files/messages/fr/2016/11/2016-11-04_elie_sur_la_montagne_de_dieu_-_introduction.pdf
46 fr fr-20161030-1 59 Le Temps de la récolte 2016-10-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-29.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/10/2016-10-30_le_temps_de_la_recolte.pdf
47 fr fr-20161028-1 60 Le temps de la récolte - Introduction 2016-10-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-36.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/10/2016-10-28_le_temps_de_la_recolte_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/fr/2016/10/2016-10-28_le_temps_de_la_recolte_-_introduction.pdf
48 fr fr-20161021-1 61 La lumière luit dans les ténèbres - Introduction 2016-10-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-45.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/10/2016-10-21_la_lumiere_luit_dans_les_tenebres_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/fr/2016/10/2016-10-21_la_lumiere_luit_dans_les_tenebres_-_introduction.pdf
49 fr fr-20161014-1 62 L’Épée dans la main et la bouche du Fils de l’homme - Introduction 2016-10-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-37.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/10/2016-10-14_lepee_dans_la_main_et_la_bouche_du_fils_de_lhomme_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/fr/2016/10/2016-10-14_lepee_dans_la_main_et_la_bouche_du_fils_de_lhomme_-_introduction.pdf
50 fr fr-20161002-1 63 L’Esprit du Seigneur levant l’étendard contre l’ennemi 2016-10-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-33.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/10/2016-10-02_lesprit_du_seigneur_levant_letendard_contre_lennemi.pdf
51 fr fr-20160930-1 64 L’Esprit du Seigneur levant l’étendard contre l’ennemi - Introduction 2016-09-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/05/youtube_thumbnail_21886.png https://www.carpa.com/sites/default/files/messages/fr/2016/09/2016-09-30_lesprit_du_seigneur_levant_letendard_contre_lennemi_-_introduction.pdf
52 fr fr-20160925-1 65 Le peuple qui se réjouit de ce que leurs noms soient écrits dans les cieux 2016-09-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-40.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/09/2016-09-25_le_peuple_qui_se_rejouit_de_ce_que_leurs_noms_soient_ecrits_dans_les_cieux.pdf
53 fr fr-20160923-1 66 Le peuple joyeux que leurs noms soient inscrits dans les Cieux - Introduction 2016-09-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-44.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/09/2016-09-23_le_peuple_joyeux_que_leurs_noms_soient_inscrits_dans_les_cieux_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/fr/2016/09/2016-09-23_le_peuple_joyeux_que_leurs_noms_soient_inscrits_dans_les_cieux_-_introduction.pdf
54 fr fr-20160918-1 67 Un Prophète, le signe le plus grand sur la Terre 2016-09-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21883.png https://www.carpa.com/sites/default/files/messages/fr/2016/09/2016-09-18_un_prophete_le_signe_le_plus_grand_sur_la_terre.pdf
55 fr fr-20160916-1 68 Un prophète, le plus grand signe sur la Terre - Introduction 2016-09-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-36.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/09/2016-09-16_un_prophete_le_plus_grand_signe_sur_la_terre_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/fr/2016/09/2016-09-16_un_prophete_le_plus_grand_signe_sur_la_terre_-_introduction.pdf
56 fr fr-20160909-1 69 Melchisédek, le Roi de paix - Introduction 2016-09-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-32.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/09/2016-09-09_melchisedek_le_roi_de_paix_-_introduction.pdf
57 fr fr-20160902-2 70 LES BÉNÉDICTIONS CONTENUES DANS LA PRIMOGÉNITURE - Introduction 2016-09-02 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_21878.png https://www.carpa.com/sites/default/files/messages/fr/2016/09/2016-09-02_les_benedictions_contenues_dans_la_primogeniture_-_introduction.pdf
58 fr fr-20160812-1 71 Les Archanges Gabriel et Michel Oeuvrant dans les changements de royaume - Introduction 2016-08-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-24.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/08/2016-08-12_les_archanges_gabriel_et_michel_oeuvrant_dans_les_changements_de_royaume_-_introduction.pdf
59 fr fr-20160805-1 72 La Lumière du soir - Introduction 2016-08-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-20.jpg
60 fr fr-20160729-1 73 Le plein accomplissement des prophéties pour le dernier jour - Introduction 2016-07-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-22.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/07/2016-07-29_le_plein_accomplissement_des_propheties_pour_le_dernier_jour_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/fr/2016/07/2016-07-29_le_plein_accomplissement_des_propheties_pour_le_dernier_jour_-_introduction.pdf
61 fr fr-20160722-1 74 Les ceuvres de Jésus-Christ au milieu de son église - Introduction 2016-07-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-19.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/07/2016-07-22_les_ceuvres_de_jesus-christ_au_milieu_de_son_eglise_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/fr/2016/07/2016-07-22_les_ceuvres_de_jesus-christ_au_milieu_de_son_eglise_-_introduction.pdf
62 fr fr-20160717-1 75 LA GRÂCE DU SEIGNEUR JÉSUS-CHRIST RÉPANDUE SUR SES ENFANTS 2016-07-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-20-8.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/07/2016-07-17_la_grace_du_seigneur_jesus-christ_repandue_sur_ses_enfants.pdf
63 fr fr-20160715-1 76 La grace du seigneur Jésus-Christ répandue á ses enfants - Introduction 2016-07-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-8.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/07/2016-07-15_la_grace_du_seigneur_jesus-christ_repandue_ses_enfants_-_introduction.pdf
64 fr fr-20160701-1 77 Ourant vers le but - Introduction 2016-07-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-26-5.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/07/2016-07-01_ourant_vers_le_-_introduction.pdf
65 fr fr-20160617-1 78 DEMANDEZ AU PÈRE EN SON NOM ET IL NOUS RÉCOMPENSERA- Introduction 2016-06-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-38.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/06/2016-06-17_demandez_au_pere_en_son_nom_et_il_nous_recompensera-_introduction.pdf
66 fr fr-20160610-1 79 Par amour aux élus - Introduction 2016-06-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-34.jpg
67 fr fr-20160603-1 80 Le Message du Roi - Introduction 2016-06-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-29.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/06/2016-06-03_le_message_du_roi_-_introduction.pdf
68 fr fr-20160527-1 81 Le temps de se battre pour asseoir le Fils de David sur le Trône - Introduction 2016-05-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-41.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/05/2016-05-27_le_temps_de_se_battre_pour_asseoir_le_fils_de_david_sur_le_trone_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/fr/2016/05/2016-05-27_le_temps_de_se_battre_pour_asseoir_le_fils_de_david_sur_le_trone_-_introduction.pdf
69 fr fr-20160520-1 82 L’orchestre de Dieu - Introduction 2016-05-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-33.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/05/2016-05-20_lorchestre_de_dieu_-_introduction.pdf
70 fr fr-20160508-1 83 JÉSUS-CHRIST, L’ESPÉRANCE DE LA GLOIRE 2016-05-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-22.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/05/2016-05-08_jesus-christ_lesperance_de_la_gloire.pdf
71 fr fr-20160415-1 84 La gloire de la shekinah dans le lieu trés saint 2016-04-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21823.png https://www.carpa.com/sites/default/files/messages/fr/2016/04/2016-04-15_la_gloire_de_la_shekinah_dans_le_lieu_tres_saint.pdf
72 fr fr-20160408-1 85 Unanimes et ensemble dans la chambre haute recevant le Saint-Esprit - Introduction 2016-04-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-7.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/04/2016-04-08_unanimes_et_ensemble_dans_la_chambre_haute_recevant_le_saint-esprit_-_introduction.pdf
73 fr fr-20160401-1 86 Les quarante jours de Jésus sur terre, avant l’enlèvement - Introduction 2016-04-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-23-6.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/04/2016-04-01_les_quarante_jours_de_jesus_sur_terre_avant_lenlevement_-_introduction.pdf
74 fr fr-20160325-1 87 Jésus-Christ a couronné Son ministère sur a Croix 2016-03-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-29.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/03/2016-03-25_jesus-christ_couronne_son_ministere_sur_croix.pdf
75 fr fr-20160320-1 88 Le vainqueur s’asseyant sur le trône de David 2016-03-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-26.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/03/2016-03-20_le_vainqueur_sasseyant_sur_le_trone_de_david.pdf
76 fr fr-20160317-1 89 Le vainqueur s’asseyant sur le trône de David - Introduction 2016-03-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-20.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/03/2016-03-17_le_vainqueur_sasseyant_sur_le_trone_de_david_-_introduction.pdf
77 fr fr-20160313-1 90 L’étoile du matin 2016-03-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/07/youtube_thumbnail_21809.png https://www.carpa.com/sites/default/files/messages/fr/2016/03/2016-03-13_letoile_du_matin.pdf
78 fr fr-20160311-1 91 L’étoile du matin - Introduction 2016-03-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-6.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/03/2016-03-11_letoile_du_matin_-_introduction.pdf
79 fr fr-20160306-1 92 Le caillou avec un nom nouveau 2016-03-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-22-5.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/03/2016-03-06_le_caillou_avec_un_nom_nouveau.pdf
80 fr fr-20160304-1 93 Le caillou avec un nom nouveau - Introduction 2016-03-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-23-5.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/03/2016-03-04_le_caillou_avec_un_nom_nouveau_-_introduction.pdf
81 fr fr-20160228-1 94 Le signe du Fils de l’homme dans le Ciel 2016-02-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-21.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/02/2016-02-28_le_signe_du_fils_de_lhomme_dans_le_ciel.pdf
82 fr fr-20160226-1 95 Le signe du fils de l'homme dans le ciel - Introduction 2016-02-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-27.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/02/2016-02-26_le_signe_du_fils_de_lhomme_dans_le_ciel_-_introduction.pdf
83 fr fr-20160221-1 96 Le libre scelle de sept sceaux 2016-02-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-33.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/02/2016-02-21_le_libre_scelle_de_sept_sceaux.pdf
84 fr fr-20160219-1 97 LE LIVRE SCELLÉ DE SEPT SCEAUX - Introduction 2016-02-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/04/youtube_thumbnail_21799.png https://www.carpa.com/sites/default/files/messages/fr/2016/02/2016-02-19_le_livre_scelle_de_sept_sceaux_-_introduction.pdf
85 fr fr-20160214-1 98 La famille de la foi 2016-02-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-40.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/02/2016-02-14_la_famille_de_la_foi.pdf
86 fr fr-20160207-1 99 La nouvelle Jérusalem 2016-02-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-30.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/02/2016-02-07_la_nouvelle_jerusalem.pdf
87 fr fr-20160131-1 100 L'ange sellant les tribus d'Israël 2016-01-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-35.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/01/2016-01-31_lange_sellant_les_tribus_disrael.pdf
88 fr fr-20160124-1 101 LE TÉMOIGNAGE DE JÉSUS EST L’ESPRIT DE LA PROPHÉTIE / PRÉDESTINÉS POUR ÊTRE ENLEVÉS AU DERNIER JOUR 2016-01-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-39.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/01/2016-01-24_le_temoignage_de_jesus_est_lesprit_de_la_prophetie/predestines_pour_etre_enleves_au_dernier_jour.pdf
89 fr fr-20160110-1 102 LE SEPTIÈME SCEAU ET LA FIN DES SYSTÈMES MONDIAUX 2016-01-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-19.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/01/2016-01-10_le_septieme_sceau_et_la_fin_des_systemes_mondiaux.pdf
90 fr fr-20160108-1 103 LE SEPTIÈME SCEAU ET LA FIN DES SYSTÈMES MONDIAUX - Introduction 2016-01-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-18.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/01/2016-01-08_le_septieme_sceau_et_la_fin_des_systemes_mondiaux_-_introduction.pdf
91 fr fr-20160103-1 104 Ce sera selon la vision divine 2016-01-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2016/01/2025-03-15-13.00.41.jpg https://www.carpa.com/sites/default/files/messages/fr/2016/01/2016-01-03_ce_sera_selon_la_vision_divine.pdf
92 fr fr-20150927-1 105 Un murmure doux et léger 2015-09-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/Cgn6tOQr-youtube_thumbnail_21751.png https://www.carpa.com/sites/default/files/messages/fr/2015/09/2015-09-25_un_murmure_doux_et_leger.pdf
93 fr fr-20150906-1 106 Le Royaume de Dieu est proche 2015-09-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-20-5.jpg https://www.carpa.com/sites/default/files/messages/fr/2015/09/2015-09-06_le_royaume_de_dieu_est_proche.pdf
94 fr fr-20150830-1 107 Le mystére de la foi d'enlévement contenu dans les sept tonnerres 2015-08-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/youtube_thumbnail_21739-1.png https://www.carpa.com/sites/default/files/messages/fr/2015/08/2015-08-28_le_mystere_de_la_foi_denlevement_contenu_dans_les_sept_tonnerres.pdf
95 fr fr-20150731-1 108 Une fois de plus Seigneur - Introduction 2015-07-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-30.jpg https://www.carpa.com/sites/default/files/messages/fr/2015/07/2015-07-31_une_fois_de_plus_seigneur_-_introduction.pdf
96 fr fr-20150717-1 109 Où est l'Éternel, le Dieu d'Élie? - Introduction 2015-07-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-22.jpg https://www.carpa.com/system/files_force/messages/fr/2015/07/2015-07-17_ou_est_leternel_le_dieu_delie_-_introduction.mp4 https://www.carpa.com/sites/default/files/messages/fr/2015/07/2015-07-17_ou_est_leternel_le_dieu_delie_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/fr/2015/07/2015-07-17_ou_est_leternel_le_dieu_delie_-_introduction.pdf
97 fr fr-20150710-1 110 Le toucher par la foi pour le salut - Introduction 2015-07-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-13.jpg https://www.carpa.com/sites/default/files/messages/fr/2015/07/2015-07-10_le_toucher_par_la_foi_pour_le_salut_-_introduction.pdf
98 fr fr-20150705-1 111 La position de l'église au dernier jour 2015-07-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18-10.jpg https://www.carpa.com/sites/default/files/messages/fr/2015/07/2015-07-03_la_position_de_leglise_au_dernier_jour.pdf
99 fr fr-20150619-1 112 La source d'eau pour la vie éternelle - Introduction 2015-06-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-23.jpg https://www.carpa.com/system/files_force/messages/fr/2015/06/2015-06-19_la_source_deau_pour_la_vie_eternelle_-_introduction.mp4?download=1 https://www.carpa.com/sites/default/files/messages/fr/2015/06/2015-06-19_la_source_deau_pour_la_vie_eternelle_-_introduction.mp3 https://www.carpa.com/sites/default/files/messages/fr/2015/06/2015-06-19_la_source_deau_pour_la_vie_eternelle_-_introduction.pdf
100 fr fr-20150524-1 113 Les Dimensions 2015-05-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21705.png https://www.carpa.com/sites/default/files/messages/fr/2015/05/2015-05-24_les_dimensions.pdf
101 fr fr-20150419-1 114 La septiéme dispensation: Le royaume 2015-04-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21695-1.png https://www.carpa.com/sites/default/files/messages/fr/2015/04/2015-04-19_la_septieme_dispensation_le_royaume.pdf
102 fr fr-20150412-1 115 La sixieme dispensation: La Grace 2015-04-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2026/01/youtube_thumbnail_21694-1.png
103 fr fr-20150405-1 116 Jésus ressuscité comme l'écriture l'a dit 2015-04-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21692-1.png https://www.carpa.com/sites/default/files/messages/fr/2015/04/2015-04-05_jesus_ressuscite_comme_lecriture_la_dit.pdf
104 fr fr-20150328-1 117 La cinquième dispensation: La loi 2015-03-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/05/youtube_thumbnail_21686.png https://www.carpa.com/sites/default/files/messages/fr/2015/03/2015-03-28_la_cinquieme_dispensation_la_loi.pdf
105 fr fr-20150322-1 118 La quatriéme dispensation: La Promesse 2015-03-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-19.jpg https://www.carpa.com/sites/default/files/messages/fr/2015/03/2015-03-22_la_quatrieme_dispensation_la_promesse.pdf
106 fr fr-20150315-1 119 La Troisième Dispensation : Le Gouvernement Humain 2015-03-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-11.jpg https://www.carpa.com/sites/default/files/messages/fr/2015/03/2015-03-15_la_troisieme_dispensation_le_gouvernement_humain.pdf
107 fr fr-20150314-1 120 La seconde dispensation: La conscience 2015-03-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/05/youtube_thumbnail_21681.png https://www.carpa.com/sites/default/files/messages/fr/2015/03/2015-03-14_la_seconde_dispensation_la_conscience.pdf
108 fr fr-20150308-1 121 La premiere dispensation: L'innocence 2015-03-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21679.png https://www.carpa.com/sites/default/files/messages/fr/2015/03/2015-03-08_la_premiere_dispensation_linnocence.mp3 https://www.carpa.com/sites/default/files/messages/fr/2015/03/2015-03-08_la_premiere_dispensation_linnocence.pdf
109 fr fr-20150301-1 122 Qui est-ce le fils de l'homme aujourd'hui, pour ce temps de la fin? 2015-03-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21678.png https://www.carpa.com/sites/default/files/messages/fr/2015/03/2015-03-01_qui_est-ce_le_fils_de_lhomme_aujourdhui_pour_ce_temps_de_la_fin.mp3 https://www.carpa.com/sites/default/files/messages/fr/2015/03/2015-03-01_qui_est-ce_le_fils_de_lhomme_aujourdhui_pour_ce_temps_de_la_fin.pdf
110 fr fr-20150222-1 123 Le Salut de ce qui était Perdu 2015-02-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-18.jpg https://www.carpa.com/sites/default/files/messages/fr/2015/02/2015-02-22_le_salut_de_ce_qui_etait_perdu.pdf
111 fr fr-20150208-1 124 Le Roi des rois et Seigneur des seigneurs 2015-02-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/cxS9ziAp-youtube_thumbnail_21670.png https://www.carpa.com/sites/default/files/messages/fr/2015/02/2015-02-08_le_roi_des_rois_et_seigneur_des_seigneurs.pdf
112 fr fr-20150201-1 125 Le fils de l’homme 2015-02-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/rGJZrHWo-youtube_thumbnail_21668.png https://www.carpa.com/sites/default/files/messages/fr/2015/02/2015-02-01_le_fils_de_lhomme.pdf
113 fr fr-20150125-1 126 Fils de Dieu 2015-01-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-19.jpg https://www.carpa.com/sites/default/files/messages/fr/2015/01/2015-01-25_fils_de_dieu.pdf
114 fr fr-20150118-1 127 L’heritier, le fils de David 2015-01-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-23.jpg https://www.carpa.com/sites/default/files/messages/fr/2015/01/2015-01-18_lheritier_le_fils_de_david.pdf
115 fr fr-20150111-1 128 Les Quatre Titres De Fils De Jésus: Le Fils D’Abraham 2015-01-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-28.jpg https://www.carpa.com/sites/default/files/messages/fr/2015/01/2015-01-11_les_quatre_titres_de_fils_de_jesus_le_fils_dabraham.pdf
116 fr fr-20150104-1 129 Le royaume et le trone de David 2015-01-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-26.jpg https://www.carpa.com/sites/default/files/messages/fr/2015/01/2015-01-04_le_royaume_et_le_trone_de_david.pdf
117 fr fr-20141102-1 130 Le Précurseur et Celui Qui A Été Annoncé Par Lui Dans Le Vieux et Nouveau Monde 2014-11-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-14.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/11/2014-11-02_le_precurseur_et_celui_qui_ete_annonce_par_lui_dans_le_vieux_et_nouveau_monde.pdf
118 fr fr-20140928-1 131 Suivant les Empreintes du Maître 2014-09-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-15.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/09/2014-09-28_suivant_les_empreintes_du_maitre.pdf
119 fr fr-20140921-1 132 Un Commandement du Seigneur: Aimez-vous les uns les autres 2014-09-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-9.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/09/2014-09-21_un_commandement_du_seigneur_aimez-vous_les_uns_les_autres.pdf
120 fr fr-20140914-1 133 L’Évangile Retournera aux Juifs 2014-09-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-8.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/09/2014-09-14_levangile_retournera_aux_juifs.pdf
121 fr fr-20140907-1 134 Dieu approvisionnant ce qui manque pour son œuvre finale 2014-09-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21619.png https://www.carpa.com/sites/default/files/messages/fr/2014/09/2014-09-07_dieu_approvisionnant_ce_qui_manque_pour_son_oeuvre_finale.pdf
122 fr fr-20140831-1 135 Le Peuple qui fait des efforts pour culminer l’Œuvre qui lui a été confiée pour chaque temps 2014-08-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21616.png https://www.carpa.com/sites/default/files/messages/fr/2014/08/2014-08-31_le_peuple_qui_fait_des_efforts_pour_culminer_loeuvre_qui_lui_ete_confiee_pour_chaque.pdf
123 fr fr-20140824-1 136 Avec la Parole de Dieu, Nous Enseignons l’Âme 2014-08-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-8.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/08/2014-08-24_avec_la_parole_de_dieu_nous_enseignons_lame.pdf
124 fr fr-20140817-1 137 QUE TON REGNE VIENNE QUE TA VOLONTE SOIT FAITE SUR LA TERRE COMME AU CIEL 2014-08-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-20-4.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/08/2014-08-17_que_ton_regne_vienne_que_ta_volonte_soit_faite_sur_la_terre_comme_au_ciel.pdf
125 fr fr-20140727-1 138 Les tribus d’israël 2014-07-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-17.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/07/2014-07-27_les_tribus_disrael.pdf
126 fr fr-20140720-1 139 LE JOUR DE CHRIST 2014-07-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-20.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/07/2014-07-20_le_jour_de_christ.pdf
127 fr fr-20140706-1 140 Prépare-toi pour la rencontre avec Jésus-christ 2014-07-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-21.jpg https://www.carpa.com/system/files_force/messages/fr/2014/07/2014-07-06_prepare-toi_pour_la_rencontre_avec_jesus-christ.mp4 https://www.carpa.com/sites/default/files/messages/fr/2014/07/2014-07-06_prepare-toi_pour_la_rencontre_avec_jesus-christ.mp3 https://www.carpa.com/sites/default/files/messages/fr/2014/07/2014-07-06_prepare-toi_pour_la_rencontre_avec_jesus-christ.pdf
128 fr fr-20140629-1 141 La révélation de Jésus-christ pour le dérnier jour 2014-06-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-20.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/06/2014-06-29_la_revelation_de_jesus-christ_pour_le_dernier_jour.pdf
129 fr fr-20140622-1 142 L’église active du seigneur Jésus-christ 2014-06-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-22.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/06/2014-06-22_leglise_active_du_seigneur_jesus-christ.pdf
130 fr fr-20140615-1 143 LA PAROLE DE DIEU DANS LES PROPHÈTES 2014-06-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-13.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/06/2014-06-15_la_parole_de_dieu_dans_les_prophetes.pdf
131 fr fr-20140608-1 144 LE TEMPS POUR VOIR 2014-06-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-13.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/06/2014-06-08_le_temps_pour_voir.pdf
132 fr fr-20140601-1 145 QUE DOIS-JE FAIRE POUR ÊTRE SAUVÉ 2014-06-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-11.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/06/2014-06-01_que_dois-je_faire_pour_etre_sauve.pdf
133 fr fr-20140525-1 146 LE BLÉ MÛR 2014-05-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-19.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/05/2014-05-25_le_ble_mur.pdf
134 fr fr-20140518-1 147 CAR NOUS N’AVONS POINT ICI-BAS DE CITÉ PERMANENTE, MAIS NOUS CHERCHONS CELLE QUI EST À VENIR 2014-05-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-21.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/05/2014-05-18_car_nous_navons_point_ici-bas_de_cite_permanente_mais_nous_cherchons_celle_qui_est_venir.pdf
135 fr fr-20140511-1 148 OBÉISSANT LA VOIX DE L’ANGE DE L’ALLIANCE EN ATTENDANT LA TRANSFORMATION 2014-05-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-12.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/05/2014-05-11_obeissant_la_voix_de_lange_de_lalliance_en_attendant_la_transformation.pdf
136 fr fr-20140504-1 149 LA VICTOIRE PAR NOTRE SEIGNEUR JÉSUS-CHRIST 2014-05-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-12.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/05/2014-05-04_la_victoire_par_notre_seigneur_jesus-christ.pdf
137 fr fr-20140427-1 150 PRÉPARONS-NOUS POUR LA VENUE DU SEIGNEUR, CAR LES JOURS SONT MAUVAIS 2014-04-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-22.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/04/2014-04-27_preparons-nous_pour_la_venue_du_seigneur_car_les_jours_sont_mauvais.pdf
138 fr fr-20140413-1 151 LES ŒUVRES DE JÉSUS EN ENTRANT À JÉRUSALEM 2014-04-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21567.png https://www.carpa.com/sites/default/files/messages/fr/2014/04/2014-04-13_les_oeuvres_de_jesus_en_entrant_jerusalem.pdf
139 fr fr-20140406-1 152 L’ANGE DUSEIGNEUR JÉSUS-CHRIST CHERCHANT JUSQU’AU DERNIER ÉLU DE DIEU 2014-04-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-7.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/04/2014-04-06_lange_duseigneur_jesus-christ_cherchant_jusquau_dernier_elu_de_dieu.pdf
140 fr fr-20140330-1 153 LA VISITE D'UN ANGE À LA FAMILLE HUMAINE 2014-03-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21563.png https://www.carpa.com/sites/default/files/messages/fr/2014/03/2014-03-30_la_visite_dun_ange_la_famille_humaine.pdf
141 fr fr-20140323-1 154 Ce qui est derriére la porte 2014-03-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/youtube_thumbnail_21562.png https://www.carpa.com/sites/default/files/messages/fr/2014/03/2014-03-23_ce_qui_est_derriere_la_porte.pdf
142 fr fr-20140316-1 155 Les promesses de Dieu pour la fin des temps 2014-03-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-17.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/03/2014-03-16_les_promesses_de_dieu_pour_la_fin_des_temps.pdf
143 fr fr-20140309-1 156 Les Sept Âges de L'Église du Seigneur Jésus 2014-03-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-10.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/03/2014-03-09_les_sept_ages_de_leglise_du_seigneur_jesus.pdf
144 fr fr-20140302-1 157 LE TEMPS POUR ȆTRE PURIFIÉS 2014-03-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-10.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/03/2014-03-02_le_temps_pour_etre_purifies.pdf
145 fr fr-20140228-1 158 Monte Ici 2014-02-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/10/youtube_thumbnail_21553.png https://www.carpa.com/sites/default/files/messages/fr/2014/02/2014-02-28_monte_ici.pdf
146 fr fr-20140223-1 159 Les Générations de Jésus-Christ 2014-02-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-18.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/02/2014-02-23_les_generations_de_jesus-christ.pdf
147 fr fr-20140216-1 160 Santifiez-Vous, car demain l´éternel fera des merveilles au milieu de vous 2014-02-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-9.jpg https://www.carpa.com/system/files_force/messages/fr/2014/02/2014-02-16_santifiez-vous_car_demain_leternel_fera_des_merveilles_au_milieu_de_vous.mp4 https://www.carpa.com/sites/default/files/messages/fr/2014/02/2014-02-16_santifiez-vous_car_demain_leternel_fera_des_merveilles_au_milieu_de_vous.mp3 https://www.carpa.com/sites/default/files/messages/fr/2014/02/2014-02-16_santifiez-vous_car_demain_leternel_fera_des_merveilles_au_milieu_de_vous.pdf
148 fr fr-20140209-2 161 La Simplicité de Dieu 2014-02-09 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-7.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/02/2014-02-09_la_simplicite_de_dieu.pdf
149 fr fr-20140202-1 162 Le mystere de la resurrection des croyants en Christ 2014-02-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-4.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/02/2014-02-02_le_mystere_de_la_resurrection_des_croyants_en_christ.pdf
150 fr fr-20140126-1 163 La criante révérencielle 2014-01-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-5-7.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/01/2014-01-26_la_criante_reverencielle.pdf
151 fr fr-20140119-1 164 Les signes de la fin du temps 2014-01-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-16.jpg https://www.carpa.com/sites/default/files/messages/fr/2014/01/2014-01-19_les_signes_de_la_fin_du_temps.pdf
152 fr fr-20140112-1 165 Les dix vierges et la grande tribulation 2014-01-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21536.png https://www.carpa.com/system/files_force/messages/fr/2014/01/2014-01-12_les_dix_vierges_et_la_grande_tribulation.mp4 https://www.carpa.com/sites/default/files/messages/fr/2014/01/2014-01-12_les_dix_vierges_et_la_grande_tribulation.mp3 https://www.carpa.com/sites/default/files/messages/fr/2014/01/2014-01-12_les_dix_vierges_et_la_grande_tribulation.pdf
153 fr fr-20140105-1 166 L'ordre du culte 2014-01-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-20.jpg https://www.carpa.com/sites/default/files/messages/es/2014/01/2014-01-05_el_orden_del_culto.mp3 https://www.carpa.com/sites/default/files/messages/fr/2014/01/2014-01-05_lordre_du_culte.pdf
154 fr fr-19980504-3 167 Le Message du Septième Sceau 1998-05-04 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-56.jpg https://www.carpa.com/sites/default/files/messages/fr/1998/05/1998-05-04_le_message_du_septieme_sceau.mp3 https://www.carpa.com/sites/default/files/messages/fr/1998/05/1998-05-04_le_message_du_septieme_sceau.pdf
155 fr fr-19980430-1 168 La Lumière de Septième Sceau 1998-04-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17486.png https://www.carpa.com/sites/default/files/messages/fr/1998/04/1998-04-30_la_lumiere_du_septieme_sceau.mp3 https://www.carpa.com/sites/default/files/messages/fr/1998/04/1998-04-30_la_lumiere_du_septieme_sceau.pdf
156 fr fr-19980329-1 169 La Victoire du Septième Sceau 1998-03-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18.jpg https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-29_la_victoire_du_septieme_sceau.mp3 https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-29_la_victoire_du_septieme_sceau.pdf
157 fr fr-19980326-1 170 Le Septième Sceau et la seule espérance de l’Église 1998-03-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17423.png https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-26_le_septieme_sceau_et_la_seule_esperance_de_leglise.pdf
158 fr fr-19980324-1 171 Le temps de se réveiller avec le message du Septième Sceau 1998-03-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17421.png https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-24_le_temps_de_se_reveiller_avec_le_message_du_septieme_sceau.pdf
159 fr fr-19980322-1 172 Le Septième Sceau et le rétablissement de toutes choses 1998-03-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-25.jpg https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-22_le_septieme_sceau_et_le_retablissement_de_toutes_choses.pdf
160 fr fr-19980321-2 173 Le Septième Sceau et l e rétablissement du Trône de David 1998-03-21 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21.jpg https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-21_le_septieme_sceau_et_l_e_retablissement_du_trone_de_david.pdf
161 fr fr-19980318-2 174 Le Septièmes Sceau et le signe de la fin du monde 1998-03-18 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/05/youtube_thumbnail_17410.png https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-18_le_septiemes_seau_et_le_signe_de_la_fin_du_monde.pdf
162 fr fr-19980315-2 175 Le Septième Sceau et le Troisième Pull 1998-03-15 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17404.png https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-15_le_septieme_sceau_et_le_troisieme_pull.pdf
163 fr fr-19980314-2 176 Le Septième Sceau mettant fin à toutes choses 1998-03-14 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-26.jpg https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-14_le_septieme_sceau_mettant_fin_toutes_choses.pdf
164 fr fr-19980311-2 178 Le Septième Sceau et les Sept Tonnerres 1998-03-11 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-31.jpg https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-11_le_septieme_sceau_et_les_sept_tonnerres.pdf
165 fr fr-19980310-1 179 Le Septième Sceau et le réveil de l'Église 1998-03-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17394.png https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-10_le_septieme_sceau_et_le_reveil_de_leglise.pdf
166 fr fr-19980308-2 181 Le Septième Sceau et l’Esprit de Moïse et d’Élie 1998-03-08 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-35.jpg https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-08_le_septieme_sceau_et_lesprit_de_moise_et_delie.pdf
167 fr fr-19980308-1 180 Le Septième Sceau et la Parole incarnée 1998-03-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-34.jpg https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-08_le_septieme_sceau_et_la_parole_incarnee.pdf
168 fr fr-19980217-3 182 Le Septième Sceau: la Venue du Fils de l’Homme avec Ses Anges 1998-02-17 3 https://www.carpa.com/sites/default/files/messages/fr/1998/02/1998-02-17_le_septieme_sceau_la_venue_du_fils_de_lhomme_avec_ses_anges.pdf
169 fr fr-19980212-2 183 Les étapes du Septième Sceau 1998-02-12 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11.jpg https://www.carpa.com/sites/default/files/messages/fr/1998/02/1998-02-12_les_etapes_du_septieme_sceau.pdf
170 fr fr-19971125-2 494 Le mystère de la bonne terre qui est bénie 1997-11-25 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17270.png
171 fr fr-19971112-1 490 Le mystère des dimensions 1997-11-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17246.png
172 fr fr-19970914-1 445 Le mystère de l’incarnation de la Parole 1997-09-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17161.png
173 fr fr-19970812-1 486 Le mystère de l'accomplissement de la prophétie 1997-08-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17089.png
174 fr fr-19980312-2 177 Le Septième Sceau et le Message de l’Évangile du Royaume 1998-03-12 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg https://www.carpa.com/sites/default/files/messages/fr/1998/03/1998-03-12_le_septieme_sceau_et_le_message_de_levangile_du_royaume.pdf

View File

@ -0,0 +1,827 @@
"locale","code","id","title","date","activity","thumbnail","video","audio","booklet","simple"
"pt","pt-20180601-1",20,"Introdução ao Tema: A Liderança do Sétimo Selo","2018-06-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/11/youtube_thumbnail_22030.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/2018/06/2018-06-01_introducao_ao_tema_lideranca_do_setimo_selo.pdf",""
"pt","pt-20180407-1",21,"Jóvens Lutando pela Maior Bênção de Deus","2018-04-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-177.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2018/04/2018-04-07_jovens_lutando_pela_maior_bencao_de_deus.pdf",""
"pt","pt-20180304-1",22,"Introdução ao tema: Um Toque de Fé para Salvação - Domingo","2018-03-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-158-1.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2018/03/2018-03-04_introducao_ao_tema_um_toque_de_fe_para_salvacao_-_domingo.pdf",""
"pt","pt-20171222-1",23,"Introdução ao tema: Melquisedeque, O Rei de Paz","2017-12-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-23.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/12/2017-12-22_introducao_ao_tema_melquisedeque_o_rei_de_paz.pdf",""
"pt","pt-20171215-1",24,"O Enviado do Pai","2017-12-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/12/2017-12-15_o_enviado_do_pai.pdf",""
"pt","pt-20170924-1",25,"Introdução ao Tema: Elias no Monte de Deus","2017-09-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp","","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/09/2017-09-24_introducao_ao_tema_elias_no_monte_de_deus.pdf",""
"pt","pt-20170917-1",26,"Introdução ao Tema: O Tempo de Colher","2017-09-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp","","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/09/2017-09-17_introducao_ao_tema_o_tempo_de_colher.pdf",""
"pt","pt-20170910-1",27,"Palavras de Saudação, Domingo, 10 de setembro de 2017 - Dr. William Soto Santiago","2017-09-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp","","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/09/2017-09-10_palavras_de_saudacao_domingo_10_de_setembro_de_2017_-_dr_william_soto_santiago.pdf",""
"pt","pt-20170903-1",28,"Palavras de Saudação, domingo 3 de setembro de 2017 - Dr. William Soto Santiago","2017-09-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp","","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/09/2017-09-03_palavras_de_saudacao_domingo_3_de_setembro_de_2017_-_dr_william_soto_santiago.pdf",""
"pt","pt-20170827-1",29,"Palavras de Saudação, domingo 27 de agosto de 2017 - Dr. William Soto Santiago","2017-08-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp","","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/08/2017-08-27_palavras_de_saudacao_domingo_27_de_agosto_de_2017_-_dr_william_soto_santiago.pdf",""
"pt","pt-20170813-1",30,"Palavras de Saudação - Dr. William Soto Santiago","2017-08-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp","","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/08/2017-08-13_palavras_de_saudacao_-_dr_william_soto_santiago.pdf",""
"pt","pt-20170514-1",31,"A Fé Baseada nas Promessas Divinas","2017-05-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2017/05/photo_2025-05-23_11-22-11.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/05/2017-05-14_a_fe_baseada_nas_promessas_divinas.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/2017/05/2017-05-14_a_fe_baseada_nas_promessas_divinas.pdf",""
"pt","pt-20170507-1",32,"Buscando a Deus no Tempo em que a Pessoa Vive","2017-05-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-3-2.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/05/2017-05-07_buscando_deus_no_tempo_em_que_pessoa_vive.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/2017/05/2017-05-07_buscando_deus_no_tempo_em_que_pessoa_vive.pdf",""
"pt","pt-20170428-1",33,"O Regresso ao Éden - Introdução","2017-04-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-41.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/04/2017-04-28_o_regresso_ao_eden_-_introducao.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/2017/04/2017-04-28_o_regresso_ao_eden_-_introducao.pdf",""
"pt","pt-20170423-1",34,"A Festa de Pentecoste","2017-04-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-46.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/04/2017-04-23_a_festa_de_pentecoste.mp3","",""
"pt","pt-20170416-2",36,"Atividade de Santa Ceia e Lava Pés","2017-04-16","2","https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/04/2017-04-16_atividade_de_santa_ceia_e_lava_pes.mp3","",""
"pt","pt-20170416-1",35,"A ressurreição de Jesus Cristo Conforme à Escritura","2017-04-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-51.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/04/2017-04-16_a_ressurreicao_de_jesus_cristo_conforme_escritura.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/2017/04/2017-04-16_a_ressurreicao_de_jesus_cristo_conforme_escritura.pdf",""
"pt","pt-20170414-1",37,"A Crucificação e Ressurreição de Jesus Cristo conforme a Escritura - Introdução","2017-04-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-43.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/04/2017-04-14_a_crucificacao_e_ressurreicao_de_jesus_cristo_conforme_escritura_-_introducao.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/2017/04/2017-04-14_a_crucificacao_e_ressurreicao_de_jesus_cristo_conforme_escritura_-_introducao.pdf",""
"pt","pt-20170409-1",38,"Israel, Eis que o teu Rei Vem a Ti","2017-04-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-43.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/04/2017-04-09_israel_eis_que_o_teu_rei_vem_ti.mp3","",""
"pt","pt-20170407-1",39,"Israel, Eis que o teu Rei Vem a Ti - Introdução","2017-04-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-41.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/04/2017-04-07_israel_eis_que_o_teu_rei_vem_ti_-_introducao.mp3","",""
"pt","pt-20170402-1",40,"A Trajetória do Ministério de Elias por Cinco Vezes","2017-04-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21952-1.png","","","",""
"pt","pt-20170331-1",41,"A Trajetória do Ministério de Elias por Cinco Vezes - Introdução","2017-03-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/04/youtube_thumbnail_21951.png","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/03/2017-03-31_a_trajetoria_do_ministerio_de_elias_por_cinco_vezes_-_introducao.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/2017/03/2017-03-31_a_trajetoria_do_ministerio_de_elias_por_cinco_vezes_-_introducao.pdf",""
"pt","pt-20170326-1",42,"Um Profeta como Moisés","2017-03-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_21950.png","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/03/2017-03-26_um_profeta_como_moises.mp3","",""
"pt","pt-20170324-1",43,"Um Profeta como Moisés - Introdução","2017-03-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/10/youtube_thumbnail_21949.png","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/03/2017-03-24_um_profeta_como_moises_-_introducao.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/2017/03/2017-03-24_um_profeta_como_moises_-_introducao.pdf",""
"pt","pt-20170319-1",44,"O Chamado Final das Doze Tribos de Israel","2017-03-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-50.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/03/2017-03-19_o_chamado_final_das_doze_tribos_de_israel.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/2017/03/2017-03-19_o_chamado_final_das_doze_tribos_de_israel.pdf",""
"pt","pt-20170318-1",45,"O Maior Sinal da Terra: Um Profeta","2017-03-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/03/2017-03-18_o_maior_sinal_da_terra_um_profeta.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/2017/03/2017-03-18_o_maior_sinal_da_terra_um_profeta.pdf",""
"pt","pt-20170317-1",46,"O Chamado Final das Doze Tribos de Israel - Introdução","2017-03-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-42.jpg","","","",""
"pt","pt-20170310-1",47,"José Diante do Povo para Preservação de Vida - Introdução","2017-03-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/03/2017-03-10_jose_diante_do_povo_para_preservacao_de_vida_-_introducao.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/2017/03/2017-03-10_jose_diante_do_povo_para_preservacao_de_vida_-_introducao.pdf",""
"pt","pt-20170303-1",48,"A Promessa de Deus com Abraão - Introdução","2017-03-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/06/youtube_thumbnail_21941-1.png","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/03/2017-03-03_a_promessa_de_deus_com_abraao_-_introducao.mp3","",""
"pt","pt-20170226-1",49,"Os Anjos Trazendo a Revelação dos Sete Selos","2017-02-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_21940-1.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2017/02/2017-02-16-WSS-Os_Anjos_Trazendo_a_Revelacao_dos_Sete_Selos.mp3","",""
"pt","pt-20170224-1",50,"Os Anjos Trazendo a Revelação dos Sete Selos - Introdução","2017-02-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-39.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/02/2017-02-24_os_anjos_trazendo_revelacao_dos_sete_selos_-_introducao.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/2017/02/2017-02-24_os_anjos_trazendo_revelacao_dos_sete_selos_-_introducao.pdf",""
"pt","pt-20170219-1",51,"Davi, O Oitavo Filho de Jessé, Ungido como Rei de Israel","2017-02-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2017/02/vlcsnap-2025-10-24-09h38m38s251.png","","","",""
"pt","pt-20170217-1",52,"Davi, O Oitavo Filho de Jessé, Ungido como Rei de Israel - Introdução","2017-02-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-49.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/02/2017-02-17_davi_o_oitavo_filho_de_jesse_ungido_como_rei_de_israel_-_introducao.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/2017/02/2017-02-17_davi_o_oitavo_filho_de_jesse_ungido_como_rei_de_israel_-_introducao.pdf",""
"pt","pt-20170210-1",53,"O Tempo para o Estabelecimento do Reino do Messias na Terra - Introdução","2017-02-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-41.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/02/2017-02-10_o_tempo_para_o_estabelecimento_do_reino_do_messias_na_terra_-_introducao.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/2017/02/2017-02-10_o_tempo_para_o_estabelecimento_do_reino_do_messias_na_terra_-_introducao.pdf",""
"pt","pt-20170205-1",54,"A Revelação de Deus Através dos Profetas","2017-02-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-39.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/02/2017-02-05_a_revelacao_de_deus_atraves_dos_profetas.mp3","",""
"pt","pt-20170203-1",55,"A Revelação de Deus através dos Profetas - Introdução","2017-02-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-37.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/02/2017-02-03_a_revelacao_de_deus_atraves_dos_profetas_-_introducao.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/2017/02/2017-02-03_a_revelacao_de_deus_atraves_dos_profetas_-_introducao.pdf",""
"pt","pt-20170129-1",56,"O Regresso dos Cidadãos Celestiais à Casa do Pai","2017-01-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/PSeTvB0e-youtube_thumbnail_21931.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2017/01/2017-01-27-WSS-O_regresso_dos_cidadaos_celestiais_a_casa_do_Pai.mp3","",""
"pt","pt-20170127-1",57,"O Regresso dos Cidadãos Celestiais à Casa do Pai - Introdução","2017-01-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-38.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/01/2017-01-27_o_regresso_dos_cidadaos_celestiais_casa_do_pai_-_introducao.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/2017/01/2017-01-27_o_regresso_dos_cidadaos_celestiais_casa_do_pai_-_introducao.pdf",""
"pt","pt-20170122-1",58,"O Primeiro Molho Movido","2017-01-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-43.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/01/2017-01-22_o_primeiro_molho_movido.mp3","",""
"pt","pt-20170120-1",59,"O Primeiro Molho Movido - Introdução","2017-01-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-48.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/01/2017-01-20_o_primeiro_molho_movido_-_introducao.pdf",""
"pt","pt-20170115-1",60,"A Semente Real de Abraão","2017-01-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/WIZGzS9x-youtube_thumbnail_21927.png","","","",""
"pt","pt-20170113-1",61,"A Semente Real de Abraão - Introdução","2017-01-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/2gwWOr6O-youtube_thumbnail_21926.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/01/2017-01-13_a_semente_real_de_abraao_-_introducao.pdf",""
"pt","pt-20170108-1",62,"A Pedra com um Nome Novo","2017-01-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_21925.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/2017/01/2017-01-08_a_pedra_com_um_nome_novo.pdf",""
"pt","pt-20170106-1",63,"A Pedra com um Nome Novo - Introdução","2017-01-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/rk7nsZAV-youtube_thumbnail_21924.png","","","",""
"pt","pt-20170101-1",64,"O Ano Novo","2017-01-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/07/youtube_thumbnail_21923.png","","","",""
"pt","pt-20161231-1",65,"Palavras de Despedida de Ano 2016","2016-12-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-47.jpg","","","",""
"pt","pt-20161223-1",66,"Nasceu o Rei - Introdução","2016-12-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/1L9bwRPl-youtube_thumbnail_21917.png","","https://www.carpa.com/sites/default/files/messages/es/2016/12/2016-12-23_ha_nacido_el_rey_-_introduccion.mp3","https://www.carpa.com/sites/default/files/messages/es/2016/12/2016-12-23_ha_nacido_el_rey_-_introduccion.pdf",""
"pt","pt-20161218-1",67,"O Trono e Reino do Filho de Davi","2016-12-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-27.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/2016/12/2016-12-18_o_trono_e_reino_do_filho_de_davi.mp3","",""
"pt","pt-20161204-1",68,"O Trono da Graça","2016-12-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-21.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/2016/12/2016-12-04_o_trono_da_graca.mp3","",""
"pt","pt-20161202-1",69,"O Trono de Graça - introdução","2016-12-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-9.jpg","","","",""
"pt","pt-20161119-1",70,"Não Temas nem Desmaies","2016-11-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/05/youtube_thumbnail_21906-1.png","","","",""
"pt","pt-20161118-1",71,"Seguindo aquele que Conhece o Caminho à Terra Prometida - Introdução","2016-11-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-38.jpg","","","",""
"pt","pt-20161111-1",72,"O Vale de Sombra e de Morte - Introdução","2016-11-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-34.jpg","","","",""
"pt","pt-20161106-1",73,"Elias no Monte de Deus","2016-11-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/KNLBnduu-youtube_thumbnail_21900.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2016/11/2016-11-06-WSS-Elias_no_Monte_de_Deus.mp3","",""
"pt","pt-20161104-1",74,"Elias no Monte de Deus - Introdução","2016-11-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_21898.png","","","",""
"pt","pt-20161030-1",75,"O Tempo de Colher","2016-10-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-29.jpg","","","",""
"pt","pt-20161028-1",76,"O Tempo da Colheita - Introdução","2016-10-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-36.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2016/10/2016-10-28_o_tempo_da_colheita_-_introducao.pdf",""
"pt","pt-20161023-1",77,"A Luz Resplandece nas Trevas","2016-10-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-41.jpg","","","",""
"pt","pt-20161021-1",78,"A Luz Resplandece nas Trevas - Introdução","2016-10-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-45.jpg","","","",""
"pt","pt-20161016-1",79,"A Espada na Mão e na Boca do Filho do Homem","2016-10-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-37.jpg","","","",""
"pt","pt-20161014-1",80,"A Espada na Mão e na Boca do Filho do Homem - Introdução","2016-10-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-37.jpg","","","",""
"pt","pt-20161009-1",81,"Aquele que Anuncia a Paz","2016-10-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-35.jpg","","","",""
"pt","pt-20161002-1",82,"O Espírito do Senhor Levantando Bandeira contra o inimigo","2016-10-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-33.jpg","","","",""
"pt","pt-20160930-1",83,"O Espírito do Senhor Levantando Bandeira contra o inimigo - Introdução","2016-09-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/05/youtube_thumbnail_21886.png","","","",""
"pt","pt-20160925-1",84,"O Povo Regozijado de que Seus Nomes estão Escritos nos Céus","2016-09-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-40.jpg","","","",""
"pt","pt-20160923-1",85,"O Povo Regozijado de que Seus Nomes estão Escritos nos Céus - Introdução","2016-09-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-44.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2016/09/2016-09-23_o_povo_regozijado_de_que_seus_nomes_estao_escritos_nos_ceus_-_introducao.pdf",""
"pt","pt-20160918-1",86,"O Maior Sinal na Terra: Um Profeta","2016-09-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21883.png","","","",""
"pt","pt-20160916-1",87,"O Maior Sinal na Terra: Um Profeta - Introdução","2016-09-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-36.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2016/09/2016-09-16_o_maior_sinal_na_terra_um_profeta_-_introducao.pdf",""
"pt","pt-20160911-1",88,"Melquisedeque, O Rei de Paz","2016-09-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-34.jpg","","","https://www.carpa.com/sites/default/files/messages/es/2016/09/2016-09-11_melquisedec_el_rey_de_paz.pdf",""
"pt","pt-20160909-1",89,"Melquisedeque ,O Rei de Paz - Introdução","2016-09-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-32.jpg","","","",""
"pt","pt-20160904-1",90,"As Bênçãos Contidas na Primogenitura","2016-09-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/08/youtube_thumbnail_21879-1.png","","","",""
"pt","pt-20160902-1",92,"A Palavra Encarnada - Saudação Telefônica","2016-09-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-24.jpg","","https://www.carpa.com/sites/default/files/messages/es/2016/09/2016-09-02_la_palabra_encarnada_-_saludo_telefonico.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/2016/09/2016-09-02_a_palavra_encarnada_-_saudacao_telefonica.pdf",""
"pt","pt-20160902-2",91,"As Bênçãos Contidas na Primogenitura - Introdução","2016-09-02","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_21878.png","","https://www.carpa.com/sites/default/files/messages/pt-br/2016/09/2016-09-02_as_bencaos_contidas_na_primogenitura_-_introducao.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/2016/09/2016-09-02_as_bencaos_contidas_na_primogenitura_-_introducao.pdf",""
"pt","pt-20160828-1",93,"As Duas Varas de ISrael na Mão do Filho do Homem","2016-08-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-39.jpg","","","",""
"pt","pt-20160826-1",94,"As Duas Varas de Israel na Mão do Filho do Homem - Introdução","2016-08-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-43.jpg","","","",""
"pt","pt-20160821-1",95,"A Igreja de Deus Recebendo por Fé o Poder de Deus","2016-08-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/06/youtube_thumbnail_21873.png","","","",""
"pt","pt-20160819-1",96,"A Igreja de Deus Recebendo por Fé O Poder de Deus - Introdução","2016-08-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-35.jpg","","","",""
"pt","pt-20160814-1",97,"Os Arcanjos Gabriel e Miguel Atuando nas Mudanças de Reino","2016-08-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-31.jpg","","","",""
"pt","pt-20160812-1",98,"Os Arcanjos Gabriel e Miguel Atuando nas Mudanças de Reino - Introdução","2016-08-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-24.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2016/08/2016-08-12_os_arcanjos_gabriel_e_miguel_atuando_nas_mudancas_de_reino_-_introducao.pdf",""
"pt","pt-20160807-1",99,"A Luz da Tarde","2016-08-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-23.jpg","","","",""
"pt","pt-20160805-1",100,"A Luz da Tarde - Introdução","2016-08-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-20.jpg","","","",""
"pt","pt-20160730-1",101,"Entrelinhas","2016-07-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-30.jpg","","","",""
"pt","pt-20160729-1",102,"O Cumprimento Pleno das Profecias para o Último Dia - Introdução","2016-07-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-22.jpg","","","",""
"pt","pt-20160722-1",103,"As Obras de Jesus Cristo no Meio de Sua Igreja - Introdução","2016-07-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-19.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2016/07/2016-07-22_as_obras_de_jesus_cristo_no_meio_de_sua_igreja_-_introducao.pdf",""
"pt","pt-20160715-1",104,"A Graça do Senhor Jesus Cristo Derramada aos Seus Filhos - Introdução","2016-07-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-8.jpg","","","",""
"pt","pt-20160708-1",105,"Identificando o Fim do Tempo - Introdução","2016-07-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/10/youtube_thumbnail_21853.png","","","",""
"pt","pt-20160703-1",106,"Prosseguindo para a Meta","2016-07-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-25-5.jpg","","","",""
"pt","pt-20160701-1",107,"Prosseguindo para a Meta - Introdução","2016-07-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-26-5.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/2016/07/2016-07-01_prosseguindo_para_meta_-_introducao.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/2016/07/2016-07-01_prosseguindo_para_meta_-_introducao.pdf",""
"pt","pt-20160617-1",108,"Peça ao Pai em Seu Nome, e Ele nos Recompensará - Introdução","2016-06-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-38.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2016/06/2016-06-17_peca_ao_pai_em_seu_nome_e_ele_nos_recompensara_-_introducao.pdf",""
"pt","pt-20160611-1",109,"Quando o Onipotente Fala, Milagres Acontecem","2016-06-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/07/youtube_thumbnail_21844.png","","","",""
"pt","pt-20160605-1",110,"A Mensagem do Rei","2016-06-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_21842.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/2016/06/2016-06-03_a_mensagem_do_rei.pdf",""
"pt","pt-20160527-1",111,"O Tempo de Lutar para Sentar no Trono ao Filho de Davi - Introdução","2016-05-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-41.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/2016/05/2016-05-27_o_tempo_de_lutar_para_sentar_no_trono_ao_filho_de_davi_-_introducao.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/2016/05/2016-05-27_o_tempo_de_lutar_para_sentar_no_trono_ao_filho_de_davi_-_introducao.pdf",""
"pt","pt-20160522-1",112,"A Sinfônica de Deus","2016-05-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-33.jpg","","https://www.carpa.com/sites/default/files/messages/es/2016/05/2016-05-22_la_sinfonica_de_dios.mp3","",""
"pt","pt-20160520-1",113,"A Sinfônica de Deus - Introdução","2016-05-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-33.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2016/05/2016-05-20_a_sinfonica_de_deus_-_introducao.pdf",""
"pt","pt-20160515-1",114,"Obedecendo a Voz do Enviado em Cada Tempo","2016-05-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/3ZTVz7Ok-youtube_thumbnail_21836.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2016/05/2016-05-15-WSS-Obedecendo_a_Voz_do_Enviado_em_Cada_Tempo.mp3","",""
"pt","pt-20160513-1",115,"Obedecendo a Voz do Enviado em Cada Tempo - Introdução","2016-05-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/INnRyrrU-youtube_thumbnail_21835.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2016/05/2016-05-13-WSS-Obedencendo_a_Voz_do_enviado_em_cada_Tempo.mp3","",""
"pt","pt-20160508-1",116,"Jesus Cristo, a Esperença de Glória","2016-05-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-22.jpg","","","",""
"pt","pt-20160506-1",117,"Jesus Cristo, A Esperança de Glória - Introdução","2016-05-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18-18.jpg","","","",""
"pt","pt-20160430-1",118,"Chuva de Bênção pela Palavra de Elias no Último Dia","2016-04-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/05/youtube_thumbnail_21830.png","","","",""
"pt","pt-20160429-1",119,"Israel, O Relógio de Deus","2016-04-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-32.jpg","","","",""
"pt","pt-20160422-1",120,"O Semeador, Semeando a Semente da Palavra - Introdução","2016-04-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-21.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2016/04/2016-04-22_o_semeador_semeando_semente_da_palavra_-_introducao.pdf",""
"pt","pt-20160416-1",121,"Damas, Jóvens e Adultos Trabalhando e Colaborando na Grande Equipe de Deus","2016-04-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-20.jpg","","","",""
"pt","pt-20160415-1",122,"A Glória da Shekinah no Lugar Santíssimo - Introdução","2016-04-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21823.png","","","",""
"pt","pt-20160408-1",123,"Unânimes e Juntos no Aposento Alto, recebendo o Espírito Santo - Introdução","2016-04-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-7.jpg","","","",""
"pt","pt-20160401-1",124,"Os Quarenta Dias de Jesus na Terra, Antes do Rapto - Introdução","2016-04-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-23-6.jpg","","","",""
"pt","pt-20170101-2",125,"Atividade de Santa Ceia e Lava Pés","2017-01-01","2","https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp","","","",""
"pt","pt-20160325-1",126,"Jesus Cristo na Cruz Coroando Seu Ministério","2016-03-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-29.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2016/03/2016-03-25_jesus_cristo_na_cruz_coroando_seu_ministerio.pdf",""
"pt","pt-20160320-1",127,"O Vencedor se sentando no Trono de Davi","2016-03-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-26.jpg","","","",""
"pt","pt-20160317-1",128,"O Vencedor se sentando no Trono de Davi - Introdução","2016-03-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-20.jpg","","","",""
"pt","pt-20160315-1",129,"A Vinda da Pedra Angular e a Destruição do Reino dos Gentios","2016-03-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-19.jpg","","","",""
"pt","pt-20160304-1",130,"A Pedra com Um Nome Novo - Introdução","2016-03-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-23-5.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/2016/03/2016-03-04_a_pedra_com_um_nome_novo_-_introducao.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/2016/03/2016-03-04_a_pedra_com_um_nome_novo_-_introducao.pdf",""
"pt","pt-20160226-1",131,"O Sinal do Filho do Homem no Céu - Introdução","2016-02-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-27.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/2016/02/2016-02-26_o_sinal_do_filho_do_homem_no_ceu_-_introducao.flac","",""
"pt","pt-20160219-1",132,"O Livro Selado com Sete Selos - Introdução","2016-02-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/04/youtube_thumbnail_21799.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/2016/02/2016-02-19_o_livro_selado_com_sete_selos_-_introducao.pdf",""
"pt","pt-20160214-1",133,"A Família da Fé","2016-02-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-40.jpg","","","",""
"pt","pt-19941030-2",134,"A Nova Jerusalém","1994-10-30","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2016/02/2016-02-07_a_nova_jerusalem.pdf",""
"pt","pt-20160131-1",135,"O Anjo Selando as Tribos de Israel","2016-01-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-35.jpg","","","",""
"pt","pt-20160121-1",136,"Damas Servindo a Deus com Gratidão","2016-01-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-29.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2016/01/2016-01-21_damas_servindo_deus_com_gratidao.pdf",""
"pt","pt-20160117-1",137,"Eu Estou Convosco todos os dias até o Fim do Mundo","2016-01-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/07/youtube_thumbnail_21792.png","","","",""
"pt","pt-20160115-1",139,"Discernindo as Coisas Espirituais","2016-01-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_21790.png","","","",""
"pt","pt-20160115-2",138,"Eu Estou Convosco todos os dias, até o Fim do Mundo - Introdução","2016-01-15","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-28.jpg","","","",""
"pt","pt-20160108-1",140,"O Sétimo Selo e o fim dos Sistemas Mundiais - Introdução","2016-01-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-18.jpg","","","",""
"pt","pt-20160103-1",141,"Será Conforme a Visão Divina","2016-01-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2016/01/2025-03-15-13.00.41.jpg","","","",""
"pt","pt-20151227-1",142,"Onde está o Rei dos Judeus que Nasceu?","2015-12-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-26.jpg","","","",""
"pt","pt-20151225-1",143,"Onde está o Rei dos Judeus, que Nasceu? - Introdução","2015-12-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-32.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2015/12/2015-12-25_onde_esta_o_rei_dos_judeus_que_nasceu_-_introducao.pdf",""
"pt","pt-20151220-1",144,"O Enviado do Pai","2015-12-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-34.jpg","","","",""
"pt","pt-20151219-1",145,"O Tutor: O Espírito Santo","2015-12-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-38.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2015/12/2015-12-19_o_tutor_o_espirito_santo.pdf",""
"pt","pt-20151218-1",146,"O Enviado do Pai - Introdução","2015-12-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-28.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2015/12/2015-12-18_o_enviado_do_pai_-_introducao.pdf",""
"pt","pt-20151211-1",147,"A Sabedoria de Deus - Introdução","2015-12-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-29.jpg","","","",""
"pt","pt-20151206-1",148,"As Obras da Igreja do Senhor Jesus Cristo","2015-12-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-27.jpg","","","",""
"pt","pt-20151204-1",149,"As Obras da Igreja do Senhor Jesus Cristo - Introdução","2015-12-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-24.jpg","","","",""
"pt","pt-20151129-1",150,"A Pedra de Ângulo","2015-11-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21774.png","","","",""
"pt","pt-20151127-1",151,"A Pedra de Ângulo - Introdução","2015-11-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-37.jpg","","","",""
"pt","pt-20151121-1",3128,"A Era Messianica","2015-11-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21771.png","","https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2024/02/2015-11-21-a_era_messianica.mp3","",""
"pt","pt-20151120-1",152,"Nos Preparando para Entrar à Terra Prometida - Introdução","2015-11-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-28.jpg","","","",""
"pt","pt-20151119-1",153,"O Grande Propósito de Deus com Seus Filhos","2015-11-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-26.jpg","","","",""
"pt","pt-20151115-1",3065,"Estai Preparados para a Vinda do Filho do Homem","2015-11-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/youtube_thumbnail_21768.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/12/2015-11-15-WSS-Estai_preparados_para_a_Vinda_do_Filho_do_Homem_1.mp3","",""
"pt","pt-20151114-1",3136,"Prepara-te para vir ao encontro de teu Deus","2015-11-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21767.png","","https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/11/2015-11-14-WSS-Prepara-te_para_vir_ao_encontro_do_teu_Deus_1.mp3","",""
"pt","pt-20151113-1",154,"Estai Preparados para a Vinda do Filho do Homem - Introdução","2015-11-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21766.png","","https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/11/2015-11-13-WSS-Estai_Preparados_para_a_Vinda_Do_Filho_do_homem_1.mp3","",""
"pt","pt-20151110-1",3060,"Dia de Vitoria","2015-11-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/youtube_thumbnail_21765.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/12/2015-11-10-WSS-Dia_de_Vitoria_1.mp3","",""
"pt","pt-20151023-2",155,"Nos Preparando para o que há de Vir - Introdução","2015-10-23","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_21757.png","","","",""
"pt","pt-20151018-1",3162,"Os Sinais dos tempos","2015-10-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21756.png","","https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/10/2015-10-18-WSS-os_sinais_dos_tempos.mp3","",""
"pt","pt-20151016-1",156,"Os Sinais dos Tempos - Introdução","2015-10-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-17.jpg","","","",""
"pt","pt-20150927-1",3027,"O Assobio Suave","2015-09-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/Cgn6tOQr-youtube_thumbnail_21751.png","","","",""
"pt","pt-20150920-1",3038,"As Duas Oliveiras na Dispensacao do Reino - Introducao","2015-09-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-24.jpg","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/12/2015-09-18-WSS-As_Duas_Oliveiras_na_Dispensacao_do_Reino_Introducao_1.mp3","",""
"pt","pt-20150919-1",3211,"A Casa de Deus","2015-09-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21748.png","","","",""
"pt","pt-20150913-1",3019,"A Proclamaca da Grande Voz de Trombeta","2015-09-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_21745.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2015/09/2015-09-13-WSS-A_Proclamacao_da_Grande_Voz_de_Trombeta_1-1.mp3","",""
"pt","pt-20150911-1",157,"A Proclamação da Grande Voz de Trombeta - Introdução","2015-09-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-12.jpg","","","",""
"pt","pt-20150904-1",158,"O Reino de Deus está Próximo - Introdução","2015-09-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21741.png","","","",""
"pt","pt-20150903-1",3023,"Seja Feito Conforme a Tua Fe Conforme a Tua Fe Seja Feito","2015-09-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_21740.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2015/09/2015-09-03-WSS-Seja-Feito_conforme_a_tua_fe_conforme_a_tua_fe_seja_feito_1.mp3","",""
"pt","pt-20150830-1",3005,"O Misterio da Fe de Rapto Contida nos Trovoes","2015-08-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/youtube_thumbnail_21739-1.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/10/2015-08-30-WSS-O_Misterio_da_Fe_de_Rapto_Contida_nos_Trovoes.mp3","",""
"pt","pt-20150823-1",3015,"O Dia do Filho do Homem e as Obras que fara em Sua Vinda","2015-08-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_21737.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2015/08/2015-08-23-WSS-O_Dia_do_Filho_do_Homem_e_as_Obras_que_fara_em_Sua_Vinda_1.mp3","",""
"pt","pt-20150822-1",159,"Saudação na Reunião de Damas","2015-08-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-25.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2015/08/2015-08-22_saudacao_na_reuniao_de_damas.pdf",""
"pt","pt-20150821-1",160,"O Dia do Filho do Homem e as Obras que fará em Sua Vinda - Introdução","2015-08-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/11/youtube_thumbnail_21735.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/2015/08/2015-08-21_o_dia_do_filho_do_homem_e_obras_que_fara_em_sua_vinda_-_introducao.pdf",""
"pt","pt-20150807-1",161,"O Verão está Próximo - Introdução","2015-08-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18-11.jpg","","https://www.carpa.com/sites/default/files/messages/es/2015/08/2015-08-07_el_verano_esta_cerca_-_introduccion.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/2015/08/2015-08-07_o_verao_esta_proximo_-_introducao.pdf",""
"pt","pt-20150731-1",162,"Uma vez mais Senhor - Introdução","2015-07-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-30.jpg","","","",""
"pt","pt-20150717-1",163,"Onde está o Deus de Elias hoje? - Introdução","2015-07-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-22.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2015/07/2015-07-17_onde_esta_o_deus_de_elias_hoje_-_introducao.pdf",""
"pt","pt-20150712-1",164,"Um Toque de Fé para Salvação","2015-07-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-14.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2015/07/2015-07-12_um_toque_de_fe_para_salvacao.pdf",""
"pt","pt-20150710-1",165,"Um Toque de Fé para Salvação - Introdução","2015-07-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-13.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2015/07/2015-07-10_um_toque_de_fe_para_salvacao_-_introducao.pdf",""
"pt","pt-20150703-1",166,"A Posição da Igreja no Último Dia - Introdução","2015-07-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-10.jpg","","","",""
"pt","pt-20150626-1",167,"A Voz do Espírito Santo Falando à Igreja no Último Dia - Introdução","2015-06-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-29.jpg","","","",""
"pt","pt-20150621-1",168,"A Fonte que dá Água para Vida Eterna","2015-06-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-22.jpg","","","",""
"pt","pt-20150619-1",169,"A Fonte que dá Água para Vida Eterna - Introdução","2015-06-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-23.jpg","","","",""
"pt","pt-20150605-1",170,"A Voz do Sinal","2015-06-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21707.png","","https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/06/2015-06-05-WSS-a_voz_do_sinal.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/2015/06/2015-06-05_a_voz_do_sinal.pdf",""
"pt","pt-20150531-1",171,"A Grande Vitória no Amor Divino","2015-05-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-20.jpg","","","",""
"pt","pt-20150524-1",3173,"As Dimensoes","2015-05-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21705.png","","","",""
"pt","pt-20150510-1",3132,"Jesus Cristo, O Rei de Paz","2015-05-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21702.png","","https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/05/2015-05-10-WSS-Jesus_Cristo_O_Rei_de_Paz_1_1.mp3","",""
"pt","pt-20150509-1",3140,"A Sete Visões Proféticas do Reverendo William Branham antes da Segunda Vinda Cristo","2015-05-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21701.png","","https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2024/02/2015-05-09-WSS-As_Sete_Visoes_Profeticas_do_Rev_WMB_Antes_da_segunda_Vinda_de_Cristo_PT.mp3","",""
"pt","pt-20150503-1",172,"Jesus Abrindo o Entendimento para Compreender as Escrituras","2015-05-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-21.jpg","","","",""
"pt","pt-20150502-1",173,"A Ordem Divina para a Ressurreição e a Transformação","2015-05-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21698.png","","https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/05/2015-05-02-a_ordem_divina_para_a_ressurreicao_e_transformacao.mp3","",""
"pt","pt-20150419-1",174,"A Sétima Dispensação: A Dispensação do Reino","2015-04-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21695-1.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2015/04/2015-04-19-A_Setima_Dispensacao_A_Dispensacao_do_Reino.mp3","",""
"pt","pt-20150405-1",175,"Jesus Ressuscitado, como disse A Escritura","2015-04-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21692-1.png","","","",""
"pt","pt-20150404-1",176,"Jesus Pregando na Quinta Dimensão","2015-04-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21691.png","","","",""
"pt","pt-20150403-2",177,"Jesus Cristo Crucificado Cumprindo as Escrituras","2015-04-03","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-17.jpg","","","",""
"pt","pt-20150329-1",178,"Jesus Entrando em Jerusalém como foi Escrito","2015-03-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-19.jpg","","","",""
"pt","pt-20150327-1",179,"A Justiça Divina","2015-03-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-20.jpg","","","",""
"pt","pt-20150322-1",180,"A Quarta Dispensação: A Promessa","2015-03-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-19.jpg","","","",""
"pt","pt-20150315-1",181,"A Terceira Dispensação: O Governo Humano","2015-03-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-11.jpg","","","",""
"pt","pt-20150314-1",182,"La segunda dispensación: La Conciencia","2015-03-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/05/youtube_thumbnail_21681.png","","","",""
"pt","pt-20150308-1",3219,"A Primeira Dispensação: A Inocência","2015-03-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21679.png","","https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/03/2015-03-08-a_primeira_dispensacao_a_inocencia.mp3","",""
"pt","pt-20150301-1",183,"Quem é o Filho do Homem pra este Dia?","2015-03-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21678.png","","https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/03/2015-03-01-WSS-Quem_e_O_Filho-do_homem_para_este_dia.mp3","",""
"pt","pt-20150228-1",184,"A Casa de Deus do Novo Pacto","2015-02-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21677.png","","","",""
"pt","pt-20150224-1",185,"O Senhor é Nossa Bandeira","2015-02-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-29.jpg","","","",""
"pt","pt-20150222-1",186,"A Salvação do que se Havia Perdido","2015-02-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-18.jpg","","","",""
"pt","pt-20150221-1",187,"Selados pelo Maior Sinal","2015-02-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21674.png","","https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/02/2015-02-21-WSS-Selados-pelo-maior-Sinal.mp3","",""
"pt","pt-20150215-1",188,"Quando vier o Filho do Homem, achará fé na Terra?","2015-02-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/youtube_thumbnail_21673.png","","https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/02/2015-02-15-WSS-Quando_vier_o_Filho_do_homem_achara_fe_na_terra.mp3","",""
"pt","pt-20150214-1",189,"Unidos com o Anjo, Trabalhando nos Projetos Divinos","2015-02-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/youtube_thumbnail_21672.png","","https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/02/2015-02-14-WSS-Unidos_com_o_Anjo_Trabalhando_nos_Projetos_Divinos_1.mp3","",""
"pt","pt-20150210-1",190,"A Herança do Vencedor","2015-02-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21671.png","","https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/02/2015-02-10-WSS-A_Heranca_do_vencedor.mp3","",""
"pt","pt-20150208-1",191,"O Rei dos Reis e Senhor dos Senhores","2015-02-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/cxS9ziAp-youtube_thumbnail_21670.png","","https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/02/2015-02-08-WSS-O_Rei_dos_reis-e_Senhor_dos_Senhores_1.mp3","",""
"pt","pt-20150206-1",3055,"Os-Quatro titulos de Jesus como Filho","2015-02-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/EwHhRdyF-youtube_thumbnail_21669.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/12/2015-02-06-WSS-Os-Quatro_titulos_de_Jesus_como_Filho_1.mp3","",""
"pt","pt-20150206-1",192,"Os Quatro Títulos de Jesus como Filho","2015-02-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/EwHhRdyF-youtube_thumbnail_21669.png","","","",""
"pt","pt-20150201-1",3075,"O Filho do Homem","2015-02-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/rGJZrHWo-youtube_thumbnail_21668.png","","https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2024/01/2015-02-01-WSS-O_Filho_do_Homem_1.mp3","",""
"pt","pt-20150201-1",193,"O Filho do Homem","2015-02-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/rGJZrHWo-youtube_thumbnail_21668.png","","","",""
"pt","pt-20150125-1",194,"Filho de Deus","2015-01-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-19.jpg","","","",""
"pt","pt-20150118-1",195,"O Herdeiro, o Filho de Davi","2015-01-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-23.jpg","","","",""
"pt","pt-20150104-1",196,"O Reino e Trono de Davi","2015-01-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-26.jpg","","","",""
"pt","pt-20150102-1",2845,"A Profecia do Último Dia","2015-01-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21662.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/07/2015-01-02-WSS-A_Profecia_do_Ultimo_Dia.mp3","",""
"pt","pt-20141231-1",197,"Uma Visão Profética","2014-12-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-18.jpg","","","",""
"pt","pt-20141227-1",198,"A Importância de Ensinar o Evangelho do Reino","2014-12-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-25.jpg","","","",""
"pt","pt-20141221-1",199,"O Nascimento de Jesus Cristo","2014-12-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/mklKqOY2-youtube_thumbnail_21657.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2014/12/2014-12-21-o_nascimento_de_jesus_cristo_1.mp3","",""
"pt","pt-20141130-1",2876,"Aquele que há de vir virá, e não tardará","2014-11-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21653.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2014/11/2014-11-30-aquele_que_ha_de_vir_vira_e_nao_tardara.mp3","",""
"pt","pt-20141129-1",200,"Uma Igreja Gloriosa, sem Mancha nem Ruga","2014-11-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-26.jpg","","","",""
"pt","pt-20141128-1",201,"A Educação desde o Jardim do Édem","2014-11-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-24.jpg","","","",""
"pt","pt-20141029-1",202,"Palavras de Condolências pela partida do Irmão Raul Veliz","2014-10-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-23.jpg","","","",""
"pt","pt-20141026-1",203,"O Eterno","2014-10-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21640.png","","","",""
"pt","pt-20141007-1",204,"As Bênçãos de Deus vem a Sião","2014-10-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-10.jpg","","","",""
"pt","pt-20141004-1",205,"De Regresso ao Princípio","2014-10-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21631.png","","","",""
"pt","pt-20140907-1",206,"Deus Provendo o que Falta para a Conclusão de Sua Obra Final","2014-09-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21619.png","","","",""
"pt","pt-20140905-1",207,"Deus Ama ao que dá com Alegria","2014-09-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-6.jpg","","","",""
"pt","pt-20140831-1",208,"O Povo se Esforçando para Concluir a Obra que foi Encomendada em Cada Tempo","2014-08-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21616.png","","","",""
"pt","pt-20140827-1",209,"Deus Demanda Obediência à Sua Palavra","2014-08-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-12.jpg","","","",""
"pt","pt-20140815-1",210,"A Visita da Semente de Abraão à Sua Semente: A Igreja do Senhor Jesus Cristo, Sua Ajuda Idônea","2014-08-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-4.jpg","","","",""
"pt","pt-20140806-1",211,"Palavras no Enterro do Irmão Humberto Pérez Ortiz","2014-08-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-24-2.jpg","","","",""
"pt","pt-20140805-1",212,"Palavras no Velório do Irmão Humberto Pérez Ortiz","2014-08-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-25-4.jpg","","","",""
"pt","pt-20140801-1",213,"O Sétimo Selo e a Sétima Trombeta","2014-08-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-27-4.jpg","","","",""
"pt","pt-20140727-1",214,"As Tribos de Israel","2014-07-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-17.jpg","","","",""
"pt","pt-20140720-1",215,"O Dia de Cristo","2014-07-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-20.jpg","","","",""
"pt","pt-20140719-1",216,"Que Deus Abençõe nossas Metas para a Grande Carpa Catedral","2014-07-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2014/07/2014-07-19-WSS-que_dios_bendiga_nuestras_metas_para_la_gran_carpa_catedral.jpg","","","",""
"pt","pt-20140705-1",217,"A Besta e a Imagem da Besta","2014-07-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-23.jpg","","","",""
"pt","pt-20140704-1",2812,"Elias virá antes da Segunda Vinda de Cristo","2014-07-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21594.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2014/07/2014-07-04-WSS-Elias_vira_antes_da_Segunda_Vinda_de_Cristo.mp3","",""
"pt","pt-20140629-2",218,"Nossa Meta Terminar a Obra que Deus nos deu para terminar","2014-06-29","2","https://ewr1.vultrobjects.com/lgcc-conferences/2024/11/youtube_thumbnail_21592.png","","","",""
"pt","pt-20140608-1",2913,"Tempo para Ver","2014-06-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-13.jpg","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/09/2014-06-08-WSS-tempo_para_ver.mp3","",""
"pt","pt-20140608-1",219,"Tempo para Ver","2014-06-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-13.jpg","","","",""
"pt","pt-20140525-1",220,"O Trigo Maduro","2014-05-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-19.jpg","","","",""
"pt","pt-20140504-1",221,"A vitória por meio do nosso Senhor Jesus Cristo","2014-05-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-12.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2014/05/2014-05-04_la_victoria_por_medio_de_nuestro_senor_jesucristo.pdf",""
"pt","pt-20140502-1",223,"O Rapto Espiritual e o Físico dos Escolhidos de Deus","2014-05-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/11/youtube_thumbnail_21575.png","","","",""
"pt","pt-20140502-2",222,"O Céu e a Terra Passarão, mas as minhas Palavras Jamais Passarão","2014-05-02","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-12.jpg","","","",""
"pt","pt-20140427-1",224,"Nos Preparando para a Vinda do Senhor, porque os Dias são maus","2014-04-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-22.jpg","","","",""
"pt","pt-20140420-2",225,"As Obras de Jesus Cristo Ressuscitado","2014-04-20","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-11.jpg","","","",""
"pt","pt-20140413-1",3191,"As Obras de Jesus em Jerusalem","2014-04-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21567.png","","https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2014/04/2014-04-13-WSS_As_Obras_de_Jesus_ao_entrar_em_Jerusalem_1.mp3","",""
"pt","pt-20140405-1",226,"Atendendo à Voz de Cristo e Trabalhando em Sua Obra","2014-04-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/09/youtube_thumbnail_21564.png","","","",""
"pt","pt-20140330-1",227,"A Visitação Angelical à Família Humana","2014-03-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21563.png","","","",""
"pt","pt-20140323-1",2983,"O que está atras da Porta","2014-03-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/youtube_thumbnail_21562.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/10/2014-03-23-WSS-O_Que_esta_Atras_da_Porta.mp3","",""
"pt","pt-20140309-1",228,"As Sete Eras da Igreja do Senhor Jesus Cristo","2014-03-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-10.jpg","","","",""
"pt","pt-20140305-1",229,"A Identificação do Anjo que o Senhor Jesus Cristo Envia","2014-03-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-10.jpg","","","",""
"pt","pt-20140302-1",230,"Tempo para Ser Purificados","2014-03-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-10.jpg","","","",""
"pt","pt-20140301-1",231,"Um Obreiro Aprovado","2014-03-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-8.jpg","","","",""
"pt","pt-20140214-1",3197,"A Vinda do Filho do Homem com Seus Anjos","2014-02-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21547.png","","","",""
"pt","pt-20140112-1",3169,"As Dez Virgens e a Grande Tribulacao","2014-01-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21536.png","","","",""
"pt","pt-20131211-1",232,"Os Pastores Apascentando as Ovelhas do Senhor Jesus Cristo com Ciência e com Inteligencia","2013-12-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_21520.png","","","",""
"pt","pt-20131208-1",233,"O que está Escrito tem Cumprimento","2013-12-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-25-3.jpg","","","",""
"pt","pt-20131206-1",3011,"A Presenca de Jesus","2013-12-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_21518.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2013/12/2013-12-06-WSS-A-Presenca-de-Jesus.mp3","",""
"pt","pt-20131201-1",234,"O Espírito de Elias Percorrendo O Caminho Ministerial pela Quinta Vez","2013-12-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/04/youtube_thumbnail_21517.png","","","",""
"pt","pt-20131124-1",235,"O Avivamento do Espírito Santo","2013-11-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-5-6.jpg","","","",""
"pt","pt-20131117-1",236,"Jesus entre a Multidão","2013-11-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-13.jpg","","","",""
"pt","pt-20131110-1",237,"O Homem que Pode Acender a Luz","2013-11-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-15.jpg","","","",""
"pt","pt-20131101-1",238,"O Selo Predito","2013-11-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-19.jpg","","","",""
"pt","pt-20131027-1",239,"A Maior Bem-aventurança: Receber a Revelação que vem de Deus através de Seu Enviado","2013-10-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-12.jpg","","","",""
"pt","pt-20131013-1",240,"A Consumação das Setenta Semanas de Daniel","2013-10-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-14.jpg","","","",""
"pt","pt-20131006-1",241,"Posso Todas as Coisas em Cristo que me Fortalece","2013-10-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-18.jpg","","","",""
"pt","pt-20130915-1",242,"Os Mistérios de Deus","2013-09-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-7.jpg","","","",""
"pt","pt-20130908-1",243,"A Vida Eterna","2013-09-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-5.jpg","","","",""
"pt","pt-20130906-1",244,"As Promessas para os Filhos de Deus no último Dia","2013-09-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-4.jpg","","","",""
"pt","pt-20130901-1",245,"Seguindo ao Mestre","2013-09-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-3.jpg","","","",""
"pt","pt-20130825-1",246,"O Sinal para sair no Êxodo","2013-08-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-7.jpg","","","",""
"pt","pt-20130818-1",247,"A Importância do Louvor","2013-08-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/08/youtube_thumbnail_21489.png","","","",""
"pt","pt-20130804-1",248,"A Fé, Mais Preciosa do que o Ouro","2013-08-04","1","","","","",""
"pt","pt-20130728-1",249,"O Conselho Divino","2013-07-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-13.jpg","","","",""
"pt","pt-20130721-1",250,"A Revelação da Palavra de Deus é Trazida pelo Espírito Santo","2013-07-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-13.jpg","","","",""
"pt","pt-20130714-1",2861,"Conhecendo o Tempo da Visitação de Deus para Evitar os Juízos Divinos que Virão","2013-07-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21474.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/07/2013-07-14-WSS-Conhecendo_o_Tempo_da_Visitacao_de_Deus_para_Evitar_os_Juizos_Divinos.mp3","",""
"pt","pt-20130630-3",251,"A Visitação de Deus à Semente de Abraão","2013-06-30","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-12.jpg","","","",""
"pt","pt-20130623-1",252,"Temei a Deus","2013-06-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/2025/09/youtube_thumbnail_21466.png","","","",""
"pt","pt-20130616-1",253,"A Casa de Deus Hoje","2013-06-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-13.jpg","","","",""
"pt","pt-20130609-1",2804,"Fome de ouvir A Palavra de Deus Hoje","2013-06-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_21463.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/06/2013-06-09-WSS-Fome_de_ouvir_a_Palavra_de_Deus_Hoje.mp3","",""
"pt","pt-20130609-1",254,"Fome de Ouvir a Palavra de Deus Hoje","2013-06-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_21463.png","","","",""
"pt","pt-20130602-1",255,"Senhor Aumenta-nos a Fé","2013-06-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-6.jpg","","","",""
"pt","pt-20130531-2",2799,"O Tempo se Cumpriu e o Reino dos Céus se Aproximou","2013-05-31","2","https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_21458.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/06/2013-05-31-WSS-O_Tempo_se_cumpriu_e_o_Reino_dos_Ceus_se_Aproximou.mp3","",""
"pt","pt-20130526-1",256,"Os Reinos do Mundo Virão a ser de Jesus Cristo","2013-05-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-11.jpg","","","",""
"pt","pt-20130519-1",257,"O Alfa e o Ômega","2013-05-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-11.jpg","","","",""
"pt","pt-20130505-1",258,"O Confronto entre as Duas Sementes","2013-05-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-12.jpg","","","",""
"pt","pt-20130503-1",259,"As duas Sementes","2013-05-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/08/youtube_thumbnail_21452.png","","","",""
"pt","pt-20130428-1",260,"Clamando pela Liberdade Gloriosa dos Filhos de Deus","2013-04-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-10.jpg","","","",""
"pt","pt-20130407-1",2792,"A Revelação Contida nos Sete Trovões que João escutou e foi Proibido Escrever","2013-04-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-3.jpg","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/06/2013-04-07-WSS-a_revelacao_contida_nos_sete_trovoes_que_joao_escutou_e_foi_proibido_escrever.mp3","",""
"pt","pt-20130331-1",261,"Jesus Cristo ressucitou dentre os mortos","2013-03-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-12.jpg","","","",""
"pt","pt-20130317-1",262,"Tempo de estar Preparados para a Vinda do Senhor","2013-03-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-4.jpg","","","",""
"pt","pt-20130303-1",2963,"A Terceira Etapa","2013-03-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_21431.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/10/2013-03-03-WSS-A_Terceira_Etapa.mp3","",""
"pt","pt-20130301-1",2894,"O Sinal do Filho do Homem","2013-03-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21430.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/08/2013-05-01-WSS-O_Sinal_Filho_Homem.mp3","",""
"pt","pt-20130217-1",2889,"Todas as coisas Debaixo do Céu têm Seu Tempo","2013-02-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21428.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/08/2013-02-17-WSS-Todas_as_coisas_debaixo_do_ceu_tem_seu_tempo.mp3","",""
"pt","pt-20121202-1",263,"A Restauração do Reino de Deus","2012-12-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-3.jpg","","","",""
"pt","pt-20121118-1",264,"Deus em uma Nova Etapa Materializando Suas Promessas Maravilhosas à Sua Igreja","2012-11-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-8.jpg","","","",""
"pt","pt-20121111-1",265,"A Pedra Cortada sem Auxílio de Mãos","2012-11-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-8.jpg","","","",""
"pt","pt-20121104-1",266,"Melquisedeque Abençoando à Descendência Real Abraão","2012-11-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-6.jpg","","","",""
"pt","pt-20121028-1",2833,"A Trajetória da Construção do Templo de Deus","2012-10-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21397.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/07/2012-10-28-WSS-A_Trajetoria_da_Construcao_do_Templo_de_Deus.mp3","",""
"pt","pt-20121021-1",267,"José entre os Gentios","2012-10-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-6.jpg","","","",""
"pt","pt-20121014-1",268,"A Abertura do Sexto Selo","2012-10-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-7.jpg","","","",""
"pt","pt-20121007-2",269,"A Festa dos Tabernáculos","2012-10-07","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-6.jpg","","","",""
"pt","pt-20120929-1",270,"A Festa da Espiação","2012-09-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-5.jpg","","","",""
"pt","pt-20120923-1",271,"A Festa das Trombetas","2012-09-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-6.jpg","","","",""
"pt","pt-20120902-1",272,"Sião, O Monte de Deus","2012-09-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-2.jpg","","","",""
"pt","pt-20120901-1",273,"A Anistia no Reino de Deus","2012-09-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-1.jpg","","","",""
"pt","pt-20120826-1",274,"A Semente de Abraão","2012-08-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-6.jpg","","","",""
"pt","pt-20120819-1",275,"A Grande Vitória no Amor Divino","2012-08-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-5.jpg","","","",""
"pt","pt-20120804-1",276,"Perseverando na Doutrina de Jesus Cristo","2012-08-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-5.jpg","","","",""
"pt","pt-20120708-1",277,"O Título de Propriedade nas Mãos de um Homem","2012-07-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-1.jpg","","","",""
"pt","pt-20120707-1",278,"Deus Vindicando Sua Palavra em cada Tempo","2012-07-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-1.jpg","","","",""
"pt","pt-20120624-1",279,"Colocando as Mãos no Arado sem Olhar para Trás","2012-06-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-5.jpg","","","",""
"pt","pt-20120617-1",280,"O Pai Celestial","2012-06-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_21366.png","","","",""
"pt","pt-20120527-1",3043,"Ceus Novos e Terra Nova","2012-05-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/k3A7UH4H-youtube_thumbnail_21358.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/12/2012-05-27-WSS-Ceus_novos_e_Terra_Nova_1.mp3","",""
"pt","pt-20120506-1",281,"A influência da dimensão celestial sobre a terrenal","2012-05-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-5.jpg","","","",""
"pt","pt-20120325-1",282,"Rumo a la terra prometida com tres tipos de crentes","2012-03-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-5-3.jpg","","","",""
"pt","pt-20110319-1",3232,"A Segurança do Ungido de Deus","2011-03-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21190.png","","https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2024/06/2011-03-19-RM-a_seguranca_do_ungido_de_deus.mp3","",""
"pt","pt-20110508-1",3228,"O Espírito de Deus e o espírito do anticristo","2011-05-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21207.png","","","",""
"pt","pt-20100928-2",2899,"A Grandeza e Conteúdo do Sétimo Selo","2010-09-28","2","https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21125.png","","https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2010/09/2010-09-28-2-WSS-A_Grandeza_e_Conteudo_do_Setimo_Selo.mp3","",""
"pt","pt-20100925-1",2907,"Fala Senhor pois O Teu Servo Ouve","2010-09-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21122-1.png","","https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2010/09/2010-09-25-WSS-Fala_Senhor_pois_o_Teu_servo_ouve.mp3","",""
"pt","pt-20100904-1",2850,"Deus dando Sabedoria e Inteligência aos Seus Filhos para fazer a Obra que lhes foi Encomendada","2010-09-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21112.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2010/09/2010-09-04-WSS-Deus_dando_Sabedoria_e_Inteligencia_aos_seus_Filhos_para_fazer_a_Obra_que_lhes_foi_Encomendada.mp3","",""
"pt","pt-20100812-1",2871,"A Dualidade do Segundo Adão: O Grande Mistério de Cristo e Sua Igreja","2010-08-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21089.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/08/2010-08-12-WSS-A_Dualidade_do_Segundo_Adao_O_Grande_Misterio_de_Cristo_e_Sua_Igreja.mp3","",""
"pt","pt-20100812-1",2866,"Jesus Cristo Libertando o que o inimigo Atou","2010-08-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21089.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/08/2010-08-12-WSS-Jesus_Cristo_Libertando_o_que_o_inimigou_atou.mp3","",""
"pt","pt-20100506-2",2935,"O Sol, a Lua e as Estrelas Marcando o Tempo e nos dando os Sinais do Fim","2010-05-06","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_21025.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/09/2010-05-06-WSS-O_Sol_A_Lua_e_as_Estrelas_marcando_o_Tempo.mp3","",""
"pt","pt-20090905-1",2950,"Obedientes à Visão Celestial","2009-09-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_20848.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2009/09/2009-09-05WSS-RM-Obedientes_a_Visao_Celestial.mp3","",""
"pt","pt-20090424-2",2966,"Novas de Grande Alegria para a Primeira e Segunda Vinda de Cristo","2009-04-24","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/youtube_thumbnail_20738.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2009/04/2009-04-24-WSS-Novas_de_Grande_Alegria_para_Primeira_e_Segunda_Vinda_de_Cristo.mp3","",""
"pt","pt-20080918-1",3031,"Quem e pois O Servo Fiel e prudente","2008-09-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_20552.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/12/2008-09-18-WSS-Quem_e_pois_O_Servo_Fiel_e_prudente_1.mp3","",""
"pt","pt-20050514-2",2994,"Os Requisitos para um Avivamento","2005-05-14","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/youtube_thumbnail_19881.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2005/05/2005-05-14-RM-os-requisitos-para-um-avivamento.mp3","",""
"pt","pt-20050506-1",2925,"Obras de Fé","2005-05-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_19871.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2005/05/2005-06-06-WSS-Obras_de_Fe.mp3","",""
"pt","pt-20050504-3",2881,"A Voz que Abalará os Céus e a Terra","2005-05-04","3","https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_19867.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2005/05/2005-05-04-RM-a_voz_que_abalara_os_ceus_e_a_terra.mp3","",""
"pt","pt-20040826-1",2918,"Tudo Depende da Palavra de Deus","2004-08-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/09/youtube_thumbnail_66060.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2004/08/2004-08-26-1-WSS-tudo_depende_da_palavra_de_deus.mp3","",""
"pt","pt-20030215-1",2929,"Vasos separados para Deus","2003-02-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_19258.png","","","",""
"pt","pt-20020415-1",2940,"Combatendo o Bom Combate","2002-04-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_66110.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/09/2002-04-15-WSS-RM-Combatendo_o_Bom_Combate.mp3","",""
"pt","pt-20020228-1",283,"Um Sinal Notório no Céu","2002-02-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-1-5.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2002/02/2002-02-28_um_sinal_notorio_no_ceu.pdf",""
"pt","pt-20010714-2",3113,"O Varao esforcado e Valente","2001-07-14","2","https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_66544.png","","https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2024/01/2001-07-14-WSS-RM-O_Varao_esforcado_e_Valente.mp3","",""
"pt","pt-20001110-1",2945,"A Ordem para a Manifestação da Glória de Deus","2000-11-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_18656.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/09/2000-11-10-1-WSS-RM-A_Ordem_para_A_Manifestacao_da_Gloria_de_Deus.mp3","",""
"pt","pt-20001022-3",2970,"O Paralelismo entre Cristo e Seu Anjo","2000-10-22","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/youtube_thumbnail_18627.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/10/2000-10-22-WSS-O_Paralelismo_entre_Cristo_e_Seu_Anjo.mp3","",""
"pt","pt-20000710-2",284,"Deus Escolhe onde pôr Seu Nome","2000-07-10","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-59.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/2000/07/2000-07-10_deus_escolhe_onde_por_seu_nome.pdf",""
"pt","pt-19991231-1",1190,"As coisas que estão Profetizadas para o Fim do Século","1999-12-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_18381.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/12/1999-12-31_2000-01-01_As-Coisas-que-estão-profetizadas-para-o-fim-do-seculo.mp3","",""
"pt","pt-19991203-2",285,"A Bênção de Fazer a Vontade de Deus","1999-12-03","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_18363-5.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1999/12/1999-12-03_A-Bencao-de-Fazer-a-Vontade-de-Deus.mp3","",""
"pt","pt-19991202-2",286,"Os Filhos de Prosperidade","1999-12-02","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_18361-5.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1999/12/1999-12-03_Os-Filhos-de-Prosperidade.mp3","",""
"pt","pt-19991201-1",287,"Nascidos para Vencer","1999-12-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_18360-5.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1999/12/1999-12-01_Nascidos-para-Vencer.mp3","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19981231-1",1197,"O Sumo Sacerdote Intercedendo pelo Povo","1998-12-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17877.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/12/1998-12-31-1999-01-01_O-Sumo-Sacerdote-Intecedendo-pelo-povo.mp3","",""
"pt","pt-19981227-2",1135,"Tempo de Despertar à Realidade do que Deus está fazendo Hoje","1998-12-27","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17874.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/11/1998-12-27_Tempo-de-Despertar-a-realidade-do-que-Deus-esta-fazendo-hoje.mp3","",""
"pt","pt-19981227-1",1114,"O que Deus Prometeu para O Último Dia","1998-12-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17875.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/11/1998-12-27_O-que-Deus-Prometeu-para-o-Ultimo-Dia.mp3","",""
"pt","pt-19981220-2",1102,"Uma Concepção do Espírito Santo","1998-12-20","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17866.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/11/1998-12-20_Uma-Concepcao-do-Espirito-Santo.mp3","",""
"pt","pt-19981220-1",1091,"A Trajetória do Templo de Deus","1998-12-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17867.png","","","",""
"pt","pt-19981213-2",1079,"A Bênção de Obedecer o Anjo de Deus","1998-12-13","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17864.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/10/1998-12-13_A-Bencao-de-Obedecer-ao-Anjo-de-Deus.mp3","",""
"pt","pt-19981213-1",1063,"Os Pensamentos de Deus Expressos no Último Dia","1998-12-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17865.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/12/1998-12-13_Os-Pensamentos-de-Deus-expressos-no-Ultimo-Dia.mp3","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19981129-2",1034,"O Mistério do Anjo de Jesus","1998-11-29","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17850-1.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/11/1998-11-29_O-Misterio-do-Anjo-de-Jesus.mp3","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19981126-1",807,"Aquele que tem Maior Testemunho que o de João Batista","1998-11-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17848-6.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/10/1998-11-26_Aquele-que-tem-maior-Testemunho-que-o-de-Joao.mp3","",""
"pt","pt-19981124-1",848,"O Filho Trabalhando como o Pai lhe Mostra","1998-11-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17846-3.png","","","",""
"pt","pt-19981123-1",847,"Trabalhando enquanto o Pai Trabalha","1998-11-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17845-2.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/11/1998-11-23_Trabalhando-enquanto-o-pai-trabalha.mp3","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19981115-1",1228,"Jesus Cristo Buscando e Chamando os que Cearão com Ele","1998-11-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17835.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/11/1998-11-15_Jesus-Cristo-Buscando-e-Chamando-os-Cearao-com-Ele.mp3","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19981101-1",846,"As Coisas que foram, as que são e as que hão de ser","1998-11-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17807-2.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/11/1998-11-01_As-Coisas-que-foram-as-que-sao-e-as-que-serão.mp3","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19981030-1",845,"O Filho do Homem com as chaves do inferno e da morte","1998-10-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17803-2.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/10/1998-10-30_O-Filho-do-Homem-com-as-Chaves-do-Inferno-e-da-morte.mp3","",""
"pt","pt-19981028-2",372,"Uma Descrição do Filho do Homem no meio dos Sete Candeeiros","1998-10-28","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17798-1.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/10/1998-10-28_Uma-Descricao-do-Filho-do-Homem-no-meio-dos-sete-candeeiros.mp3","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19981026-2",374,"Jesus Cristo, O Alfa e O Ômega","1998-10-26","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17794-5.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/10/1998-10-26_Jesus-Cristo-o-Alfa-e-o-Omega.mp3","",""
"pt","pt-19981025-2",842,"A Vinda do Senhor com as Núvens","1998-10-25","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17792-5.png","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19981025-2",375,"A Vinda do Senhor com as Núvens","1998-10-25","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17792-5.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/10/1998-10-25_A-Vinda-do-Senhor-com-as-nuvens.mp3","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19981019-2",384,"O Anjo com a Revelação de Jesus Cristo","1998-10-19","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17776-5.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/10/1998-10-19_O-Anjo-com-a-Revelacao-de-Jesus-Cristo.mp3","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19980829-2",1214,"As Mãos do Profeta LEvantadas para a Vitória do Povo","1998-08-29","2","https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17700.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2022/01/1998-08-29_As-Maos-do-Profeta-Elevadas-para-a-Vitoria-do-Povo.mp3","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19980825-3",1220,"Trabalhando na Obra Missionária com Mente Positiva","1998-08-25","3","https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17687.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2022/01/1998-08-25_Trabalhando-na-Obra-Missionaria-com-Mente-Positiva.mp3","",""
"pt","pt-19980825-2",1209,"O Fim do Século e os Anjos da Colheita","1998-08-25","2","https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17688.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2022/01/1998-08-25_O-Fim-do-seculo-e-os-anjos-da-colheita.mp3","",""
"pt","pt-19980823-3",1184,"A Trajetória do Sangue de Cristo","1998-08-23","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17681.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/12/1998-08-23_A-Trajetoria-do-Sangue-de-Cristo.mp3","",""
"pt","pt-19980823-2",1174,"O Sinal do Sangue Aplicado Hoje","1998-08-23","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17682.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/12/1998-08-23_O-Sinal-do-Sangue-Aplicado-Hoje.mp3","",""
"pt","pt-19980821-1",1161,"A Juventude Eterna","1998-08-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17677.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/12/1998-08-21_A-Juventude-Eterna.mp3","",""
"pt","pt-19980820-3",1141,"A Vara que fará os Sinais","1998-08-20","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17672.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/08/1998-08-20_A-Vara-que-fará-os-Sinais.mp3","",""
"pt","pt-19980820-1",1128,"O Tempo de Fome e Sede de Ouvir A Palavra de Deus para Hoje","1998-08-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17674.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/08/1998-08-20_O-tempo-de-fome-e-sede-de-ouvir-a-Palavra-de-Deus-para-hoje.mp3","",""
"pt","pt-19980819-2",1087,"Saudação aos Valentes","1998-08-19","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17670.png","","","",""
"pt","pt-19980819-4",1107,"Libertados pela Palavra de Deus","1998-08-19","4","https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17668.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/08/1998-08-19_Libertados-pela-Palavra-de-Deus.mp3","",""
"pt","pt-19980819-3",1095,"Deus na Boca dos Seus Profetas para Abençoar o Seu Povo","1998-08-19","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17669.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/08/1998-08-19_Deus-na-Boca-de-Seus-Profetas-para-abencoar-o-Seu-povo.mp3","",""
"pt","pt-19980818-2",1071,"Deus Liberta Seu Povo","1998-08-18","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17666.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/08/1998-08-19_Deus-Liberta-Seu-Povo.mp3","",""
"pt","pt-19980817-2",1044,"Sendo Unidos ao Seu Povo","1998-08-17","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17664.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/10/1998-08-17_Sendo-Unidos-ao-Seu-Povo.mp3","",""
"pt","pt-19980817-1",1058,"Dois Povos de Um mesmo Pai","1998-08-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_62193.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/10/1998-08-17_Dois-Povos-de-um-mesmo-Pai.mp3","",""
"pt","pt-19980816-3",1028,"A Mão Forte de Deus Estendida","1998-08-16","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17660.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/10/1998-08-16_A-Mao-Forte-de-Deus-Estendida.mp3","",""
"pt","pt-19980815-2",803,"A Liberdade Gloriosa do Terceiro Êxodo","1998-08-15","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17658-6.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/10/1998-08-15_A-Liberdade-Gloriosa-do-Terceiro-Exodo.mp3","",""
"pt","pt-19980814-3",840,"A Obra de Cristo desde o Gênesis até o Apocalipse","1998-08-14","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17653-4.png","","","",""
"pt","pt-19980814-1",839,"A Obra de Cristo no Último Dia","1998-08-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17655-2.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/08/1998-08-14_A-Obra-de-Cristo-no-Ultimo-Dia.mp3","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19980726-1",423,"O Servo Buscando Esposa para Seu Senhor","1998-07-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17623.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-26_o_servo_buscando_esposa_para_seu_senhor.pdf",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19980722-2",424,"Todos Seremos Provados","1998-07-22","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-1-3.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-22_todos_seremos_provados.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-22_todos_seremos_provados.pdf",""
"pt","pt-19980721-1",425,"Não Herdará o Filho da Serva com o Filho da Livre","1998-07-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17616.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-21_nao_herdara_o_filho_da_serva_com_o_filho_da_livre.pdf",""
"pt","pt-19980719-1",426,"A Lembrança que nos Mantém Alerta: Recordando a Mulher de Ló","1998-07-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17613.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-19_a_lembranca_que_nos_mantem_alerta_recordando_mulher_de_lo.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-19_a_lembranca_que_nos_mantem_alerta_recordando_mulher_de_lo.pdf",""
"pt","pt-19980718-2",427,"Abraão Intercede pela Sua Família","1998-07-18","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17609.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-18_abraao_intercede_pela_sua_familia.pdf",""
"pt","pt-19980715-",428,"A Circuncisão Atualizada","1998-07-15","","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-1.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-15_a_circuncisao_atualizada.pdf",""
"pt","pt-19980714-2",429,"O Resultado de uma Mudança de Nome","1998-07-14","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-1.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-14_o_resultado_de_uma_mudanca_de_nome.pdf",""
"pt","pt-19980713-1",430,"A Bênção de Melquisedeque","1998-07-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17602.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-13_a_bencao_de_melquisedeque.pdf",""
"pt","pt-19980710-2",431,"O Arco Íris, Sinal do Pacto de Deus","1998-07-10","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17597.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-10_o_arco_iris_sinal_do_pacto_de_deus.pdf",""
"pt","pt-19980709-1",433,"Um Juízo Universal através do Qual Deus nos Fala Hoje","1998-07-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17596.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-09_um_juizo_universal_atraves_do_qual_deus_nos_fala_hoje.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-09_um_juizo_universal_atraves_do_qual_deus_nos_fala_hoje.pdf",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19980708-2",435,"A Arca de Noé Atualizada","1998-07-08","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-08_a_arca_de_noe_atualizada.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-08_a_arca_de_noe_atualizada.pdf",""
"pt","pt-19980708-1",434,"A União que Produz Bons Resultados","1998-07-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-2-3.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-08_a_uniao_que_produz_bons_resultados.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-08_a_uniao_que_produz_bons_resultados.pdf",""
"pt","pt-19980707-1",436,"A Bênção de Caminhar com Deus","1998-07-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17592.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-07_a_bencao_de_caminhar_com_deus.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-07_a_bencao_de_caminhar_com_deus.pdf",""
"pt","pt-19980706-1",437,"A Trajetória do Nome de Deus","1998-07-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17590.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-06_a_trajetoria_do_nome_de_deus.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-06_a_trajetoria_do_nome_de_deus.pdf",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19980629-1",441,"Lutas e Vitórias do Messias","1998-06-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17582.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-29_lutas_e_vitorias_do_messias.pdf",""
"pt","pt-19980627-1",442,"Protegidos contra a astúcia da serpente","1998-06-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17580.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-27_protegidos_contra_astucia_da_serpente.pdf",""
"pt","pt-19980626-4",444,"A Criação da Esposa do Primeiro Adão e do Segundo Adão","1998-06-26","4","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17576.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-26_a_criacao_da_esposa_do_primeiro_adao_e_do_segundo_adao.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-26_a_criacao_da_esposa_do_primeiro_adao_e_do_segundo_adao.pdf",""
"pt","pt-19980626-1",443,"Privilégios e Deveres da Esposa de Cristo","1998-06-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17579.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-26_privilegios_e_deveres_da_esposa_de_cristo.pdf",""
"pt","pt-19980625-1",838,"O Ser Humano diante da Encruzilhada da Vida","1998-06-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17575-2.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/06/1998-06-25_O-ser-humano-diante-da-encruzilhada-da-vida.mp3","",""
"pt","pt-19980624-2",445,"A Bênção de Deus no Sétimo Dia","1998-06-24","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17572.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-24_a_bencao_de_deus_no_setimo_dia.pdf",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19980621-1",837,"A Ordem e Processo de Deus em Sua Obra desde o Princípio até o Fim","1998-06-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17569-2.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/06/1998-06-21_A-Ordem-e-Processo-de-Deus-em-Sua-Obra-desde-o-Principio-ate-o-Fim.mp3","",""
"pt","pt-19980620-2",448,"Cada Árvore Produzindo Segundo Sua Natureza","1998-06-20","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-20_cada_arvore_produzindo_segundo_sua_natureza.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-20_cada_arvore_produzindo_segundo_sua_natureza.pdf",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19980619-1",450,"A Trajetória da Vida","1998-06-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17566.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-19_a_trajetoria_da_vida.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-19_a_trajetoria_da_vida.pdf",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19980618-2",452,"O Espírito de Deus se movendo através do Tempo","1998-06-18","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-1-2.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-18_o_espirito_de_deus_se_movendo_atraves_do_tempo.pdf",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19980617-2",454,"A Palavra Criadora através de toda a Bíblia","1998-06-17","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17561.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-17_a_palavra_criadora_atraves_de_toda_biblia.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-17_a_palavra_criadora_atraves_de_toda_biblia.pdf",""
"pt","pt-19980617-1",453,"Deus, A Origem de Todas as Coisas Boas","1998-06-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17562.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-17_deus_origem_de_todas_coisas_boas.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-17_deus_origem_de_todas_coisas_boas.pdf",""
"pt","pt-19980616-1",455,"A Mensagem do Fim através de Toda a Bíblia","1998-06-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-3-1.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-16_a_mensagem_do_fim_atraves_de_toda_biblia.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-16_a_mensagem_do_fim_atraves_de_toda_biblia.pdf",""
"pt","pt-19980614-2",457,"O Sétimo Selo e a Conclusão do Programa de Deus","1998-06-14","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-2-2.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-14_o_setimo_selo_e_conclusao_do_programa_de_deus.pdf",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19981206-1",1049,"O Êxodo do Último Dia","1998-12-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17863.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/06/1998-12-06_O-Exodo-do-Ultimo-Dia.mp3","",""
"pt","pt-19980607-2",459,"Os Segredos do Sétimo Selo que serão Revelados","1998-06-07","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-4.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-07_os_segredos_do_setimo_selo_que_serao_revelados.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-07_os_segredos_do_setimo_selo_que_serao_revelados.pdf",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19980531-2",461,"O Sétimo Selo e o Dia e a Hora de Sua Vinda","1998-05-31","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17552.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-31_o_setimo_selo_e_o_dia_e_hora_de_sua_vinda.pdf",""
"pt","pt-19980531-1",460,"O Sétimo Selo e as Três Testemunhas","1998-05-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-57.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-31_o_setimo_selo_e_tres_testemunhas.pdf",""
"pt","pt-19980530-1",462,"O Entrelace entre Gentios e Judeus","1998-05-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17550.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-30_o_entrelace_entre_gentios_e_judeus.pdf",""
"pt","pt-19980527-1",463,"O Mistério do Sétimo Selo e o Grande Terremoto","1998-05-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17549.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-27_o_misterio_do_setimo_selo_e_o_grande_terremoto.pdf",""
"pt","pt-19980526-1",464,"O Sétimo Selo e as Orações dos Santos","1998-05-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17548.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-26_o_setimo_selo_e_oracoes_dos_santos.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-26_o_setimo_selo_e_oracoes_dos_santos.pdf",""
"pt","pt-19980525-1",465,"O Sétimo Selo e a Nova Ordem Sacerdotal","1998-05-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17547.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-25_o_setimo_selo_e_nova_ordem_sacerdotal.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-25_o_setimo_selo_e_nova_ordem_sacerdotal.pdf",""
"pt","pt-19980524-1",467,"A Autoridade Suprema do Sétimo Selo","1998-05-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-27-2.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-24_a_autoridade_suprema_do_setimo_selo.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-24_a_autoridade_suprema_do_setimo_selo.pdf",""
"pt","pt-19980524-2",466,"O Sétimo Selo e a Ilha de Patmos","1998-05-24","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-58.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-24_o_setimo_selo_e_ilha_de_patmos.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-24_o_setimo_selo_e_ilha_de_patmos.pdf",""
"pt","pt-19980523-2",468,"O Sétimo Selo e a Quarta Vigília","1998-05-23","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-29-2.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-23_o_setimo_selo_e_quarta_vigilia.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-23_o_setimo_selo_e_quarta_vigilia.pdf",""
"pt","pt-19980522-1",469,"Os Mistérios do Sétimo Selo","1998-05-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17541.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-22_os_misterios_do_setimo_selo.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-22_os_misterios_do_setimo_selo.pdf",""
"pt","pt-19980521-3",471,"Todas as Coisas são feitas novas com o Sétimo Selo","1998-05-21","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-30-2.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-21_todas_coisas_sao_feitas_novas_com_o_setimo_selo.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-21_todas_coisas_sao_feitas_novas_com_o_setimo_selo.pdf",""
"pt","pt-19980521-2",470,"Firmes com Sétimo Selo","1998-05-21","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-32-2.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-21_firmes_com_setimo_selo.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-21_firmes_com_setimo_selo.pdf",""
"pt","pt-19980520-3",473,"O Sétimo Selo Juntando os Escolhidos","1998-05-20","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-33-2.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-20_o_setimo_selo_juntando_os_escolhidos.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-20_o_setimo_selo_juntando_os_escolhidos.pdf",""
"pt","pt-19980520-2",472,"A Bênção do Sétimo Selo","1998-05-20","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-35-2.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-20_a_bencao_do_setimo_selo.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-20_a_bencao_do_setimo_selo.pdf",""
"pt","pt-19980519-3",475,"O Sétimo Selo: A Revelação do Ultimo Dia","1998-05-19","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-36-2.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-19_o_setimo_selo_revelacao_do_ultimo_dia.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-19_o_setimo_selo_revelacao_do_ultimo_dia.pdf",""
"pt","pt-19980519-2",474,"Crescendo com O Sétimo Selo","1998-05-19","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-38.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-19_crescendo_com_o_setimo_selo.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-19_crescendo_com_o_setimo_selo.pdf",""
"pt","pt-19980518-2",477,"Rompendo as Barreiras da Ignorância","1998-05-18","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-25-2.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-18_rompendo_barreiras_da_ignorancia.pdf",""
"pt","pt-19980518-1",476,"Rompendo as Barreiras no Amor Divino","1998-05-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-26-2.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-18_rompendo_barreiras_no_amor_divino.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-18_rompendo_barreiras_no_amor_divino.pdf",""
"pt","pt-19980517-2",478,"O Sétimo Selo e as Obras do Último Dia","1998-05-17","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-31-2.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-17_o_setimo_selo_e_obras_do_ultimo_dia.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-17_o_setimo_selo_e_obras_do_ultimo_dia.pdf",""
"pt","pt-19980516-1",479,"O Sétimo Selo e a Ira de Deus","1998-05-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17527.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-16_o_setimo_selo_e_ira_de_deus.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-16_o_setimo_selo_e_ira_de_deus.pdf",""
"pt","pt-19980515-1",480,"O Sétimo Selo e a Misericórdia de Deus","1998-05-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17526.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-15_o_setimo_selo_e_misericordia_de_deus.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-15_o_setimo_selo_e_misericordia_de_deus.pdf",""
"pt","pt-19980514-2",481,"O Sétimo Selo e o Povo Latino","1998-05-14","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-34-2.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-14_o_setimo_selo_e_o_povo_latino.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-14_o_setimo_selo_e_o_povo_latino.pdf",""
"pt","pt-19980513-1",482,"O Sétimo Selo e o Maná Escondido","1998-05-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17523.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-13_o_setimo_selo_e_o_mana_escondido.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-13_o_setimo_selo_e_o_mana_escondido.pdf",""
"pt","pt-19980511-2",484,"A Obra da Trombeta Final","1998-05-11","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17519.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-11_a_obra_da_trombeta_final.pdf",""
"pt","pt-19980511-1",483,"Os Negócios do Sétimo Selo","1998-05-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-42.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-11_os_negocios_do_setimo_selo.pdf",""
"pt","pt-19980510-1",488,"O Sétimo Selo e a Sétima Trombeta","1998-05-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17518.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-10_o_setimo_selo_e_setima_trombeta.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-10_o_setimo_selo_e_setima_trombeta.pdf",""
"pt","pt-19980510-4",487,"Ajudados pelo Sétimo Selo","1998-05-10","4","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-43.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-10_ajudados_pelo_setimo_selo.pdf",""
"pt","pt-19980510-3",486,"O Sétimo Selo e os Sete Trovões","1998-05-10","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-44.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-10_o_setimo_selo_e_os_sete_trovoes.pdf",""
"pt","pt-19980510-2",485,"O Sétimo Selo Pondo Fim aos Sistemas Mundiais","1998-05-10","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-37.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-10_o_setimo_selo_pondo_fim_aos_sistemas_mundiais.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-10_o_setimo_selo_pondo_fim_aos_sistemas_mundiais.pdf",""
"pt","pt-19980509-4",492,"Os Valentes do Sétimo Selo","1998-05-09","4","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-46.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-09_os_valentes_do_setimo_selo.pdf",""
"pt","pt-19980509-3",491,"Dedicados pelo Sétimo Selo","1998-05-09","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-48.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-09_dedicados_pelo_setimo_selo.pdf",""
"pt","pt-19980509-1",490,"O Sétimo Selo e a Transformação das Crianças","1998-05-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-49.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-09_o_setimo_selo_e_transformacao_das_criancas.pdf",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19980508-4",494,"O Sétimo Selo e a Nova Criação","1998-05-08","4","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-41.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-08_o_setimo_selo_e_nova_criacao.pdf",""
"pt","pt-19980508-2",493,"Nascendo com O Sétimo Selo","1998-05-08","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-45.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-08_nascendo_com_o_setimo_selo.pdf",""
"pt","pt-19980507-3",496,"O Poder do Sétimo Selo","1998-05-07","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-47.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-07_o_poder_do_setimo_selo.pdf",""
"pt","pt-19980507-2",495,"O Sétimo Selo Velado e Revelado em Sua Igreja","1998-05-07","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-50.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-07_o_setimo_selo_velado_e_revelado_em_sua_igreja.pdf",""
"pt","pt-19980506-1",497,"O Êxodo do Sétimo Selo","1998-05-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17502.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-06_o_exodo_do_setimo_selo.pdf",""
"pt","pt-19980505-2",500,"A Vitória do Sétimo Selo","1998-05-05","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17500.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-05_a_vitoria_do_setimo_selo.pdf",""
"pt","pt-19980505-1",499,"A Luz do Sétimo Selo","1998-05-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-51.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-05_a_luz_do_setimo_selo.pdf",""
"pt","pt-19980505-3",498,"A Fé do Sétimo Selo","1998-05-05","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-52.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-05_a_fe_do_setimo_selo.pdf",""
"pt","pt-19980504-4",503,"As Obras do Sétimo Selo","1998-05-04","4","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-55.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-04_as_obras_do_setimo_selo.pdf",""
"pt","pt-19980504-2",502,"A Missão e Bem-Aventurança dos Valentes do Filho de Davi","1998-05-04","2","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-04_a_missao_e_bem-aventuranca_dos_valentes_do_filho_de_davi.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-04_a_missao_e_bem-aventuranca_dos_valentes_do_filho_de_davi.pdf",""
"pt","pt-19980504-3",501,"A Mensagem do Sétimo Selo","1998-05-04","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-56.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-04_a_mensagem_do_setimo_selo.pdf",""
"pt","pt-19980503-3",506,"O Deus Todo-Poderoso Velado e Revelado em Seu Anjo Mensageiro","1998-05-03","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17492.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-03_o_deus_todo-poderoso_velado_e_revelado_em_seu_anjo_mensageiro.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-03_o_deus_todo-poderoso_velado_e_revelado_em_seu_anjo_mensageiro.pdf",""
"pt","pt-19980503-2",505,"O Caminho do Sétimo Selo sob o Mistério do Estabelecimento do Reino de Cristo","1998-05-03","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-53.jpg","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19980502-1",508,"A Juventude Resplandecendo no Último Dia","1998-05-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17491.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-02_a_juventude_resplandecendo_no_ultimo_dia.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-02_a_juventude_resplandecendo_no_ultimo_dia.pdf",""
"pt","pt-19980502-2",507,"As Crianças Crescendo com O Sétimo Selo","1998-05-02","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-54.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-02_as_criancas_crescendo_com_o_setimo_selo.pdf",""
"pt","pt-19980501-3",510,"O Anjo com o Evangelho Eterno","1998-05-01","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17487.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-01_o_anjo_com_o_evangelho_eterno.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-01_o_anjo_com_o_evangelho_eterno.pdf",""
"pt","pt-19980501-2",509,"O Anjo com o Selo do Deus Vivo","1998-05-01","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17488.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-01_o_anjo_com_o_selo_do_deus_vivo.pdf",""
"pt","pt-19980430-3",512,"O Livro Aberto no Céu","1998-04-30","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17485.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-30_o_livro_aberto_no_ceu.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-30_o_livro_aberto_no_ceu.pdf",""
"pt","pt-19980430-1",511,"A Luz do Sétimo Selo","1998-04-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17486.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-30_a_luz_do_setimo_selo.pdf",""
"pt","pt-19980429-3",514,"As Grandes Profecias da Bíblia","1998-04-29","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17482.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-29_as_grandes_profecias_da_biblia.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-29_as_grandes_profecias_da_biblia.pdf",""
"pt","pt-19980429-2",513,"O Chamado aos Escolhidos de Deus","1998-04-29","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17483.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-29_o_chamado_aos_escolhidos_de_deus.pdf",""
"pt","pt-19980427-6",515,"A Posição do Sétimo Selo no Templo de Deus","1998-04-27","6","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17474.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-27_a_posicao_do_setimo_selo_no_templo_de_deus.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-27_a_posicao_do_setimo_selo_no_templo_de_deus.pdf",""
"pt","pt-19980426-1",517,"O Sétimo Selo Identificado na Escritura","1998-04-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-26_o_setimo_selo_identificado_na_escritura.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-26_o_setimo_selo_identificado_na_escritura.pdf",""
"pt","pt-19980426-2",516,"Recolhendo com o Sétimo Selo","1998-04-26","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-1.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-26_recolhendo_com_o_setimo_selo.pdf",""
"pt","pt-19980425-1",519,"O Sétimo Selo e a Adoção dos Filhos de Deus","1998-04-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18-1.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-25_o_setimo_selo_e_adocao_dos_filhos_de_deus.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-25_o_setimo_selo_e_adocao_dos_filhos_de_deus.pdf",""
"pt","pt-19980425-2",518,"Produzindo Fruto ao Máximo com o Sétimo Selo","1998-04-25","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-22-1.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-25_produzindo_fruto_ao_maximo_com_o_setimo_selo.pdf",""
"pt","pt-19980423-1",520,"Perseverando até a Vitória Final","1998-04-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17467.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-23_perseverando_ate_vitoria_final.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-23_perseverando_ate_vitoria_final.pdf",""
"pt","pt-19980422-2",521,"O Reinado do Sétimo Selo e as Crianças","1998-04-22","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-25-1.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-22_o_reinado_do_setimo_selo_e_criancas.pdf",""
"pt","pt-19980421-3",523,"O Sétimo Selo e os Valentes do Filho de Davi","1998-04-21","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-26-1.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-21_o_setimo_selo_e_os_valentes_do_filho_de_davi.pdf",""
"pt","pt-19980421-2",522,"As Bênçãos do Sétimo Selo","1998-04-21","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-27-1.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-21_as_bencaos_do_setimo_selo.pdf",""
"pt","pt-19980420-3",525,"O Chamado do Sétimo Selo","1998-04-20","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-28.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-20_o_chamado_do_setimo_selo.pdf",""
"pt","pt-19980420-2",524,"Os Frutos do Novo Nascimento à Luz do Sétimo Selo","1998-04-20","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-29-1.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-20_os_frutos_do_novo_nascimento_luz_do_setimo_selo.pdf",""
"pt","pt-19980419-2",1620,"A Vitória Definitiva do Sétimo Selo sobre satanás","1998-04-19","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-36-1.jpg","","","",""
"pt","pt-19980419-2",528,"A Vitória Definitiva do Sétimo Selo sobre Satanás","1998-04-19","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-36-1.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-19_a_vitoria_definitiva_do_setimo_selo_sobre_satanas.pdf",""
"pt","pt-19980419-3",527,"O Atalaia do Último Dia com o Sétimo Selo em Sua Mão","1998-04-19","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-31-1.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-19_o_atalaia_do_ultimo_dia_com_o_setimo_selo_em_sua_mao.pdf",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19980418-2",530,"O Sétimo Selo e os Escolhidos do Último Dia","1998-04-18","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-32-1.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-18_o_setimo_selo_e_os_escolhidos_do_ultimo_dia.pdf",""
"pt","pt-19980418-1",529,"O Sétimo Selo Terminando de Construir o Corpo Místico de Cristo","1998-04-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-33-1.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-18_o_setimo_selo_terminando_de_construir_o_corpo_mistico_de_cristo.pdf",""
"pt","pt-19980417-1",836,"A Voz de Deus no Último Dia","1998-04-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17449-6.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/04/1998-04-17_A-Voz-de-Deus-no-Ultimo-Dia.mp3","",""
"pt","pt-19980417-3",531,"O Sétimo Selo e a Zona de Segurança dos Escolhidos do Último Dia","1998-04-17","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-34-1.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-17_o_setimo_selo_e_zona_de_seguranca_dos_escolhidos_do_ultimo_dia.pdf",""
"pt","pt-19980415-2",532,"O Mistério da Segunda Vinda de Cristo e o Destino da América do Norte no Último Dia","1998-04-15","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17443-2.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/04/1998-04-15_O-Misterio-da-Segunda-Vinda-de-Cristo-e-o-Destino-da-America-do-Norte-no-Ultimo-Dia.mp3","",""
"pt","pt-19980414-2",533,"O Sétimo Selo e a Nação Americana","1998-04-14","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17441.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-14_o_setimo_selo_e_nacao_americana.pdf",""
"pt","pt-19980412-1",2031,"O Mistério da Ressurreição do Senhor Jesus Cristo","1998-04-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17440.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/04/1998-04-12_O-Misterio-da-Ressurreicao-do-Senhor-Jesus-Cristo_1.mp3","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19980410-2",2024,"O Mistério da Morte do Senhor Jesus Cristo","1998-04-10","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17435.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/04/1998-04-10_O-Misterio-da-Morte-do-Senhor-Jesus-Cristo.mp3","",""
"pt","pt-19980405-1",834,"A Entrada Triunfal de Jesus em Jerusalém","1998-04-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17432-1.png","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19980405-1",535,"A Entrada Triunfal de Jesus em Jerusalém","1998-04-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17432-1.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/04/1998-04-05_A-Entrada-triunfal-de-Jesus-em-Jerusalem.mp3","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19980330-1",538,"O Rapto do Sétimo Selo","1998-03-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17429.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-30_o_rapto_do_setimo_selo.pdf",""
"pt","pt-19980329-2",540,"O Sétimo Selo e o Amor Divino","1998-03-29","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-29_o_setimo_selo_e_o_amor_divino.pdf",""
"pt","pt-19980329-1",539,"A Vitória do Sétimo Selo","1998-03-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-29_a_vitoria_do_setimo_selo.pdf",""
"pt","pt-19980328-2",541,"O Apocalipse e o Anjo de Jesus","1998-03-28","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-28_o_apocalipse_e_o_anjo_de_jesus.pdf",""
"pt","pt-19980327-1",542,"O Sétimo Selo e o Tempo de Misericórdia e Juízo","1998-03-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17424.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-27_o_setimo_selo_e_o_tempo_de_misericordia_e_juizo.pdf",""
"pt","pt-19980324-1",543,"Tempo de Despertar com a Mensagem do Sétimo Selo","1998-03-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17421.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-24_tempo_de_despertar_com_mensagem_do_setimo_selo.pdf",""
"pt","pt-19980323-2",833,"A Mensagem do Evangelho do Reino no Último Dia","1998-03-23","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17419-3.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/03/1998-03-23_A-Mensagem-do-Evangelho-do-Reino-no-Ultimo-Dia.mp3","",""
"pt","pt-19980322-2",545,"O Sétimo Selo e a Restauração do Povo Hebreu","1998-03-22","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-22.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-22_o_setimo_selo_e_restauracao_do_povo_hebreu.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-22_o_setimo_selo_e_restauracao_do_povo_hebreu.pdf",""
"pt","pt-19980322-1",544,"O Sétimo Selo e a Restauração de Todas as Coisas","1998-03-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-25.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-22_o_setimo_selo_e_restauracao_de_todas_coisas.pdf",""
"pt","pt-19980318-2",546,"O Sétimo Selo e o Sinal do Fim do Século","1998-03-18","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/05/youtube_thumbnail_17410.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-18_o_setimo_selo_e_o_sinal_do_fim_do_seculo.pdf",""
"pt","pt-19980317-2",547,"Os Mistérios Contidos no Sétimo Selo","1998-03-17","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-23.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-17_os_misterios_contidos_no_setimo_selo.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-17_os_misterios_contidos_no_setimo_selo.pdf",""
"pt","pt-19980315-1",549,"O Sétimo Selo e o Rapto da Igreja","1998-03-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-30.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-15_o_setimo_selo_e_o_rapto_da_igreja.pdf",""
"pt","pt-19980315-2",548,"O Sétimo Selo e a Terceira Etapa","1998-03-15","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17404.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-15_o_setimo_selo_e_terceira_etapa.pdf",""
"pt","pt-19980314-2",550,"O Sétimo Selo pondo Fim a Todas as Coisas","1998-03-14","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-26.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-14_o_setimo_selo_pondo_fim_todas_coisas.pdf",""
"pt","pt-19980313-2",551,"O Sétimo Selo e a Mensagem do Tempo do Fim","1998-03-13","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-27.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-13_o_setimo_selo_e_mensagem_do_tempo_do_fim.pdf",""
"pt","pt-19980311-2",553,"O Sétimo Selo e os Sete Trovões","1998-03-11","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-31.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-11_o_setimo_selo_e_os_sete_trovoes.pdf",""
"pt","pt-19980310-1",554,"O Sétimo Selo e o Avivamento da Igreja","1998-03-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17394.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-10_o_setimo_selo_e_o_avivamento_da_igreja.pdf",""
"pt","pt-19980308-1",556,"O Sétimo Selo e a Palavra Encarnada","1998-03-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-34.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-08_o_setimo_selo_e_palavra_encarnada.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-08_o_setimo_selo_e_palavra_encarnada.pdf",""
"pt","pt-19980308-2",555,"O Sétimo Selo e o Espírito de Moisés e Elias","1998-03-08","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-35.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-08_o_setimo_selo_e_o_espirito_de_moises_e_elias.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-08_o_setimo_selo_e_o_espirito_de_moises_e_elias.pdf",""
"pt","pt-19980307-1",557,"O Sétimo Selo e a Juventude do Último Dia","1998-03-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17389.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-07_o_setimo_selo_e_juventude_do_ultimo_dia.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-07_o_setimo_selo_e_juventude_do_ultimo_dia.pdf",""
"pt","pt-19980306-3",559,"O Sétimo Selo Buscando aos Escolhidos","1998-03-06","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-33.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-06_o_setimo_selo_buscando_aos_escolhidos.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-06_o_setimo_selo_buscando_aos_escolhidos.pdf",""
"pt","pt-19980306-1",558,"As Explosões do Sétimo Selo","1998-03-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17388.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-06_as_explosoes_do_setimo_selo.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-06_as_explosoes_do_setimo_selo.pdf",""
"pt","pt-19980305-3",561,"O Sétimo Selo Aberto ao Público","1998-03-05","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17383.png","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-05_o_setimo_selo_aberto_ao_publico.pdf",""
"pt","pt-19980305-1",560,"Os Frutos do Sétimo Selo","1998-03-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-36.jpg","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-05_os_frutos_do_setimo_selo.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-05_os_frutos_do_setimo_selo.pdf",""
"pt","pt-19980304-3",563,"Trabalhando sob o Sétimo Selo","1998-03-04","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17380.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-04_trabalhando_sob_o_setimo_selo.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-04_trabalhando_sob_o_setimo_selo.pdf",""
"pt","pt-19980304-2",562,"A Manifestação em Simplicidade do Sétimo Selo","1998-03-04","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17381.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-04_a_manifestacao_em_simplicidade_do_setimo_selo.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-04_a_manifestacao_em_simplicidade_do_setimo_selo.pdf",""
"pt","pt-19980302-1",564,"A Luz do Sétimo Selo","1998-03-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17377.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-02_a_luz_do_setimo_selo.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-02_a_luz_do_setimo_selo.pdf",""
"pt","pt-19980301-3",565,"A Vinda do Reino: O Tempo e o Território","1998-03-01","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17374-1.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/03/1998-03-01_A-Vinda-do-Reino-Tempo-e-o-Territorio.mp3","",""
"pt","pt-19980226-1",566,"O Sétimo Selo e a Obra de Reclamação","1998-02-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17368.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/02/1998-02-26_o_setimo_selo_e_obra_de_reclamacao.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/02/1998-02-26_o_setimo_selo_e_obra_de_reclamacao.pdf",""
"pt","pt-19980224-1",567,"O Sétimo Selo Juntando os Escolhidos de Deus","1998-02-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17365.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/02/1998-02-24_o_setimo_selo_juntando_os_escolhidos_de_deus.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/02/1998-02-24_o_setimo_selo_juntando_os_escolhidos_de_deus.pdf",""
"pt","pt-19980220-2",568,"O Sétimo Selo: Uma Porta Aberta no Céu","1998-02-20","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-1-1.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/02/1998-02-20_o_setimo_selo_uma_porta_aberta_no_ceu.pdf",""
"pt","pt-19980219-2",831,"A Porta da Casa de Deus","1998-02-19","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17357-2.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/02/1998-02-19_A-Porta-da-Casa-de-Deus.mp3","",""
"pt","pt-19980217-3",569,"O Sétimo Selo: A Vinda do Filho do Homem com Seus Anjos","1998-02-17","3","","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/02/1998-02-17_o_setimo_selo_vinda_do_filho_do_homem_com_seus_anjos.pdf",""
"pt","pt-19980216-2",570,"O Sétimo Selo: A Segunda Vinda de Cristo","1998-02-16","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-5.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/02/1998-02-16_o_setimo_selo_segunda_vinda_de_cristo.pdf",""
"pt","pt-19980215-1",572,"O Mistério do Livro dos Sete Selos","1998-02-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/02/1998-02-15_o_misterio_do_livro_dos_sete_selos.pdf",""
"pt","pt-19980215-2",571,"A Liderança do Sétimo Selo","1998-02-15","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/02/1998-02-15_a_lideranca_do_setimo_selo.pdf",""
"pt","pt-19980213-3",574,"O Sétimo Selo e a Fé de Rapto","1998-02-13","3","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17345.png","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/02/1998-02-13_o_setimo_selo_e_fe_de_rapto.mp3","https://www.carpa.com/sites/default/files/messages/pt-br/1998/02/1998-02-13_o_setimo_selo_e_fe_de_rapto.pdf",""
"pt","pt-19980213-2",573,"O Sétimo Selo no Último Dia","1998-02-13","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10.jpg","","","",""
"pt","pt-19980210-1",575,"Os Segredos Fechados no Sétimo Selo","1998-02-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13.jpg","","","",""
"pt","pt-19980209-1",576,"O Mistério da Evangelização do Último Dia","1998-02-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17338-3.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/02/1998-02-09_O-Misterio-da-Evangelizacao-do-Ultimo-Dia.mp3","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19980207-1",579,"A Obra da Colheita no Fim do Século","1998-02-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17335-2.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/02/1998-02-07_A-Obra-Colheita-no-Fim-do-Século.mp3","",""
"pt","pt-19980206-1",580,"O Deus de Abraão","1998-02-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17334-1.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/02/1998-02-06_O-Deus-de-Abraao.mp3","",""
"pt","pt-19980201-2",582,"O Tempo para a Transformação","1998-02-01","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-2.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/02/1998-02-01_o_tempo_para_transformacao.pdf",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19980130-1",583,"O Lugar de Segurança Hoje","1998-01-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17331-1.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/01/1998-01-30_O-Lugar-de-Seguranca-hoje.mp3","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-20260530-undefined",,,,,"","","","",""
"pt","pt-19971228-2",1202,"O Rapto da Igreja","1997-12-28","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17304.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1997/12/1997-12-28_O-Rapto-da-Igreja.mp3","",""
"pt","pt-19971228-1",1179,"O Novo Templo","1997-12-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17305.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/12/1997-12-28_O-Novo-Templo.mp3","",""
"pt","pt-19971226-1",1168,"A Vida do Precursor e Sua Mensagem","1997-12-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17303.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/12/1997-12-26_A-Vida-do-Precursor-e-Sua-Mensagem.mp3","",""
"pt","pt-19971224-1",1149,"O Mistério da Data do Nascimento de Jesus","1997-12-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17302.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1997/12/1998-12-24_O-Misterio-da-Data-de-Nascimento-de-Jesus.mp3","",""
"pt","pt-19971221-2",1235,"O Mistério da Ceia das Bodas do Cordeiro","1997-12-21","2","https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17300.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1997/12/1997-12-21_O-Misterio-da-Ceia-das-Bodas-do-Cordeiro.mp3","",""
"pt","pt-19971221-1",1240,"O Mistério das Bodas do Cordeiro","1997-12-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17301.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1997/12/1997-12-21_O-Misterio-das-Bodas-do-Cordeiro.mp3","",""
"pt","pt-19971220-1",1249,"O Mistério do Vestido das Bodas do Cordeiro","1997-12-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17299-2.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2022/01/1997-12-20_O-Misterio-do-Vestido-das-Bodas-do-Cordeiro.mp3","",""
"pt","pt-19971217-1",1255,"O Mistério do Fim do Século e as coisas que Acontecerão no Último Dia","1997-12-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17298.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1997/12/1997-12-17_O-Misterio-fo-Fim-do-Seculo-e-as-coisas-que-acontecerao-no-ultimo-dia.mp3","",""
"pt","pt-19971214-1",2058,"Coisas que só Podem se Cumprir no Último Dia","1997-12-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17296.png","","https://lgccc-conferences.ewr1.vultrobjects.com/1997/1997-12-14_Coisas_que_so_podem_se_cumprir_no_ultimo_dia.mp3","",""
"pt","pt-19971207-2",2009,"O Mistério do Ano do Jubileu","1997-12-07","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17289.png","","","",""
"pt","pt-19971205-2",1954,"A Vinda do FIlho do Homem no Último Dia","1997-12-05","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17286.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/02/1997-12-05_A-Vinda-do-FIlho-do-Homem-no-Ultimo-Dia.mp3","",""
"pt","pt-19971202-1",1943,"O Mistério da Congregação dos Primogênitos Inscritos no Céu","1997-12-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17281.png","","","",""
"pt","pt-19971201-1",1933,"O Mistério da Luz que Dissipa as Trevas","1997-12-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17280.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/12/1997-12-01-O-Misterio-da-Luz-que-dissipa-as-trevas.mp3","",""
"pt","pt-19971130-2",1922,"O Mistério da Vinda do Filho do Homem com Seus Anjos no Ocidente","1997-11-30","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17278.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/01/1997-11-30_O-Misterio-da-Vinda-do-Filho-do-Homem-com-Seus-Anjos-no-Ocidente.mp3","",""
"pt","pt-19971126-2",1912,"O Mistério dos Quatro Tipos de Terra","1997-11-26","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17272.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/01/1997-11-26_O-Misterio-dos-Quatro-Tipos-de-Terra.mp3","",""
"pt","pt-19971125-1",1892,"O Mistério do Pai da Criação","1997-11-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17271.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/01/1997-11-25_O-Misterio-do-Pai-da-Criacao.mp3","",""
"pt","pt-19971125-2",1902,"O Mistério da Terra que é Abençoada","1997-11-25","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17270.png","","","",""
"pt","pt-19971124-1",1887,"O Mistério do Ocidente","1997-11-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17269.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/01/1997-11-24_O-Misterio-do-Ocidente.mp3","",""
"pt","pt-19971123-2",1866,"O Mistério de Gabriel e Miguel no Último Dia","1997-11-23","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17267.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/11/1997-11-23_O-Misterio-de-Gabriel-e-Miguel-no-Ultimo-Dia.mp3","",""
"pt","pt-19971123-1",2736,"O Mistério de Moises, Elias e Jesus","1997-11-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/05/youtube_thumbnail_17268.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/05/1997-11-23-O-Misterio-de-Moises-Elias-e-Jesus.mp3","",""
"pt","pt-19971122-3",1982,"O Mistério dos Ceifeiros do Último Dia","1997-11-22","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17264.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/11/1997-11-22_O-Misterio-dos-Ceifeiros-do-Ultimo-Dia.mp3","",""
"pt","pt-19971122-4",1999,"O Mistério da Obra-Prima de Deus","1997-11-22","4","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17263.png","","","",""
"pt","pt-19971121-1",1986,"O Mistério da Vinda do Senhor como O Sol de Justiça","1997-11-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17262.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/11/1997-11-21_O-Misterio-da-Vinda-do-Senhor-como-O-Sol-de-Justica.mp3","",""
"pt","pt-19971120-1",1854,"O Mistério de Sua Vinda como Ladrão na Noite","1997-11-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17261.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/12/1997-11-20_O-Misterio-de-Sua-Vinda-como_Ladrao-na-Noite.mp3","",""
"pt","pt-19971119-1",1972,"O Mistério dos Anjos da Colheita","1997-11-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17260.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/03/1997-11-18_O-Misterio-dos-Anjos-da-Colheita.mp3","",""
"pt","pt-19971118-1",1977,"O Mistério da Plenitude dos Gentios","1997-11-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17259.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/03/1997-11-18_O-Misterio-da-Plenitude-dos-Gentios.mp3","",""
"pt","pt-19971117-1",1842,"O Mistério da Transformação e o Arrebatamento dos Escolhidos de Deus","1997-11-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17258.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/11/1997-11-17_O-Misterioda-Transformacao-e-o-Arrebatamento-dos-Escolhidos-de-Deus.mp3","",""
"pt","pt-19971116-1",1966,"O Mistério da Vinda do Senhor nas Nuvens","1997-11-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17257.png","","","",""
"pt","pt-19971115-3",1957,"O Mistério das Três Bíblias","1997-11-15","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17252.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/02/1997-11-15_O-Misterio-das-Tres-Biblias.mp3","",""
"pt","pt-19971114-4",1947,"O Ministério do Sol a Lua e as Estrelas Marcando o Tempo","1997-11-14","4","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17248.png","","","",""
"pt","pt-19971113-1",1939,"O Mistério das Vigílias","1997-11-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17247.png","","","",""
"pt","pt-19971112-1",1927,"O Mistério das Dimensões","1997-11-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17246.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/01/1997-11-12_O-Misterio-das-Dimensoes.mp3","",""
"pt","pt-19971109-2",1827,"Abrindo o Entendimento com as Escrituras","1997-11-09","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17243.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/12/1997-11-09_Abrindo-o-Entendimento-com-as-Escrituras.mp3","",""
"pt","pt-19971109-1",1962,"Discernindo O Pensamento de Deus no Último Dia","1997-11-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17244.png","","","",""
"pt","pt-19971108-1",1562,"O Mistério das Duas Consciências Juntas","1997-11-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17241.png","","","",""
"pt","pt-19971108-2",1815,"O Misterio de: sendo Ensinados por Deus","1997-11-08","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17240.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/11/1997-11-08_O-Misterio-de-sendo-ensinados-por-Deus.mp3","",""
"pt","pt-19971107-1",1801,"O Trigo Maduro","1997-11-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17239.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/11/1997-11-07_O-Trigo-Maduro.mp3","",""
"pt","pt-19971106-2",2067,"O Mistério das Recompensas","1997-11-06","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17235.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/11/1997-11-06_O-Misterio-das-Recompensas.mp3","",""
"pt","pt-19971106-1",1789,"O Mistério das Recompensas aos Vencedores","1997-11-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17236.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/11/1997-11-06_O-Misterio-das-Recompensas-aos-Vencedores.mp3","",""
"pt","pt-19971104-1",1917,"O Mistério da Glória de Deus Manifestada","1997-11-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17231.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/01/1997-11-04_O-Misterio-da-Gloria-de-Deus-Manifestada.mp3","",""
"pt","pt-19971103-3",1897,"O Mistério da Simplicidade Divina","1997-11-03","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17228.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/01/1997-11-03_O-Misterio-da-Simplicidade-divina.mp3","",""
"pt","pt-19971102-1",1906,"O Mistério dos Sete Selos de Apocalipse, Capítulo 5","1997-11-02","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17227.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/01/1997-11-02_O_Misterio-dos-Sete-Selos-de-Apocalipse-Capitulo-5.mp3","",""
"pt","pt-19971031-1",1762,"Profecias Cumpridas no Último Dia","1997-10-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17223.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/10/1997-10-31_Profecias-cumpridas-no-ultimo-dia_1.mp3","",""
"pt","pt-19971031-2",1775,"Sob as Asas dos Querubins","1997-10-31","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17222.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/10/1997-10-31_Sob-as-Asas-dos-Dois-Querubins.mp3","",""
"pt","pt-19971031-3",1882,"O Mistério da Semente da Palavra Criadora","1997-10-31","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17221.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/01/1997-10-31_O-Misterio-da-Semente-da-Palavra_Criadora.mp3","",""
"pt","pt-19971030-2",1795,"O Mistério da Oitava Estrela que não se vê em Apocalipse 1:20","1997-10-30","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17219.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/11/1997-10-30_O-Misterio-da-Oitava-Estrela-que-nao-se-ve-em-apocalipse-1-20.mp3","",""
"pt","pt-19971029-2",1754,"O Mistério da Piedade","1997-10-29","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17217.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/10/1997-10-29_O-Misterio-da-Piedade.mp3","",""
"pt","pt-19971029-1",1877,"O Mistério do Primogênito do Céu","1997-10-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17218.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/12/1997-10-29_O-Misterio-do-Primogenito-do-Ceu.mp3","",""
"pt","pt-19971028-2",1719,"A Fonte da Água da Vida","1997-10-28","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_64046.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/10/1997-10-28_A-Fonte-da-Agua-da-Vida.mp3","",""
"pt","pt-19971026-2",1724,"O Mistério dos Dois Querubins de Ouro e os Dois Querubins de Oliveira","1997-10-26","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17212.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/10/1997-10-26_O-Misterio-dos-dois-querubins-de-ouro-eos-dois-querubins-de-oliveira.mp3","",""
"pt","pt-19971025-1",1708,"O Mistério da Arca do Pacto e Seu Conteúdo","1997-10-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_64021.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/09/1997-10-25_O-Misterio-da-Arca-do_pacto-e-Seu-Conteudo.mp3","",""
"pt","pt-19971021-4",1698,"O Mistério do Anjo como Evangelho Eterno","1997-10-21","4","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17201.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/09/1997-10-21_O-Misterio-do-Anjo-com-o-Evangelho-Eterno.mp3","",""
"pt","pt-19971020-1",1859,"O Mistério do Reino Milenial","1997-10-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17200.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/12/1997-10-20_O-Misterio-do-Reino-Milenial.mp3","",""
"pt","pt-19971019-2",2724,"O Mistério dos Nomes Escritos no Céu","1997-10-19","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/05/youtube_thumbnail_17198.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/10/1997-10-19-o_misterio_dos_nomes_escritos_no_ceu.mp3","",""
"pt","pt-19971017-2",1686,"O Mistério dos Sete Trovões de Apocalipse, Capítulo 10","1997-10-17","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17194.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/10/1997-10-17_O-Misterio-dos-Trovoes-de-Apocalipse-10.mp3","",""
"pt","pt-19971016-2",1673,"O Mistério da Quarta Vigília","1997-10-16","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17192.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/09/1997-10-16_O-Misterio-da-Quarta-Vigilia.mp3","",""
"pt","pt-19971015-2",1662,"O Mistério do Novo Corpo","1997-10-15","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17190.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/09/1997-10-15_O-Misterio-do-Novo-Corpo.mp3","",""
"pt","pt-19971014-2",1846,"O Mistério dos Tempos e as Épocas sob O Poder do Pai","1997-10-14","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/QmIi8R7v-youtube_thumbnail_17188.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/10/1997-10-14_O-Misterio-dos-Tempos-e-as-Estacoes-sob-o-Poder-do-Pai.mp3","",""
"pt","pt-19971014-1",1832,"O Mistério das Dimensões","1997-10-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17189.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/12/1997-10-14_O-Misterio-das-Dimensoes.mp3","",""
"pt","pt-19971013-2",1820,"O Mistério da Meia Hora de Silêncio no Céu","1997-10-13","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/YEZDfuU7-youtube_thumbnail_17186.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/11/1997-10-13_O-Misterio-da-meia-hora-de-silencio-no-ceu.mp3","",""
"pt","pt-19971012-2",2083,"O Mistério do Anjo com o Selo do Deus Vivo","1997-10-12","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/05/youtube_thumbnail_17184.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/10/1997-10-12_O-Misterio-do-Anjo-com-O-Selo-do-Deus-Vivo.mp3","",""
"pt","pt-19971010-1",1808,"O Mistério da Fé dos Valentes do Filho de Davi","1997-10-10","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17182.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/11/1997-10-10_O-Misterio-da-Fe-dos-Valentes-do-Filho-de-Davi_1.mp3","",""
"pt","pt-19971009-1",1782,"Os Mistérios já Cumpridos, Os Mistérios em Cumprimento e os Mistérios que se Cumprirão","1997-10-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17181.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/11/1997-10-09_Os-Misterios-ja-Cumpridos-os-Misterios-em-Cumprimento-e-os-Misterios-que-se-Cumprirao.mp3","",""
"pt","pt-19971008-1",1733,"Os Mistérios de Deus que hoje estão se cumprindo","1997-10-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17180.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/10/1997-10-08_Os-Misterios-de-Deus-que-hoje-estao-se-cumprindo.mp3","",""
"pt","pt-19971005-1",1741,"O Mistério do que João ouviu, mas não pôde Escrever","1997-10-05","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17179.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/10/1997-10-05_O-Misterio-do-que-Joao-Ouviu-mas-nao-pode-Escrever-low.mp3","",""
"pt","pt-19971005-2",1768,"O Mistério do Livro que João Comeu","1997-10-05","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17178.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/10/1997-10-05_O-Misterio-do-Livro-que-Joao-Comeu.mp3","",""
"pt","pt-19971003-1",1749,"O Mistério do Reino de Deus que Todos os Escolhidos devem Conhecer","1997-10-03","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17177.png","","","",""
"pt","pt-19970928-1",1714,"O Mistério das Bênçãos da Primogenitura","1997-09-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17176.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/10/1997-09-28_O-Misterio-das-Bencaos-da-Primogenitura.mp3","",""
"pt","pt-19970924-1",1703,"O Mistério da Palavra Profética","1997-09-24","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17173.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/09/1997-09-24_O-Misterio-da-Palavra-Profetica.mp3","",""
"pt","pt-19970922-1",1690,"O Mistério da Colheita do Fim do Século","1997-09-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17171.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/09/1997-09-22_O-Misterio-da-Colheita-no-Fim-do-Seculo.mp3","",""
"pt","pt-19970921-2",1646,"O Mistério do Oriente e do Ocidente","1997-09-21","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17169.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/09/1997-09-21_O-Misterio-do-Oriente-e-do-Ocidente.mp3","",""
"pt","pt-19970920-1",2053,"O Mistério da Fé","1997-09-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17168.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/04/1997-09-20-o-misterio-da-fe.mp3","",""
"pt","pt-19970920-2",1678,"O Mistério do Sétimo Selo","1997-09-20","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17167.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/09/1997-09-20_O-Misterio-do-Setimo-Selo.mp3","",""
"pt","pt-19970919-1",1635,"O Mistério do Cordeiro e o Leão","1997-09-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17166.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/08/1997-09-19_O-Misterio-do-Cordeiro-e-o-Leao.mp3","",""
"pt","pt-19970918-1",1624,"A Jerusalém Celestial e a Jerusalém Terrena","1997-09-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17165.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/09/1997-09-18_A-Jerusalem-Celestial-e-a-Jerusalem-Terrena.mp3","",""
"pt","pt-19970917-1",1667,"O Mistério da Igreja do Senhor Jesus Cristo","1997-09-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17164.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/09/1997-09-17_O-Misterio-da-Igreja-do-Senhor-Jesus-Cristo.mp3","",""
"pt","pt-19970916-1",1652,"O Mistério do Cordeiro com os Sete Chifres e os Sete Olhos","1997-09-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17163.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/08/1997-09-16_O-Misterio-do-Cordeiro-com-os-sete-chifres-e-sete-olhos.mp3","",""
"pt","pt-19970915-1",1641,"O Mistério da Palavra de Deus: Alimento ao seu Devido Tempo","1997-09-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17162.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/08/1997-09-15_O-Misterio-da-palavra-de-Deus-Alimento-ao-Seu-Devido-Tempo.mp3","",""
"pt","pt-19970914-2",1610,"O Mistério da Palavra de Bênção e Juízo","1997-09-14","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17160.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/08/1997-09-14_O-Misterio-da-Palavra-de-Bencao-e-Juizo.mp3","",""
"pt","pt-19970914-1",1596,"O Mistério da Encarnação da Palavra","1997-09-14","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17161.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/07/1997-09-14_O-Misterio-da-Encarnacao-da-Palavra.mp3","",""
"pt","pt-19970912-2",1630,"O Mistério do Trigo e o Joio","1997-09-12","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17156.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/08/1997-09-12_O-Misterio-do-Trigo-e-o-Joio.mp3","",""
"pt","pt-19970911-1",1615,"O Mistério das Virgens Insensatas e as Virgens Prudentes","1997-09-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17155.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/08/1997-09-11_O-Misterio-das-Virgens-Insensatas-e-as-virgens-prudentes.mp3","",""
"pt","pt-19970910-3",1601,"O Mistério da Plenitude dos Gentios","1997-09-10","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17152.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/07/1997-09-10_O-Misterio-da-Plenitude-dos-Gentios.mp3","",""
"pt","pt-19970909-1",1584,"O Mistério do Ano do Jubileu","1997-09-09","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17151.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/09/1997-09-09_O-Misterio-do-Ano-do-Jubileu.mp3","",""
"pt","pt-19970908-1",1590,"O Mistério dos Negócios do Pai","1997-09-08","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17150.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/07/1997-09-08_O-Misterio-dos-Negocios-do-Pai.mp3","",""
"pt","pt-19970907-2",1575,"O Mistério do Dia da Expiação","1997-09-07","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17148.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/09/1997-09-07_O-Misterio-do-Dia-da-Expiacao_1.mp3","",""
"pt","pt-19970907-1",1564,"O Mistério do Sangue de Cristo","1997-09-07","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17149.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/11/1997-09-07_O-Misterio-do-Sangue-de-Cristo.mp3","",""
"pt","pt-19970906-1",1549,"O Mistério da Redenção","1997-09-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17147.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-09-06_O-Misterio-da-Redencao.mp3","",""
"pt","pt-19970905-2",1523,"O Mistério do Reino de Deus Vindo em Poder e Glória","1997-09-05","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17145.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-09-05_O-Misterio-do-Reino-de-Deus-Vindo-em-Poder-e-Gloria.mp3","",""
"pt","pt-19970904-1",1535,"O Mistério da Restauração de Todas as Coisas","1997-09-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17144.png","","","",""
"pt","pt-19970902-2",1509,"O Mistério das Parábolas","1997-09-02","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17140.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/kbTQgYXK-1997-09-02_O-Misterio-das-Parabolas.mp3","",""
"pt","pt-19970901-2",1497,"O Mistério da Profecia Cumprida","1997-09-01","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17138.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-09-01_O-Misterio-da-Profecia-Cumprida.mp3","",""
"pt","pt-19970831-1",2039,"O Mistério da Nova Criação","1997-08-31","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17136.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/08/1997-08-31_O-Misterio-da-Nova-Criacao.mp3","",""
"pt","pt-19970830-1",1556,"O Mistério da Ordem de Melquisedeque","1997-08-30","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17134.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/08/1997-08-30_O-Misterio-da-Ordem-de-Melquisedeque.mp3","",""
"pt","pt-19970830-2",1571,"O Mistério da Árvore da Vida e da Árvore do Conhecimento do Bem e do Mal","1997-08-30","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17135.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/08/1997-08-30_O-Misterio-da-Arvore-da-Vida-e-da-Arvore-do-Conhecimento-do-bem-e-do-mal_1.mp3","",""
"pt","pt-19970829-3",2013,"O Mistério das Sete Estrelas e dos Sete Candeeiros","1997-08-29","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17131.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/03/1997-08-7_O-Misterio-das-Sete-Estrelas-e-os-Sete-Candeeiros.mp3","",""
"pt","pt-19970829-1",1531,"O Alimento Espiritual a Seu Devido Tempo","1997-08-29","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17133.png","","","",""
"pt","pt-19970829-2",1543,"O Mistério do Rapto dos Escolhidos","1997-08-29","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17132.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-29_O-Misterio-do-Rapto-dos-Escolhidos.mp3","",""
"pt","pt-19970828-3",1518,"O Mistério da Ressurreição e os Quarenta Dias","1997-08-28","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17129.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08_28_O-Misterio-da-Ressurreicao-e-os-quarenta-dias.mp3","",""
"pt","pt-19970827-2",1503,"O Mistério da Transformação","1997-08-27","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17127.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-27_O-Misterio-da-Transformacao.mp3","",""
"pt","pt-19970827-1",2003,"O Avivamento trazido pela Revelação","1997-08-27","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17126.png","","http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/08/1997-08-27_O-Avivamento-Trazido-pela-Revelacao.mp3","",""
"pt","pt-19970826-1",1492,"O Mistério do Maná Escondido","1997-08-26","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17125.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-26_O-Misterio-do-Mana-Escondido.mp3","",""
"pt","pt-19970825-2",1994,"O Mistério da Vinda do Filho do Homem","1997-08-25","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17124.png","","","",""
"pt","pt-19970824-3",1484,"O Misterio do Cavalo Branco do Apocalipse","1997-08-24","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17121.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-24_O-Misterio-do-Cavalo-Branco-do-Apocalipse.mp3","",""
"pt","pt-19970824-2",1470,"Os Segredos Sob O Sétimo Selo","1997-08-24","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17122.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-24_Os-Segredos-sob-o-Setimo-Selo_1.mp3","",""
"pt","pt-19970823-",2078,"Instrui a Criança em sua Carreira","1997-08-23","","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/05/youtube_thumbnail_17117.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/05/1997-08-23_Instrui-a-crianca-em-sua-carreira.mp3","",""
"pt","pt-19970823-3",1477,"O Mistério do Anjo de Jesus no Último Dia","1997-08-23","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_63432.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-23_O-Misterio-do-Anjo-de-Jesus-no-Ultimo-Dia.mp3","",""
"pt","pt-19970822-1",1465,"O Mistério do Recolhimento dos Escolhidos","1997-08-22","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17116.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-22_O-Misterio-do-Recolhimento-dos-Escolhidos.mp3","",""
"pt","pt-19970821-1",1457,"O Mistério da Trombeta do Jubileu","1997-08-21","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17114.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-21_O-Misterio-da-Trombeta-do-Jubileu_1.mp3","",""
"pt","pt-19970821-2",1452,"O Mistério do Monte da Transfiguração","1997-08-21","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17115.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-21_O-Misterio-do-Monte-da-Transfiguracao_1.mp3","",""
"pt","pt-19970820-1",1446,"O Mistério do Livro Aberto","1997-08-20","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17112.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-20_O-Misterio-do-Livro-Aberto.mp3","",""
"pt","pt-19970819-1",1435,"O Mistério do Sétimo Selo","1997-08-19","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17110.png","","","",""
"pt","pt-19970818-1",1412,"O Maior Mistério do Reino dos Céus","1997-08-18","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17108.png","","","",""
"pt","pt-19970818-2",1441,"O Dois Maiores Mistérios do Reino dos Céus","1997-08-18","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17109.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-18_Os-Dois-Maiores-Misterios-do-Reino-dos-Ceus.mp3","",""
"pt","pt-19970817-1",1402,"O Mistério da Justiça Divina no Plano de Redenção","1997-08-17","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17107.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-17_O-Misterio-da-Justica-Divina-no-Plano-de-Redencao.mp3","",""
"pt","pt-19970816-1",2758,"Saudação aos Ministros: A Casa de Deus","1997-08-16","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_17102.png","","","",""
"pt","pt-19970816-3",1424,"O Mistério do Anjo de Jesus","1997-08-16","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17103.png","","","",""
"pt","pt-19970815-4",1389,"O Mistério dos Sinais no Céu Revelando o Senhor Jesus Cristo no Último Dia","1997-08-15","4","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17098.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-15_O-Misterio-dos-Sinais-no-Ceu-REvelando-o-Senhor-Jesus-Cristo-no-Ultimo-Dia.mp3","",""
"pt","pt-19970815-2",1431,"O Mistério do Cumprimento da Ordem da Ressurreição esperada pelos que Serão Transformados","1997-08-15","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17101.png","","","",""
"pt","pt-19970814-2",1372,"O Mistério dos Sinais no Céu","1997-08-14","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17097.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-14_O-Misterio-dos-Sinais-no-Ceu.mp3","",""
"pt","pt-19970813-1",1396,"O Mistério da Glória de Deus Manifestada em Seu Templo","1997-08-13","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17093.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-13_O-Misterio-da-Gloria-de-Deus-Manifestada-em-Seu-Templo.mp3","",""
"pt","pt-19970813-2",1407,"O Mistério da Trombeta que Soa no Último Dia","1997-08-13","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17095.png","","","",""
"pt","pt-19970813-3",1420,"O Mistério da Segunda Vinda de Cristo com Seus Anjos no Último Dia","1997-08-13","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17094.png","","","",""
"pt","pt-19970812-3",1366,"O Mistério da Voz Fiel de Jesus Cristo em Carne Humana Hoje","1997-08-12","3","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17091.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-12_O-Misterio-da-Voz-Fiel-de-Jesus-Cristo-em-Carne-Humana.mp3","",""
"pt","pt-19970812-1",1353,"O Mistério do Cumprimento da Profecia","1997-08-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17089.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-12_O-Misterio-do-Cumprimento-da-Profecia.mp3","",""
"pt","pt-19970812-4",1381,"O Mistério da Grande Voz como de Trombeta no Último Dia","1997-08-12","4","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17090.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-12_O-Misterio-da-Grande-Voz-como-de-Trombeta-no-Ultimo-Dia.mp3","",""
"pt","pt-19970811-2",1340,"O Mistério da Redenção e a Graça para sermos Adotados","1997-08-11","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17088.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-11_O-Misterio-da-Redencao-e-a-Graca-para-ser-Adotados.mp3","",""
"pt","pt-19970811-1",1359,"O Mistério da Mensagem do Anjo de Jesus Cristo em Simplicidade","1997-08-11","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17087.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-11_O-Misterio-da-Mensagem-do-Anjo-de-Jesus-Cristo-em-Simplicidade.mp3","",""
"pt","pt-19970810-4",1346,"O Mistério do Universo em Vaso de Barro Hoje","1997-08-10","4","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17084.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-10_O-Misterio-do-Universo-em-um-vaso-de-Barro-Hoje.mp3","",""
"pt","pt-19970810-2",1332,"Os Segredos que Deus Guardou do Mistério do Sétimo Selos","1997-08-10","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17086.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-10_Os-Segredos-que-Deus-Guardou-do-Mistério-do-Sétimo-Selo.mp3","",""
"pt","pt-19970809-2",1312,"O Mistério dos Sete Trovões para o Despertamento Final, a Transformação e o Rapto","1997-08-09","2","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/02/youtube_thumbnail_17081.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-09_O-Misterio-dos-Sete-Trovoes-para-o-Despertamento-Final-a-Transformacao-e-o-Rapto.mp3","",""
"pt","pt-19970809-5",1324,"O Mistério do Maná Escondido dado pelo Pastor Fiel e Prudente","1997-08-09","5","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17078.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-09_O-Misterio-do-mana-escondido-dado-pelo-Pastor-Fiel-e-Prudente.mp3","",""
"pt","pt-19970808-3",1301,"O Mistério do Cavaleiro Fiel e Verdadeiro","1997-08-08","3","https://ewr1.vultrobjects.com/lgcc-conferences/2022/02/youtube_thumbnail_17074.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1997/08/1997-08-08_O-Misterio-do-Cavaleiro-Fiel-e-Verdadeiro.mp3","",""
"pt","pt-19970807-4",1318,"A Nuvem Teofânica e Misteriosa Carregada de Bênçãos para os Primogênitos","1997-08-07","4","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/02/youtube_thumbnail_17070.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-07_A-Nuvem-Teofanica-e-Misteriosa-Carregada-de-Bencaos-para-os-Primogenitos.mp3","",""
"pt","pt-19970807-2",1278,"O Mistério da Verdade e a Orientação do Espírito Santo no Último Mensageiro","1997-08-07","2","https://ewr1.vultrobjects.com/lgcc-conferences/2022/02/youtube_thumbnail_17072.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2022/02/1997-08-07_O-Misterio-da-Verdade-e-a-orientacao-do-Espirito_santo-no-ultimo-mensageiro.mp3","",""
"pt","pt-19970807-3",1293,"O Mistério do Chamado do Senhor Jesus Cristo e Sua Esposa, desde Sua Casa, no Último Dia","1997-08-07","3","https://ewr1.vultrobjects.com/lgcc-conferences/2022/02/youtube_thumbnail_17071.png","","https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1997/08/1997-08-07_O-Misterio-do-Chamado-do-Senhor-Jesus-Cristo-e-Sua-Esposa-desde-Sua-Casa-no-Ultimo-Dia.mp3","",""
"pt","pt-19970806-3",1266,"O Mistério da Revelação para compreender os Mistérios do Reino dos Céus","1997-08-06","3","https://ewr1.vultrobjects.com/lgcc-conferences/2022/02/youtube_thumbnail_17067.png","","","",""
"pt","pt-19970806-4",1285,"O Mistério da Manifestação dos Ministérios de Moisés e Elias no Último Dia","1997-08-06","4","https://ewr1.vultrobjects.com/lgcc-conferences/2022/02/youtube_thumbnail_17066.png","","http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-06_O-Misterio-da-Manifestacao-dos-Ministerios-de-Moises-e-Elias-no-Ultimo-Dia.mp3","",""
"pt","pt-19970725-1",1262,"Os Mistérios do Reino dos Céus sendo Revelados à Igreja do Senhor Jesus Cristo","1997-07-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2022/02/youtube_thumbnail_17056.png","","","",""
"pt","pt-19970628-1",2046,"O Vento Forte do Oriente","1997-06-28","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17005.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/04/1997-06-28_O-Vento-Forte-do-Oriente.mp3","",""
"pt","pt-19970601-1",2073,"O Sócio de Deus do Último Dia","1997-06-01","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_16975.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/04/1997-06-01_O-Socio-de-Deus-do-Ultimo-Dia.mp3","",""
"pt","pt-19970404-1",2719,"Os Filhos de Deus no Fim Tempo","1997-04-04","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/05/youtube_thumbnail_16909.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/05/1997-04-04_Os-Filhos-de-Deus-no-Fim-Tempo.mp3","",""
"pt","pt-19970323-1",2018,"A Entrada Triunfal do Filho de Davi em Jerusalém","1997-03-23","1","https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_16900.png","","","",""
"pt","pt-19970215-1",2786,"A Árvore Frutífera","1997-02-15","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_16851.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/06/1997-02-15-1-A_Arvore_Frutifera.mp3","",""
"pt","pt-19970214-2",2741,"A Última Bênção de Deus para esta Geração","1997-02-14","2","https://ewr1.vultrobjects.com/lgcc-conferences/2023/05/VS3eZlH3-youtube_thumbnail_16849.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/05/1997-02-14_A-Ultima-bencao-de-Deus-para-esta-Geracao.mp3","",""
"pt","pt-19970209-2",2774,"O Ministério na Casa do Senhor Jesus Cristo no Último Dia","1997-02-09","2","https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_16841.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/02/1997-02-09-O_Ministerio_na_Casa_do_Senhor_Jesus_Cristo_no_Ultimo_Dia-low.mp3","",""
"pt","pt-19970206-1",2731,"A América Latina e o Lugar Santíssimo do Templo de Deus","1997-02-06","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/05/youtube_thumbnail_16837.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/05/1997-02-06-a_america_latina_e_o_lugar_santissimo_do_templo_de_deus.mp3","",""
"pt","pt-19970112-2",2753,"Tempo de Jubileu na Casa de Deus","1997-01-12","2","https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_16824.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/06/1997-01-12_Tempo_de_Jubileu_na_Casa_de_Deus.mp3","",""
"pt","pt-19980312-2",552,"O Sétimo Selo e a Mensagem do Evangelho do Reino","1998-03-12","2","https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg","","","https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-12_o_setimo_selo_e_mensagem_do_evangelho_do_reino.pdf",""
"pt","pt-19980127-2",2762,"Os Pescadores de Deus no Último Dia","1998-01-27","2","https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_17330.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/06/1998-01-27-os_pescadores_de_Deus-no_ultimo_dia.mp3","",""
"pt","pt-19980125-1",2768,"O Mistério do Cumprimento da Segunda Vinda de Cristo","1998-01-25","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_17325.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/06/1998-01-25-1-o_misterio_do_cumprimento_da_segunda_vinda_de_Cristo.mp3","",""
"pt","pt-19971012-1",2781,"O Mistério do Quinto Cavalo do Apocalipse","1997-10-12","1","https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_17185.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/06/1997-10-12-1-O_Misterio_do_Quinto_Cavalo_do_Apocalipse-low.mp3","",""
"pt","pt-19970406-2",2748,"A Segunda Vinda do Senhor Jesus Cristo à Terra no Último Dia - Parte II","1997-04-06","2","https://ewr1.vultrobjects.com/lgcc-conferences/2023/05/youtube_thumbnail_16914.png","","https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/05/1997-04-06_A-Segunda-Vinda-do-Senhor-Jesus-Cristo-a-Terra-no-Ultimo-Dia-parte2.mp3","",""
1 locale code id title date activity thumbnail video audio booklet simple
2 pt pt-20180601-1 20 Introdução ao Tema: A Liderança do Sétimo Selo 2018-06-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/11/youtube_thumbnail_22030.png https://www.carpa.com/sites/default/files/messages/pt-br/2018/06/2018-06-01_introducao_ao_tema_lideranca_do_setimo_selo.pdf
3 pt pt-20180407-1 21 Jóvens Lutando pela Maior Bênção de Deus 2018-04-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-177.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2018/04/2018-04-07_jovens_lutando_pela_maior_bencao_de_deus.pdf
4 pt pt-20180304-1 22 Introdução ao tema: Um Toque de Fé para Salvação - Domingo 2018-03-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-158-1.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2018/03/2018-03-04_introducao_ao_tema_um_toque_de_fe_para_salvacao_-_domingo.pdf
5 pt pt-20171222-1 23 Introdução ao tema: Melquisedeque, O Rei de Paz 2017-12-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-23.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2017/12/2017-12-22_introducao_ao_tema_melquisedeque_o_rei_de_paz.pdf
6 pt pt-20171215-1 24 O Enviado do Pai 2017-12-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2017/12/2017-12-15_o_enviado_do_pai.pdf
7 pt pt-20170924-1 25 Introdução ao Tema: Elias no Monte de Deus 2017-09-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp https://www.carpa.com/sites/default/files/messages/pt-br/2017/09/2017-09-24_introducao_ao_tema_elias_no_monte_de_deus.pdf
8 pt pt-20170917-1 26 Introdução ao Tema: O Tempo de Colher 2017-09-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp https://www.carpa.com/sites/default/files/messages/pt-br/2017/09/2017-09-17_introducao_ao_tema_o_tempo_de_colher.pdf
9 pt pt-20170910-1 27 Palavras de Saudação, Domingo, 10 de setembro de 2017 - Dr. William Soto Santiago 2017-09-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp https://www.carpa.com/sites/default/files/messages/pt-br/2017/09/2017-09-10_palavras_de_saudacao_domingo_10_de_setembro_de_2017_-_dr_william_soto_santiago.pdf
10 pt pt-20170903-1 28 Palavras de Saudação, domingo 3 de setembro de 2017 - Dr. William Soto Santiago 2017-09-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp https://www.carpa.com/sites/default/files/messages/pt-br/2017/09/2017-09-03_palavras_de_saudacao_domingo_3_de_setembro_de_2017_-_dr_william_soto_santiago.pdf
11 pt pt-20170827-1 29 Palavras de Saudação, domingo 27 de agosto de 2017 - Dr. William Soto Santiago 2017-08-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp https://www.carpa.com/sites/default/files/messages/pt-br/2017/08/2017-08-27_palavras_de_saudacao_domingo_27_de_agosto_de_2017_-_dr_william_soto_santiago.pdf
12 pt pt-20170813-1 30 Palavras de Saudação - Dr. William Soto Santiago 2017-08-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp https://www.carpa.com/sites/default/files/messages/pt-br/2017/08/2017-08-13_palavras_de_saudacao_-_dr_william_soto_santiago.pdf
13 pt pt-20170514-1 31 A Fé Baseada nas Promessas Divinas 2017-05-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2017/05/photo_2025-05-23_11-22-11.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2017/05/2017-05-14_a_fe_baseada_nas_promessas_divinas.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/2017/05/2017-05-14_a_fe_baseada_nas_promessas_divinas.pdf
14 pt pt-20170507-1 32 Buscando a Deus no Tempo em que a Pessoa Vive 2017-05-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-3-2.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2017/05/2017-05-07_buscando_deus_no_tempo_em_que_pessoa_vive.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/2017/05/2017-05-07_buscando_deus_no_tempo_em_que_pessoa_vive.pdf
15 pt pt-20170428-1 33 O Regresso ao Éden - Introdução 2017-04-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-41.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2017/04/2017-04-28_o_regresso_ao_eden_-_introducao.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/2017/04/2017-04-28_o_regresso_ao_eden_-_introducao.pdf
16 pt pt-20170423-1 34 A Festa de Pentecoste 2017-04-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-46.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2017/04/2017-04-23_a_festa_de_pentecoste.mp3
17 pt pt-20170416-2 36 Atividade de Santa Ceia e Lava Pés 2017-04-16 2 https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp https://www.carpa.com/sites/default/files/messages/pt-br/2017/04/2017-04-16_atividade_de_santa_ceia_e_lava_pes.mp3
18 pt pt-20170416-1 35 A ressurreição de Jesus Cristo Conforme à Escritura 2017-04-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-51.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2017/04/2017-04-16_a_ressurreicao_de_jesus_cristo_conforme_escritura.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/2017/04/2017-04-16_a_ressurreicao_de_jesus_cristo_conforme_escritura.pdf
19 pt pt-20170414-1 37 A Crucificação e Ressurreição de Jesus Cristo conforme a Escritura - Introdução 2017-04-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-43.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2017/04/2017-04-14_a_crucificacao_e_ressurreicao_de_jesus_cristo_conforme_escritura_-_introducao.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/2017/04/2017-04-14_a_crucificacao_e_ressurreicao_de_jesus_cristo_conforme_escritura_-_introducao.pdf
20 pt pt-20170409-1 38 Israel, Eis que o teu Rei Vem a Ti 2017-04-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-43.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2017/04/2017-04-09_israel_eis_que_o_teu_rei_vem_ti.mp3
21 pt pt-20170407-1 39 Israel, Eis que o teu Rei Vem a Ti - Introdução 2017-04-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-41.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2017/04/2017-04-07_israel_eis_que_o_teu_rei_vem_ti_-_introducao.mp3
22 pt pt-20170402-1 40 A Trajetória do Ministério de Elias por Cinco Vezes 2017-04-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21952-1.png
23 pt pt-20170331-1 41 A Trajetória do Ministério de Elias por Cinco Vezes - Introdução 2017-03-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/04/youtube_thumbnail_21951.png https://www.carpa.com/sites/default/files/messages/pt-br/2017/03/2017-03-31_a_trajetoria_do_ministerio_de_elias_por_cinco_vezes_-_introducao.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/2017/03/2017-03-31_a_trajetoria_do_ministerio_de_elias_por_cinco_vezes_-_introducao.pdf
24 pt pt-20170326-1 42 Um Profeta como Moisés 2017-03-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_21950.png https://www.carpa.com/sites/default/files/messages/pt-br/2017/03/2017-03-26_um_profeta_como_moises.mp3
25 pt pt-20170324-1 43 Um Profeta como Moisés - Introdução 2017-03-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/10/youtube_thumbnail_21949.png https://www.carpa.com/sites/default/files/messages/pt-br/2017/03/2017-03-24_um_profeta_como_moises_-_introducao.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/2017/03/2017-03-24_um_profeta_como_moises_-_introducao.pdf
26 pt pt-20170319-1 44 O Chamado Final das Doze Tribos de Israel 2017-03-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-50.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2017/03/2017-03-19_o_chamado_final_das_doze_tribos_de_israel.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/2017/03/2017-03-19_o_chamado_final_das_doze_tribos_de_israel.pdf
27 pt pt-20170318-1 45 O Maior Sinal da Terra: Um Profeta 2017-03-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2017/03/2017-03-18_o_maior_sinal_da_terra_um_profeta.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/2017/03/2017-03-18_o_maior_sinal_da_terra_um_profeta.pdf
28 pt pt-20170317-1 46 O Chamado Final das Doze Tribos de Israel - Introdução 2017-03-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-42.jpg
29 pt pt-20170310-1 47 José Diante do Povo para Preservação de Vida - Introdução 2017-03-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2017/03/2017-03-10_jose_diante_do_povo_para_preservacao_de_vida_-_introducao.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/2017/03/2017-03-10_jose_diante_do_povo_para_preservacao_de_vida_-_introducao.pdf
30 pt pt-20170303-1 48 A Promessa de Deus com Abraão - Introdução 2017-03-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/06/youtube_thumbnail_21941-1.png https://www.carpa.com/sites/default/files/messages/pt-br/2017/03/2017-03-03_a_promessa_de_deus_com_abraao_-_introducao.mp3
31 pt pt-20170226-1 49 Os Anjos Trazendo a Revelação dos Sete Selos 2017-02-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_21940-1.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2017/02/2017-02-16-WSS-Os_Anjos_Trazendo_a_Revelacao_dos_Sete_Selos.mp3
32 pt pt-20170224-1 50 Os Anjos Trazendo a Revelação dos Sete Selos - Introdução 2017-02-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-39.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2017/02/2017-02-24_os_anjos_trazendo_revelacao_dos_sete_selos_-_introducao.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/2017/02/2017-02-24_os_anjos_trazendo_revelacao_dos_sete_selos_-_introducao.pdf
33 pt pt-20170219-1 51 Davi, O Oitavo Filho de Jessé, Ungido como Rei de Israel 2017-02-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2017/02/vlcsnap-2025-10-24-09h38m38s251.png
34 pt pt-20170217-1 52 Davi, O Oitavo Filho de Jessé, Ungido como Rei de Israel - Introdução 2017-02-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-49.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2017/02/2017-02-17_davi_o_oitavo_filho_de_jesse_ungido_como_rei_de_israel_-_introducao.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/2017/02/2017-02-17_davi_o_oitavo_filho_de_jesse_ungido_como_rei_de_israel_-_introducao.pdf
35 pt pt-20170210-1 53 O Tempo para o Estabelecimento do Reino do Messias na Terra - Introdução 2017-02-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-41.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2017/02/2017-02-10_o_tempo_para_o_estabelecimento_do_reino_do_messias_na_terra_-_introducao.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/2017/02/2017-02-10_o_tempo_para_o_estabelecimento_do_reino_do_messias_na_terra_-_introducao.pdf
36 pt pt-20170205-1 54 A Revelação de Deus Através dos Profetas 2017-02-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-39.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2017/02/2017-02-05_a_revelacao_de_deus_atraves_dos_profetas.mp3
37 pt pt-20170203-1 55 A Revelação de Deus através dos Profetas - Introdução 2017-02-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-37.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2017/02/2017-02-03_a_revelacao_de_deus_atraves_dos_profetas_-_introducao.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/2017/02/2017-02-03_a_revelacao_de_deus_atraves_dos_profetas_-_introducao.pdf
38 pt pt-20170129-1 56 O Regresso dos Cidadãos Celestiais à Casa do Pai 2017-01-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/PSeTvB0e-youtube_thumbnail_21931.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2017/01/2017-01-27-WSS-O_regresso_dos_cidadaos_celestiais_a_casa_do_Pai.mp3
39 pt pt-20170127-1 57 O Regresso dos Cidadãos Celestiais à Casa do Pai - Introdução 2017-01-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-38.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2017/01/2017-01-27_o_regresso_dos_cidadaos_celestiais_casa_do_pai_-_introducao.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/2017/01/2017-01-27_o_regresso_dos_cidadaos_celestiais_casa_do_pai_-_introducao.pdf
40 pt pt-20170122-1 58 O Primeiro Molho Movido 2017-01-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-43.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2017/01/2017-01-22_o_primeiro_molho_movido.mp3
41 pt pt-20170120-1 59 O Primeiro Molho Movido - Introdução 2017-01-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-48.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2017/01/2017-01-20_o_primeiro_molho_movido_-_introducao.pdf
42 pt pt-20170115-1 60 A Semente Real de Abraão 2017-01-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/WIZGzS9x-youtube_thumbnail_21927.png
43 pt pt-20170113-1 61 A Semente Real de Abraão - Introdução 2017-01-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/2gwWOr6O-youtube_thumbnail_21926.png https://www.carpa.com/sites/default/files/messages/pt-br/2017/01/2017-01-13_a_semente_real_de_abraao_-_introducao.pdf
44 pt pt-20170108-1 62 A Pedra com um Nome Novo 2017-01-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_21925.png https://www.carpa.com/sites/default/files/messages/pt-br/2017/01/2017-01-08_a_pedra_com_um_nome_novo.pdf
45 pt pt-20170106-1 63 A Pedra com um Nome Novo - Introdução 2017-01-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/rk7nsZAV-youtube_thumbnail_21924.png
46 pt pt-20170101-1 64 O Ano Novo 2017-01-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/07/youtube_thumbnail_21923.png
47 pt pt-20161231-1 65 Palavras de Despedida de Ano 2016 2016-12-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-47.jpg
48 pt pt-20161223-1 66 Nasceu o Rei - Introdução 2016-12-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/1L9bwRPl-youtube_thumbnail_21917.png https://www.carpa.com/sites/default/files/messages/es/2016/12/2016-12-23_ha_nacido_el_rey_-_introduccion.mp3 https://www.carpa.com/sites/default/files/messages/es/2016/12/2016-12-23_ha_nacido_el_rey_-_introduccion.pdf
49 pt pt-20161218-1 67 O Trono e Reino do Filho de Davi 2016-12-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-27.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2016/12/2016-12-18_o_trono_e_reino_do_filho_de_davi.mp3
50 pt pt-20161204-1 68 O Trono da Graça 2016-12-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-21.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2016/12/2016-12-04_o_trono_da_graca.mp3
51 pt pt-20161202-1 69 O Trono de Graça - introdução 2016-12-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-9.jpg
52 pt pt-20161119-1 70 Não Temas nem Desmaies 2016-11-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/05/youtube_thumbnail_21906-1.png
53 pt pt-20161118-1 71 Seguindo aquele que Conhece o Caminho à Terra Prometida - Introdução 2016-11-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-38.jpg
54 pt pt-20161111-1 72 O Vale de Sombra e de Morte - Introdução 2016-11-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-34.jpg
55 pt pt-20161106-1 73 Elias no Monte de Deus 2016-11-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/KNLBnduu-youtube_thumbnail_21900.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2016/11/2016-11-06-WSS-Elias_no_Monte_de_Deus.mp3
56 pt pt-20161104-1 74 Elias no Monte de Deus - Introdução 2016-11-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_21898.png
57 pt pt-20161030-1 75 O Tempo de Colher 2016-10-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-29.jpg
58 pt pt-20161028-1 76 O Tempo da Colheita - Introdução 2016-10-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-36.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2016/10/2016-10-28_o_tempo_da_colheita_-_introducao.pdf
59 pt pt-20161023-1 77 A Luz Resplandece nas Trevas 2016-10-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-41.jpg
60 pt pt-20161021-1 78 A Luz Resplandece nas Trevas - Introdução 2016-10-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-45.jpg
61 pt pt-20161016-1 79 A Espada na Mão e na Boca do Filho do Homem 2016-10-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-37.jpg
62 pt pt-20161014-1 80 A Espada na Mão e na Boca do Filho do Homem - Introdução 2016-10-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-37.jpg
63 pt pt-20161009-1 81 Aquele que Anuncia a Paz 2016-10-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-35.jpg
64 pt pt-20161002-1 82 O Espírito do Senhor Levantando Bandeira contra o inimigo 2016-10-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-33.jpg
65 pt pt-20160930-1 83 O Espírito do Senhor Levantando Bandeira contra o inimigo - Introdução 2016-09-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/05/youtube_thumbnail_21886.png
66 pt pt-20160925-1 84 O Povo Regozijado de que Seus Nomes estão Escritos nos Céus 2016-09-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-40.jpg
67 pt pt-20160923-1 85 O Povo Regozijado de que Seus Nomes estão Escritos nos Céus - Introdução 2016-09-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-44.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2016/09/2016-09-23_o_povo_regozijado_de_que_seus_nomes_estao_escritos_nos_ceus_-_introducao.pdf
68 pt pt-20160918-1 86 O Maior Sinal na Terra: Um Profeta 2016-09-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21883.png
69 pt pt-20160916-1 87 O Maior Sinal na Terra: Um Profeta - Introdução 2016-09-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-36.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2016/09/2016-09-16_o_maior_sinal_na_terra_um_profeta_-_introducao.pdf
70 pt pt-20160911-1 88 Melquisedeque, O Rei de Paz 2016-09-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-34.jpg https://www.carpa.com/sites/default/files/messages/es/2016/09/2016-09-11_melquisedec_el_rey_de_paz.pdf
71 pt pt-20160909-1 89 Melquisedeque ,O Rei de Paz - Introdução 2016-09-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-32.jpg
72 pt pt-20160904-1 90 As Bênçãos Contidas na Primogenitura 2016-09-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/08/youtube_thumbnail_21879-1.png
73 pt pt-20160902-1 92 A Palavra Encarnada - Saudação Telefônica 2016-09-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-24.jpg https://www.carpa.com/sites/default/files/messages/es/2016/09/2016-09-02_la_palabra_encarnada_-_saludo_telefonico.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/2016/09/2016-09-02_a_palavra_encarnada_-_saudacao_telefonica.pdf
74 pt pt-20160902-2 91 As Bênçãos Contidas na Primogenitura - Introdução 2016-09-02 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_21878.png https://www.carpa.com/sites/default/files/messages/pt-br/2016/09/2016-09-02_as_bencaos_contidas_na_primogenitura_-_introducao.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/2016/09/2016-09-02_as_bencaos_contidas_na_primogenitura_-_introducao.pdf
75 pt pt-20160828-1 93 As Duas Varas de ISrael na Mão do Filho do Homem 2016-08-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-39.jpg
76 pt pt-20160826-1 94 As Duas Varas de Israel na Mão do Filho do Homem - Introdução 2016-08-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-43.jpg
77 pt pt-20160821-1 95 A Igreja de Deus Recebendo por Fé o Poder de Deus 2016-08-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/06/youtube_thumbnail_21873.png
78 pt pt-20160819-1 96 A Igreja de Deus Recebendo por Fé O Poder de Deus - Introdução 2016-08-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-35.jpg
79 pt pt-20160814-1 97 Os Arcanjos Gabriel e Miguel Atuando nas Mudanças de Reino 2016-08-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-31.jpg
80 pt pt-20160812-1 98 Os Arcanjos Gabriel e Miguel Atuando nas Mudanças de Reino - Introdução 2016-08-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-24.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2016/08/2016-08-12_os_arcanjos_gabriel_e_miguel_atuando_nas_mudancas_de_reino_-_introducao.pdf
81 pt pt-20160807-1 99 A Luz da Tarde 2016-08-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-23.jpg
82 pt pt-20160805-1 100 A Luz da Tarde - Introdução 2016-08-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-20.jpg
83 pt pt-20160730-1 101 Entrelinhas 2016-07-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-30.jpg
84 pt pt-20160729-1 102 O Cumprimento Pleno das Profecias para o Último Dia - Introdução 2016-07-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-22.jpg
85 pt pt-20160722-1 103 As Obras de Jesus Cristo no Meio de Sua Igreja - Introdução 2016-07-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-19.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2016/07/2016-07-22_as_obras_de_jesus_cristo_no_meio_de_sua_igreja_-_introducao.pdf
86 pt pt-20160715-1 104 A Graça do Senhor Jesus Cristo Derramada aos Seus Filhos - Introdução 2016-07-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-8.jpg
87 pt pt-20160708-1 105 Identificando o Fim do Tempo - Introdução 2016-07-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/10/youtube_thumbnail_21853.png
88 pt pt-20160703-1 106 Prosseguindo para a Meta 2016-07-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-25-5.jpg
89 pt pt-20160701-1 107 Prosseguindo para a Meta - Introdução 2016-07-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-26-5.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2016/07/2016-07-01_prosseguindo_para_meta_-_introducao.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/2016/07/2016-07-01_prosseguindo_para_meta_-_introducao.pdf
90 pt pt-20160617-1 108 Peça ao Pai em Seu Nome, e Ele nos Recompensará - Introdução 2016-06-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-38.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2016/06/2016-06-17_peca_ao_pai_em_seu_nome_e_ele_nos_recompensara_-_introducao.pdf
91 pt pt-20160611-1 109 Quando o Onipotente Fala, Milagres Acontecem 2016-06-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/07/youtube_thumbnail_21844.png
92 pt pt-20160605-1 110 A Mensagem do Rei 2016-06-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_21842.png https://www.carpa.com/sites/default/files/messages/pt-br/2016/06/2016-06-03_a_mensagem_do_rei.pdf
93 pt pt-20160527-1 111 O Tempo de Lutar para Sentar no Trono ao Filho de Davi - Introdução 2016-05-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-41.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2016/05/2016-05-27_o_tempo_de_lutar_para_sentar_no_trono_ao_filho_de_davi_-_introducao.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/2016/05/2016-05-27_o_tempo_de_lutar_para_sentar_no_trono_ao_filho_de_davi_-_introducao.pdf
94 pt pt-20160522-1 112 A Sinfônica de Deus 2016-05-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-33.jpg https://www.carpa.com/sites/default/files/messages/es/2016/05/2016-05-22_la_sinfonica_de_dios.mp3
95 pt pt-20160520-1 113 A Sinfônica de Deus - Introdução 2016-05-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-33.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2016/05/2016-05-20_a_sinfonica_de_deus_-_introducao.pdf
96 pt pt-20160515-1 114 Obedecendo a Voz do Enviado em Cada Tempo 2016-05-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/3ZTVz7Ok-youtube_thumbnail_21836.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2016/05/2016-05-15-WSS-Obedecendo_a_Voz_do_Enviado_em_Cada_Tempo.mp3
97 pt pt-20160513-1 115 Obedecendo a Voz do Enviado em Cada Tempo - Introdução 2016-05-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/INnRyrrU-youtube_thumbnail_21835.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2016/05/2016-05-13-WSS-Obedencendo_a_Voz_do_enviado_em_cada_Tempo.mp3
98 pt pt-20160508-1 116 Jesus Cristo, a Esperença de Glória 2016-05-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-22.jpg
99 pt pt-20160506-1 117 Jesus Cristo, A Esperança de Glória - Introdução 2016-05-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18-18.jpg
100 pt pt-20160430-1 118 Chuva de Bênção pela Palavra de Elias no Último Dia 2016-04-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/05/youtube_thumbnail_21830.png
101 pt pt-20160429-1 119 Israel, O Relógio de Deus 2016-04-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-32.jpg
102 pt pt-20160422-1 120 O Semeador, Semeando a Semente da Palavra - Introdução 2016-04-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-21.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2016/04/2016-04-22_o_semeador_semeando_semente_da_palavra_-_introducao.pdf
103 pt pt-20160416-1 121 Damas, Jóvens e Adultos Trabalhando e Colaborando na Grande Equipe de Deus 2016-04-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-20.jpg
104 pt pt-20160415-1 122 A Glória da Shekinah no Lugar Santíssimo - Introdução 2016-04-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21823.png
105 pt pt-20160408-1 123 Unânimes e Juntos no Aposento Alto, recebendo o Espírito Santo - Introdução 2016-04-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-7.jpg
106 pt pt-20160401-1 124 Os Quarenta Dias de Jesus na Terra, Antes do Rapto - Introdução 2016-04-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-23-6.jpg
107 pt pt-20170101-2 125 Atividade de Santa Ceia e Lava Pés 2017-01-01 2 https://ewr1.vultrobjects.com/lgcc-conferences/2017/08/Wd9Ni7DR-lgccc_default_thumbnail.webp
108 pt pt-20160325-1 126 Jesus Cristo na Cruz Coroando Seu Ministério 2016-03-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-29.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2016/03/2016-03-25_jesus_cristo_na_cruz_coroando_seu_ministerio.pdf
109 pt pt-20160320-1 127 O Vencedor se sentando no Trono de Davi 2016-03-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-26.jpg
110 pt pt-20160317-1 128 O Vencedor se sentando no Trono de Davi - Introdução 2016-03-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-20.jpg
111 pt pt-20160315-1 129 A Vinda da Pedra Angular e a Destruição do Reino dos Gentios 2016-03-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-19.jpg
112 pt pt-20160304-1 130 A Pedra com Um Nome Novo - Introdução 2016-03-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-23-5.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2016/03/2016-03-04_a_pedra_com_um_nome_novo_-_introducao.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/2016/03/2016-03-04_a_pedra_com_um_nome_novo_-_introducao.pdf
113 pt pt-20160226-1 131 O Sinal do Filho do Homem no Céu - Introdução 2016-02-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-27.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2016/02/2016-02-26_o_sinal_do_filho_do_homem_no_ceu_-_introducao.flac
114 pt pt-20160219-1 132 O Livro Selado com Sete Selos - Introdução 2016-02-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/04/youtube_thumbnail_21799.png https://www.carpa.com/sites/default/files/messages/pt-br/2016/02/2016-02-19_o_livro_selado_com_sete_selos_-_introducao.pdf
115 pt pt-20160214-1 133 A Família da Fé 2016-02-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-40.jpg
116 pt pt-19941030-2 134 A Nova Jerusalém 1994-10-30 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2016/02/2016-02-07_a_nova_jerusalem.pdf
117 pt pt-20160131-1 135 O Anjo Selando as Tribos de Israel 2016-01-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-35.jpg
118 pt pt-20160121-1 136 Damas Servindo a Deus com Gratidão 2016-01-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-29.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2016/01/2016-01-21_damas_servindo_deus_com_gratidao.pdf
119 pt pt-20160117-1 137 Eu Estou Convosco todos os dias até o Fim do Mundo 2016-01-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/07/youtube_thumbnail_21792.png
120 pt pt-20160115-1 139 Discernindo as Coisas Espirituais 2016-01-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/08/youtube_thumbnail_21790.png
121 pt pt-20160115-2 138 Eu Estou Convosco todos os dias, até o Fim do Mundo - Introdução 2016-01-15 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-28.jpg
122 pt pt-20160108-1 140 O Sétimo Selo e o fim dos Sistemas Mundiais - Introdução 2016-01-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-18.jpg
123 pt pt-20160103-1 141 Será Conforme a Visão Divina 2016-01-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2016/01/2025-03-15-13.00.41.jpg
124 pt pt-20151227-1 142 Onde está o Rei dos Judeus que Nasceu? 2015-12-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-26.jpg
125 pt pt-20151225-1 143 Onde está o Rei dos Judeus, que Nasceu? - Introdução 2015-12-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-32.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2015/12/2015-12-25_onde_esta_o_rei_dos_judeus_que_nasceu_-_introducao.pdf
126 pt pt-20151220-1 144 O Enviado do Pai 2015-12-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-34.jpg
127 pt pt-20151219-1 145 O Tutor: O Espírito Santo 2015-12-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-38.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2015/12/2015-12-19_o_tutor_o_espirito_santo.pdf
128 pt pt-20151218-1 146 O Enviado do Pai - Introdução 2015-12-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-28.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2015/12/2015-12-18_o_enviado_do_pai_-_introducao.pdf
129 pt pt-20151211-1 147 A Sabedoria de Deus - Introdução 2015-12-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-29.jpg
130 pt pt-20151206-1 148 As Obras da Igreja do Senhor Jesus Cristo 2015-12-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-27.jpg
131 pt pt-20151204-1 149 As Obras da Igreja do Senhor Jesus Cristo - Introdução 2015-12-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-24.jpg
132 pt pt-20151129-1 150 A Pedra de Ângulo 2015-11-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21774.png
133 pt pt-20151127-1 151 A Pedra de Ângulo - Introdução 2015-11-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-37.jpg
134 pt pt-20151121-1 3128 A Era Messianica 2015-11-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21771.png https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2024/02/2015-11-21-a_era_messianica.mp3
135 pt pt-20151120-1 152 Nos Preparando para Entrar à Terra Prometida - Introdução 2015-11-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-28.jpg
136 pt pt-20151119-1 153 O Grande Propósito de Deus com Seus Filhos 2015-11-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-26.jpg
137 pt pt-20151115-1 3065 Estai Preparados para a Vinda do Filho do Homem 2015-11-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/youtube_thumbnail_21768.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/12/2015-11-15-WSS-Estai_preparados_para_a_Vinda_do_Filho_do_Homem_1.mp3
138 pt pt-20151114-1 3136 Prepara-te para vir ao encontro de teu Deus 2015-11-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21767.png https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/11/2015-11-14-WSS-Prepara-te_para_vir_ao_encontro_do_teu_Deus_1.mp3
139 pt pt-20151113-1 154 Estai Preparados para a Vinda do Filho do Homem - Introdução 2015-11-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21766.png https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/11/2015-11-13-WSS-Estai_Preparados_para_a_Vinda_Do_Filho_do_homem_1.mp3
140 pt pt-20151110-1 3060 Dia de Vitoria 2015-11-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/youtube_thumbnail_21765.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/12/2015-11-10-WSS-Dia_de_Vitoria_1.mp3
141 pt pt-20151023-2 155 Nos Preparando para o que há de Vir - Introdução 2015-10-23 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_21757.png
142 pt pt-20151018-1 3162 Os Sinais dos tempos 2015-10-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21756.png https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/10/2015-10-18-WSS-os_sinais_dos_tempos.mp3
143 pt pt-20151016-1 156 Os Sinais dos Tempos - Introdução 2015-10-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-17.jpg
144 pt pt-20150927-1 3027 O Assobio Suave 2015-09-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/Cgn6tOQr-youtube_thumbnail_21751.png
145 pt pt-20150920-1 3038 As Duas Oliveiras na Dispensacao do Reino - Introducao 2015-09-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-24.jpg http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/12/2015-09-18-WSS-As_Duas_Oliveiras_na_Dispensacao_do_Reino_Introducao_1.mp3
146 pt pt-20150919-1 3211 A Casa de Deus 2015-09-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21748.png
147 pt pt-20150913-1 3019 A Proclamaca da Grande Voz de Trombeta 2015-09-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_21745.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2015/09/2015-09-13-WSS-A_Proclamacao_da_Grande_Voz_de_Trombeta_1-1.mp3
148 pt pt-20150911-1 157 A Proclamação da Grande Voz de Trombeta - Introdução 2015-09-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-12.jpg
149 pt pt-20150904-1 158 O Reino de Deus está Próximo - Introdução 2015-09-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21741.png
150 pt pt-20150903-1 3023 Seja Feito Conforme a Tua Fe Conforme a Tua Fe Seja Feito 2015-09-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_21740.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2015/09/2015-09-03-WSS-Seja-Feito_conforme_a_tua_fe_conforme_a_tua_fe_seja_feito_1.mp3
151 pt pt-20150830-1 3005 O Misterio da Fe de Rapto Contida nos Trovoes 2015-08-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/youtube_thumbnail_21739-1.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/10/2015-08-30-WSS-O_Misterio_da_Fe_de_Rapto_Contida_nos_Trovoes.mp3
152 pt pt-20150823-1 3015 O Dia do Filho do Homem e as Obras que fara em Sua Vinda 2015-08-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_21737.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2015/08/2015-08-23-WSS-O_Dia_do_Filho_do_Homem_e_as_Obras_que_fara_em_Sua_Vinda_1.mp3
153 pt pt-20150822-1 159 Saudação na Reunião de Damas 2015-08-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-25.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2015/08/2015-08-22_saudacao_na_reuniao_de_damas.pdf
154 pt pt-20150821-1 160 O Dia do Filho do Homem e as Obras que fará em Sua Vinda - Introdução 2015-08-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/11/youtube_thumbnail_21735.png https://www.carpa.com/sites/default/files/messages/pt-br/2015/08/2015-08-21_o_dia_do_filho_do_homem_e_obras_que_fara_em_sua_vinda_-_introducao.pdf
155 pt pt-20150807-1 161 O Verão está Próximo - Introdução 2015-08-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18-11.jpg https://www.carpa.com/sites/default/files/messages/es/2015/08/2015-08-07_el_verano_esta_cerca_-_introduccion.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/2015/08/2015-08-07_o_verao_esta_proximo_-_introducao.pdf
156 pt pt-20150731-1 162 Uma vez mais Senhor - Introdução 2015-07-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-30.jpg
157 pt pt-20150717-1 163 Onde está o Deus de Elias hoje? - Introdução 2015-07-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-22.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2015/07/2015-07-17_onde_esta_o_deus_de_elias_hoje_-_introducao.pdf
158 pt pt-20150712-1 164 Um Toque de Fé para Salvação 2015-07-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-14.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2015/07/2015-07-12_um_toque_de_fe_para_salvacao.pdf
159 pt pt-20150710-1 165 Um Toque de Fé para Salvação - Introdução 2015-07-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-13.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2015/07/2015-07-10_um_toque_de_fe_para_salvacao_-_introducao.pdf
160 pt pt-20150703-1 166 A Posição da Igreja no Último Dia - Introdução 2015-07-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-10.jpg
161 pt pt-20150626-1 167 A Voz do Espírito Santo Falando à Igreja no Último Dia - Introdução 2015-06-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-29.jpg
162 pt pt-20150621-1 168 A Fonte que dá Água para Vida Eterna 2015-06-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-22.jpg
163 pt pt-20150619-1 169 A Fonte que dá Água para Vida Eterna - Introdução 2015-06-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-23.jpg
164 pt pt-20150605-1 170 A Voz do Sinal 2015-06-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21707.png https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/06/2015-06-05-WSS-a_voz_do_sinal.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/2015/06/2015-06-05_a_voz_do_sinal.pdf
165 pt pt-20150531-1 171 A Grande Vitória no Amor Divino 2015-05-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-20.jpg
166 pt pt-20150524-1 3173 As Dimensoes 2015-05-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21705.png
167 pt pt-20150510-1 3132 Jesus Cristo, O Rei de Paz 2015-05-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21702.png https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/05/2015-05-10-WSS-Jesus_Cristo_O_Rei_de_Paz_1_1.mp3
168 pt pt-20150509-1 3140 A Sete Visões Proféticas do Reverendo William Branham antes da Segunda Vinda Cristo 2015-05-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/02/youtube_thumbnail_21701.png https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2024/02/2015-05-09-WSS-As_Sete_Visoes_Profeticas_do_Rev_WMB_Antes_da_segunda_Vinda_de_Cristo_PT.mp3
169 pt pt-20150503-1 172 Jesus Abrindo o Entendimento para Compreender as Escrituras 2015-05-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-21.jpg
170 pt pt-20150502-1 173 A Ordem Divina para a Ressurreição e a Transformação 2015-05-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21698.png https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/05/2015-05-02-a_ordem_divina_para_a_ressurreicao_e_transformacao.mp3
171 pt pt-20150419-1 174 A Sétima Dispensação: A Dispensação do Reino 2015-04-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21695-1.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2015/04/2015-04-19-A_Setima_Dispensacao_A_Dispensacao_do_Reino.mp3
172 pt pt-20150405-1 175 Jesus Ressuscitado, como disse A Escritura 2015-04-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21692-1.png
173 pt pt-20150404-1 176 Jesus Pregando na Quinta Dimensão 2015-04-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21691.png
174 pt pt-20150403-2 177 Jesus Cristo Crucificado Cumprindo as Escrituras 2015-04-03 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-17.jpg
175 pt pt-20150329-1 178 Jesus Entrando em Jerusalém como foi Escrito 2015-03-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-19.jpg
176 pt pt-20150327-1 179 A Justiça Divina 2015-03-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-20.jpg
177 pt pt-20150322-1 180 A Quarta Dispensação: A Promessa 2015-03-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-19.jpg
178 pt pt-20150315-1 181 A Terceira Dispensação: O Governo Humano 2015-03-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-11.jpg
179 pt pt-20150314-1 182 La segunda dispensación: La Conciencia 2015-03-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/05/youtube_thumbnail_21681.png
180 pt pt-20150308-1 3219 A Primeira Dispensação: A Inocência 2015-03-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21679.png https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/03/2015-03-08-a_primeira_dispensacao_a_inocencia.mp3
181 pt pt-20150301-1 183 Quem é o Filho do Homem pra este Dia? 2015-03-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21678.png https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/03/2015-03-01-WSS-Quem_e_O_Filho-do_homem_para_este_dia.mp3
182 pt pt-20150228-1 184 A Casa de Deus do Novo Pacto 2015-02-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21677.png
183 pt pt-20150224-1 185 O Senhor é Nossa Bandeira 2015-02-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-29.jpg
184 pt pt-20150222-1 186 A Salvação do que se Havia Perdido 2015-02-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-18.jpg
185 pt pt-20150221-1 187 Selados pelo Maior Sinal 2015-02-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21674.png https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/02/2015-02-21-WSS-Selados-pelo-maior-Sinal.mp3
186 pt pt-20150215-1 188 Quando vier o Filho do Homem, achará fé na Terra? 2015-02-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/youtube_thumbnail_21673.png https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/02/2015-02-15-WSS-Quando_vier_o_Filho_do_homem_achara_fe_na_terra.mp3
187 pt pt-20150214-1 189 Unidos com o Anjo, Trabalhando nos Projetos Divinos 2015-02-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/youtube_thumbnail_21672.png https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/02/2015-02-14-WSS-Unidos_com_o_Anjo_Trabalhando_nos_Projetos_Divinos_1.mp3
188 pt pt-20150210-1 190 A Herança do Vencedor 2015-02-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21671.png https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/02/2015-02-10-WSS-A_Heranca_do_vencedor.mp3
189 pt pt-20150208-1 191 O Rei dos Reis e Senhor dos Senhores 2015-02-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/cxS9ziAp-youtube_thumbnail_21670.png https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2015/02/2015-02-08-WSS-O_Rei_dos_reis-e_Senhor_dos_Senhores_1.mp3
190 pt pt-20150206-1 3055 Os-Quatro titulos de Jesus como Filho 2015-02-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/EwHhRdyF-youtube_thumbnail_21669.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/12/2015-02-06-WSS-Os-Quatro_titulos_de_Jesus_como_Filho_1.mp3
191 pt pt-20150206-1 192 Os Quatro Títulos de Jesus como Filho 2015-02-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/EwHhRdyF-youtube_thumbnail_21669.png
192 pt pt-20150201-1 3075 O Filho do Homem 2015-02-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/rGJZrHWo-youtube_thumbnail_21668.png https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2024/01/2015-02-01-WSS-O_Filho_do_Homem_1.mp3
193 pt pt-20150201-1 193 O Filho do Homem 2015-02-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/rGJZrHWo-youtube_thumbnail_21668.png
194 pt pt-20150125-1 194 Filho de Deus 2015-01-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-19.jpg
195 pt pt-20150118-1 195 O Herdeiro, o Filho de Davi 2015-01-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-23.jpg
196 pt pt-20150104-1 196 O Reino e Trono de Davi 2015-01-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-26.jpg
197 pt pt-20150102-1 2845 A Profecia do Último Dia 2015-01-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21662.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/07/2015-01-02-WSS-A_Profecia_do_Ultimo_Dia.mp3
198 pt pt-20141231-1 197 Uma Visão Profética 2014-12-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-18.jpg
199 pt pt-20141227-1 198 A Importância de Ensinar o Evangelho do Reino 2014-12-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-25.jpg
200 pt pt-20141221-1 199 O Nascimento de Jesus Cristo 2014-12-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/mklKqOY2-youtube_thumbnail_21657.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2014/12/2014-12-21-o_nascimento_de_jesus_cristo_1.mp3
201 pt pt-20141130-1 2876 Aquele que há de vir virá, e não tardará 2014-11-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21653.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2014/11/2014-11-30-aquele_que_ha_de_vir_vira_e_nao_tardara.mp3
202 pt pt-20141129-1 200 Uma Igreja Gloriosa, sem Mancha nem Ruga 2014-11-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-26.jpg
203 pt pt-20141128-1 201 A Educação desde o Jardim do Édem 2014-11-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-24.jpg
204 pt pt-20141029-1 202 Palavras de Condolências pela partida do Irmão Raul Veliz 2014-10-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-23.jpg
205 pt pt-20141026-1 203 O Eterno 2014-10-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21640.png
206 pt pt-20141007-1 204 As Bênçãos de Deus vem a Sião 2014-10-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-10.jpg
207 pt pt-20141004-1 205 De Regresso ao Princípio 2014-10-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_21631.png
208 pt pt-20140907-1 206 Deus Provendo o que Falta para a Conclusão de Sua Obra Final 2014-09-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21619.png
209 pt pt-20140905-1 207 Deus Ama ao que dá com Alegria 2014-09-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19-6.jpg
210 pt pt-20140831-1 208 O Povo se Esforçando para Concluir a Obra que foi Encomendada em Cada Tempo 2014-08-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21616.png
211 pt pt-20140827-1 209 Deus Demanda Obediência à Sua Palavra 2014-08-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-12.jpg
212 pt pt-20140815-1 210 A Visita da Semente de Abraão à Sua Semente: A Igreja do Senhor Jesus Cristo, Sua Ajuda Idônea 2014-08-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-4.jpg
213 pt pt-20140806-1 211 Palavras no Enterro do Irmão Humberto Pérez Ortiz 2014-08-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-24-2.jpg
214 pt pt-20140805-1 212 Palavras no Velório do Irmão Humberto Pérez Ortiz 2014-08-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-25-4.jpg
215 pt pt-20140801-1 213 O Sétimo Selo e a Sétima Trombeta 2014-08-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-27-4.jpg
216 pt pt-20140727-1 214 As Tribos de Israel 2014-07-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-17.jpg
217 pt pt-20140720-1 215 O Dia de Cristo 2014-07-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-20.jpg
218 pt pt-20140719-1 216 Que Deus Abençõe nossas Metas para a Grande Carpa Catedral 2014-07-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2014/07/2014-07-19-WSS-que_dios_bendiga_nuestras_metas_para_la_gran_carpa_catedral.jpg
219 pt pt-20140705-1 217 A Besta e a Imagem da Besta 2014-07-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-23.jpg
220 pt pt-20140704-1 2812 Elias virá antes da Segunda Vinda de Cristo 2014-07-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21594.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2014/07/2014-07-04-WSS-Elias_vira_antes_da_Segunda_Vinda_de_Cristo.mp3
221 pt pt-20140629-2 218 Nossa Meta Terminar a Obra que Deus nos deu para terminar 2014-06-29 2 https://ewr1.vultrobjects.com/lgcc-conferences/2024/11/youtube_thumbnail_21592.png
222 pt pt-20140608-1 2913 Tempo para Ver 2014-06-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-13.jpg http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/09/2014-06-08-WSS-tempo_para_ver.mp3
223 pt pt-20140608-1 219 Tempo para Ver 2014-06-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-13.jpg
224 pt pt-20140525-1 220 O Trigo Maduro 2014-05-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-19.jpg
225 pt pt-20140504-1 221 A vitória por meio do nosso Senhor Jesus Cristo 2014-05-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-12.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2014/05/2014-05-04_la_victoria_por_medio_de_nuestro_senor_jesucristo.pdf
226 pt pt-20140502-1 223 O Rapto Espiritual e o Físico dos Escolhidos de Deus 2014-05-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/11/youtube_thumbnail_21575.png
227 pt pt-20140502-2 222 O Céu e a Terra Passarão, mas as minhas Palavras Jamais Passarão 2014-05-02 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-12.jpg
228 pt pt-20140427-1 224 Nos Preparando para a Vinda do Senhor, porque os Dias são maus 2014-04-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-22.jpg
229 pt pt-20140420-2 225 As Obras de Jesus Cristo Ressuscitado 2014-04-20 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-11.jpg
230 pt pt-20140413-1 3191 As Obras de Jesus em Jerusalem 2014-04-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21567.png https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2014/04/2014-04-13-WSS_As_Obras_de_Jesus_ao_entrar_em_Jerusalem_1.mp3
231 pt pt-20140405-1 226 Atendendo à Voz de Cristo e Trabalhando em Sua Obra 2014-04-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/09/youtube_thumbnail_21564.png
232 pt pt-20140330-1 227 A Visitação Angelical à Família Humana 2014-03-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21563.png
233 pt pt-20140323-1 2983 O que está atras da Porta 2014-03-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/youtube_thumbnail_21562.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/10/2014-03-23-WSS-O_Que_esta_Atras_da_Porta.mp3
234 pt pt-20140309-1 228 As Sete Eras da Igreja do Senhor Jesus Cristo 2014-03-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-10.jpg
235 pt pt-20140305-1 229 A Identificação do Anjo que o Senhor Jesus Cristo Envia 2014-03-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-10.jpg
236 pt pt-20140302-1 230 Tempo para Ser Purificados 2014-03-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-10.jpg
237 pt pt-20140301-1 231 Um Obreiro Aprovado 2014-03-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-8.jpg
238 pt pt-20140214-1 3197 A Vinda do Filho do Homem com Seus Anjos 2014-02-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21547.png
239 pt pt-20140112-1 3169 As Dez Virgens e a Grande Tribulacao 2014-01-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/03/youtube_thumbnail_21536.png
240 pt pt-20131211-1 232 Os Pastores Apascentando as Ovelhas do Senhor Jesus Cristo com Ciência e com Inteligencia 2013-12-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_21520.png
241 pt pt-20131208-1 233 O que está Escrito tem Cumprimento 2013-12-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-25-3.jpg
242 pt pt-20131206-1 3011 A Presenca de Jesus 2013-12-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_21518.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2013/12/2013-12-06-WSS-A-Presenca-de-Jesus.mp3
243 pt pt-20131201-1 234 O Espírito de Elias Percorrendo O Caminho Ministerial pela Quinta Vez 2013-12-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/04/youtube_thumbnail_21517.png
244 pt pt-20131124-1 235 O Avivamento do Espírito Santo 2013-11-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-5-6.jpg
245 pt pt-20131117-1 236 Jesus entre a Multidão 2013-11-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-13.jpg
246 pt pt-20131110-1 237 O Homem que Pode Acender a Luz 2013-11-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-15.jpg
247 pt pt-20131101-1 238 O Selo Predito 2013-11-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-19.jpg
248 pt pt-20131027-1 239 A Maior Bem-aventurança: Receber a Revelação que vem de Deus através de Seu Enviado 2013-10-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-12.jpg
249 pt pt-20131013-1 240 A Consumação das Setenta Semanas de Daniel 2013-10-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-14.jpg
250 pt pt-20131006-1 241 Posso Todas as Coisas em Cristo que me Fortalece 2013-10-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-18.jpg
251 pt pt-20130915-1 242 Os Mistérios de Deus 2013-09-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-7.jpg
252 pt pt-20130908-1 243 A Vida Eterna 2013-09-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-5.jpg
253 pt pt-20130906-1 244 As Promessas para os Filhos de Deus no último Dia 2013-09-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-4.jpg
254 pt pt-20130901-1 245 Seguindo ao Mestre 2013-09-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-3.jpg
255 pt pt-20130825-1 246 O Sinal para sair no Êxodo 2013-08-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-7.jpg
256 pt pt-20130818-1 247 A Importância do Louvor 2013-08-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/08/youtube_thumbnail_21489.png
257 pt pt-20130804-1 248 A Fé, Mais Preciosa do que o Ouro 2013-08-04 1
258 pt pt-20130728-1 249 O Conselho Divino 2013-07-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-13.jpg
259 pt pt-20130721-1 250 A Revelação da Palavra de Deus é Trazida pelo Espírito Santo 2013-07-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-13.jpg
260 pt pt-20130714-1 2861 Conhecendo o Tempo da Visitação de Deus para Evitar os Juízos Divinos que Virão 2013-07-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21474.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/07/2013-07-14-WSS-Conhecendo_o_Tempo_da_Visitacao_de_Deus_para_Evitar_os_Juizos_Divinos.mp3
261 pt pt-20130630-3 251 A Visitação de Deus à Semente de Abraão 2013-06-30 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-12.jpg
262 pt pt-20130623-1 252 Temei a Deus 2013-06-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/2025/09/youtube_thumbnail_21466.png
263 pt pt-20130616-1 253 A Casa de Deus Hoje 2013-06-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-13.jpg
264 pt pt-20130609-1 2804 Fome de ouvir A Palavra de Deus Hoje 2013-06-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_21463.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/06/2013-06-09-WSS-Fome_de_ouvir_a_Palavra_de_Deus_Hoje.mp3
265 pt pt-20130609-1 254 Fome de Ouvir a Palavra de Deus Hoje 2013-06-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_21463.png
266 pt pt-20130602-1 255 Senhor Aumenta-nos a Fé 2013-06-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-6.jpg
267 pt pt-20130531-2 2799 O Tempo se Cumpriu e o Reino dos Céus se Aproximou 2013-05-31 2 https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_21458.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/06/2013-05-31-WSS-O_Tempo_se_cumpriu_e_o_Reino_dos_Ceus_se_Aproximou.mp3
268 pt pt-20130526-1 256 Os Reinos do Mundo Virão a ser de Jesus Cristo 2013-05-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-11.jpg
269 pt pt-20130519-1 257 O Alfa e o Ômega 2013-05-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-11.jpg
270 pt pt-20130505-1 258 O Confronto entre as Duas Sementes 2013-05-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-12.jpg
271 pt pt-20130503-1 259 As duas Sementes 2013-05-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/08/youtube_thumbnail_21452.png
272 pt pt-20130428-1 260 Clamando pela Liberdade Gloriosa dos Filhos de Deus 2013-04-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-10.jpg
273 pt pt-20130407-1 2792 A Revelação Contida nos Sete Trovões que João escutou e foi Proibido Escrever 2013-04-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15-3.jpg https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/06/2013-04-07-WSS-a_revelacao_contida_nos_sete_trovoes_que_joao_escutou_e_foi_proibido_escrever.mp3
274 pt pt-20130331-1 261 Jesus Cristo ressucitou dentre os mortos 2013-03-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-12.jpg
275 pt pt-20130317-1 262 Tempo de estar Preparados para a Vinda do Senhor 2013-03-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-12-4.jpg
276 pt pt-20130303-1 2963 A Terceira Etapa 2013-03-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_21431.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/10/2013-03-03-WSS-A_Terceira_Etapa.mp3
277 pt pt-20130301-1 2894 O Sinal do Filho do Homem 2013-03-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21430.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/08/2013-05-01-WSS-O_Sinal_Filho_Homem.mp3
278 pt pt-20130217-1 2889 Todas as coisas Debaixo do Céu têm Seu Tempo 2013-02-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21428.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/08/2013-02-17-WSS-Todas_as_coisas_debaixo_do_ceu_tem_seu_tempo.mp3
279 pt pt-20121202-1 263 A Restauração do Reino de Deus 2012-12-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-3.jpg
280 pt pt-20121118-1 264 Deus em uma Nova Etapa Materializando Suas Promessas Maravilhosas à Sua Igreja 2012-11-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-8.jpg
281 pt pt-20121111-1 265 A Pedra Cortada sem Auxílio de Mãos 2012-11-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-9-8.jpg
282 pt pt-20121104-1 266 Melquisedeque Abençoando à Descendência Real Abraão 2012-11-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-6.jpg
283 pt pt-20121028-1 2833 A Trajetória da Construção do Templo de Deus 2012-10-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21397.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/07/2012-10-28-WSS-A_Trajetoria_da_Construcao_do_Templo_de_Deus.mp3
284 pt pt-20121021-1 267 José entre os Gentios 2012-10-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-6.jpg
285 pt pt-20121014-1 268 A Abertura do Sexto Selo 2012-10-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-7.jpg
286 pt pt-20121007-2 269 A Festa dos Tabernáculos 2012-10-07 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-6.jpg
287 pt pt-20120929-1 270 A Festa da Espiação 2012-09-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-5.jpg
288 pt pt-20120923-1 271 A Festa das Trombetas 2012-09-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-6.jpg
289 pt pt-20120902-1 272 Sião, O Monte de Deus 2012-09-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16-2.jpg
290 pt pt-20120901-1 273 A Anistia no Reino de Deus 2012-09-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17-1.jpg
291 pt pt-20120826-1 274 A Semente de Abraão 2012-08-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-6.jpg
292 pt pt-20120819-1 275 A Grande Vitória no Amor Divino 2012-08-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8-5.jpg
293 pt pt-20120804-1 276 Perseverando na Doutrina de Jesus Cristo 2012-08-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-5.jpg
294 pt pt-20120708-1 277 O Título de Propriedade nas Mãos de um Homem 2012-07-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13-1.jpg
295 pt pt-20120707-1 278 Deus Vindicando Sua Palavra em cada Tempo 2012-07-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14-1.jpg
296 pt pt-20120624-1 279 Colocando as Mãos no Arado sem Olhar para Trás 2012-06-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-6-5.jpg
297 pt pt-20120617-1 280 O Pai Celestial 2012-06-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_21366.png
298 pt pt-20120527-1 3043 Ceus Novos e Terra Nova 2012-05-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/12/k3A7UH4H-youtube_thumbnail_21358.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/12/2012-05-27-WSS-Ceus_novos_e_Terra_Nova_1.mp3
299 pt pt-20120506-1 281 A influência da dimensão celestial sobre a terrenal 2012-05-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7-5.jpg
300 pt pt-20120325-1 282 Rumo a la terra prometida com tres tipos de crentes 2012-03-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-5-3.jpg
301 pt pt-20110319-1 3232 A Segurança do Ungido de Deus 2011-03-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21190.png https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2024/06/2011-03-19-RM-a_seguranca_do_ungido_de_deus.mp3
302 pt pt-20110508-1 3228 O Espírito de Deus e o espírito do anticristo 2011-05-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2024/04/youtube_thumbnail_21207.png
303 pt pt-20100928-2 2899 A Grandeza e Conteúdo do Sétimo Selo 2010-09-28 2 https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21125.png https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2010/09/2010-09-28-2-WSS-A_Grandeza_e_Conteudo_do_Setimo_Selo.mp3
304 pt pt-20100925-1 2907 Fala Senhor pois O Teu Servo Ouve 2010-09-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21122-1.png https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2010/09/2010-09-25-WSS-Fala_Senhor_pois_o_Teu_servo_ouve.mp3
305 pt pt-20100904-1 2850 Deus dando Sabedoria e Inteligência aos Seus Filhos para fazer a Obra que lhes foi Encomendada 2010-09-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/07/youtube_thumbnail_21112.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2010/09/2010-09-04-WSS-Deus_dando_Sabedoria_e_Inteligencia_aos_seus_Filhos_para_fazer_a_Obra_que_lhes_foi_Encomendada.mp3
306 pt pt-20100812-1 2871 A Dualidade do Segundo Adão: O Grande Mistério de Cristo e Sua Igreja 2010-08-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21089.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/08/2010-08-12-WSS-A_Dualidade_do_Segundo_Adao_O_Grande_Misterio_de_Cristo_e_Sua_Igreja.mp3
307 pt pt-20100812-1 2866 Jesus Cristo Libertando o que o inimigo Atou 2010-08-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_21089.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/08/2010-08-12-WSS-Jesus_Cristo_Libertando_o_que_o_inimigou_atou.mp3
308 pt pt-20100506-2 2935 O Sol, a Lua e as Estrelas Marcando o Tempo e nos dando os Sinais do Fim 2010-05-06 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_21025.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/09/2010-05-06-WSS-O_Sol_A_Lua_e_as_Estrelas_marcando_o_Tempo.mp3
309 pt pt-20090905-1 2950 Obedientes à Visão Celestial 2009-09-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_20848.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2009/09/2009-09-05WSS-RM-Obedientes_a_Visao_Celestial.mp3
310 pt pt-20090424-2 2966 Novas de Grande Alegria para a Primeira e Segunda Vinda de Cristo 2009-04-24 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/youtube_thumbnail_20738.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2009/04/2009-04-24-WSS-Novas_de_Grande_Alegria_para_Primeira_e_Segunda_Vinda_de_Cristo.mp3
311 pt pt-20080918-1 3031 Quem e pois O Servo Fiel e prudente 2008-09-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/11/youtube_thumbnail_20552.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/12/2008-09-18-WSS-Quem_e_pois_O_Servo_Fiel_e_prudente_1.mp3
312 pt pt-20050514-2 2994 Os Requisitos para um Avivamento 2005-05-14 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/youtube_thumbnail_19881.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2005/05/2005-05-14-RM-os-requisitos-para-um-avivamento.mp3
313 pt pt-20050506-1 2925 Obras de Fé 2005-05-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_19871.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2005/05/2005-06-06-WSS-Obras_de_Fe.mp3
314 pt pt-20050504-3 2881 A Voz que Abalará os Céus e a Terra 2005-05-04 3 https://ewr1.vultrobjects.com/lgcc-conferences/2023/08/youtube_thumbnail_19867.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2005/05/2005-05-04-RM-a_voz_que_abalara_os_ceus_e_a_terra.mp3
315 pt pt-20040826-1 2918 Tudo Depende da Palavra de Deus 2004-08-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/09/youtube_thumbnail_66060.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2004/08/2004-08-26-1-WSS-tudo_depende_da_palavra_de_deus.mp3
316 pt pt-20030215-1 2929 Vasos separados para Deus 2003-02-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_19258.png
317 pt pt-20020415-1 2940 Combatendo o Bom Combate 2002-04-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_66110.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/09/2002-04-15-WSS-RM-Combatendo_o_Bom_Combate.mp3
318 pt pt-20020228-1 283 Um Sinal Notório no Céu 2002-02-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-1-5.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2002/02/2002-02-28_um_sinal_notorio_no_ceu.pdf
319 pt pt-20010714-2 3113 O Varao esforcado e Valente 2001-07-14 2 https://ewr1.vultrobjects.com/lgcc-conferences/2024/01/youtube_thumbnail_66544.png https://conferenciaswp.carpa.com/pt-br/wp-content/uploads/sites/3/2024/01/2001-07-14-WSS-RM-O_Varao_esforcado_e_Valente.mp3
320 pt pt-20001110-1 2945 A Ordem para a Manifestação da Glória de Deus 2000-11-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/09/youtube_thumbnail_18656.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/09/2000-11-10-1-WSS-RM-A_Ordem_para_A_Manifestacao_da_Gloria_de_Deus.mp3
321 pt pt-20001022-3 2970 O Paralelismo entre Cristo e Seu Anjo 2000-10-22 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/10/youtube_thumbnail_18627.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/10/2000-10-22-WSS-O_Paralelismo_entre_Cristo_e_Seu_Anjo.mp3
322 pt pt-20000710-2 284 Deus Escolhe onde pôr Seu Nome 2000-07-10 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-59.jpg https://www.carpa.com/sites/default/files/messages/pt-br/2000/07/2000-07-10_deus_escolhe_onde_por_seu_nome.pdf
323 pt pt-19991231-1 1190 As coisas que estão Profetizadas para o Fim do Século 1999-12-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_18381.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/12/1999-12-31_2000-01-01_As-Coisas-que-estão-profetizadas-para-o-fim-do-seculo.mp3
324 pt pt-19991203-2 285 A Bênção de Fazer a Vontade de Deus 1999-12-03 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_18363-5.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1999/12/1999-12-03_A-Bencao-de-Fazer-a-Vontade-de-Deus.mp3
325 pt pt-19991202-2 286 Os Filhos de Prosperidade 1999-12-02 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_18361-5.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1999/12/1999-12-03_Os-Filhos-de-Prosperidade.mp3
326 pt pt-19991201-1 287 Nascidos para Vencer 1999-12-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_18360-5.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1999/12/1999-12-01_Nascidos-para-Vencer.mp3
327 pt pt-20260530-undefined
328 pt pt-20260530-undefined
329 pt pt-20260530-undefined
330 pt pt-20260530-undefined
331 pt pt-20260530-undefined
332 pt pt-20260530-undefined
333 pt pt-20260530-undefined
334 pt pt-20260530-undefined
335 pt pt-20260530-undefined
336 pt pt-20260530-undefined
337 pt pt-20260530-undefined
338 pt pt-20260530-undefined
339 pt pt-20260530-undefined
340 pt pt-20260530-undefined
341 pt pt-20260530-undefined
342 pt pt-20260530-undefined
343 pt pt-20260530-undefined
344 pt pt-20260530-undefined
345 pt pt-20260530-undefined
346 pt pt-20260530-undefined
347 pt pt-20260530-undefined
348 pt pt-20260530-undefined
349 pt pt-20260530-undefined
350 pt pt-20260530-undefined
351 pt pt-20260530-undefined
352 pt pt-20260530-undefined
353 pt pt-20260530-undefined
354 pt pt-20260530-undefined
355 pt pt-20260530-undefined
356 pt pt-20260530-undefined
357 pt pt-20260530-undefined
358 pt pt-20260530-undefined
359 pt pt-20260530-undefined
360 pt pt-20260530-undefined
361 pt pt-20260530-undefined
362 pt pt-20260530-undefined
363 pt pt-20260530-undefined
364 pt pt-20260530-undefined
365 pt pt-20260530-undefined
366 pt pt-20260530-undefined
367 pt pt-20260530-undefined
368 pt pt-20260530-undefined
369 pt pt-20260530-undefined
370 pt pt-20260530-undefined
371 pt pt-20260530-undefined
372 pt pt-20260530-undefined
373 pt pt-20260530-undefined
374 pt pt-20260530-undefined
375 pt pt-20260530-undefined
376 pt pt-20260530-undefined
377 pt pt-20260530-undefined
378 pt pt-20260530-undefined
379 pt pt-20260530-undefined
380 pt pt-20260530-undefined
381 pt pt-20260530-undefined
382 pt pt-20260530-undefined
383 pt pt-20260530-undefined
384 pt pt-20260530-undefined
385 pt pt-20260530-undefined
386 pt pt-20260530-undefined
387 pt pt-20260530-undefined
388 pt pt-20260530-undefined
389 pt pt-20260530-undefined
390 pt pt-20260530-undefined
391 pt pt-20260530-undefined
392 pt pt-20260530-undefined
393 pt pt-20260530-undefined
394 pt pt-20260530-undefined
395 pt pt-20260530-undefined
396 pt pt-20260530-undefined
397 pt pt-20260530-undefined
398 pt pt-20260530-undefined
399 pt pt-19981231-1 1197 O Sumo Sacerdote Intercedendo pelo Povo 1998-12-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17877.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/12/1998-12-31-1999-01-01_O-Sumo-Sacerdote-Intecedendo-pelo-povo.mp3
400 pt pt-19981227-2 1135 Tempo de Despertar à Realidade do que Deus está fazendo Hoje 1998-12-27 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17874.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/11/1998-12-27_Tempo-de-Despertar-a-realidade-do-que-Deus-esta-fazendo-hoje.mp3
401 pt pt-19981227-1 1114 O que Deus Prometeu para O Último Dia 1998-12-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17875.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/11/1998-12-27_O-que-Deus-Prometeu-para-o-Ultimo-Dia.mp3
402 pt pt-19981220-2 1102 Uma Concepção do Espírito Santo 1998-12-20 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17866.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/11/1998-12-20_Uma-Concepcao-do-Espirito-Santo.mp3
403 pt pt-19981220-1 1091 A Trajetória do Templo de Deus 1998-12-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17867.png
404 pt pt-19981213-2 1079 A Bênção de Obedecer o Anjo de Deus 1998-12-13 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17864.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/10/1998-12-13_A-Bencao-de-Obedecer-ao-Anjo-de-Deus.mp3
405 pt pt-19981213-1 1063 Os Pensamentos de Deus Expressos no Último Dia 1998-12-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17865.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/12/1998-12-13_Os-Pensamentos-de-Deus-expressos-no-Ultimo-Dia.mp3
406 pt pt-20260530-undefined
407 pt pt-20260530-undefined
408 pt pt-19981129-2 1034 O Mistério do Anjo de Jesus 1998-11-29 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17850-1.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/11/1998-11-29_O-Misterio-do-Anjo-de-Jesus.mp3
409 pt pt-20260530-undefined
410 pt pt-19981126-1 807 Aquele que tem Maior Testemunho que o de João Batista 1998-11-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17848-6.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/10/1998-11-26_Aquele-que-tem-maior-Testemunho-que-o-de-Joao.mp3
411 pt pt-19981124-1 848 O Filho Trabalhando como o Pai lhe Mostra 1998-11-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17846-3.png
412 pt pt-19981123-1 847 Trabalhando enquanto o Pai Trabalha 1998-11-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17845-2.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/11/1998-11-23_Trabalhando-enquanto-o-pai-trabalha.mp3
413 pt pt-20260530-undefined
414 pt pt-19981115-1 1228 Jesus Cristo Buscando e Chamando os que Cearão com Ele 1998-11-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17835.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/11/1998-11-15_Jesus-Cristo-Buscando-e-Chamando-os-Cearao-com-Ele.mp3
415 pt pt-20260530-undefined
416 pt pt-20260530-undefined
417 pt pt-20260530-undefined
418 pt pt-20260530-undefined
419 pt pt-20260530-undefined
420 pt pt-20260530-undefined
421 pt pt-20260530-undefined
422 pt pt-19981101-1 846 As Coisas que foram, as que são e as que hão de ser 1998-11-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17807-2.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/11/1998-11-01_As-Coisas-que-foram-as-que-sao-e-as-que-serão.mp3
423 pt pt-20260530-undefined
424 pt pt-19981030-1 845 O Filho do Homem com as chaves do inferno e da morte 1998-10-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17803-2.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/10/1998-10-30_O-Filho-do-Homem-com-as-Chaves-do-Inferno-e-da-morte.mp3
425 pt pt-19981028-2 372 Uma Descrição do Filho do Homem no meio dos Sete Candeeiros 1998-10-28 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17798-1.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/10/1998-10-28_Uma-Descricao-do-Filho-do-Homem-no-meio-dos-sete-candeeiros.mp3
426 pt pt-20260530-undefined
427 pt pt-19981026-2 374 Jesus Cristo, O Alfa e O Ômega 1998-10-26 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17794-5.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/10/1998-10-26_Jesus-Cristo-o-Alfa-e-o-Omega.mp3
428 pt pt-19981025-2 842 A Vinda do Senhor com as Núvens 1998-10-25 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17792-5.png
429 pt pt-20260530-undefined
430 pt pt-19981025-2 375 A Vinda do Senhor com as Núvens 1998-10-25 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17792-5.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/10/1998-10-25_A-Vinda-do-Senhor-com-as-nuvens.mp3
431 pt pt-20260530-undefined
432 pt pt-20260530-undefined
433 pt pt-20260530-undefined
434 pt pt-20260530-undefined
435 pt pt-20260530-undefined
436 pt pt-20260530-undefined
437 pt pt-20260530-undefined
438 pt pt-19981019-2 384 O Anjo com a Revelação de Jesus Cristo 1998-10-19 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17776-5.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/10/1998-10-19_O-Anjo-com-a-Revelacao-de-Jesus-Cristo.mp3
439 pt pt-20260530-undefined
440 pt pt-20260530-undefined
441 pt pt-20260530-undefined
442 pt pt-20260530-undefined
443 pt pt-20260530-undefined
444 pt pt-20260530-undefined
445 pt pt-20260530-undefined
446 pt pt-20260530-undefined
447 pt pt-20260530-undefined
448 pt pt-20260530-undefined
449 pt pt-20260530-undefined
450 pt pt-20260530-undefined
451 pt pt-20260530-undefined
452 pt pt-20260530-undefined
453 pt pt-20260530-undefined
454 pt pt-20260530-undefined
455 pt pt-20260530-undefined
456 pt pt-20260530-undefined
457 pt pt-20260530-undefined
458 pt pt-20260530-undefined
459 pt pt-20260530-undefined
460 pt pt-20260530-undefined
461 pt pt-20260530-undefined
462 pt pt-20260530-undefined
463 pt pt-20260530-undefined
464 pt pt-20260530-undefined
465 pt pt-20260530-undefined
466 pt pt-20260530-undefined
467 pt pt-20260530-undefined
468 pt pt-20260530-undefined
469 pt pt-19980829-2 1214 As Mãos do Profeta LEvantadas para a Vitória do Povo 1998-08-29 2 https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17700.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2022/01/1998-08-29_As-Maos-do-Profeta-Elevadas-para-a-Vitoria-do-Povo.mp3
470 pt pt-20260530-undefined
471 pt pt-20260530-undefined
472 pt pt-20260530-undefined
473 pt pt-20260530-undefined
474 pt pt-20260530-undefined
475 pt pt-20260530-undefined
476 pt pt-19980825-3 1220 Trabalhando na Obra Missionária com Mente Positiva 1998-08-25 3 https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17687.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2022/01/1998-08-25_Trabalhando-na-Obra-Missionaria-com-Mente-Positiva.mp3
477 pt pt-19980825-2 1209 O Fim do Século e os Anjos da Colheita 1998-08-25 2 https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17688.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2022/01/1998-08-25_O-Fim-do-seculo-e-os-anjos-da-colheita.mp3
478 pt pt-19980823-3 1184 A Trajetória do Sangue de Cristo 1998-08-23 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17681.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/12/1998-08-23_A-Trajetoria-do-Sangue-de-Cristo.mp3
479 pt pt-19980823-2 1174 O Sinal do Sangue Aplicado Hoje 1998-08-23 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17682.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/12/1998-08-23_O-Sinal-do-Sangue-Aplicado-Hoje.mp3
480 pt pt-19980821-1 1161 A Juventude Eterna 1998-08-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17677.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/12/1998-08-21_A-Juventude-Eterna.mp3
481 pt pt-19980820-3 1141 A Vara que fará os Sinais 1998-08-20 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17672.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/08/1998-08-20_A-Vara-que-fará-os-Sinais.mp3
482 pt pt-19980820-1 1128 O Tempo de Fome e Sede de Ouvir A Palavra de Deus para Hoje 1998-08-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17674.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/08/1998-08-20_O-tempo-de-fome-e-sede-de-ouvir-a-Palavra-de-Deus-para-hoje.mp3
483 pt pt-19980819-2 1087 Saudação aos Valentes 1998-08-19 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17670.png
484 pt pt-19980819-4 1107 Libertados pela Palavra de Deus 1998-08-19 4 https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17668.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/08/1998-08-19_Libertados-pela-Palavra-de-Deus.mp3
485 pt pt-19980819-3 1095 Deus na Boca dos Seus Profetas para Abençoar o Seu Povo 1998-08-19 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/11/youtube_thumbnail_17669.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/08/1998-08-19_Deus-na-Boca-de-Seus-Profetas-para-abencoar-o-Seu-povo.mp3
486 pt pt-19980818-2 1071 Deus Liberta Seu Povo 1998-08-18 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17666.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/08/1998-08-19_Deus-Liberta-Seu-Povo.mp3
487 pt pt-19980817-2 1044 Sendo Unidos ao Seu Povo 1998-08-17 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17664.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/10/1998-08-17_Sendo-Unidos-ao-Seu-Povo.mp3
488 pt pt-19980817-1 1058 Dois Povos de Um mesmo Pai 1998-08-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_62193.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/10/1998-08-17_Dois-Povos-de-um-mesmo-Pai.mp3
489 pt pt-19980816-3 1028 A Mão Forte de Deus Estendida 1998-08-16 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17660.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/10/1998-08-16_A-Mao-Forte-de-Deus-Estendida.mp3
490 pt pt-19980815-2 803 A Liberdade Gloriosa do Terceiro Êxodo 1998-08-15 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17658-6.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/10/1998-08-15_A-Liberdade-Gloriosa-do-Terceiro-Exodo.mp3
491 pt pt-19980814-3 840 A Obra de Cristo desde o Gênesis até o Apocalipse 1998-08-14 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17653-4.png
492 pt pt-19980814-1 839 A Obra de Cristo no Último Dia 1998-08-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17655-2.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/08/1998-08-14_A-Obra-de-Cristo-no-Ultimo-Dia.mp3
493 pt pt-20260530-undefined
494 pt pt-19980726-1 423 O Servo Buscando Esposa para Seu Senhor 1998-07-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17623.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-26_o_servo_buscando_esposa_para_seu_senhor.pdf
495 pt pt-20260530-undefined
496 pt pt-19980722-2 424 Todos Seremos Provados 1998-07-22 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-1-3.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-22_todos_seremos_provados.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-22_todos_seremos_provados.pdf
497 pt pt-19980721-1 425 Não Herdará o Filho da Serva com o Filho da Livre 1998-07-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17616.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-21_nao_herdara_o_filho_da_serva_com_o_filho_da_livre.pdf
498 pt pt-19980719-1 426 A Lembrança que nos Mantém Alerta: Recordando a Mulher de Ló 1998-07-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17613.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-19_a_lembranca_que_nos_mantem_alerta_recordando_mulher_de_lo.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-19_a_lembranca_que_nos_mantem_alerta_recordando_mulher_de_lo.pdf
499 pt pt-19980718-2 427 Abraão Intercede pela Sua Família 1998-07-18 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17609.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-18_abraao_intercede_pela_sua_familia.pdf
500 pt pt-19980715- 428 A Circuncisão Atualizada 1998-07-15 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10-1.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-15_a_circuncisao_atualizada.pdf
501 pt pt-19980714-2 429 O Resultado de uma Mudança de Nome 1998-07-14 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-11-1.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-14_o_resultado_de_uma_mudanca_de_nome.pdf
502 pt pt-19980713-1 430 A Bênção de Melquisedeque 1998-07-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17602.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-13_a_bencao_de_melquisedeque.pdf
503 pt pt-19980710-2 431 O Arco Íris, Sinal do Pacto de Deus 1998-07-10 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17597.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-10_o_arco_iris_sinal_do_pacto_de_deus.pdf
504 pt pt-19980709-1 433 Um Juízo Universal através do Qual Deus nos Fala Hoje 1998-07-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17596.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-09_um_juizo_universal_atraves_do_qual_deus_nos_fala_hoje.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-09_um_juizo_universal_atraves_do_qual_deus_nos_fala_hoje.pdf
505 pt pt-20260530-undefined
506 pt pt-19980708-2 435 A Arca de Noé Atualizada 1998-07-08 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-15.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-08_a_arca_de_noe_atualizada.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-08_a_arca_de_noe_atualizada.pdf
507 pt pt-19980708-1 434 A União que Produz Bons Resultados 1998-07-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-2-3.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-08_a_uniao_que_produz_bons_resultados.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-08_a_uniao_que_produz_bons_resultados.pdf
508 pt pt-19980707-1 436 A Bênção de Caminhar com Deus 1998-07-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17592.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-07_a_bencao_de_caminhar_com_deus.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-07_a_bencao_de_caminhar_com_deus.pdf
509 pt pt-19980706-1 437 A Trajetória do Nome de Deus 1998-07-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17590.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-06_a_trajetoria_do_nome_de_deus.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/07/1998-07-06_a_trajetoria_do_nome_de_deus.pdf
510 pt pt-20260530-undefined
511 pt pt-20260530-undefined
512 pt pt-20260530-undefined
513 pt pt-19980629-1 441 Lutas e Vitórias do Messias 1998-06-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17582.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-29_lutas_e_vitorias_do_messias.pdf
514 pt pt-19980627-1 442 Protegidos contra a astúcia da serpente 1998-06-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17580.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-27_protegidos_contra_astucia_da_serpente.pdf
515 pt pt-19980626-4 444 A Criação da Esposa do Primeiro Adão e do Segundo Adão 1998-06-26 4 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17576.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-26_a_criacao_da_esposa_do_primeiro_adao_e_do_segundo_adao.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-26_a_criacao_da_esposa_do_primeiro_adao_e_do_segundo_adao.pdf
516 pt pt-19980626-1 443 Privilégios e Deveres da Esposa de Cristo 1998-06-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17579.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-26_privilegios_e_deveres_da_esposa_de_cristo.pdf
517 pt pt-19980625-1 838 O Ser Humano diante da Encruzilhada da Vida 1998-06-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17575-2.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/06/1998-06-25_O-ser-humano-diante-da-encruzilhada-da-vida.mp3
518 pt pt-19980624-2 445 A Bênção de Deus no Sétimo Dia 1998-06-24 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17572.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-24_a_bencao_de_deus_no_setimo_dia.pdf
519 pt pt-20260530-undefined
520 pt pt-19980621-1 837 A Ordem e Processo de Deus em Sua Obra desde o Princípio até o Fim 1998-06-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17569-2.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/06/1998-06-21_A-Ordem-e-Processo-de-Deus-em-Sua-Obra-desde-o-Principio-ate-o-Fim.mp3
521 pt pt-19980620-2 448 Cada Árvore Produzindo Segundo Sua Natureza 1998-06-20 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-14.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-20_cada_arvore_produzindo_segundo_sua_natureza.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-20_cada_arvore_produzindo_segundo_sua_natureza.pdf
522 pt pt-20260530-undefined
523 pt pt-19980619-1 450 A Trajetória da Vida 1998-06-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17566.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-19_a_trajetoria_da_vida.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-19_a_trajetoria_da_vida.pdf
524 pt pt-20260530-undefined
525 pt pt-19980618-2 452 O Espírito de Deus se movendo através do Tempo 1998-06-18 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-1-2.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-18_o_espirito_de_deus_se_movendo_atraves_do_tempo.pdf
526 pt pt-20260530-undefined
527 pt pt-19980617-2 454 A Palavra Criadora através de toda a Bíblia 1998-06-17 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17561.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-17_a_palavra_criadora_atraves_de_toda_biblia.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-17_a_palavra_criadora_atraves_de_toda_biblia.pdf
528 pt pt-19980617-1 453 Deus, A Origem de Todas as Coisas Boas 1998-06-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17562.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-17_deus_origem_de_todas_coisas_boas.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-17_deus_origem_de_todas_coisas_boas.pdf
529 pt pt-19980616-1 455 A Mensagem do Fim através de Toda a Bíblia 1998-06-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-3-1.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-16_a_mensagem_do_fim_atraves_de_toda_biblia.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-16_a_mensagem_do_fim_atraves_de_toda_biblia.pdf
530 pt pt-19980614-2 457 O Sétimo Selo e a Conclusão do Programa de Deus 1998-06-14 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-2-2.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-14_o_setimo_selo_e_conclusao_do_programa_de_deus.pdf
531 pt pt-20260530-undefined
532 pt pt-19981206-1 1049 O Êxodo do Último Dia 1998-12-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17863.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/06/1998-12-06_O-Exodo-do-Ultimo-Dia.mp3
533 pt pt-19980607-2 459 Os Segredos do Sétimo Selo que serão Revelados 1998-06-07 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-4.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-07_os_segredos_do_setimo_selo_que_serao_revelados.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/06/1998-06-07_os_segredos_do_setimo_selo_que_serao_revelados.pdf
534 pt pt-20260530-undefined
535 pt pt-19980531-2 461 O Sétimo Selo e o Dia e a Hora de Sua Vinda 1998-05-31 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17552.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-31_o_setimo_selo_e_o_dia_e_hora_de_sua_vinda.pdf
536 pt pt-19980531-1 460 O Sétimo Selo e as Três Testemunhas 1998-05-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-57.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-31_o_setimo_selo_e_tres_testemunhas.pdf
537 pt pt-19980530-1 462 O Entrelace entre Gentios e Judeus 1998-05-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17550.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-30_o_entrelace_entre_gentios_e_judeus.pdf
538 pt pt-19980527-1 463 O Mistério do Sétimo Selo e o Grande Terremoto 1998-05-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17549.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-27_o_misterio_do_setimo_selo_e_o_grande_terremoto.pdf
539 pt pt-19980526-1 464 O Sétimo Selo e as Orações dos Santos 1998-05-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17548.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-26_o_setimo_selo_e_oracoes_dos_santos.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-26_o_setimo_selo_e_oracoes_dos_santos.pdf
540 pt pt-19980525-1 465 O Sétimo Selo e a Nova Ordem Sacerdotal 1998-05-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17547.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-25_o_setimo_selo_e_nova_ordem_sacerdotal.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-25_o_setimo_selo_e_nova_ordem_sacerdotal.pdf
541 pt pt-19980524-1 467 A Autoridade Suprema do Sétimo Selo 1998-05-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-27-2.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-24_a_autoridade_suprema_do_setimo_selo.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-24_a_autoridade_suprema_do_setimo_selo.pdf
542 pt pt-19980524-2 466 O Sétimo Selo e a Ilha de Patmos 1998-05-24 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-58.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-24_o_setimo_selo_e_ilha_de_patmos.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-24_o_setimo_selo_e_ilha_de_patmos.pdf
543 pt pt-19980523-2 468 O Sétimo Selo e a Quarta Vigília 1998-05-23 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-29-2.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-23_o_setimo_selo_e_quarta_vigilia.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-23_o_setimo_selo_e_quarta_vigilia.pdf
544 pt pt-19980522-1 469 Os Mistérios do Sétimo Selo 1998-05-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17541.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-22_os_misterios_do_setimo_selo.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-22_os_misterios_do_setimo_selo.pdf
545 pt pt-19980521-3 471 Todas as Coisas são feitas novas com o Sétimo Selo 1998-05-21 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-30-2.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-21_todas_coisas_sao_feitas_novas_com_o_setimo_selo.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-21_todas_coisas_sao_feitas_novas_com_o_setimo_selo.pdf
546 pt pt-19980521-2 470 Firmes com Sétimo Selo 1998-05-21 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-32-2.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-21_firmes_com_setimo_selo.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-21_firmes_com_setimo_selo.pdf
547 pt pt-19980520-3 473 O Sétimo Selo Juntando os Escolhidos 1998-05-20 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-33-2.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-20_o_setimo_selo_juntando_os_escolhidos.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-20_o_setimo_selo_juntando_os_escolhidos.pdf
548 pt pt-19980520-2 472 A Bênção do Sétimo Selo 1998-05-20 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-35-2.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-20_a_bencao_do_setimo_selo.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-20_a_bencao_do_setimo_selo.pdf
549 pt pt-19980519-3 475 O Sétimo Selo: A Revelação do Ultimo Dia 1998-05-19 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-36-2.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-19_o_setimo_selo_revelacao_do_ultimo_dia.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-19_o_setimo_selo_revelacao_do_ultimo_dia.pdf
550 pt pt-19980519-2 474 Crescendo com O Sétimo Selo 1998-05-19 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-38.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-19_crescendo_com_o_setimo_selo.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-19_crescendo_com_o_setimo_selo.pdf
551 pt pt-19980518-2 477 Rompendo as Barreiras da Ignorância 1998-05-18 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-25-2.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-18_rompendo_barreiras_da_ignorancia.pdf
552 pt pt-19980518-1 476 Rompendo as Barreiras no Amor Divino 1998-05-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-26-2.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-18_rompendo_barreiras_no_amor_divino.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-18_rompendo_barreiras_no_amor_divino.pdf
553 pt pt-19980517-2 478 O Sétimo Selo e as Obras do Último Dia 1998-05-17 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-31-2.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-17_o_setimo_selo_e_obras_do_ultimo_dia.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-17_o_setimo_selo_e_obras_do_ultimo_dia.pdf
554 pt pt-19980516-1 479 O Sétimo Selo e a Ira de Deus 1998-05-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17527.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-16_o_setimo_selo_e_ira_de_deus.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-16_o_setimo_selo_e_ira_de_deus.pdf
555 pt pt-19980515-1 480 O Sétimo Selo e a Misericórdia de Deus 1998-05-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17526.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-15_o_setimo_selo_e_misericordia_de_deus.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-15_o_setimo_selo_e_misericordia_de_deus.pdf
556 pt pt-19980514-2 481 O Sétimo Selo e o Povo Latino 1998-05-14 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-34-2.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-14_o_setimo_selo_e_o_povo_latino.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-14_o_setimo_selo_e_o_povo_latino.pdf
557 pt pt-19980513-1 482 O Sétimo Selo e o Maná Escondido 1998-05-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17523.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-13_o_setimo_selo_e_o_mana_escondido.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-13_o_setimo_selo_e_o_mana_escondido.pdf
558 pt pt-19980511-2 484 A Obra da Trombeta Final 1998-05-11 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17519.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-11_a_obra_da_trombeta_final.pdf
559 pt pt-19980511-1 483 Os Negócios do Sétimo Selo 1998-05-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-42.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-11_os_negocios_do_setimo_selo.pdf
560 pt pt-19980510-1 488 O Sétimo Selo e a Sétima Trombeta 1998-05-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17518.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-10_o_setimo_selo_e_setima_trombeta.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-10_o_setimo_selo_e_setima_trombeta.pdf
561 pt pt-19980510-4 487 Ajudados pelo Sétimo Selo 1998-05-10 4 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-43.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-10_ajudados_pelo_setimo_selo.pdf
562 pt pt-19980510-3 486 O Sétimo Selo e os Sete Trovões 1998-05-10 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-44.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-10_o_setimo_selo_e_os_sete_trovoes.pdf
563 pt pt-19980510-2 485 O Sétimo Selo Pondo Fim aos Sistemas Mundiais 1998-05-10 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-37.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-10_o_setimo_selo_pondo_fim_aos_sistemas_mundiais.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-10_o_setimo_selo_pondo_fim_aos_sistemas_mundiais.pdf
564 pt pt-19980509-4 492 Os Valentes do Sétimo Selo 1998-05-09 4 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-46.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-09_os_valentes_do_setimo_selo.pdf
565 pt pt-19980509-3 491 Dedicados pelo Sétimo Selo 1998-05-09 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-48.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-09_dedicados_pelo_setimo_selo.pdf
566 pt pt-19980509-1 490 O Sétimo Selo e a Transformação das Crianças 1998-05-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-49.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-09_o_setimo_selo_e_transformacao_das_criancas.pdf
567 pt pt-20260530-undefined
568 pt pt-19980508-4 494 O Sétimo Selo e a Nova Criação 1998-05-08 4 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-41.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-08_o_setimo_selo_e_nova_criacao.pdf
569 pt pt-19980508-2 493 Nascendo com O Sétimo Selo 1998-05-08 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-45.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-08_nascendo_com_o_setimo_selo.pdf
570 pt pt-19980507-3 496 O Poder do Sétimo Selo 1998-05-07 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-47.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-07_o_poder_do_setimo_selo.pdf
571 pt pt-19980507-2 495 O Sétimo Selo Velado e Revelado em Sua Igreja 1998-05-07 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-50.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-07_o_setimo_selo_velado_e_revelado_em_sua_igreja.pdf
572 pt pt-19980506-1 497 O Êxodo do Sétimo Selo 1998-05-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17502.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-06_o_exodo_do_setimo_selo.pdf
573 pt pt-19980505-2 500 A Vitória do Sétimo Selo 1998-05-05 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17500.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-05_a_vitoria_do_setimo_selo.pdf
574 pt pt-19980505-1 499 A Luz do Sétimo Selo 1998-05-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-51.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-05_a_luz_do_setimo_selo.pdf
575 pt pt-19980505-3 498 A Fé do Sétimo Selo 1998-05-05 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-52.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-05_a_fe_do_setimo_selo.pdf
576 pt pt-19980504-4 503 As Obras do Sétimo Selo 1998-05-04 4 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-55.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-04_as_obras_do_setimo_selo.pdf
577 pt pt-19980504-2 502 A Missão e Bem-Aventurança dos Valentes do Filho de Davi 1998-05-04 2 https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-04_a_missao_e_bem-aventuranca_dos_valentes_do_filho_de_davi.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-04_a_missao_e_bem-aventuranca_dos_valentes_do_filho_de_davi.pdf
578 pt pt-19980504-3 501 A Mensagem do Sétimo Selo 1998-05-04 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-56.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-04_a_mensagem_do_setimo_selo.pdf
579 pt pt-19980503-3 506 O Deus Todo-Poderoso Velado e Revelado em Seu Anjo Mensageiro 1998-05-03 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17492.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-03_o_deus_todo-poderoso_velado_e_revelado_em_seu_anjo_mensageiro.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-03_o_deus_todo-poderoso_velado_e_revelado_em_seu_anjo_mensageiro.pdf
580 pt pt-19980503-2 505 O Caminho do Sétimo Selo sob o Mistério do Estabelecimento do Reino de Cristo 1998-05-03 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-53.jpg
581 pt pt-20260530-undefined
582 pt pt-19980502-1 508 A Juventude Resplandecendo no Último Dia 1998-05-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17491.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-02_a_juventude_resplandecendo_no_ultimo_dia.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-02_a_juventude_resplandecendo_no_ultimo_dia.pdf
583 pt pt-19980502-2 507 As Crianças Crescendo com O Sétimo Selo 1998-05-02 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-54.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-02_as_criancas_crescendo_com_o_setimo_selo.pdf
584 pt pt-19980501-3 510 O Anjo com o Evangelho Eterno 1998-05-01 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17487.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-01_o_anjo_com_o_evangelho_eterno.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-01_o_anjo_com_o_evangelho_eterno.pdf
585 pt pt-19980501-2 509 O Anjo com o Selo do Deus Vivo 1998-05-01 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17488.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/05/1998-05-01_o_anjo_com_o_selo_do_deus_vivo.pdf
586 pt pt-19980430-3 512 O Livro Aberto no Céu 1998-04-30 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17485.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-30_o_livro_aberto_no_ceu.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-30_o_livro_aberto_no_ceu.pdf
587 pt pt-19980430-1 511 A Luz do Sétimo Selo 1998-04-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17486.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-30_a_luz_do_setimo_selo.pdf
588 pt pt-19980429-3 514 As Grandes Profecias da Bíblia 1998-04-29 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17482.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-29_as_grandes_profecias_da_biblia.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-29_as_grandes_profecias_da_biblia.pdf
589 pt pt-19980429-2 513 O Chamado aos Escolhidos de Deus 1998-04-29 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17483.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-29_o_chamado_aos_escolhidos_de_deus.pdf
590 pt pt-19980427-6 515 A Posição do Sétimo Selo no Templo de Deus 1998-04-27 6 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17474.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-27_a_posicao_do_setimo_selo_no_templo_de_deus.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-27_a_posicao_do_setimo_selo_no_templo_de_deus.pdf
591 pt pt-19980426-1 517 O Sétimo Selo Identificado na Escritura 1998-04-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-17.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-26_o_setimo_selo_identificado_na_escritura.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-26_o_setimo_selo_identificado_na_escritura.pdf
592 pt pt-19980426-2 516 Recolhendo com o Sétimo Selo 1998-04-26 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-21-1.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-26_recolhendo_com_o_setimo_selo.pdf
593 pt pt-19980425-1 519 O Sétimo Selo e a Adoção dos Filhos de Deus 1998-04-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18-1.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-25_o_setimo_selo_e_adocao_dos_filhos_de_deus.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-25_o_setimo_selo_e_adocao_dos_filhos_de_deus.pdf
594 pt pt-19980425-2 518 Produzindo Fruto ao Máximo com o Sétimo Selo 1998-04-25 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-22-1.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-25_produzindo_fruto_ao_maximo_com_o_setimo_selo.pdf
595 pt pt-19980423-1 520 Perseverando até a Vitória Final 1998-04-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17467.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-23_perseverando_ate_vitoria_final.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-23_perseverando_ate_vitoria_final.pdf
596 pt pt-19980422-2 521 O Reinado do Sétimo Selo e as Crianças 1998-04-22 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-25-1.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-22_o_reinado_do_setimo_selo_e_criancas.pdf
597 pt pt-19980421-3 523 O Sétimo Selo e os Valentes do Filho de Davi 1998-04-21 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-26-1.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-21_o_setimo_selo_e_os_valentes_do_filho_de_davi.pdf
598 pt pt-19980421-2 522 As Bênçãos do Sétimo Selo 1998-04-21 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-27-1.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-21_as_bencaos_do_setimo_selo.pdf
599 pt pt-19980420-3 525 O Chamado do Sétimo Selo 1998-04-20 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-28.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-20_o_chamado_do_setimo_selo.pdf
600 pt pt-19980420-2 524 Os Frutos do Novo Nascimento à Luz do Sétimo Selo 1998-04-20 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-29-1.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-20_os_frutos_do_novo_nascimento_luz_do_setimo_selo.pdf
601 pt pt-19980419-2 1620 A Vitória Definitiva do Sétimo Selo sobre satanás 1998-04-19 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-36-1.jpg
602 pt pt-19980419-2 528 A Vitória Definitiva do Sétimo Selo sobre Satanás 1998-04-19 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-36-1.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-19_a_vitoria_definitiva_do_setimo_selo_sobre_satanas.pdf
603 pt pt-19980419-3 527 O Atalaia do Último Dia com o Sétimo Selo em Sua Mão 1998-04-19 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-31-1.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-19_o_atalaia_do_ultimo_dia_com_o_setimo_selo_em_sua_mao.pdf
604 pt pt-20260530-undefined
605 pt pt-19980418-2 530 O Sétimo Selo e os Escolhidos do Último Dia 1998-04-18 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-32-1.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-18_o_setimo_selo_e_os_escolhidos_do_ultimo_dia.pdf
606 pt pt-19980418-1 529 O Sétimo Selo Terminando de Construir o Corpo Místico de Cristo 1998-04-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-33-1.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-18_o_setimo_selo_terminando_de_construir_o_corpo_mistico_de_cristo.pdf
607 pt pt-19980417-1 836 A Voz de Deus no Último Dia 1998-04-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17449-6.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/04/1998-04-17_A-Voz-de-Deus-no-Ultimo-Dia.mp3
608 pt pt-19980417-3 531 O Sétimo Selo e a Zona de Segurança dos Escolhidos do Último Dia 1998-04-17 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-34-1.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-17_o_setimo_selo_e_zona_de_seguranca_dos_escolhidos_do_ultimo_dia.pdf
609 pt pt-19980415-2 532 O Mistério da Segunda Vinda de Cristo e o Destino da América do Norte no Último Dia 1998-04-15 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17443-2.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/04/1998-04-15_O-Misterio-da-Segunda-Vinda-de-Cristo-e-o-Destino-da-America-do-Norte-no-Ultimo-Dia.mp3
610 pt pt-19980414-2 533 O Sétimo Selo e a Nação Americana 1998-04-14 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17441.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/04/1998-04-14_o_setimo_selo_e_nacao_americana.pdf
611 pt pt-19980412-1 2031 O Mistério da Ressurreição do Senhor Jesus Cristo 1998-04-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17440.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/04/1998-04-12_O-Misterio-da-Ressurreicao-do-Senhor-Jesus-Cristo_1.mp3
612 pt pt-20260530-undefined
613 pt pt-19980410-2 2024 O Mistério da Morte do Senhor Jesus Cristo 1998-04-10 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17435.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/04/1998-04-10_O-Misterio-da-Morte-do-Senhor-Jesus-Cristo.mp3
614 pt pt-19980405-1 834 A Entrada Triunfal de Jesus em Jerusalém 1998-04-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17432-1.png
615 pt pt-20260530-undefined
616 pt pt-19980405-1 535 A Entrada Triunfal de Jesus em Jerusalém 1998-04-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17432-1.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/04/1998-04-05_A-Entrada-triunfal-de-Jesus-em-Jerusalem.mp3
617 pt pt-20260530-undefined
618 pt pt-19980330-1 538 O Rapto do Sétimo Selo 1998-03-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17429.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-30_o_rapto_do_setimo_selo.pdf
619 pt pt-19980329-2 540 O Sétimo Selo e o Amor Divino 1998-03-29 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-16.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-29_o_setimo_selo_e_o_amor_divino.pdf
620 pt pt-19980329-1 539 A Vitória do Sétimo Selo 1998-03-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-18.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-29_a_vitoria_do_setimo_selo.pdf
621 pt pt-19980328-2 541 O Apocalipse e o Anjo de Jesus 1998-03-28 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-19.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-28_o_apocalipse_e_o_anjo_de_jesus.pdf
622 pt pt-19980327-1 542 O Sétimo Selo e o Tempo de Misericórdia e Juízo 1998-03-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17424.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-27_o_setimo_selo_e_o_tempo_de_misericordia_e_juizo.pdf
623 pt pt-19980324-1 543 Tempo de Despertar com a Mensagem do Sétimo Selo 1998-03-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17421.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-24_tempo_de_despertar_com_mensagem_do_setimo_selo.pdf
624 pt pt-19980323-2 833 A Mensagem do Evangelho do Reino no Último Dia 1998-03-23 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17419-3.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/03/1998-03-23_A-Mensagem-do-Evangelho-do-Reino-no-Ultimo-Dia.mp3
625 pt pt-19980322-2 545 O Sétimo Selo e a Restauração do Povo Hebreu 1998-03-22 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-22.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-22_o_setimo_selo_e_restauracao_do_povo_hebreu.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-22_o_setimo_selo_e_restauracao_do_povo_hebreu.pdf
626 pt pt-19980322-1 544 O Sétimo Selo e a Restauração de Todas as Coisas 1998-03-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-25.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-22_o_setimo_selo_e_restauracao_de_todas_coisas.pdf
627 pt pt-19980318-2 546 O Sétimo Selo e o Sinal do Fim do Século 1998-03-18 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/05/youtube_thumbnail_17410.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-18_o_setimo_selo_e_o_sinal_do_fim_do_seculo.pdf
628 pt pt-19980317-2 547 Os Mistérios Contidos no Sétimo Selo 1998-03-17 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-23.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-17_os_misterios_contidos_no_setimo_selo.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-17_os_misterios_contidos_no_setimo_selo.pdf
629 pt pt-19980315-1 549 O Sétimo Selo e o Rapto da Igreja 1998-03-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-30.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-15_o_setimo_selo_e_o_rapto_da_igreja.pdf
630 pt pt-19980315-2 548 O Sétimo Selo e a Terceira Etapa 1998-03-15 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17404.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-15_o_setimo_selo_e_terceira_etapa.pdf
631 pt pt-19980314-2 550 O Sétimo Selo pondo Fim a Todas as Coisas 1998-03-14 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-26.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-14_o_setimo_selo_pondo_fim_todas_coisas.pdf
632 pt pt-19980313-2 551 O Sétimo Selo e a Mensagem do Tempo do Fim 1998-03-13 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-27.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-13_o_setimo_selo_e_mensagem_do_tempo_do_fim.pdf
633 pt pt-19980311-2 553 O Sétimo Selo e os Sete Trovões 1998-03-11 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-31.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-11_o_setimo_selo_e_os_sete_trovoes.pdf
634 pt pt-19980310-1 554 O Sétimo Selo e o Avivamento da Igreja 1998-03-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17394.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-10_o_setimo_selo_e_o_avivamento_da_igreja.pdf
635 pt pt-19980308-1 556 O Sétimo Selo e a Palavra Encarnada 1998-03-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-34.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-08_o_setimo_selo_e_palavra_encarnada.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-08_o_setimo_selo_e_palavra_encarnada.pdf
636 pt pt-19980308-2 555 O Sétimo Selo e o Espírito de Moisés e Elias 1998-03-08 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-35.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-08_o_setimo_selo_e_o_espirito_de_moises_e_elias.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-08_o_setimo_selo_e_o_espirito_de_moises_e_elias.pdf
637 pt pt-19980307-1 557 O Sétimo Selo e a Juventude do Último Dia 1998-03-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17389.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-07_o_setimo_selo_e_juventude_do_ultimo_dia.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-07_o_setimo_selo_e_juventude_do_ultimo_dia.pdf
638 pt pt-19980306-3 559 O Sétimo Selo Buscando aos Escolhidos 1998-03-06 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-33.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-06_o_setimo_selo_buscando_aos_escolhidos.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-06_o_setimo_selo_buscando_aos_escolhidos.pdf
639 pt pt-19980306-1 558 As Explosões do Sétimo Selo 1998-03-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17388.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-06_as_explosoes_do_setimo_selo.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-06_as_explosoes_do_setimo_selo.pdf
640 pt pt-19980305-3 561 O Sétimo Selo Aberto ao Público 1998-03-05 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17383.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-05_o_setimo_selo_aberto_ao_publico.pdf
641 pt pt-19980305-1 560 Os Frutos do Sétimo Selo 1998-03-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-36.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-05_os_frutos_do_setimo_selo.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-05_os_frutos_do_setimo_selo.pdf
642 pt pt-19980304-3 563 Trabalhando sob o Sétimo Selo 1998-03-04 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17380.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-04_trabalhando_sob_o_setimo_selo.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-04_trabalhando_sob_o_setimo_selo.pdf
643 pt pt-19980304-2 562 A Manifestação em Simplicidade do Sétimo Selo 1998-03-04 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17381.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-04_a_manifestacao_em_simplicidade_do_setimo_selo.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-04_a_manifestacao_em_simplicidade_do_setimo_selo.pdf
644 pt pt-19980302-1 564 A Luz do Sétimo Selo 1998-03-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17377.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-02_a_luz_do_setimo_selo.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-02_a_luz_do_setimo_selo.pdf
645 pt pt-19980301-3 565 A Vinda do Reino: O Tempo e o Território 1998-03-01 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17374-1.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/03/1998-03-01_A-Vinda-do-Reino-Tempo-e-o-Territorio.mp3
646 pt pt-19980226-1 566 O Sétimo Selo e a Obra de Reclamação 1998-02-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17368.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/02/1998-02-26_o_setimo_selo_e_obra_de_reclamacao.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/02/1998-02-26_o_setimo_selo_e_obra_de_reclamacao.pdf
647 pt pt-19980224-1 567 O Sétimo Selo Juntando os Escolhidos de Deus 1998-02-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17365.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/02/1998-02-24_o_setimo_selo_juntando_os_escolhidos_de_deus.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/02/1998-02-24_o_setimo_selo_juntando_os_escolhidos_de_deus.pdf
648 pt pt-19980220-2 568 O Sétimo Selo: Uma Porta Aberta no Céu 1998-02-20 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-1-1.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/02/1998-02-20_o_setimo_selo_uma_porta_aberta_no_ceu.pdf
649 pt pt-19980219-2 831 A Porta da Casa de Deus 1998-02-19 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17357-2.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/02/1998-02-19_A-Porta-da-Casa-de-Deus.mp3
650 pt pt-19980217-3 569 O Sétimo Selo: A Vinda do Filho do Homem com Seus Anjos 1998-02-17 3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/02/1998-02-17_o_setimo_selo_vinda_do_filho_do_homem_com_seus_anjos.pdf
651 pt pt-19980216-2 570 O Sétimo Selo: A Segunda Vinda de Cristo 1998-02-16 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-5.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/02/1998-02-16_o_setimo_selo_segunda_vinda_de_cristo.pdf
652 pt pt-19980215-1 572 O Mistério do Livro dos Sete Selos 1998-02-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-8.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/02/1998-02-15_o_misterio_do_livro_dos_sete_selos.pdf
653 pt pt-19980215-2 571 A Liderança do Sétimo Selo 1998-02-15 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-7.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/02/1998-02-15_a_lideranca_do_setimo_selo.pdf
654 pt pt-19980213-3 574 O Sétimo Selo e a Fé de Rapto 1998-02-13 3 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/youtube_thumbnail_17345.png https://www.carpa.com/sites/default/files/messages/pt-br/1998/02/1998-02-13_o_setimo_selo_e_fe_de_rapto.mp3 https://www.carpa.com/sites/default/files/messages/pt-br/1998/02/1998-02-13_o_setimo_selo_e_fe_de_rapto.pdf
655 pt pt-19980213-2 573 O Sétimo Selo no Último Dia 1998-02-13 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-10.jpg
656 pt pt-19980210-1 575 Os Segredos Fechados no Sétimo Selo 1998-02-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-13.jpg
657 pt pt-19980209-1 576 O Mistério da Evangelização do Último Dia 1998-02-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17338-3.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/02/1998-02-09_O-Misterio-da-Evangelizacao-do-Ultimo-Dia.mp3
658 pt pt-20260530-undefined
659 pt pt-20260530-undefined
660 pt pt-19980207-1 579 A Obra da Colheita no Fim do Século 1998-02-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17335-2.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/02/1998-02-07_A-Obra-Colheita-no-Fim-do-Século.mp3
661 pt pt-19980206-1 580 O Deus de Abraão 1998-02-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17334-1.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/02/1998-02-06_O-Deus-de-Abraao.mp3
662 pt pt-19980201-2 582 O Tempo para a Transformação 1998-02-01 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/maxresdefault-2.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/02/1998-02-01_o_tempo_para_transformacao.pdf
663 pt pt-20260530-undefined
664 pt pt-19980130-1 583 O Lugar de Segurança Hoje 1998-01-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/10/youtube_thumbnail_17331-1.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1998/01/1998-01-30_O-Lugar-de-Seguranca-hoje.mp3
665 pt pt-20260530-undefined
666 pt pt-20260530-undefined
667 pt pt-20260530-undefined
668 pt pt-20260530-undefined
669 pt pt-20260530-undefined
670 pt pt-20260530-undefined
671 pt pt-20260530-undefined
672 pt pt-20260530-undefined
673 pt pt-20260530-undefined
674 pt pt-20260530-undefined
675 pt pt-19971228-2 1202 O Rapto da Igreja 1997-12-28 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17304.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1997/12/1997-12-28_O-Rapto-da-Igreja.mp3
676 pt pt-19971228-1 1179 O Novo Templo 1997-12-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17305.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/12/1997-12-28_O-Novo-Templo.mp3
677 pt pt-19971226-1 1168 A Vida do Precursor e Sua Mensagem 1997-12-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17303.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2021/12/1997-12-26_A-Vida-do-Precursor-e-Sua-Mensagem.mp3
678 pt pt-19971224-1 1149 O Mistério da Data do Nascimento de Jesus 1997-12-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/2021/12/youtube_thumbnail_17302.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1997/12/1998-12-24_O-Misterio-da-Data-de-Nascimento-de-Jesus.mp3
679 pt pt-19971221-2 1235 O Mistério da Ceia das Bodas do Cordeiro 1997-12-21 2 https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17300.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1997/12/1997-12-21_O-Misterio-da-Ceia-das-Bodas-do-Cordeiro.mp3
680 pt pt-19971221-1 1240 O Mistério das Bodas do Cordeiro 1997-12-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17301.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1997/12/1997-12-21_O-Misterio-das-Bodas-do-Cordeiro.mp3
681 pt pt-19971220-1 1249 O Mistério do Vestido das Bodas do Cordeiro 1997-12-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17299-2.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2022/01/1997-12-20_O-Misterio-do-Vestido-das-Bodas-do-Cordeiro.mp3
682 pt pt-19971217-1 1255 O Mistério do Fim do Século e as coisas que Acontecerão no Último Dia 1997-12-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/2022/01/youtube_thumbnail_17298.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1997/12/1997-12-17_O-Misterio-fo-Fim-do-Seculo-e-as-coisas-que-acontecerao-no-ultimo-dia.mp3
683 pt pt-19971214-1 2058 Coisas que só Podem se Cumprir no Último Dia 1997-12-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17296.png https://lgccc-conferences.ewr1.vultrobjects.com/1997/1997-12-14_Coisas_que_so_podem_se_cumprir_no_ultimo_dia.mp3
684 pt pt-19971207-2 2009 O Mistério do Ano do Jubileu 1997-12-07 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17289.png
685 pt pt-19971205-2 1954 A Vinda do FIlho do Homem no Último Dia 1997-12-05 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17286.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/02/1997-12-05_A-Vinda-do-FIlho-do-Homem-no-Ultimo-Dia.mp3
686 pt pt-19971202-1 1943 O Mistério da Congregação dos Primogênitos Inscritos no Céu 1997-12-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17281.png
687 pt pt-19971201-1 1933 O Mistério da Luz que Dissipa as Trevas 1997-12-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17280.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/12/1997-12-01-O-Misterio-da-Luz-que-dissipa-as-trevas.mp3
688 pt pt-19971130-2 1922 O Mistério da Vinda do Filho do Homem com Seus Anjos no Ocidente 1997-11-30 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17278.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/01/1997-11-30_O-Misterio-da-Vinda-do-Filho-do-Homem-com-Seus-Anjos-no-Ocidente.mp3
689 pt pt-19971126-2 1912 O Mistério dos Quatro Tipos de Terra 1997-11-26 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17272.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/01/1997-11-26_O-Misterio-dos-Quatro-Tipos-de-Terra.mp3
690 pt pt-19971125-1 1892 O Mistério do Pai da Criação 1997-11-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17271.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/01/1997-11-25_O-Misterio-do-Pai-da-Criacao.mp3
691 pt pt-19971125-2 1902 O Mistério da Terra que é Abençoada 1997-11-25 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17270.png
692 pt pt-19971124-1 1887 O Mistério do Ocidente 1997-11-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17269.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/01/1997-11-24_O-Misterio-do-Ocidente.mp3
693 pt pt-19971123-2 1866 O Mistério de Gabriel e Miguel no Último Dia 1997-11-23 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17267.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/11/1997-11-23_O-Misterio-de-Gabriel-e-Miguel-no-Ultimo-Dia.mp3
694 pt pt-19971123-1 2736 O Mistério de Moises, Elias e Jesus 1997-11-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/05/youtube_thumbnail_17268.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/05/1997-11-23-O-Misterio-de-Moises-Elias-e-Jesus.mp3
695 pt pt-19971122-3 1982 O Mistério dos Ceifeiros do Último Dia 1997-11-22 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17264.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/11/1997-11-22_O-Misterio-dos-Ceifeiros-do-Ultimo-Dia.mp3
696 pt pt-19971122-4 1999 O Mistério da Obra-Prima de Deus 1997-11-22 4 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17263.png
697 pt pt-19971121-1 1986 O Mistério da Vinda do Senhor como O Sol de Justiça 1997-11-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17262.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/11/1997-11-21_O-Misterio-da-Vinda-do-Senhor-como-O-Sol-de-Justica.mp3
698 pt pt-19971120-1 1854 O Mistério de Sua Vinda como Ladrão na Noite 1997-11-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17261.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/12/1997-11-20_O-Misterio-de-Sua-Vinda-como_Ladrao-na-Noite.mp3
699 pt pt-19971119-1 1972 O Mistério dos Anjos da Colheita 1997-11-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17260.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/03/1997-11-18_O-Misterio-dos-Anjos-da-Colheita.mp3
700 pt pt-19971118-1 1977 O Mistério da Plenitude dos Gentios 1997-11-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17259.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/03/1997-11-18_O-Misterio-da-Plenitude-dos-Gentios.mp3
701 pt pt-19971117-1 1842 O Mistério da Transformação e o Arrebatamento dos Escolhidos de Deus 1997-11-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17258.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/11/1997-11-17_O-Misterioda-Transformacao-e-o-Arrebatamento-dos-Escolhidos-de-Deus.mp3
702 pt pt-19971116-1 1966 O Mistério da Vinda do Senhor nas Nuvens 1997-11-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17257.png
703 pt pt-19971115-3 1957 O Mistério das Três Bíblias 1997-11-15 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17252.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/02/1997-11-15_O-Misterio-das-Tres-Biblias.mp3
704 pt pt-19971114-4 1947 O Ministério do Sol a Lua e as Estrelas Marcando o Tempo 1997-11-14 4 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17248.png
705 pt pt-19971113-1 1939 O Mistério das Vigílias 1997-11-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17247.png
706 pt pt-19971112-1 1927 O Mistério das Dimensões 1997-11-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17246.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/01/1997-11-12_O-Misterio-das-Dimensoes.mp3
707 pt pt-19971109-2 1827 Abrindo o Entendimento com as Escrituras 1997-11-09 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17243.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/12/1997-11-09_Abrindo-o-Entendimento-com-as-Escrituras.mp3
708 pt pt-19971109-1 1962 Discernindo O Pensamento de Deus no Último Dia 1997-11-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/02/youtube_thumbnail_17244.png
709 pt pt-19971108-1 1562 O Mistério das Duas Consciências Juntas 1997-11-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17241.png
710 pt pt-19971108-2 1815 O Misterio de: sendo Ensinados por Deus 1997-11-08 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17240.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/11/1997-11-08_O-Misterio-de-sendo-ensinados-por-Deus.mp3
711 pt pt-19971107-1 1801 O Trigo Maduro 1997-11-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17239.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/11/1997-11-07_O-Trigo-Maduro.mp3
712 pt pt-19971106-2 2067 O Mistério das Recompensas 1997-11-06 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17235.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/11/1997-11-06_O-Misterio-das-Recompensas.mp3
713 pt pt-19971106-1 1789 O Mistério das Recompensas aos Vencedores 1997-11-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17236.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/11/1997-11-06_O-Misterio-das-Recompensas-aos-Vencedores.mp3
714 pt pt-19971104-1 1917 O Mistério da Glória de Deus Manifestada 1997-11-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17231.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/01/1997-11-04_O-Misterio-da-Gloria-de-Deus-Manifestada.mp3
715 pt pt-19971103-3 1897 O Mistério da Simplicidade Divina 1997-11-03 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17228.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/01/1997-11-03_O-Misterio-da-Simplicidade-divina.mp3
716 pt pt-19971102-1 1906 O Mistério dos Sete Selos de Apocalipse, Capítulo 5 1997-11-02 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/01/youtube_thumbnail_17227.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/01/1997-11-02_O_Misterio-dos-Sete-Selos-de-Apocalipse-Capitulo-5.mp3
717 pt pt-19971031-1 1762 Profecias Cumpridas no Último Dia 1997-10-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17223.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/10/1997-10-31_Profecias-cumpridas-no-ultimo-dia_1.mp3
718 pt pt-19971031-2 1775 Sob as Asas dos Querubins 1997-10-31 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17222.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/10/1997-10-31_Sob-as-Asas-dos-Dois-Querubins.mp3
719 pt pt-19971031-3 1882 O Mistério da Semente da Palavra Criadora 1997-10-31 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17221.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/01/1997-10-31_O-Misterio-da-Semente-da-Palavra_Criadora.mp3
720 pt pt-19971030-2 1795 O Mistério da Oitava Estrela que não se vê em Apocalipse 1:20 1997-10-30 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17219.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/11/1997-10-30_O-Misterio-da-Oitava-Estrela-que-nao-se-ve-em-apocalipse-1-20.mp3
721 pt pt-19971029-2 1754 O Mistério da Piedade 1997-10-29 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17217.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/10/1997-10-29_O-Misterio-da-Piedade.mp3
722 pt pt-19971029-1 1877 O Mistério do Primogênito do Céu 1997-10-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17218.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/12/1997-10-29_O-Misterio-do-Primogenito-do-Ceu.mp3
723 pt pt-19971028-2 1719 A Fonte da Água da Vida 1997-10-28 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_64046.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/10/1997-10-28_A-Fonte-da-Agua-da-Vida.mp3
724 pt pt-19971026-2 1724 O Mistério dos Dois Querubins de Ouro e os Dois Querubins de Oliveira 1997-10-26 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17212.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/10/1997-10-26_O-Misterio-dos-dois-querubins-de-ouro-eos-dois-querubins-de-oliveira.mp3
725 pt pt-19971025-1 1708 O Mistério da Arca do Pacto e Seu Conteúdo 1997-10-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_64021.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/09/1997-10-25_O-Misterio-da-Arca-do_pacto-e-Seu-Conteudo.mp3
726 pt pt-19971021-4 1698 O Mistério do Anjo como Evangelho Eterno 1997-10-21 4 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17201.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/09/1997-10-21_O-Misterio-do-Anjo-com-o-Evangelho-Eterno.mp3
727 pt pt-19971020-1 1859 O Mistério do Reino Milenial 1997-10-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17200.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/12/1997-10-20_O-Misterio-do-Reino-Milenial.mp3
728 pt pt-19971019-2 2724 O Mistério dos Nomes Escritos no Céu 1997-10-19 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/05/youtube_thumbnail_17198.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/10/1997-10-19-o_misterio_dos_nomes_escritos_no_ceu.mp3
729 pt pt-19971017-2 1686 O Mistério dos Sete Trovões de Apocalipse, Capítulo 10 1997-10-17 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17194.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/10/1997-10-17_O-Misterio-dos-Trovoes-de-Apocalipse-10.mp3
730 pt pt-19971016-2 1673 O Mistério da Quarta Vigília 1997-10-16 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17192.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/09/1997-10-16_O-Misterio-da-Quarta-Vigilia.mp3
731 pt pt-19971015-2 1662 O Mistério do Novo Corpo 1997-10-15 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17190.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/09/1997-10-15_O-Misterio-do-Novo-Corpo.mp3
732 pt pt-19971014-2 1846 O Mistério dos Tempos e as Épocas sob O Poder do Pai 1997-10-14 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/QmIi8R7v-youtube_thumbnail_17188.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/10/1997-10-14_O-Misterio-dos-Tempos-e-as-Estacoes-sob-o-Poder-do-Pai.mp3
733 pt pt-19971014-1 1832 O Mistério das Dimensões 1997-10-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/12/youtube_thumbnail_17189.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/12/1997-10-14_O-Misterio-das-Dimensoes.mp3
734 pt pt-19971013-2 1820 O Mistério da Meia Hora de Silêncio no Céu 1997-10-13 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/YEZDfuU7-youtube_thumbnail_17186.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/11/1997-10-13_O-Misterio-da-meia-hora-de-silencio-no-ceu.mp3
735 pt pt-19971012-2 2083 O Mistério do Anjo com o Selo do Deus Vivo 1997-10-12 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/05/youtube_thumbnail_17184.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/10/1997-10-12_O-Misterio-do-Anjo-com-O-Selo-do-Deus-Vivo.mp3
736 pt pt-19971010-1 1808 O Mistério da Fé dos Valentes do Filho de Davi 1997-10-10 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17182.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/11/1997-10-10_O-Misterio-da-Fe-dos-Valentes-do-Filho-de-Davi_1.mp3
737 pt pt-19971009-1 1782 Os Mistérios já Cumpridos, Os Mistérios em Cumprimento e os Mistérios que se Cumprirão 1997-10-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/11/youtube_thumbnail_17181.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/11/1997-10-09_Os-Misterios-ja-Cumpridos-os-Misterios-em-Cumprimento-e-os-Misterios-que-se-Cumprirao.mp3
738 pt pt-19971008-1 1733 Os Mistérios de Deus que hoje estão se cumprindo 1997-10-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17180.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/10/1997-10-08_Os-Misterios-de-Deus-que-hoje-estao-se-cumprindo.mp3
739 pt pt-19971005-1 1741 O Mistério do que João ouviu, mas não pôde Escrever 1997-10-05 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17179.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/10/1997-10-05_O-Misterio-do-que-Joao-Ouviu-mas-nao-pode-Escrever-low.mp3
740 pt pt-19971005-2 1768 O Mistério do Livro que João Comeu 1997-10-05 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17178.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/10/1997-10-05_O-Misterio-do-Livro-que-Joao-Comeu.mp3
741 pt pt-19971003-1 1749 O Mistério do Reino de Deus que Todos os Escolhidos devem Conhecer 1997-10-03 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/10/youtube_thumbnail_17177.png
742 pt pt-19970928-1 1714 O Mistério das Bênçãos da Primogenitura 1997-09-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17176.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/10/1997-09-28_O-Misterio-das-Bencaos-da-Primogenitura.mp3
743 pt pt-19970924-1 1703 O Mistério da Palavra Profética 1997-09-24 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17173.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/09/1997-09-24_O-Misterio-da-Palavra-Profetica.mp3
744 pt pt-19970922-1 1690 O Mistério da Colheita do Fim do Século 1997-09-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17171.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/09/1997-09-22_O-Misterio-da-Colheita-no-Fim-do-Seculo.mp3
745 pt pt-19970921-2 1646 O Mistério do Oriente e do Ocidente 1997-09-21 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17169.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/09/1997-09-21_O-Misterio-do-Oriente-e-do-Ocidente.mp3
746 pt pt-19970920-1 2053 O Mistério da Fé 1997-09-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17168.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/04/1997-09-20-o-misterio-da-fe.mp3
747 pt pt-19970920-2 1678 O Mistério do Sétimo Selo 1997-09-20 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17167.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/09/1997-09-20_O-Misterio-do-Setimo-Selo.mp3
748 pt pt-19970919-1 1635 O Mistério do Cordeiro e o Leão 1997-09-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17166.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/08/1997-09-19_O-Misterio-do-Cordeiro-e-o-Leao.mp3
749 pt pt-19970918-1 1624 A Jerusalém Celestial e a Jerusalém Terrena 1997-09-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17165.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/09/1997-09-18_A-Jerusalem-Celestial-e-a-Jerusalem-Terrena.mp3
750 pt pt-19970917-1 1667 O Mistério da Igreja do Senhor Jesus Cristo 1997-09-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/09/youtube_thumbnail_17164.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/09/1997-09-17_O-Misterio-da-Igreja-do-Senhor-Jesus-Cristo.mp3
751 pt pt-19970916-1 1652 O Mistério do Cordeiro com os Sete Chifres e os Sete Olhos 1997-09-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17163.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/08/1997-09-16_O-Misterio-do-Cordeiro-com-os-sete-chifres-e-sete-olhos.mp3
752 pt pt-19970915-1 1641 O Mistério da Palavra de Deus: Alimento ao seu Devido Tempo 1997-09-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17162.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/08/1997-09-15_O-Misterio-da-palavra-de-Deus-Alimento-ao-Seu-Devido-Tempo.mp3
753 pt pt-19970914-2 1610 O Mistério da Palavra de Bênção e Juízo 1997-09-14 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17160.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/08/1997-09-14_O-Misterio-da-Palavra-de-Bencao-e-Juizo.mp3
754 pt pt-19970914-1 1596 O Mistério da Encarnação da Palavra 1997-09-14 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17161.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/07/1997-09-14_O-Misterio-da-Encarnacao-da-Palavra.mp3
755 pt pt-19970912-2 1630 O Mistério do Trigo e o Joio 1997-09-12 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17156.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/08/1997-09-12_O-Misterio-do-Trigo-e-o-Joio.mp3
756 pt pt-19970911-1 1615 O Mistério das Virgens Insensatas e as Virgens Prudentes 1997-09-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/08/youtube_thumbnail_17155.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/08/1997-09-11_O-Misterio-das-Virgens-Insensatas-e-as-virgens-prudentes.mp3
757 pt pt-19970910-3 1601 O Mistério da Plenitude dos Gentios 1997-09-10 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17152.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/07/1997-09-10_O-Misterio-da-Plenitude-dos-Gentios.mp3
758 pt pt-19970909-1 1584 O Mistério do Ano do Jubileu 1997-09-09 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17151.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/09/1997-09-09_O-Misterio-do-Ano-do-Jubileu.mp3
759 pt pt-19970908-1 1590 O Mistério dos Negócios do Pai 1997-09-08 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17150.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2022/07/1997-09-08_O-Misterio-dos-Negocios-do-Pai.mp3
760 pt pt-19970907-2 1575 O Mistério do Dia da Expiação 1997-09-07 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17148.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/09/1997-09-07_O-Misterio-do-Dia-da-Expiacao_1.mp3
761 pt pt-19970907-1 1564 O Mistério do Sangue de Cristo 1997-09-07 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17149.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/11/1997-09-07_O-Misterio-do-Sangue-de-Cristo.mp3
762 pt pt-19970906-1 1549 O Mistério da Redenção 1997-09-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17147.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-09-06_O-Misterio-da-Redencao.mp3
763 pt pt-19970905-2 1523 O Mistério do Reino de Deus Vindo em Poder e Glória 1997-09-05 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17145.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-09-05_O-Misterio-do-Reino-de-Deus-Vindo-em-Poder-e-Gloria.mp3
764 pt pt-19970904-1 1535 O Mistério da Restauração de Todas as Coisas 1997-09-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17144.png
765 pt pt-19970902-2 1509 O Mistério das Parábolas 1997-09-02 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17140.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/kbTQgYXK-1997-09-02_O-Misterio-das-Parabolas.mp3
766 pt pt-19970901-2 1497 O Mistério da Profecia Cumprida 1997-09-01 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17138.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-09-01_O-Misterio-da-Profecia-Cumprida.mp3
767 pt pt-19970831-1 2039 O Mistério da Nova Criação 1997-08-31 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17136.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/08/1997-08-31_O-Misterio-da-Nova-Criacao.mp3
768 pt pt-19970830-1 1556 O Mistério da Ordem de Melquisedeque 1997-08-30 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17134.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/08/1997-08-30_O-Misterio-da-Ordem-de-Melquisedeque.mp3
769 pt pt-19970830-2 1571 O Mistério da Árvore da Vida e da Árvore do Conhecimento do Bem e do Mal 1997-08-30 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/07/youtube_thumbnail_17135.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/08/1997-08-30_O-Misterio-da-Arvore-da-Vida-e-da-Arvore-do-Conhecimento-do-bem-e-do-mal_1.mp3
770 pt pt-19970829-3 2013 O Mistério das Sete Estrelas e dos Sete Candeeiros 1997-08-29 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17131.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/03/1997-08-7_O-Misterio-das-Sete-Estrelas-e-os-Sete-Candeeiros.mp3
771 pt pt-19970829-1 1531 O Alimento Espiritual a Seu Devido Tempo 1997-08-29 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17133.png
772 pt pt-19970829-2 1543 O Mistério do Rapto dos Escolhidos 1997-08-29 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17132.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-29_O-Misterio-do-Rapto-dos-Escolhidos.mp3
773 pt pt-19970828-3 1518 O Mistério da Ressurreição e os Quarenta Dias 1997-08-28 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17129.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08_28_O-Misterio-da-Ressurreicao-e-os-quarenta-dias.mp3
774 pt pt-19970827-2 1503 O Mistério da Transformação 1997-08-27 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17127.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-27_O-Misterio-da-Transformacao.mp3
775 pt pt-19970827-1 2003 O Avivamento trazido pela Revelação 1997-08-27 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17126.png http://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/08/1997-08-27_O-Avivamento-Trazido-pela-Revelacao.mp3
776 pt pt-19970826-1 1492 O Mistério do Maná Escondido 1997-08-26 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/06/youtube_thumbnail_17125.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-26_O-Misterio-do-Mana-Escondido.mp3
777 pt pt-19970825-2 1994 O Mistério da Vinda do Filho do Homem 1997-08-25 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_17124.png
778 pt pt-19970824-3 1484 O Misterio do Cavalo Branco do Apocalipse 1997-08-24 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17121.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-24_O-Misterio-do-Cavalo-Branco-do-Apocalipse.mp3
779 pt pt-19970824-2 1470 Os Segredos Sob O Sétimo Selo 1997-08-24 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17122.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-24_Os-Segredos-sob-o-Setimo-Selo_1.mp3
780 pt pt-19970823- 2078 Instrui a Criança em sua Carreira 1997-08-23 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/05/youtube_thumbnail_17117.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/05/1997-08-23_Instrui-a-crianca-em-sua-carreira.mp3
781 pt pt-19970823-3 1477 O Mistério do Anjo de Jesus no Último Dia 1997-08-23 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_63432.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-23_O-Misterio-do-Anjo-de-Jesus-no-Ultimo-Dia.mp3
782 pt pt-19970822-1 1465 O Mistério do Recolhimento dos Escolhidos 1997-08-22 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17116.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-22_O-Misterio-do-Recolhimento-dos-Escolhidos.mp3
783 pt pt-19970821-1 1457 O Mistério da Trombeta do Jubileu 1997-08-21 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17114.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-21_O-Misterio-da-Trombeta-do-Jubileu_1.mp3
784 pt pt-19970821-2 1452 O Mistério do Monte da Transfiguração 1997-08-21 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17115.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-21_O-Misterio-do-Monte-da-Transfiguracao_1.mp3
785 pt pt-19970820-1 1446 O Mistério do Livro Aberto 1997-08-20 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17112.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-20_O-Misterio-do-Livro-Aberto.mp3
786 pt pt-19970819-1 1435 O Mistério do Sétimo Selo 1997-08-19 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17110.png
787 pt pt-19970818-1 1412 O Maior Mistério do Reino dos Céus 1997-08-18 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17108.png
788 pt pt-19970818-2 1441 O Dois Maiores Mistérios do Reino dos Céus 1997-08-18 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/05/youtube_thumbnail_17109.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-18_Os-Dois-Maiores-Misterios-do-Reino-dos-Ceus.mp3
789 pt pt-19970817-1 1402 O Mistério da Justiça Divina no Plano de Redenção 1997-08-17 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17107.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-17_O-Misterio-da-Justica-Divina-no-Plano-de-Redencao.mp3
790 pt pt-19970816-1 2758 Saudação aos Ministros: A Casa de Deus 1997-08-16 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_17102.png
791 pt pt-19970816-3 1424 O Mistério do Anjo de Jesus 1997-08-16 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17103.png
792 pt pt-19970815-4 1389 O Mistério dos Sinais no Céu Revelando o Senhor Jesus Cristo no Último Dia 1997-08-15 4 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17098.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-15_O-Misterio-dos-Sinais-no-Ceu-REvelando-o-Senhor-Jesus-Cristo-no-Ultimo-Dia.mp3
793 pt pt-19970815-2 1431 O Mistério do Cumprimento da Ordem da Ressurreição esperada pelos que Serão Transformados 1997-08-15 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17101.png
794 pt pt-19970814-2 1372 O Mistério dos Sinais no Céu 1997-08-14 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17097.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-14_O-Misterio-dos-Sinais-no-Ceu.mp3
795 pt pt-19970813-1 1396 O Mistério da Glória de Deus Manifestada em Seu Templo 1997-08-13 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17093.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-13_O-Misterio-da-Gloria-de-Deus-Manifestada-em-Seu-Templo.mp3
796 pt pt-19970813-2 1407 O Mistério da Trombeta que Soa no Último Dia 1997-08-13 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17095.png
797 pt pt-19970813-3 1420 O Mistério da Segunda Vinda de Cristo com Seus Anjos no Último Dia 1997-08-13 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/04/youtube_thumbnail_17094.png
798 pt pt-19970812-3 1366 O Mistério da Voz Fiel de Jesus Cristo em Carne Humana Hoje 1997-08-12 3 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17091.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-12_O-Misterio-da-Voz-Fiel-de-Jesus-Cristo-em-Carne-Humana.mp3
799 pt pt-19970812-1 1353 O Mistério do Cumprimento da Profecia 1997-08-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17089.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-12_O-Misterio-do-Cumprimento-da-Profecia.mp3
800 pt pt-19970812-4 1381 O Mistério da Grande Voz como de Trombeta no Último Dia 1997-08-12 4 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17090.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-12_O-Misterio-da-Grande-Voz-como-de-Trombeta-no-Ultimo-Dia.mp3
801 pt pt-19970811-2 1340 O Mistério da Redenção e a Graça para sermos Adotados 1997-08-11 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17088.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-11_O-Misterio-da-Redencao-e-a-Graca-para-ser-Adotados.mp3
802 pt pt-19970811-1 1359 O Mistério da Mensagem do Anjo de Jesus Cristo em Simplicidade 1997-08-11 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17087.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-11_O-Misterio-da-Mensagem-do-Anjo-de-Jesus-Cristo-em-Simplicidade.mp3
803 pt pt-19970810-4 1346 O Mistério do Universo em Vaso de Barro Hoje 1997-08-10 4 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17084.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-10_O-Misterio-do-Universo-em-um-vaso-de-Barro-Hoje.mp3
804 pt pt-19970810-2 1332 Os Segredos que Deus Guardou do Mistério do Sétimo Selos 1997-08-10 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17086.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-10_Os-Segredos-que-Deus-Guardou-do-Mistério-do-Sétimo-Selo.mp3
805 pt pt-19970809-2 1312 O Mistério dos Sete Trovões para o Despertamento Final, a Transformação e o Rapto 1997-08-09 2 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/02/youtube_thumbnail_17081.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-09_O-Misterio-dos-Sete-Trovoes-para-o-Despertamento-Final-a-Transformacao-e-o-Rapto.mp3
806 pt pt-19970809-5 1324 O Mistério do Maná Escondido dado pelo Pastor Fiel e Prudente 1997-08-09 5 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/03/youtube_thumbnail_17078.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-09_O-Misterio-do-mana-escondido-dado-pelo-Pastor-Fiel-e-Prudente.mp3
807 pt pt-19970808-3 1301 O Mistério do Cavaleiro Fiel e Verdadeiro 1997-08-08 3 https://ewr1.vultrobjects.com/lgcc-conferences/2022/02/youtube_thumbnail_17074.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1997/08/1997-08-08_O-Misterio-do-Cavaleiro-Fiel-e-Verdadeiro.mp3
808 pt pt-19970807-4 1318 A Nuvem Teofânica e Misteriosa Carregada de Bênçãos para os Primogênitos 1997-08-07 4 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2022/02/youtube_thumbnail_17070.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-07_A-Nuvem-Teofanica-e-Misteriosa-Carregada-de-Bencaos-para-os-Primogenitos.mp3
809 pt pt-19970807-2 1278 O Mistério da Verdade e a Orientação do Espírito Santo no Último Mensageiro 1997-08-07 2 https://ewr1.vultrobjects.com/lgcc-conferences/2022/02/youtube_thumbnail_17072.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/2022/02/1997-08-07_O-Misterio-da-Verdade-e-a-orientacao-do-Espirito_santo-no-ultimo-mensageiro.mp3
810 pt pt-19970807-3 1293 O Mistério do Chamado do Senhor Jesus Cristo e Sua Esposa, desde Sua Casa, no Último Dia 1997-08-07 3 https://ewr1.vultrobjects.com/lgcc-conferences/2022/02/youtube_thumbnail_17071.png https://conferencias.carpa.com/pt-br/wp-content/uploads/sites/3/1997/08/1997-08-07_O-Misterio-do-Chamado-do-Senhor-Jesus-Cristo-e-Sua-Esposa-desde-Sua-Casa-no-Ultimo-Dia.mp3
811 pt pt-19970806-3 1266 O Mistério da Revelação para compreender os Mistérios do Reino dos Céus 1997-08-06 3 https://ewr1.vultrobjects.com/lgcc-conferences/2022/02/youtube_thumbnail_17067.png
812 pt pt-19970806-4 1285 O Mistério da Manifestação dos Ministérios de Moisés e Elias no Último Dia 1997-08-06 4 https://ewr1.vultrobjects.com/lgcc-conferences/2022/02/youtube_thumbnail_17066.png http://ewr1.vultrobjects.com/lgccc-conferences/pt-br/1997-08-06_O-Misterio-da-Manifestacao-dos-Ministerios-de-Moises-e-Elias-no-Ultimo-Dia.mp3
813 pt pt-19970725-1 1262 Os Mistérios do Reino dos Céus sendo Revelados à Igreja do Senhor Jesus Cristo 1997-07-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2022/02/youtube_thumbnail_17056.png
814 pt pt-19970628-1 2046 O Vento Forte do Oriente 1997-06-28 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_17005.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/04/1997-06-28_O-Vento-Forte-do-Oriente.mp3
815 pt pt-19970601-1 2073 O Sócio de Deus do Último Dia 1997-06-01 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/04/youtube_thumbnail_16975.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/04/1997-06-01_O-Socio-de-Deus-do-Ultimo-Dia.mp3
816 pt pt-19970404-1 2719 Os Filhos de Deus no Fim Tempo 1997-04-04 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/05/youtube_thumbnail_16909.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/05/1997-04-04_Os-Filhos-de-Deus-no-Fim-Tempo.mp3
817 pt pt-19970323-1 2018 A Entrada Triunfal do Filho de Davi em Jerusalém 1997-03-23 1 https://ewr1.vultrobjects.com/lgcc-conferences/sites/1/2023/03/youtube_thumbnail_16900.png
818 pt pt-19970215-1 2786 A Árvore Frutífera 1997-02-15 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_16851.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/06/1997-02-15-1-A_Arvore_Frutifera.mp3
819 pt pt-19970214-2 2741 A Última Bênção de Deus para esta Geração 1997-02-14 2 https://ewr1.vultrobjects.com/lgcc-conferences/2023/05/VS3eZlH3-youtube_thumbnail_16849.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/05/1997-02-14_A-Ultima-bencao-de-Deus-para-esta-Geracao.mp3
820 pt pt-19970209-2 2774 O Ministério na Casa do Senhor Jesus Cristo no Último Dia 1997-02-09 2 https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_16841.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/1997/02/1997-02-09-O_Ministerio_na_Casa_do_Senhor_Jesus_Cristo_no_Ultimo_Dia-low.mp3
821 pt pt-19970206-1 2731 A América Latina e o Lugar Santíssimo do Templo de Deus 1997-02-06 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/05/youtube_thumbnail_16837.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/05/1997-02-06-a_america_latina_e_o_lugar_santissimo_do_templo_de_deus.mp3
822 pt pt-19970112-2 2753 Tempo de Jubileu na Casa de Deus 1997-01-12 2 https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_16824.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/06/1997-01-12_Tempo_de_Jubileu_na_Casa_de_Deus.mp3
823 pt pt-19980312-2 552 O Sétimo Selo e a Mensagem do Evangelho do Reino 1998-03-12 2 https://ewr1.vultrobjects.com/lgcc-conferences/2021/07/Wd9Ni7DR-lgccc_default_thumbnail.jpg https://www.carpa.com/sites/default/files/messages/pt-br/1998/03/1998-03-12_o_setimo_selo_e_mensagem_do_evangelho_do_reino.pdf
824 pt pt-19980127-2 2762 Os Pescadores de Deus no Último Dia 1998-01-27 2 https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_17330.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/06/1998-01-27-os_pescadores_de_Deus-no_ultimo_dia.mp3
825 pt pt-19980125-1 2768 O Mistério do Cumprimento da Segunda Vinda de Cristo 1998-01-25 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_17325.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/06/1998-01-25-1-o_misterio_do_cumprimento_da_segunda_vinda_de_Cristo.mp3
826 pt pt-19971012-1 2781 O Mistério do Quinto Cavalo do Apocalipse 1997-10-12 1 https://ewr1.vultrobjects.com/lgcc-conferences/2023/06/youtube_thumbnail_17185.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/06/1997-10-12-1-O_Misterio_do_Quinto_Cavalo_do_Apocalipse-low.mp3
827 pt pt-19970406-2 2748 A Segunda Vinda do Senhor Jesus Cristo à Terra no Último Dia - Parte II 1997-04-06 2 https://ewr1.vultrobjects.com/lgcc-conferences/2023/05/youtube_thumbnail_16914.png https://ewr1.vultrobjects.com/lgccc-conferences/sites/3/2023/05/1997-04-06_A-Segunda-Vinda-do-Senhor-Jesus-Cristo-a-Terra-no-Ultimo-Dia-parte2.mp3

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,97 @@
6a37884a-e763-4b40-95fe-f740dffb3463.png
6d70e4bb-412d-42a3-9d6f-2bf0428d7349.png
42d0531f-7db3-41c0-aa4c-fa2a9791ddac.png
3b17e577-2383-4bbf-a557-d7aa7133ad1a.png
1c67e93f-6645-43e4-913b-3c36e7f72568.png
5cc52269-9928-44d3-a944-bda0a7284b4b.png
b09ec281-ec3c-4ac1-a873-822416fd5d8f.png
f0dc4568-db6b-4c5f-ae69-4cf165e4001a.png
01662009-d945-4f76-b714-9793f51c5f57.png
b0b8a128-33a4-4ae4-aaec-7b0d07136835.png
bd37afba-5d1b-450f-b685-26ec2a504973.png
0ce0e4be-95bf-4a6d-b7df-b1aa1e4e7c7f.png
04a0e38f-6bdd-421b-99fa-37881d6bf69a.png
6eca2120-64a9-48da-82bd-70b53d3337bd.png
3e0f1ccc-f848-40e0-a9b3-095827a30063.png
c74c2598-892d-4783-92a1-b75e39c89cc2.png
c11d95f7-5ecc-4fc2-af45-d8ce9604a2c6.png
6b724d20-a8ed-450b-bfdb-3e2258b0e675.png
349cb505-0df5-4b62-bfa4-b690e5724d3f.png
8c28fa6e-95e2-49ef-ad6f-fc5946cfb2f1.png
5577c8e2-9667-4c7b-bce5-ab95c59cfc4a.png
4b52e3df-10fe-47be-8095-70ed7e652475.png
561460b7-6689-4853-b1a2-6178f59e686a.png
6ee999f0-31d6-4f50-8f5d-be5086523a9c.png
95e1d4c9-75e7-48ab-be31-44ce8738cd3d.png
9eafb228-b9ef-40f3-a0cb-e7186836a9a2.png
db3374b0-5b37-438a-a69e-59d0cd746764.png
60d5897f-10e9-4cd9-9563-aa8800f89506.png
22312542-3a88-4b7e-82d8-4884d3524ccb.png
48de3977-7fc8-4090-92fe-3c62aeae04cb.png
bb1049ae-2fec-43ef-825f-de48068fdeaa.png
31854526-846d-46eb-bcc6-41526eb69d9f.png
053e12bc-042e-42cb-88c4-903c4e6c9ac2.png
94981833-9746-4119-8f69-8b15d37ad9b4.png
7030f9de-6345-4d77-b302-676db4206812.png
13e058b1-6ac0-402c-9e9c-b63173e2a07a.png
7e371d19-fdd1-4cfc-8655-239b1c9595fd.png
015b2456-1e2d-43e4-8d30-73a13d2e27bd.png
c305e749-1e04-4818-b020-e0523348749d.png
ee38f2cb-d9e8-4bc0-b75f-fd6c4d2531ba.png
f0d79cd8-bfce-4d4d-a33c-6424ebefd2f7.png
b2048980-208a-45ee-a779-635945da33fe.png
492c383b-f025-4a6b-92f3-94d03cea992a.png
754d6746-0407-45d2-8934-6d03422d3828.png
966b9ec2-75a8-43b3-8315-978a3addfbd4.png
0222c989-0671-4ba6-a4bd-cd20a2ea84e2.png
3040a71c-6afa-448e-86fb-cf9fa18b0c0a.png
b9834ad0-6612-4d15-8b27-1c3b4377ed7e.png
da7a9b05-cb95-40ec-8fc5-73ce02b160f7.png
0ad410d0-950c-4296-9d82-cc5cfb9ebd44.png
23b27eb3-c1fd-4aae-9b74-3218beef227f.png
9f6871f2-1787-4c60-8b42-e958fa9e7d75.png
6d7a350c-0588-4425-b3d5-f337555ae357.png
e02be3d3-5e43-4f03-935c-034b4d1f1716.png
f53bd4d4-eb5d-4953-bdec-9c0e58d9f770.png
93c363d0-16c5-4396-9f9a-b534bb9d6dbc.png
d6ceab17-9291-411c-b804-6593f723ed0c.png
5f670807-c93d-41a9-b624-50d88b18d5c8.png
3d5d4705-a8a5-49b5-8074-d72a445e0482.png
05e7373a-0960-4268-8e1a-cc38d3d657e7.png
759ec642-de1d-489b-9a6e-06c3c6a5a805.png
35bd1093-20a6-4e22-a331-eb4221987a09.png
eb1c08e7-08c8-4696-a535-f70b192fde76.png
12b8f664-bef2-4edf-b85b-0f6b6254d246.png
794e08bc-4290-4899-8c09-0da80d1260ad.png
7603ee32-51fc-4c86-b97d-192f702b9822.png
c818e120-251c-407e-a2d5-4f39750e5ef9.png
c4d07fe6-a83e-4bc3-84af-109784294e92.png
598cabe0-80fe-449a-8d00-88766989b1e3.png
10731e5b-b418-4a55-88f7-9137eda512ae.png
bc99eaee-f5ce-4eec-af68-28e757f16a07.png
84b03c4e-bb54-4e64-945a-9931358f6f84.png
00655892-7169-4fab-a2e9-f424243a92e5.png
6a11e800-013a-498c-9e63-9c1dec5240b1.png
8f03e6b2-2849-4f30-b45a-34888f10705a.png
b2421bb2-6926-4709-a308-4405414919eb.png
0ca1bf63-08bc-4926-9af6-6edb200d9c89.png
82d5258b-fc34-4b83-bb40-89e2b7ee15da.png
ddf1dc11-ee75-48d6-b9ea-9bb22c06622f.png
43712df6-4921-461f-bb6c-c57a201c689f.png
fd0c413a-2545-4aa1-a435-2ca8d675dfee.png
63e0f2bb-a136-48be-83c9-696e8f18a016.png
6a43b894-fbb8-42a0-830b-26ff351d5351.png
e07381ea-d649-4c04-84d1-2a1c144f7cc6.png
71f35ae0-1fe4-42cd-b804-0993fcab5877.jpg
90b64403-b3d7-4e03-a3c2-5bb0732252d9.png
de0a00dc-c86c-4c89-a6f3-5170b56c5ac3.png
d4c9f521-53aa-4656-881f-037c23e235cf.png
e4e895f7-097e-45ee-a23a-018225f75387.webp
d41eaee7-83ba-4126-90e3-e9b616e5fc2c.png
6d65d578-5689-41d1-847d-3cf20d4d5a66.png
c0d27e0f-63f3-4676-aa85-c4562f94ab6c.png
1445920c-bdaf-498d-aaea-01c6fdb72db6.png
0c4e5751-5f7d-4f89-a56c-4be7759723e2.png
d14119e4-67b6-4bb1-8132-95253c8bc49a.png
183a8e7f-8cf4-4a32-a708-0309544d987d.webp
50819069-fd69-42d4-9e7b-e869fc08569a.webp
1 6a37884a-e763-4b40-95fe-f740dffb3463.png
2 6d70e4bb-412d-42a3-9d6f-2bf0428d7349.png
3 42d0531f-7db3-41c0-aa4c-fa2a9791ddac.png
4 3b17e577-2383-4bbf-a557-d7aa7133ad1a.png
5 1c67e93f-6645-43e4-913b-3c36e7f72568.png
6 5cc52269-9928-44d3-a944-bda0a7284b4b.png
7 b09ec281-ec3c-4ac1-a873-822416fd5d8f.png
8 f0dc4568-db6b-4c5f-ae69-4cf165e4001a.png
9 01662009-d945-4f76-b714-9793f51c5f57.png
10 b0b8a128-33a4-4ae4-aaec-7b0d07136835.png
11 bd37afba-5d1b-450f-b685-26ec2a504973.png
12 0ce0e4be-95bf-4a6d-b7df-b1aa1e4e7c7f.png
13 04a0e38f-6bdd-421b-99fa-37881d6bf69a.png
14 6eca2120-64a9-48da-82bd-70b53d3337bd.png
15 3e0f1ccc-f848-40e0-a9b3-095827a30063.png
16 c74c2598-892d-4783-92a1-b75e39c89cc2.png
17 c11d95f7-5ecc-4fc2-af45-d8ce9604a2c6.png
18 6b724d20-a8ed-450b-bfdb-3e2258b0e675.png
19 349cb505-0df5-4b62-bfa4-b690e5724d3f.png
20 8c28fa6e-95e2-49ef-ad6f-fc5946cfb2f1.png
21 5577c8e2-9667-4c7b-bce5-ab95c59cfc4a.png
22 4b52e3df-10fe-47be-8095-70ed7e652475.png
23 561460b7-6689-4853-b1a2-6178f59e686a.png
24 6ee999f0-31d6-4f50-8f5d-be5086523a9c.png
25 95e1d4c9-75e7-48ab-be31-44ce8738cd3d.png
26 9eafb228-b9ef-40f3-a0cb-e7186836a9a2.png
27 db3374b0-5b37-438a-a69e-59d0cd746764.png
28 60d5897f-10e9-4cd9-9563-aa8800f89506.png
29 22312542-3a88-4b7e-82d8-4884d3524ccb.png
30 48de3977-7fc8-4090-92fe-3c62aeae04cb.png
31 bb1049ae-2fec-43ef-825f-de48068fdeaa.png
32 31854526-846d-46eb-bcc6-41526eb69d9f.png
33 053e12bc-042e-42cb-88c4-903c4e6c9ac2.png
34 94981833-9746-4119-8f69-8b15d37ad9b4.png
35 7030f9de-6345-4d77-b302-676db4206812.png
36 13e058b1-6ac0-402c-9e9c-b63173e2a07a.png
37 7e371d19-fdd1-4cfc-8655-239b1c9595fd.png
38 015b2456-1e2d-43e4-8d30-73a13d2e27bd.png
39 c305e749-1e04-4818-b020-e0523348749d.png
40 ee38f2cb-d9e8-4bc0-b75f-fd6c4d2531ba.png
41 f0d79cd8-bfce-4d4d-a33c-6424ebefd2f7.png
42 b2048980-208a-45ee-a779-635945da33fe.png
43 492c383b-f025-4a6b-92f3-94d03cea992a.png
44 754d6746-0407-45d2-8934-6d03422d3828.png
45 966b9ec2-75a8-43b3-8315-978a3addfbd4.png
46 0222c989-0671-4ba6-a4bd-cd20a2ea84e2.png
47 3040a71c-6afa-448e-86fb-cf9fa18b0c0a.png
48 b9834ad0-6612-4d15-8b27-1c3b4377ed7e.png
49 da7a9b05-cb95-40ec-8fc5-73ce02b160f7.png
50 0ad410d0-950c-4296-9d82-cc5cfb9ebd44.png
51 23b27eb3-c1fd-4aae-9b74-3218beef227f.png
52 9f6871f2-1787-4c60-8b42-e958fa9e7d75.png
53 6d7a350c-0588-4425-b3d5-f337555ae357.png
54 e02be3d3-5e43-4f03-935c-034b4d1f1716.png
55 f53bd4d4-eb5d-4953-bdec-9c0e58d9f770.png
56 93c363d0-16c5-4396-9f9a-b534bb9d6dbc.png
57 d6ceab17-9291-411c-b804-6593f723ed0c.png
58 5f670807-c93d-41a9-b624-50d88b18d5c8.png
59 3d5d4705-a8a5-49b5-8074-d72a445e0482.png
60 05e7373a-0960-4268-8e1a-cc38d3d657e7.png
61 759ec642-de1d-489b-9a6e-06c3c6a5a805.png
62 35bd1093-20a6-4e22-a331-eb4221987a09.png
63 eb1c08e7-08c8-4696-a535-f70b192fde76.png
64 12b8f664-bef2-4edf-b85b-0f6b6254d246.png
65 794e08bc-4290-4899-8c09-0da80d1260ad.png
66 7603ee32-51fc-4c86-b97d-192f702b9822.png
67 c818e120-251c-407e-a2d5-4f39750e5ef9.png
68 c4d07fe6-a83e-4bc3-84af-109784294e92.png
69 598cabe0-80fe-449a-8d00-88766989b1e3.png
70 10731e5b-b418-4a55-88f7-9137eda512ae.png
71 bc99eaee-f5ce-4eec-af68-28e757f16a07.png
72 84b03c4e-bb54-4e64-945a-9931358f6f84.png
73 00655892-7169-4fab-a2e9-f424243a92e5.png
74 6a11e800-013a-498c-9e63-9c1dec5240b1.png
75 8f03e6b2-2849-4f30-b45a-34888f10705a.png
76 b2421bb2-6926-4709-a308-4405414919eb.png
77 0ca1bf63-08bc-4926-9af6-6edb200d9c89.png
78 82d5258b-fc34-4b83-bb40-89e2b7ee15da.png
79 ddf1dc11-ee75-48d6-b9ea-9bb22c06622f.png
80 43712df6-4921-461f-bb6c-c57a201c689f.png
81 fd0c413a-2545-4aa1-a435-2ca8d675dfee.png
82 63e0f2bb-a136-48be-83c9-696e8f18a016.png
83 6a43b894-fbb8-42a0-830b-26ff351d5351.png
84 e07381ea-d649-4c04-84d1-2a1c144f7cc6.png
85 71f35ae0-1fe4-42cd-b804-0993fcab5877.jpg
86 90b64403-b3d7-4e03-a3c2-5bb0732252d9.png
87 de0a00dc-c86c-4c89-a6f3-5170b56c5ac3.png
88 d4c9f521-53aa-4656-881f-037c23e235cf.png
89 e4e895f7-097e-45ee-a23a-018225f75387.webp
90 d41eaee7-83ba-4126-90e3-e9b616e5fc2c.png
91 6d65d578-5689-41d1-847d-3cf20d4d5a66.png
92 c0d27e0f-63f3-4676-aa85-c4562f94ab6c.png
93 1445920c-bdaf-498d-aaea-01c6fdb72db6.png
94 0c4e5751-5f7d-4f89-a56c-4be7759723e2.png
95 d14119e4-67b6-4bb1-8132-95253c8bc49a.png
96 183a8e7f-8cf4-4a32-a708-0309544d987d.webp
97 50819069-fd69-42d4-9e7b-e869fc08569a.webp

View File

@ -0,0 +1,97 @@
{"id":" El Árbol fructífero Parte 3","locale":"es","featured_image":"6a37884a-e763-4b40-95fe-f740dffb3463.png","bible_studies":[],"printing_url":null,"slug":null,"pdf_simple":[{"id":"43720eb2-242e-4e9b-9dec-976f34224ca2","filename":"43720eb2-242e-4e9b-9dec-976f34224ca2.pdf","download":"MD23-El-arbol-fructifero-Parte-3-final.pdf"}],"pdf_booklet":[]}
{"id":"A Árvore Frutífera Parte 3","locale":"pt","featured_image":"6d70e4bb-412d-42a3-9d6f-2bf0428d7349.png","bible_studies":[],"printing_url":null,"slug":null,"pdf_simple":[{"id":"6bdd686d-cc83-40c5-ac36-9541097b72cb","filename":"6bdd686d-cc83-40c5-ac36-9541097b72cb.pdf","download":"MDI_EB-23-v7_PT.pdf"}],"pdf_booklet":[]}
{"id":"La culminación de la Obra del Gran Arquitecto","locale":"es","featured_image":"42d0531f-7db3-41c0-aa4c-fa2a9791ddac.png","materiales_didacticos_id":2,"date":"2023-01-06","number_module":null,"bible_studies":[],"printing_url":null,"slug":"la-culminacion-de-la-obra-del-gran-arquitecto","pdf_simple":[{"id":"b42a382d-5373-496a-a1e6-b18d9017c9a4","filename":"b42a382d-5373-496a-a1e6-b18d9017c9a4.pdf","download":"material_didactico_de_estudio_biblico_la_culminacion_de_la_obra_del_gran_arquitecto.pdf"}],"pdf_booklet":[]}
{"id":"The culmination of the Work of the Great Architect","locale":"en","featured_image":"3b17e577-2383-4bbf-a557-d7aa7133ad1a.png","materiales_didacticos_id":2,"date":"2023-01-06","number_module":null,"bible_studies":[],"printing_url":null,"slug":"the-culmination-of-the-work-of-the-great-architect","pdf_simple":[{"id":"c9cc1b04-bc10-4a95-bd21-43b461b35417","filename":"c9cc1b04-bc10-4a95-bd21-43b461b35417.pdf","download":"md-The-culmination-of-the-Work-of-the-Great-Architect.pdf"}],"pdf_booklet":[]}
{"id":" El misterio de la simplicidad divina","locale":"es","featured_image":"1c67e93f-6645-43e4-913b-3c36e7f72568.png","materiales_didacticos_id":3,"date":"2023-01-13","number_module":null,"bible_studies":[],"printing_url":null,"slug":"el-misterio-de-la-simplicidad-divina","pdf_simple":[{"id":"299ad908-4a6a-485e-a0d9-281108f42cd3","filename":"299ad908-4a6a-485e-a0d9-281108f42cd3.pdf","download":"material_didactico_el_misterio_de_la_simplicidad_divina.pdf"}],"pdf_booklet":[]}
{"id":"The Mystery Of Divine Simplicity","locale":"en","featured_image":"5cc52269-9928-44d3-a944-bda0a7284b4b.png","materiales_didacticos_id":3,"date":"2023-01-13","number_module":null,"bible_studies":[],"printing_url":null,"slug":"the-mystery-of-divine-simplicity","pdf_simple":[{"id":"08a87abb-ab95-469c-adc9-ad3d9f8080a3","filename":"08a87abb-ab95-469c-adc9-ad3d9f8080a3.pdf","download":"CEM-2023_01_08-the_mystery_of_divine_simplicity_c.pdf"}],"pdf_booklet":[]}
{"id":"El misterio de los Siete Sellos de Apocalipsis, capítulo 5","locale":"es","featured_image":"b09ec281-ec3c-4ac1-a873-822416fd5d8f.png","materiales_didacticos_id":4,"date":"2023-01-20","number_module":null,"bible_studies":[],"printing_url":null,"slug":"el-misterio-de-los-siete-sellos-de-apocalipsis-capitulo-5","pdf_simple":[{"id":"5e3b7afa-4979-49bf-9f9f-889e595e7dc5","filename":"5e3b7afa-4979-49bf-9f9f-889e595e7dc5.pdf","download":"material_didactico_el_misterio_de_los_siete_sellos_de_apocalipsis_5.pdf"}],"pdf_booklet":[]}
{"id":"The Mystery of the Seven Seals of Revelation, Chapter 5","locale":"en","featured_image":"f0dc4568-db6b-4c5f-ae69-4cf165e4001a.png","materiales_didacticos_id":4,"date":"2023-01-20","number_module":null,"bible_studies":[],"printing_url":null,"slug":"the-mystery-of-the-seven-seals-of-revelation-chapter-5","pdf_simple":[{"id":"111eee3f-a8f3-4ed3-8821-27ee50a7f769","filename":"111eee3f-a8f3-4ed3-8821-27ee50a7f769.pdf","download":"CEM-2023_01_15-bible_study_273-the_mystery_of_the_seven_seals_of_revelation_chapter_5.pdf"}],"pdf_booklet":[]}
{"id":"El misterio de las cuatro clases de tierra","locale":"es","featured_image":"01662009-d945-4f76-b714-9793f51c5f57.png","materiales_didacticos_id":5,"date":"2023-01-28","number_module":null,"bible_studies":[],"printing_url":null,"slug":"el-misterio-de-las-cuatro-clases-de-tierra","pdf_simple":[{"id":"8bc808c3-53c7-4b0c-92e6-4bfc4de7bff8","filename":"8bc808c3-53c7-4b0c-92e6-4bfc4de7bff8.pdf","download":"material_didactico_el_misterio_de_las_cuatro_clases_de_tierra.pdf"}],"pdf_booklet":[]}
{"id":"The Mystery of the Four Types of Ground","locale":"en","featured_image":"b0b8a128-33a4-4ae4-aaec-7b0d07136835.png","materiales_didacticos_id":5,"date":"2023-01-28","number_module":null,"bible_studies":[],"printing_url":null,"slug":"the-mystery-of-the-four-types-of-ground","pdf_simple":[{"id":"a8c8f057-d483-4efa-bc2e-8ebd0e9dc406","filename":"a8c8f057-d483-4efa-bc2e-8ebd0e9dc406.pdf","download":"CEM-2023_01_20-bible_study_274-the_mystery_of_the_four_types_of_ground_c.pdf"}],"pdf_booklet":[]}
{"id":"La restauración del Reino de Dios a Israel","locale":"es","featured_image":"bd37afba-5d1b-450f-b685-26ec2a504973.png","materiales_didacticos_id":6,"date":"2023-02-04","number_module":null,"bible_studies":[],"printing_url":null,"slug":"la-restauracion-del-reino-de-dios-a-israel","pdf_simple":[{"id":"9be9be6e-84b4-4b6a-a83f-8f79d0a06b02","filename":"9be9be6e-84b4-4b6a-a83f-8f79d0a06b02.pdf","download":"material_didactico_la_restauracion_del_reino_de_dios_a_israel.pdf"}],"pdf_booklet":[]}
{"id":"The restoration of the Kingdom of God to Israel","locale":"en","featured_image":"0ce0e4be-95bf-4a6d-b7df-b1aa1e4e7c7f.png","materiales_didacticos_id":6,"date":"2023-02-04","number_module":null,"bible_studies":[],"printing_url":null,"slug":"the-restoration-of-the-kingdom-of-god-to-israel","pdf_simple":[{"id":"831bc917-5467-40e0-a9a2-bda2a9d3b949","filename":"831bc917-5467-40e0-a9a2-bda2a9d3b949.pdf","download":"CEM-2023_01_26-the_restoration_of_the_kingdom_of_god_to_israel_c.pdf"}],"pdf_booklet":[]}
{"id":"El misterio de la Venida del Hijo del Hombre con Sus Ángeles en el occidente","locale":"es","featured_image":"04a0e38f-6bdd-421b-99fa-37881d6bf69a.png","materiales_didacticos_id":7,"date":"2023-02-15","number_module":null,"bible_studies":[],"printing_url":null,"slug":"el-misterio-de-la-venida-del-hijo-del-hombre-con-sus-angeles-en-el-occidente","pdf_simple":[{"id":"ab762d98-f4db-4eff-8fd1-487fb31b6429","filename":"ab762d98-f4db-4eff-8fd1-487fb31b6429.pdf","download":"material_didactico_el_misterio_de_la_venida_del_hijo_del_hombre_con_sus_angeles_en_el_occidente.pdf"}],"pdf_booklet":[]}
{"id":"The Mystery of the Coming of the Son of Man with His Angels in the West","locale":"en","featured_image":"6eca2120-64a9-48da-82bd-70b53d3337bd.png","materiales_didacticos_id":7,"date":"2023-02-15","number_module":null,"bible_studies":[],"printing_url":null,"slug":"the-mystery-of-the-coming-of-the-son-of-man-with-his-angels-in-the-west","pdf_simple":[{"id":"247b3b3c-db18-414e-ac43-e49a2b1636db","filename":"247b3b3c-db18-414e-ac43-e49a2b1636db.pdf","download":"md-The-Mystery-of-the-Coming-of-the-Son-of-Man-with-His-Angels-in-the-West.pdf"}],"pdf_booklet":[]}
{"id":"O Mistério da Vinda do Filho do Homem com Seus Anjos no Ocidente","locale":"pt","featured_image":"3e0f1ccc-f848-40e0-a9b3-095827a30063.png","materiales_didacticos_id":7,"date":"2023-02-15","number_module":null,"bible_studies":[],"printing_url":null,"slug":"o-misterio-da-vinda-do-filho-do-homem-com-seus-anjos-no-ocidente","pdf_simple":[{"id":"be7fc783-6ea2-45e4-a6c6-48f43fa12e30","filename":"be7fc783-6ea2-45e4-a6c6-48f43fa12e30.pdf","download":"MDI-230127-O-Misterio-da-Vinda-do-Filho-do-Homem-com-Seus-Anjos-no-Ocidente.pdf"}],"pdf_booklet":[]}
{"id":"Plática con los hermanos de la Imprenta de LGCC: Cuando la Novia reconozca su posición, el Rapto acontecerá","locale":"es","featured_image":"c74c2598-892d-4783-92a1-b75e39c89cc2.png","materiales_didacticos_id":8,"date":"2023-02-28","number_module":null,"bible_studies":[],"printing_url":null,"slug":"platica-con-los-hermanos-de-la-imprenta-de-lgcc-cuando-la-novia-reconozca-su-posicion-el-rapto-acontecera","pdf_simple":[{"id":"c8dd4f41-45a7-4ade-8979-55c39d05f266","filename":"c8dd4f41-45a7-4ade-8979-55c39d05f266.pdf","download":"md-platica_con_los_hermanos_de_la_imprenta.pdf"}],"pdf_booklet":[]}
{"id":"Chat with the brethren of the Printing Press of The Great Tent Cathedral: When the Bride recognizes her position, the Rapture will take place","locale":"en","featured_image":"c11d95f7-5ecc-4fc2-af45-d8ce9604a2c6.png","materiales_didacticos_id":8,"date":"2023-02-28","number_module":null,"bible_studies":[],"printing_url":null,"slug":"chat-with-the-brethren-of-the-printing-press-of-the-great-tent-cathedral-when-the-bride-recognizes-her-position-the-rapture-will-take-place","pdf_simple":[{"id":"6b3d12c9-5951-414b-940b-5215e72a40da","filename":"6b3d12c9-5951-414b-940b-5215e72a40da.pdf","download":"md-Chat-with-the-brethren-of-the-Printing-Press-of-TGTCWhen-the-Bride-recognizes-her-position-the-Rapture-will-take-place.pdf"}],"pdf_booklet":[]}
{"id":"Conversa com os irmãos da Gráfica da LGCC: Quando a Noiva Reconhecer sua Posição, o Rapto acontecerá","locale":"pt","featured_image":"6b724d20-a8ed-450b-bfdb-3e2258b0e675.png","materiales_didacticos_id":8,"date":"2023-02-28","number_module":null,"bible_studies":[],"printing_url":null,"slug":"conversa-com-os-irmaos-da-grafica-da-lgcc-quando-a-noiva-reconhecer-sua-posicao-o-rapto-acontecera","pdf_simple":[{"id":"5a57c26b-14fd-4b9b-b715-a50e038458b0","filename":"5a57c26b-14fd-4b9b-b715-a50e038458b0.pdf","download":"2023-02-28-MD-conversa_com_irmaos_da_grafica.pdf"}],"pdf_booklet":[]}
{"id":"El misterio de los Ángeles de la Cosecha","locale":"es","featured_image":"349cb505-0df5-4b62-bfa4-b690e5724d3f.png","materiales_didacticos_id":9,"date":"2023-03-11","number_module":null,"bible_studies":[],"printing_url":null,"slug":"el-misterio-de-los-angeles-de-la-cosecha","pdf_simple":[{"id":"a02e3b1c-d5fd-45c5-974e-8a7b9ebfdfd1","filename":"a02e3b1c-d5fd-45c5-974e-8a7b9ebfdfd1.pdf","download":"md-el_misterio_de_los_angeles_de_la_cosecha.pdf"}],"pdf_booklet":[]}
{"id":"The Mystery of the Angels of the Harvest","locale":"en","featured_image":"8c28fa6e-95e2-49ef-ad6f-fc5946cfb2f1.png","materiales_didacticos_id":9,"date":"2023-03-11","number_module":null,"bible_studies":[],"printing_url":null,"slug":"the-mystery-of-the-angels-of-the-harvest","pdf_simple":[{"id":"1242a049-62f4-4c37-836c-5b9b979cec56","filename":"1242a049-62f4-4c37-836c-5b9b979cec56.pdf","download":"md-The-Mystery-of-the-Angels-of-the-Harvest.pdf"}],"pdf_booklet":[]}
{"id":"O Mistério dos Anjos da Colheita","locale":"pt","featured_image":"5577c8e2-9667-4c7b-bce5-ab95c59cfc4a.png","materiales_didacticos_id":9,"date":"2023-03-11","number_module":null,"bible_studies":[],"printing_url":null,"slug":"o-misterio-dos-anjos-da-colheita","pdf_simple":[{"id":"913991f4-2c8a-4153-9c5e-23a81e521c60","filename":"913991f4-2c8a-4153-9c5e-23a81e521c60.pdf","download":"2023-03-11-MD-estudo_286.pdf"}],"pdf_booklet":[]}
{"id":"El misterio de los Cosechadores del Día Postrero","locale":"es","featured_image":"4b52e3df-10fe-47be-8095-70ed7e652475.png","materiales_didacticos_id":10,"date":"2023-03-18","number_module":null,"bible_studies":[],"printing_url":null,"slug":"el-misterio-de-los-cosechadores-del-dia-postrero","pdf_simple":[{"id":"5fb1050f-39f2-4856-bd16-d08d8bbd5c76","filename":"5fb1050f-39f2-4856-bd16-d08d8bbd5c76.pdf","download":"MD-El-misterio-de-los-Cosechadores-del-Dia-Postrero.pdf"}],"pdf_booklet":[]}
{"id":"The Mystery of the Harvesters of the Last Day","locale":"en","featured_image":"561460b7-6689-4853-b1a2-6178f59e686a.png","materiales_didacticos_id":10,"date":"2023-03-18","number_module":null,"bible_studies":[],"printing_url":null,"slug":"the-mystery-of-the-harvesters-of-the-last-day","pdf_simple":[{"id":"f5bb8aa4-9b9a-43db-9445-d23ad44c40fc","filename":"f5bb8aa4-9b9a-43db-9445-d23ad44c40fc.pdf","download":"CEM-2023_03_10-bible_study_288-the_mystery_of_the_harvesters_of_the_last_day_compressed.pdf"}],"pdf_booklet":[]}
{"id":"O Mistério dos Ceifeiros do Último Dia","locale":"pt","featured_image":"6ee999f0-31d6-4f50-8f5d-be5086523a9c.png","materiales_didacticos_id":10,"date":"2023-03-18","number_module":null,"bible_studies":[],"printing_url":null,"slug":"o-misterio-dos-ceifeiros-do-ultimo-dia","pdf_simple":[{"id":"5113071b-eff5-4fca-854d-cd2d96337ba9","filename":"5113071b-eff5-4fca-854d-cd2d96337ba9.pdf","download":"2023-03-11-MD-O-Misterio-dos-Ceifeiros-do-ultimo-Dia.pdf"}],"pdf_booklet":[]}
{"id":"Viendo a Dios cara a cara - Parte 1","locale":"es","featured_image":"95e1d4c9-75e7-48ab-be31-44ce8738cd3d.png","materiales_didacticos_id":11,"date":"2023-03-26","number_module":null,"bible_studies":[],"printing_url":null,"slug":"viendo-a-dios-cara-a-cara-parte-1","pdf_simple":[{"id":"7c2affdc-9bf4-40d4-9939-963e8bcfa8dd","filename":"7c2affdc-9bf4-40d4-9939-963e8bcfa8dd.pdf","download":"md-viendo_a_dios_cara_a_cara.pdf"}],"pdf_booklet":[]}
{"id":"Seeing God face to face - Part 1","locale":"en","featured_image":"9eafb228-b9ef-40f3-a0cb-e7186836a9a2.png","materiales_didacticos_id":11,"date":"2023-03-26","number_module":null,"bible_studies":[],"printing_url":null,"slug":"seeing-god-face-to-face-part-1","pdf_simple":[{"id":"68037302-571b-40bf-836e-56e28cbb220d","filename":"68037302-571b-40bf-836e-56e28cbb220d.pdf","download":"CEM-2023-03-04-seeing_god_face_to_face_part_1.pdf"}],"pdf_booklet":[]}
{"id":"Vendo Dios cara a cara - 1a Parte","locale":"pt","featured_image":"db3374b0-5b37-438a-a69e-59d0cd746764.png","materiales_didacticos_id":11,"date":"2023-03-26","number_module":null,"bible_studies":[],"printing_url":null,"slug":"vendo-dios-cara-a-cara-1a-parte","pdf_simple":[{"id":"ff089562-4671-4d6e-b059-d0c7e24167d2","filename":"ff089562-4671-4d6e-b059-d0c7e24167d2.pdf","download":"MDI-230304-Vendo-Dios-cara-a-cara-1a-parte.pdf"}],"pdf_booklet":[]}
{"id":"Viendo a Dios cara a cara - Parte 2","locale":"es","featured_image":"60d5897f-10e9-4cd9-9563-aa8800f89506.png","materiales_didacticos_id":12,"date":"2023-04-02","number_module":null,"bible_studies":[],"printing_url":null,"slug":"viendo-a-dios-cara-a-cara-parte-2","pdf_simple":[{"id":"19df5248-ecd5-4b76-b51e-494f83e6e9c7","filename":"19df5248-ecd5-4b76-b51e-494f83e6e9c7.pdf","download":"md-viendo_a_dios_cara_a_cara-parte_2.pdf"}],"pdf_booklet":[]}
{"id":"Seeing God face to face Part 2","locale":"en","featured_image":"22312542-3a88-4b7e-82d8-4884d3524ccb.png","materiales_didacticos_id":12,"date":"2023-04-02","number_module":null,"bible_studies":[],"printing_url":null,"slug":"seeing-god-face-to-face-part-2","pdf_simple":[{"id":"6fc4490a-bf2f-4171-8540-6d763786487a","filename":"6fc4490a-bf2f-4171-8540-6d763786487a.pdf","download":"CEM-2023-03-04-seeing_god_face_to_face_part_2.pdf"}],"pdf_booklet":[]}
{"id":"Vendo Dios cara a cara - 2a Parte","locale":"pt","featured_image":"48de3977-7fc8-4090-92fe-3c62aeae04cb.png","materiales_didacticos_id":12,"date":"2023-04-02","number_module":null,"bible_studies":[],"printing_url":null,"slug":"vendo-dios-cara-a-cara-2a-parte","pdf_simple":[{"id":"c24c57ab-9c26-4070-a072-03c7543ed780","filename":"c24c57ab-9c26-4070-a072-03c7543ed780.pdf","download":"MDI-230304-B-Vendo-Dios-cara-a-cara.pdf"}],"pdf_booklet":[]}
{"id":"El avivamiento traído por la revelación","locale":"es","featured_image":"bb1049ae-2fec-43ef-825f-de48068fdeaa.png","materiales_didacticos_id":13,"date":"2023-04-08","number_module":13,"bible_studies":[],"printing_url":null,"slug":"el-avivamiento-traido-por-la-revelacion","pdf_simple":[{"id":"419b08bb-0c27-4487-8279-c87f0daca596","filename":"419b08bb-0c27-4487-8279-c87f0daca596.pdf","download":"md_el_avivamiento_traido_por_la_revelacion.pdf"}],"pdf_booklet":[]}
{"id":"The Revival Brought by the Revelation","locale":"en","featured_image":"31854526-846d-46eb-bcc6-41526eb69d9f.png","materiales_didacticos_id":13,"date":"2023-04-08","number_module":13,"bible_studies":[],"printing_url":null,"slug":"the-revival-brought-by-the-revelation","pdf_simple":[{"id":"6372bb04-4a0a-4684-9e17-ccba4765d427","filename":"6372bb04-4a0a-4684-9e17-ccba4765d427.pdf","download":"CEM-2023_03_24-bible_study_292-the_revival_brought_by_revelation-number_13.pdf"}],"pdf_booklet":[]}
{"id":"O Avivamento trazido pela Revelação","locale":"pt","featured_image":"053e12bc-042e-42cb-88c4-903c4e6c9ac2.png","materiales_didacticos_id":13,"date":"2023-04-08","number_module":13,"bible_studies":[],"printing_url":null,"slug":"o-avivamento-trazido-pela-revelacao","pdf_simple":[{"id":"abd5c70d-0cdd-4824-93c3-19c717df72ce","filename":"abd5c70d-0cdd-4824-93c3-19c717df72ce.html","download":"actividade-na-sexta-feira-24-de-marco-de-2023"}],"pdf_booklet":[]}
{"id":"La autoridad de un hijo de Dios adoptado","locale":"es","featured_image":"94981833-9746-4119-8f69-8b15d37ad9b4.png","materiales_didacticos_id":14,"date":"2023-04-19","number_module":14,"bible_studies":[],"printing_url":[{"press":"https://imprenta.carpa.com/es/estudios-biblicos-marzo-2023-parte-2/"}],"slug":"la-autoridad-de-un-hijo-de-dios-adoptado","pdf_simple":[{"id":"644d8621-78fb-44d7-ac2f-c8bde2304d67","filename":"644d8621-78fb-44d7-ac2f-c8bde2304d67.pdf","download":"md_14_la_autoridad_de_un_hijo_de_dios_adoptado.pdf"}],"pdf_booklet":[]}
{"id":"The Authority of an Adopted Child of God","locale":"en","featured_image":"7030f9de-6345-4d77-b302-676db4206812.png","materiales_didacticos_id":14,"date":"2023-04-19","number_module":14,"bible_studies":[],"printing_url":null,"slug":"the-authority-of-an-adopted-child-of-god","pdf_simple":[{"id":"b9df800d-79ab-4528-9fa5-79ea377399f9","filename":"b9df800d-79ab-4528-9fa5-79ea377399f9.pdf","download":"CEM-2023_03_09-the_authority_of_an_adopted_child_of_god-number-14-c.pdf"}],"pdf_booklet":[]}
{"id":"A Autoridade de um Filho de Deus Adotado","locale":"pt","featured_image":"13e058b1-6ac0-402c-9e9c-b63173e2a07a.png","materiales_didacticos_id":14,"date":"2023-04-19","number_module":14,"bible_studies":[],"printing_url":null,"slug":"a-autoridade-de-um-filho-de-deus-adotado","pdf_simple":[{"id":"d1e72374-398f-47a7-8af0-73db0b8a4468","filename":"d1e72374-398f-47a7-8af0-73db0b8a4468.pdf","download":"MD14-A-Autoridade-de-um-Filho-de-Deus-Adotado.pdf"}],"pdf_booklet":[]}
{"id":"La carretera que nos lleva a la tierra prometida","locale":"es","featured_image":"7e371d19-fdd1-4cfc-8655-239b1c9595fd.png","materiales_didacticos_id":15,"date":"2023-04-28","number_module":15,"bible_studies":[],"printing_url":null,"slug":"la-carretera-que-nos-lleva-a-la-tierra-prometida","pdf_simple":[{"id":"87650336-d207-4426-b2b4-b814219dc14b","filename":"87650336-d207-4426-b2b4-b814219dc14b.pdf","download":"MDI-15-la_carretera_que_nos_lleva_a_la_tierra_prometida.pdf"}],"pdf_booklet":[]}
{"id":"The Road That Leads Us to the Promised Land","locale":"en","featured_image":"015b2456-1e2d-43e4-8d30-73a13d2e27bd.png","materiales_didacticos_id":15,"date":"2023-04-28","number_module":15,"bible_studies":[],"printing_url":null,"slug":"the-road-that-leads-us-to-the-promised-land","pdf_simple":[{"id":"5d3a7831-5e3f-40a1-9491-751797049a00","filename":"5d3a7831-5e3f-40a1-9491-751797049a00.pdf","download":"CEM_2023_04_18_the_road_that_leads_us_to_the_promised_land_15_compressed.pdf"}],"pdf_booklet":[]}
{"id":"A Estrada que nos leva à Terra Prometida","locale":"pt","featured_image":"c305e749-1e04-4818-b020-e0523348749d.png","materiales_didacticos_id":15,"date":"2023-04-28","number_module":15,"bible_studies":[],"printing_url":null,"slug":"a-estrada-que-nos-leva-a-terra-prometida","pdf_simple":[{"id":"641d1adb-3353-481f-8d3e-5967bd0babc4","filename":"641d1adb-3353-481f-8d3e-5967bd0babc4.pdf","download":"MD15-A_Estrada_que_nos_leva_a_Terra_PrometidaPT.pdf"}],"pdf_booklet":[]}
{"id":"El misterio de las tres Biblias - Parte 1","locale":"es","featured_image":"ee38f2cb-d9e8-4bc0-b75f-fd6c4d2531ba.png","materiales_didacticos_id":16,"date":"2023-05-13","number_module":16,"bible_studies":[],"printing_url":null,"slug":"el-misterio-de-las-tres-biblias-parte-1","pdf_simple":[{"id":"c3d987b5-2df1-458a-a74a-8cee416f498f","filename":"c3d987b5-2df1-458a-a74a-8cee416f498f.pdf","download":"MDI-16-1-el_misterio_de_las_tres_bibilias.pdf"}],"pdf_booklet":[]}
{"id":"El misterio de las tres Biblias - Parte 1","locale":"en","featured_image":"f0d79cd8-bfce-4d4d-a33c-6424ebefd2f7.png","bible_studies":[],"printing_url":null,"slug":"el-misterio-de-las-tres-biblias-parte-1","pdf_simple":[{"id":"b52d87bc-91bc-4a23-a537-c55f17d7dd97","filename":"b52d87bc-91bc-4a23-a537-c55f17d7dd97.pdf","download":"MDI-16-1-el_misterio_de_las_tres_bibilias.pdf"}],"pdf_booklet":[]}
{"id":"O Mistério das Três Bíblias - Parte 1","locale":"pt","featured_image":"b2048980-208a-45ee-a779-635945da33fe.png","materiales_didacticos_id":16,"date":"2023-05-13","number_module":16,"bible_studies":[],"printing_url":null,"slug":"o-misterio-das-tres-biblias-parte-1","pdf_simple":[{"id":"f2237471-ea15-41f0-8865-2152e778871c","filename":"f2237471-ea15-41f0-8865-2152e778871c.pdf","download":"MD16-O_Misterio_das_Tres_Biblias_Parte1.pdf"}],"pdf_booklet":[]}
{"id":"El misterio de las tres Biblias - Parte 2","locale":"es","featured_image":"492c383b-f025-4a6b-92f3-94d03cea992a.png","materiales_didacticos_id":17,"date":"2023-05-26","number_module":17,"bible_studies":[],"printing_url":null,"slug":"el-misterio-de-las-tres-biblias-parte-2","pdf_simple":[{"id":"04d2a99a-84b7-4b43-a650-c8a05867953b","filename":"04d2a99a-84b7-4b43-a650-c8a05867953b.pdf","download":"MDI-17-el_misterio_de_las_tres_bibilias_parte2.pdf"}],"pdf_booklet":[]}
{"id":"The Mystery of the Three Bibles - Part 2","locale":"en","featured_image":"754d6746-0407-45d2-8934-6d03422d3828.png","materiales_didacticos_id":17,"date":"2023-05-26","number_module":17,"bible_studies":[],"printing_url":null,"slug":"the-mystery-of-the-three-bibles-part-2","pdf_simple":[{"id":"6095c2ec-2bec-4615-bcc6-8f9ae4036334","filename":"6095c2ec-2bec-4615-bcc6-8f9ae4036334.pdf","download":"CEM17-2023_05_14-the_mystery_of_the_three_bibles_part_2_c.pdf"}],"pdf_booklet":[]}
{"id":"O Mistério das Três Bíblias - Parte 2","locale":"pt","featured_image":"966b9ec2-75a8-43b3-8315-978a3addfbd4.png","materiales_didacticos_id":17,"date":"2023-05-26","number_module":17,"bible_studies":[],"printing_url":null,"slug":"o-misterio-das-tres-biblias-parte-2","pdf_simple":[{"id":"32309607-4059-44fc-a464-f07f48bd8283","filename":"32309607-4059-44fc-a464-f07f48bd8283.pdf","download":"MD17-O_Misterio_das_tres_biblias-parte2.pdf"}],"pdf_booklet":[]}
{"id":"El misterio de los nombres escritos en el Cielo - Parte 1","locale":"es","featured_image":"0222c989-0671-4ba6-a4bd-cd20a2ea84e2.png","materiales_didacticos_id":18,"date":"2023-06-14","number_module":18,"bible_studies":[],"printing_url":null,"slug":"el-misterio-de-los-nombres-escritos-en-el-cielo-parte-1","pdf_simple":[{"id":"c472c51a-acb9-45ff-ba6e-200be5351fe3","filename":"c472c51a-acb9-45ff-ba6e-200be5351fe3.pdf","download":"MD18-El-misterio-de-los-nombres-escritos-en-el-cielo-Parte-1.pdf"}],"pdf_booklet":[]}
{"id":"The Mystery of the Names Written in Heaven - Part 1","locale":"en","featured_image":"3040a71c-6afa-448e-86fb-cf9fa18b0c0a.png","materiales_didacticos_id":18,"date":"2023-06-14","number_module":18,"bible_studies":[],"printing_url":null,"slug":"the-mystery-of-the-names-written-in-heaven-part-1","pdf_simple":[{"id":"ce663ebd-a248-4dae-bd38-ff9213b45871","filename":"ce663ebd-a248-4dae-bd38-ff9213b45871.pdf","download":"CEM18-2023_05_14-the_mystery_of_the_names_written_in_heaven_part_1_compressed.pdf"}],"pdf_booklet":[]}
{"id":"O mistério dos nomes escritos no Céu - Parte 1","locale":"pt","featured_image":"b9834ad0-6612-4d15-8b27-1c3b4377ed7e.png","materiales_didacticos_id":18,"date":"2023-06-14","number_module":18,"bible_studies":[],"printing_url":null,"slug":"o-misterio-dos-nomes-escritos-no-ceu-parte-1","pdf_simple":[{"id":"9ef7d7cc-1b61-4fd8-a92f-6b0e32faecb6","filename":"9ef7d7cc-1b61-4fd8-a92f-6b0e32faecb6.pdf","download":"MD18-O-MISTERIO-DOS-NOMES-ESCRITOS-NO-CEU-Parte-1.pdf"}],"pdf_booklet":[]}
{"id":"El misterio de los nombres escritos en el Cielo - Parte 2","locale":"es","featured_image":"da7a9b05-cb95-40ec-8fc5-73ce02b160f7.png","materiales_didacticos_id":19,"date":"2023-07-03","number_module":19,"bible_studies":[],"printing_url":null,"slug":"el-misterio-de-los-nombres-escritos-en-el-cielo-parte-2","pdf_simple":[{"id":"fb3cc889-df3c-4aca-aaf7-0d8d9ebec043","filename":"fb3cc889-df3c-4aca-aaf7-0d8d9ebec043.pdf","download":"MD19-EL-MISTERIO-DE-LOS-NOMBRES-ESCRITOS-EN-EL-CIELO-Parte-2.pdf"}],"pdf_booklet":[]}
{"id":"O mistério dos nomes escritos no Céu - Parte 2","locale":"pt","featured_image":"0ad410d0-950c-4296-9d82-cc5cfb9ebd44.png","materiales_didacticos_id":19,"date":"2023-07-03","number_module":19,"bible_studies":[],"printing_url":null,"slug":"o-misterio-dos-nomes-escritos-no-ceu-parte-2","pdf_simple":[{"id":"da7e716c-0e34-459a-81a1-1a29fde7dd00","filename":"da7e716c-0e34-459a-81a1-1a29fde7dd00.pdf","download":"MD19-O-MISTERIO-DOS-NOMES-ESCRITOS-NO-CEU-Parte-2.pdf"}],"pdf_booklet":[]}
{"id":"El Árbol fructífero - Parte 1","locale":"es","featured_image":"23b27eb3-c1fd-4aae-9b74-3218beef227f.png","materiales_didacticos_id":20,"date":"2023-07-19","number_module":20,"bible_studies":[],"printing_url":null,"slug":"el-arbol-fructifero-parte-1","pdf_simple":[{"id":"3776b86f-0fe8-45ad-94e2-f0b2f26392d4","filename":"3776b86f-0fe8-45ad-94e2-f0b2f26392d4.pdf","download":"MDI-20-el_arbol_fructifero_parte1_v6.pdf"}],"pdf_booklet":[]}
{"id":"The Fruitful Tree - Part 1","locale":"pt","featured_image":"9f6871f2-1787-4c60-8b42-e958fa9e7d75.png","bible_studies":[],"printing_url":null,"slug":"the-fruitful-tree-part-1","pdf_simple":[{"id":"1aef1cad-ea85-4c26-99bf-487685bae4bc","filename":"1aef1cad-ea85-4c26-99bf-487685bae4bc.pdf","download":"CEM20-2023_06_23-bible_study_318-the_fruitful_tree_c.pdf"}],"pdf_booklet":[]}
{"id":"La introducción a la Dispensación del Reino","locale":"es","featured_image":"6d7a350c-0588-4425-b3d5-f337555ae357.png","materiales_didacticos_id":21,"date":"2023-08-01","number_module":21,"bible_studies":[],"printing_url":null,"slug":"la-introduccion-a-la-dispensacion-del-reino","pdf_simple":[{"id":"f3c58974-81d6-41ad-8a6c-797dbb675aad","filename":"f3c58974-81d6-41ad-8a6c-797dbb675aad.pdf","download":"MDI21-La-introduccion-a-la-dispensacion-del-reino.pdf"}],"pdf_booklet":[]}
{"id":"The Introduction to the Dispensation of the Kingdom","locale":"en","featured_image":"e02be3d3-5e43-4f03-935c-034b4d1f1716.png","materiales_didacticos_id":21,"date":"2023-08-01","number_module":21,"bible_studies":[],"printing_url":null,"slug":"the-introduction-to-the-dispensation-of-the-kingdom","pdf_simple":[{"id":"19e60dc6-cd54-48de-8ce9-f8fddaea9b82","filename":"19e60dc6-cd54-48de-8ce9-f8fddaea9b82.pdf","download":"CEM21-2023_07_20-the_introduction_of_the_dispensation_of_the_kingdom_c.pdf"}],"pdf_booklet":[]}
{"id":"El Árbol fructífero - Parte 2","locale":"es","featured_image":"f53bd4d4-eb5d-4953-bdec-9c0e58d9f770.png","materiales_didacticos_id":22,"date":"2023-08-10","number_module":22,"bible_studies":[],"printing_url":null,"slug":"el-arbol-fructifero-parte-2","pdf_simple":[{"id":"91e001bc-7770-4636-90c5-0385d1434d0f","filename":"91e001bc-7770-4636-90c5-0385d1434d0f.pdf","download":"MDI_EB-22-v4-jpg_.pdf"}],"pdf_booklet":[]}
{"id":"A Árvore Frutífera - Parte 2","locale":"pt","featured_image":"93c363d0-16c5-4396-9f9a-b534bb9d6dbc.png","materiales_didacticos_id":22,"date":"2023-08-10","number_module":22,"bible_studies":[],"printing_url":null,"slug":"a-arvore-frutifera-parte-2","pdf_simple":[{"id":"0d6ec1bb-f6c1-4f04-800d-064b408ead63","filename":"0d6ec1bb-f6c1-4f04-800d-064b408ead63.pdf","download":"MDI_EB-22-v4_PT.pdf"}],"pdf_booklet":[]}
{"id":"The Fruitful Tree - Part 2","locale":"en","featured_image":"d6ceab17-9291-411c-b804-6593f723ed0c.png","materiales_didacticos_id":22,"date":"2023-08-10","number_module":22,"bible_studies":[],"printing_url":null,"slug":"the-fruitful-tree-part-2","pdf_simple":[{"id":"c3d108a3-5193-41ea-aa37-0b58cd327bf7","filename":"c3d108a3-5193-41ea-aa37-0b58cd327bf7.pdf","download":"CEM22-2023_06_23-the_fruitful_tree-part_2_c.pdf"}],"pdf_booklet":[]}
{"id":"El Árbol fructífero - Parte 3","locale":"es","featured_image":"5f670807-c93d-41a9-b624-50d88b18d5c8.png","materiales_didacticos_id":23,"date":"2023-09-05","number_module":23,"bible_studies":[],"printing_url":null,"slug":"el-arbol-fructifero-parte-3","pdf_simple":[{"id":"062fb08b-f655-4a14-a1db-b0b2167f0aed","filename":"062fb08b-f655-4a14-a1db-b0b2167f0aed.pdf","download":"MD23-El-arbol-fructifero-Parte-3-final.pdf"}],"pdf_booklet":[]}
{"id":"A Árvore Frutífera Parte 3","locale":"pt","featured_image":"3d5d4705-a8a5-49b5-8074-d72a445e0482.png","materiales_didacticos_id":23,"date":"2023-09-05","number_module":23,"bible_studies":[],"printing_url":null,"slug":"a-arvore-frutifera-parte-3","pdf_simple":[{"id":"6c427e3d-02c6-4cc9-a02d-03fbbb62c195","filename":"6c427e3d-02c6-4cc9-a02d-03fbbb62c195.pdf","download":"MDI_EB-23-v7_PT.pdf"}],"pdf_booklet":[]}
{"id":"Las vigilias","locale":"es","featured_image":"05e7373a-0960-4268-8e1a-cc38d3d657e7.png","materiales_didacticos_id":24,"date":"2023-10-08","number_module":24,"bible_studies":[],"printing_url":null,"slug":"las-vigilias","pdf_simple":[{"id":"dcd9d8bb-60b1-4fbe-994e-db19d4c55ea1","filename":"dcd9d8bb-60b1-4fbe-994e-db19d4c55ea1.pdf","download":"MD24-Las-vigilias.pdf"}],"pdf_booklet":[]}
{"id":"La diferencia entre el reflejo (los tipos) y la realidad","locale":"es","featured_image":"759ec642-de1d-489b-9a6e-06c3c6a5a805.png","materiales_didacticos_id":25,"date":"2023-10-15","number_module":25,"bible_studies":[],"printing_url":null,"slug":"la-diferencia-entre-el-reflejo-los-tipos-y-la-realidad","pdf_simple":[{"id":"2578e418-3138-45b9-8724-d04ac830ced2","filename":"2578e418-3138-45b9-8724-d04ac830ced2.pdf","download":"MD25-La-diferencia-entre-el-reflejo-los-tipos-y-la-realidad.pdf"}],"pdf_booklet":[]}
{"id":"The Diference Between (the Types) and Reality","locale":"en","featured_image":"35bd1093-20a6-4e22-a331-eb4221987a09.png","materiales_didacticos_id":25,"date":"2023-10-15","number_module":25,"bible_studies":[],"printing_url":null,"slug":"the-diference-between-the-types-and-reality","pdf_simple":[{"id":"2e1c14fb-8abe-49da-b29d-1695b2e42730","filename":"2e1c14fb-8abe-49da-b29d-1695b2e42730.pdf","download":"CEM-2023_10_03-the_difference_between_the_types_and_reality-compressed.pdf"}],"pdf_booklet":[]}
{"id":"Peleando la buena batalla - Parte 1","locale":"es","featured_image":"eb1c08e7-08c8-4696-a535-f70b192fde76.png","materiales_didacticos_id":26,"date":"2023-10-20","number_module":26,"bible_studies":[],"printing_url":null,"slug":"peleando-la-buena-batalla-parte-1","pdf_simple":[{"id":"20f738e7-c462-4eee-ab49-625f3765e157","filename":"20f738e7-c462-4eee-ab49-625f3765e157.pdf","download":"MD26-Peleando-la-buena-batalla.pdf"}],"pdf_booklet":[]}
{"id":"Fighting the good fight - Part 1","locale":"en","featured_image":"12b8f664-bef2-4edf-b85b-0f6b6254d246.png","materiales_didacticos_id":26,"date":"2023-10-20","number_module":26,"bible_studies":[],"printing_url":null,"slug":"fighting-the-good-fight-part-1","pdf_simple":[{"id":"6b08a44d-4acb-495b-b532-5e9c70298181","filename":"6b08a44d-4acb-495b-b532-5e9c70298181.pdf","download":"CEM-2023_09_17-bible_study_343-part_1-fighting_the_good_fight_compressed.pdf"}],"pdf_booklet":[]}
{"id":"Peleando la buena batalla - Parte 2","locale":"es","featured_image":"794e08bc-4290-4899-8c09-0da80d1260ad.png","materiales_didacticos_id":27,"date":"2023-11-22","number_module":27,"bible_studies":[],"printing_url":null,"slug":"peleando-la-buena-batalla-parte-2","pdf_simple":[{"id":"ce4e76b8-0257-4c42-947d-86ec8f45e0d6","filename":"ce4e76b8-0257-4c42-947d-86ec8f45e0d6.pdf","download":"MDI27-Peleando-la-buena-batalla-Parte-2.pdf"}],"pdf_booklet":[]}
{"id":"La Edad del Astronauta","locale":"es","featured_image":"7603ee32-51fc-4c86-b97d-192f702b9822.png","materiales_didacticos_id":28,"date":"2023-11-22","number_module":28,"bible_studies":[],"printing_url":null,"slug":"la-edad-del-astronauta","pdf_simple":[{"id":"da00fb57-9241-484b-9bdc-1fc8d0b24d07","filename":"da00fb57-9241-484b-9bdc-1fc8d0b24d07.pdf","download":"MDI28-La-edad-del-astronauta.pdf"}],"pdf_booklet":[]}
{"id":"La Roca en la Segunda Venida - Parte 1","locale":"es","featured_image":"c818e120-251c-407e-a2d5-4f39750e5ef9.png","materiales_didacticos_id":29,"date":"2023-12-17","number_module":29,"bible_studies":[],"printing_url":null,"slug":"la-roca-en-la-segunda-venida-parte-1","pdf_simple":[{"id":"4815600c-cd62-4703-abb3-bc1a5737cecf","filename":"4815600c-cd62-4703-abb3-bc1a5737cecf.pdf","download":"MDI29-La-roca-en-la-segunda-venida-parte1.pdf"}],"pdf_booklet":[]}
{"id":"El nacimiento de Jesucristo","locale":"es","featured_image":"c4d07fe6-a83e-4bc3-84af-109784294e92.png","materiales_didacticos_id":30,"date":"2023-12-23","number_module":30,"bible_studies":[],"printing_url":null,"slug":"el-nacimiento-de-jesucristo","pdf_simple":[{"id":"1f22df22-becf-4388-9318-b7d5e0f0746d","filename":"1f22df22-becf-4388-9318-b7d5e0f0746d.pdf","download":"MDI29-el_nacimiento_de_jesucristo.pdf"}],"pdf_booklet":[]}
{"id":"Olor grato y fragante para el Señor","locale":"es","featured_image":"598cabe0-80fe-449a-8d00-88766989b1e3.png","materiales_didacticos_id":31,"date":"2024-01-06","number_module":31,"bible_studies":[],"printing_url":null,"slug":"olor-grato-y-fragante-para-el-senor","pdf_simple":[{"id":"c8ae9324-5824-4453-804a-b640c40dd0be","filename":"c8ae9324-5824-4453-804a-b640c40dd0be.pdf","download":"MD31-Olor-grato-y-fragante-para-el-senor.pdf"}],"pdf_booklet":[]}
{"id":"Sweet-Smelling Savor unto the Lord","locale":"en","featured_image":"10731e5b-b418-4a55-88f7-9137eda512ae.png","materiales_didacticos_id":31,"date":"2024-01-06","number_module":31,"bible_studies":[],"printing_url":null,"slug":"sweet-smelling-savor-unto-the-lord","pdf_simple":[{"id":"72d3ac4c-1ff9-44e1-945f-fd1807eb6dd9","filename":"72d3ac4c-1ff9-44e1-945f-fd1807eb6dd9.pdf","download":"CEM31-2024_01_06-sweet_smelling_savor_unto_the_lord_c.pdf"}],"pdf_booklet":[]}
{"id":"El Hijo del Hombre","locale":"es","featured_image":"bc99eaee-f5ce-4eec-af68-28e757f16a07.png","materiales_didacticos_id":32,"date":"2024-01-19","number_module":32,"bible_studies":[],"printing_url":[{"press":"https://imprenta.carpa.com/es/libro/estudios-biblicos-diciembre-2023-parte-2/"}],"slug":"el-hijo-del-hombre","pdf_simple":[{"id":"0a87c829-a52f-4087-a4dc-64137806401d","filename":"0a87c829-a52f-4087-a4dc-64137806401d.pdf","download":"MD32-El-hijo-del-hombre.pdf"}],"pdf_booklet":[]}
{"id":"Libres por medio del Espíritu de Dios - Parte 1","locale":"es","featured_image":"84b03c4e-bb54-4e64-945a-9931358f6f84.png","materiales_didacticos_id":33,"date":"2024-02-08","number_module":33,"bible_studies":[],"printing_url":[{"press":"https://imprenta.carpa.com/wp-content/uploads/2023/12/estudios_biblicos_diciembre2023_parte1-sencillo.pdf"}],"slug":"libres-por-medio-del-espiritu-de-dios-parte-1","pdf_simple":[{"id":"9d9a216b-0d45-45f2-b1e5-d019c3b556d4","filename":"9d9a216b-0d45-45f2-b1e5-d019c3b556d4.pdf","download":"MD33-Libres-por-medio-del-espiritu-de-Dios.pdf"}],"pdf_booklet":[]}
{"id":"Free Through the Spirit of God - Part 1","locale":"en","featured_image":"00655892-7169-4fab-a2e9-f424243a92e5.png","materiales_didacticos_id":33,"date":"2024-02-08","number_module":33,"bible_studies":[],"printing_url":null,"slug":"free-through-the-spirit-of-god-part-1","pdf_simple":[{"id":"bc0b109e-ef8d-4e1c-8336-718c8d7d25d8","filename":"bc0b109e-ef8d-4e1c-8336-718c8d7d25d8.pdf","download":"CEM33-2023_12_02-free_through_the_spirit_of_god-part_1.pdf"}],"pdf_booklet":[]}
{"id":"Libres por medio del Espíritu de Dios - Parte 2","locale":"es","featured_image":"6a11e800-013a-498c-9e63-9c1dec5240b1.png","materiales_didacticos_id":34,"date":"2024-02-23","number_module":34,"bible_studies":[],"printing_url":[{"press":"https://imprenta.carpa.com/wp-content/uploads/2023/12/estudios_biblicos_diciembre2023_parte1-sencillo.pdf"}],"slug":"libres-por-medio-del-espiritu-de-dios-parte-2","pdf_simple":[{"id":"16422a9e-8a84-4584-9700-2e0af8073fe0","filename":"16422a9e-8a84-4584-9700-2e0af8073fe0.pdf","download":"MD34-Libres-por-medio-del-espiritu-de-Dios-Parte-2.pdf"}],"pdf_booklet":[]}
{"id":"Especial de Semana Santa","locale":"es","featured_image":"8f03e6b2-2849-4f30-b45a-34888f10705a.png","materiales_didacticos_id":35,"date":"2024-03-28","number_module":35,"bible_studies":[],"printing_url":null,"slug":"especial-de-semana-santa","pdf_simple":[{"id":"12250f85-f9e9-4c74-b377-1361d177570e","filename":"12250f85-f9e9-4c74-b377-1361d177570e.pdf","download":"MD35-Especial-de-semana-santa-v2.pdf"}],"pdf_booklet":[]}
{"id":"Holy Week Special","locale":"en","featured_image":"b2421bb2-6926-4709-a308-4405414919eb.png","materiales_didacticos_id":35,"date":"2024-03-28","number_module":35,"bible_studies":[],"printing_url":null,"slug":"holy-week-special","pdf_simple":[{"id":"da16c5b1-cbcf-4ad8-a040-ba3a1d4f26e3","filename":"da16c5b1-cbcf-4ad8-a040-ba3a1d4f26e3.pdf","download":"CEM35-2024_03_28-holy_week_special_1.pdf"}],"pdf_booklet":[]}
{"id":"El Árbol de la Vida hecho carne en Su Primera y Segunda Venida","locale":"es","featured_image":"0ca1bf63-08bc-4926-9af6-6edb200d9c89.png","materiales_didacticos_id":36,"date":"2024-04-16","number_module":36,"bible_studies":[],"printing_url":[{"press":"https://imprenta.carpa.com/es/estudios-biblicos-noviembre-2023-parte-4/"}],"slug":"el-arbol-de-la-vida-hecho-carne-en-su-primera-y-segunda-venida","pdf_simple":[{"id":"4efe3474-adfc-4ae9-8983-f674572d4fca","filename":"4efe3474-adfc-4ae9-8983-f674572d4fca.pdf","download":"MD36-El-Arbol-de-la-Vida-hecho-carne-en-Su-Primera-y-Segunda-Venida.pdf"}],"pdf_booklet":[]}
{"id":"La Venida del Creador","locale":"es","featured_image":"82d5258b-fc34-4b83-bb40-89e2b7ee15da.png","materiales_didacticos_id":37,"date":"2023-05-18","number_module":37,"bible_studies":[],"printing_url":[{"press":"https://imprenta.carpa.com/es/libro/estudios-biblicos-febrero-2024-parte-1/"}],"slug":"la-venida-del-creador","pdf_simple":[{"id":"3db78cd9-8143-41ac-ba8a-92fcbd91d81e","filename":"3db78cd9-8143-41ac-ba8a-92fcbd91d81e.pdf","download":"MD37-La-Venida-del-Creador.pdf"}],"pdf_booklet":[]}
{"id":"El precursor de la Palabra venidera","locale":"es","featured_image":"ddf1dc11-ee75-48d6-b9ea-9bb22c06622f.png","materiales_didacticos_id":38,"date":"2024-06-07","number_module":38,"bible_studies":[],"printing_url":[{"press":"https://imprenta.carpa.com/es/libro/estudios-biblicos-abril-2024-parte-1/"}],"slug":"el-precursor-de-la-palabra-venidera","pdf_simple":[{"id":"ca151f23-abf0-4c35-9c1b-9a83b9a065e1","filename":"ca151f23-abf0-4c35-9c1b-9a83b9a065e1.pdf","download":"MD38-El-precursor-de-la-palabra-venidera.pdf"}],"pdf_booklet":[]}
{"id":"La Obra de Reclamo del mensajero y Sus escogidos en la Edad de la Piedra Angular","locale":"es","featured_image":"43712df6-4921-461f-bb6c-c57a201c689f.png","materiales_didacticos_id":39,"date":"2024-08-21","number_module":39,"bible_studies":[],"printing_url":[{"press":"https://imprenta.carpa.com/es/libro/estudios-biblicos-marzo-2024-parte-3/"}],"slug":"la-obra-de-reclamo-del-mensajero-y-sus-escogidos-en-la-edad-de-la-piedra-angular","pdf_simple":[{"id":"956c9904-1b60-4470-ac8c-8a643e734942","filename":"956c9904-1b60-4470-ac8c-8a643e734942.pdf","download":"MD39-La-obra-de-reclamo-del-mensajero1.pdf"}],"pdf_booklet":[]}
{"id":"Columna en el Templo de Dios, donde está escrito el Nombre de Dios, Nombre de la Ciudad de Dios y el Nombre Nuevo del Señor Jesucristo","locale":"es","featured_image":"fd0c413a-2545-4aa1-a435-2ca8d675dfee.png","materiales_didacticos_id":40,"date":"2024-08-21","number_module":40,"bible_studies":[],"printing_url":[{"press":"https://imprenta.carpa.com/es/libro/estudios-biblicos-junio-2024-parte-4/"}],"slug":"columna-en-el-templo-de-dios-donde-esta-escrito-el-nombre-de-dios-nombre-de-la-ciudad-de-dios-y-el-nombre-nuevo-del-senor-jesucristo","pdf_simple":[{"id":"f2a93eee-544f-4083-bd80-0b87d3c66848","filename":"f2a93eee-544f-4083-bd80-0b87d3c66848.pdf","download":"MD40-Columna-en-el-Templo-de-Dios.pdf"}],"pdf_booklet":[]}
{"id":"La Obra de Reclamo del mensajero y Sus escogidos en la Edad de la Piedra Angular - Parte 2","locale":"es","featured_image":"63e0f2bb-a136-48be-83c9-696e8f18a016.png","materiales_didacticos_id":41,"date":"2024-10-14","number_module":41,"bible_studies":[],"printing_url":[{"press":"https://imprenta.carpa.com/es/libro/estudios-biblicos-marzo-2024-parte-3/"}],"slug":"la-obra-de-reclamo-del-mensajero-y-sus-escogidos-en-la-edad-de-la-piedra-angular-parte-2","pdf_simple":[{"id":"b6314ec0-957e-4474-809e-1230a3252c19","filename":"b6314ec0-957e-4474-809e-1230a3252c19.pdf","download":"MD41-La-obra-de-reclamo-del-mensajero-y-sus-escogidos-en-la-edad-de-la-piedra-angular.pdf"}],"pdf_booklet":[]}
{"id":"José vive aún - Parte 1","locale":"es","featured_image":"6a43b894-fbb8-42a0-830b-26ff351d5351.png","materiales_didacticos_id":42,"date":"2024-11-27","number_module":42,"bible_studies":[],"printing_url":[{"press":"https://imprenta.carpa.com/es/libro/estudios-biblicos-marzo-2024-parte-3/"}],"slug":"jose-vive-aun-parte-1","pdf_simple":[{"id":"c3684003-1c74-4dfb-9c3e-4fad091df60d","filename":"c3684003-1c74-4dfb-9c3e-4fad091df60d.pdf","download":"MD42-Jose-vive-aun.pdf"}],"pdf_booklet":[]}
{"id":"La Espada del Rey de reyes y Señor de señores","locale":"es","featured_image":"e07381ea-d649-4c04-84d1-2a1c144f7cc6.png","materiales_didacticos_id":43,"date":"2024-12-06","number_module":43,"bible_studies":[],"printing_url":[{"press":"https://imprenta.carpa.com/es/libro/estudios-biblicos-julio-2024-parte-4/"}],"slug":"la-espada-del-rey-de-reyes-y-senor-de-senores","pdf_simple":[{"id":"2ec71b81-492f-4d0e-8cf9-1dcd7f802bb4","filename":"2ec71b81-492f-4d0e-8cf9-1dcd7f802bb4.pdf","download":"MD43-La-espada-del-rey-de-reyes-y-senor-de-senores.pdf"}],"pdf_booklet":[]}
{"id":"Entrar al Reino posicionalmente","locale":"es","featured_image":"71f35ae0-1fe4-42cd-b804-0993fcab5877.jpg","materiales_didacticos_id":44,"date":"2025-04-08","number_module":44,"bible_studies":[],"printing_url":null,"slug":"entrar-al-reino-posicionalmente","pdf_simple":[{"id":"e2ddac33-b80a-4e43-bc43-2c400fbea901","filename":"e2ddac33-b80a-4e43-bc43-2c400fbea901.pdf","download":"MDI44-Entrar-al-reino-posicionalmente1.pdf"}],"pdf_booklet":[]}
{"id":"El arco iris = el Pacto para Vida","locale":"es","featured_image":"90b64403-b3d7-4e03-a3c2-5bb0732252d9.png","materiales_didacticos_id":45,"date":"2025-06-27","number_module":45,"bible_studies":[],"printing_url":null,"slug":"el-arco-iris-el-pacto-para-vida","pdf_simple":[{"id":"1d60e4f1-acbc-4666-8bd9-a12a5eaf95b0","filename":"1d60e4f1-acbc-4666-8bd9-a12a5eaf95b0.pdf","download":"MDI45-El-arco-irias-el-pacto-para-vida1.pdf"}],"pdf_booklet":[]}
{"id":"El cumplimiento de las profecías hechas una realidad","locale":"es","featured_image":"de0a00dc-c86c-4c89-a6f3-5170b56c5ac3.png","materiales_didacticos_id":46,"date":"2025-08-31","number_module":46,"bible_studies":[],"printing_url":[{"press":"https://imprenta.carpa.com/es/libro/estudios-biblicos-agosto-2024-parte-5/"}],"slug":"el-cumplimiento-de-las-profecias-hechas-una-realidad","pdf_simple":[{"id":"cdff7409-bd4c-428a-849c-4ebbc8d1468d","filename":"cdff7409-bd4c-428a-849c-4ebbc8d1468d.pdf","download":"MD46-El-cumplimiento-de-las-profecias-hechas-una-realidad.pdf"}],"pdf_booklet":[]}
{"id":"The Fruitful Tree - Part 1","locale":"en","featured_image":"d4c9f521-53aa-4656-881f-037c23e235cf.png","materiales_didacticos_id":20,"date":"2023-07-19","number_module":20,"bible_studies":[],"printing_url":null,"slug":"the-fruitful-tree-part-1","pdf_simple":[{"id":"20d4803e-8b36-4f44-ace7-cec27a86140e","filename":"20d4803e-8b36-4f44-ace7-cec27a86140e.pdf","download":"CEM20-2023_06_23-bible_study_318-the_fruitful_tree_c.pdf"}],"pdf_booklet":[]}
{"id":"El Ungido en la Primera y Segunda Venida del Señor","locale":"es","featured_image":"e4e895f7-097e-45ee-a23a-018225f75387.webp","materiales_didacticos_id":47,"date":"2026-01-20","number_module":47,"bible_studies":[],"printing_url":[{"press":"https://imprenta.carpa.com/es/libro/estudios-biblicos-mayo-2025-parte-1/"}],"slug":"el-ungido-en-la-primera-y-segunda-venida-del-senor","pdf_simple":[{"id":"d5a7f7e2-5491-4f60-8445-974330da2f9f","filename":"d5a7f7e2-5491-4f60-8445-974330da2f9f.pdf","download":"MD 47_.pdf"}],"pdf_booklet":[]}
{"id":"The Mystery of the Three Bibles - Part 1","locale":"en","featured_image":"d41eaee7-83ba-4126-90e3-e9b616e5fc2c.png","materiales_didacticos_id":16,"date":"2023-05-13","number_module":16,"bible_studies":[],"printing_url":null,"slug":"the-mystery-of-the-three-bibles-part-1","pdf_simple":[{"id":"7135710e-1e04-47ac-8541-956e09d44866","filename":"7135710e-1e04-47ac-8541-956e09d44866.pdf","download":"CEM16-2023_02_19-the_mystery_of_the_three_bibles_part_1_c.pdf"}],"pdf_booklet":[]}
{"id":"Fighting the Good Fight - Part 2","locale":"en","featured_image":"6d65d578-5689-41d1-847d-3cf20d4d5a66.png","materiales_didacticos_id":27,"date":"2023-11-22","number_module":27,"bible_studies":[],"printing_url":null,"slug":"fighting-the-good-fight-part-2","pdf_simple":[{"id":"619dd452-c9ce-46c7-b216-77d5b49e4414","filename":"619dd452-c9ce-46c7-b216-77d5b49e4414.pdf","download":"CEM27_2023_09_17_bible_study_343_part_2_fighting_the_good_fight.pdf"}],"pdf_booklet":[]}
{"id":"The Coming of the Creator","locale":"en","featured_image":"c0d27e0f-63f3-4676-aa85-c4562f94ab6c.png","materiales_didacticos_id":37,"date":"2023-05-18","number_module":37,"bible_studies":[],"printing_url":null,"slug":"the-coming-of-the-creator","pdf_simple":[{"id":"34f2333a-25c4-457a-bade-0d3cee0f58f1","filename":"34f2333a-25c4-457a-bade-0d3cee0f58f1.pdf","download":"CEM37-2024_02_03-the_coming_of_the_creator-c.pdf"}],"pdf_booklet":[]}
{"id":"The Age of the Astronaut","locale":"en","featured_image":"1445920c-bdaf-498d-aaea-01c6fdb72db6.png","materiales_didacticos_id":28,"date":"2023-11-22","number_module":28,"bible_studies":[],"printing_url":null,"slug":"the-age-of-the-astronaut","pdf_simple":[{"id":"b245b26f-8de5-4662-bf12-6609af77b444","filename":"b245b26f-8de5-4662-bf12-6609af77b444.pdf","download":"CEM28-2023_05_18-the_age_of_the_astronaut-c.pdf"}],"pdf_booklet":[]}
{"id":"The Birth of Jesus Christ","locale":"en","featured_image":"0c4e5751-5f7d-4f89-a56c-4be7759723e2.png","materiales_didacticos_id":30,"date":"2023-12-23","number_module":30,"bible_studies":[],"printing_url":null,"slug":"the-birth-of-jesus-christ","pdf_simple":[{"id":"bd9e3bd9-93ee-469b-be24-89a606185d61","filename":"bd9e3bd9-93ee-469b-be24-89a606185d61.pdf","download":"CEM30-2023_12_22-bible_study_370-the_birth_of_jesus_christ-c.pdf"}],"pdf_booklet":[]}
{"id":"The Fruitful Tree - Part 3","locale":"en","featured_image":"d14119e4-67b6-4bb1-8132-95253c8bc49a.png","materiales_didacticos_id":23,"date":"2023-09-05","number_module":23,"bible_studies":[],"printing_url":null,"slug":"the-fruitful-tree-part-3","pdf_simple":[{"id":"6e9154e0-6bac-4997-93c2-f669189b060f","filename":"6e9154e0-6bac-4997-93c2-f669189b060f.pdf","download":"CEM23-2023_06_23-the_fruitful_tree-part_3_c.pdf"}],"pdf_booklet":[]}
{"id":"El Pacto del Espíritu Santo en el alma de los escogidos de Dios","locale":"es","featured_image":"183a8e7f-8cf4-4a32-a708-0309544d987d.webp","materiales_didacticos_id":48,"date":"2026-02-24","number_module":48,"bible_studies":[],"printing_url":[{"press":"https://imprenta.carpa.com/es/libro/estudios-biblicos-junio-2025-parte-5/"}],"slug":"el-pacto-del-espiritu-santo-en-el-alma-de-los-escogidos-de-dios","pdf_simple":[{"id":"2edbdeb9-7fe1-4f88-b5b7-e10c46f8971b","filename":"2edbdeb9-7fe1-4f88-b5b7-e10c46f8971b.pdf","download":"MD 48_.pdf"}],"pdf_booklet":[]}
{"id":"Elías en el Monte de Dios","locale":"es","featured_image":"50819069-fd69-42d4-9e7b-e869fc08569a.webp","materiales_didacticos_id":49,"date":"2026-03-14","number_module":49,"bible_studies":[],"printing_url":[{"press":"https://imprenta.carpa.com/es/libro/estudios-biblicos-agosto-2025-parte-1/"}],"slug":"elias-en-el-monte-de-dios","pdf_simple":[{"id":"6b5ceb63-f2cf-449e-822c-440ebfa383ec","filename":"6b5ceb63-f2cf-449e-822c-440ebfa383ec.pdf","download":"MD 49_.pdf"}],"pdf_booklet":[]}

View File

@ -0,0 +1,431 @@
undefined
44d8e78a-6f3f-4c16-adc5-d2bdd25c731c.png
f622826f-8456-4f44-9661-975a69597cbf.png
0b5579ec-d4da-47d3-9d3e-06c86a285f53.jpg
945a3bcb-be1b-4c05-88ed-b388c2214173.png
9591e3dd-fd86-4d9d-888d-0f3155e82b46.png
undefined
08c6a1f6-9729-44c3-a793-79b1a9bb29d5.jpg
08c6a1f6-9729-44c3-a793-79b1a9bb29d5.jpg
undefined
undefined
f622826f-8456-4f44-9661-975a69597cbf.png
undefined
a1a8d419-243e-4ba7-b5f4-a2c12577f464.png
0ecd72dc-58e7-4e61-ab75-7c7bf53fcfc9.png
2a9ec351-e895-4d60-927c-fc7becf7413c.png
c567790d-cdd2-40ba-8a9b-c0d058771a5e.jpg
613d0ade-2cad-4be4-979a-78a45bda93f2.jpg
44d2aa72-398c-4296-9d5c-06e790f27cc7.jpg
247597ee-030d-4bce-8465-f6caa09a4f2a.jpg
1fd59149-72b9-4611-8762-b4af6c1b75f8.jpg
094c6be6-eb0b-4987-b4c7-fdf2a0a6b3d0.jpg
c6ef03cd-4c18-4532-9e0e-8b043b89d61a.jpg
013f3590-0c1c-4bf2-8d7f-751ea3915f73.jpg
308687d0-743f-4492-9e84-abc6769f0920.jpeg
e1963418-3da9-4335-b8e6-0873b8f89280.jpg
1d0f24ee-4457-4902-94ed-e5fec0098c6a.jpg
2f495cac-d876-46aa-af47-74673bd55414.png
c9158cc1-7ecc-4fae-b294-6bd3c80acc12.png
77ea4288-ec82-4013-9849-692f4238fe21.png
d0cf4ffe-e035-4e59-934c-2146584ed4ab.png
160c71cb-1737-44ab-a61d-4d0fe1ac1d4e.png
8137285a-e970-485a-8f8d-669a7eda7e2e.png
a4614adb-8c47-4be9-8c68-4f08bed892e1.png
92dc0cff-1e59-48fe-b1a1-99ce7d17838a.jpg
1b710461-6462-469b-bd74-88fd11722303.jpg
a4e660f3-6585-45ac-a906-2cbfac1a93d7.png
73c52c85-2e2c-4669-8123-f5d0e26595e0.jpg
013f3590-0c1c-4bf2-8d7f-751ea3915f73.jpg
1d0f24ee-4457-4902-94ed-e5fec0098c6a.jpg
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
60d2cf46-689b-420d-91d1-9db2f2d8a7fb.png
71b61fb9-7036-4069-8540-345143908941.png
d3d5eeef-fcac-43ef-97f8-7de5ed30fbe4.png
88d7888d-212d-4f6e-86a9-7e1a266b6158.webp
e87901fc-ea48-4320-9c3a-f34da054b57c.webp
6bba14b5-da72-4a20-8429-375b025682e8.webp
2c51991f-4bea-43ad-81a9-7a84b5d429a3.webp
8e090533-222c-4a4c-b5ac-ef20e5426874.png
db9ace2e-5ee3-4eb4-96f3-a41af343587f.png
efee0882-776b-4375-9164-ae6e8208de5b.png
c965f199-6673-4a73-8f7b-023bd914fc1f.png
f34ae816-816e-4a80-a876-acbb63acf501.png
eddc4066-49e8-488a-bb29-f48c8b537f44.png
ccb09381-6321-404c-8b4d-07d087c9a37e.png
08a556e8-e521-4132-b9ff-158c68fdf55f.png
621af9e2-dd53-4426-83be-3e792899a93b.png
e1683f77-0c62-472a-961d-dab42e815a2e.png
b90d667a-77cc-44ad-ad7d-26543296e279.png
32a89892-4fba-4cd6-acaf-fb9223b1a045.png
b830543f-fda7-4e48-90a1-ee1e55f58d02.png
5495cd1c-bc01-47bb-946a-62d29a438bdd.png
2279aa08-9def-4ce9-b131-020f78198add.png
b4200470-d455-40a2-b9d4-917da953bca5.png
08e7700e-2a17-4dc6-9db3-eb7a4317bfcb.png
617136ee-08be-4df0-bb40-f202044134f7.png
e223007b-f451-4985-bd74-42e0848c26f2.png
628b5387-8cd9-4a76-8fa0-cfe469a99c9f.png
4455b1c6-6129-4dc3-8389-79648b9ccde1.png
02324019-7270-4d55-ba19-7d3d5ab4a77f.png
f773c702-9cc7-4835-87d8-7689a6f2f3d4.png
160dfa48-6738-4781-968e-ea7053649f01.png
e491bb9d-86b5-429a-ab0f-2e59708c94a8.png
79adab4a-67a6-4bc9-8009-467f5db153ce.png
27745056-855c-4474-af44-f7a510d084ad.png
528c8820-7b12-486d-9dd2-ac63dfa22c8e.png
a494dfbe-4ef3-4e86-a4a3-c8bc4f745e9e.png
c9346a1a-3278-4a96-afbf-69dc14ca15b7.png
9c62dd14-c425-413c-ba68-14340bd71437.png
3f8acf4a-eacf-4355-af8e-30b9c40828a3.png
cef292a2-71de-4384-b5eb-f5fa41aa46cc.png
b5e40c3d-3313-4d5d-87d7-6192015f7e35.png
9323a93b-b28a-4287-a1e0-25a784526bdb.png
2bf93450-4310-4c6d-9395-66aaeabe4751.png
13c4d8ea-447e-4c25-9296-bfb7b95f3d22.png
46cbbeb4-5eb7-4fe3-a30e-c084bbf47505.png
f8ba6ada-2bc0-4e5f-b156-987dee4161a5.png
aa99f373-b194-4140-a7f0-5760b9e440ec.png
6114fa6d-fa2c-4650-9f7b-ea9bc27f7fa9.png
084f280e-d659-4a6c-9b43-de16552414ef.png
8a35a079-4cec-405e-8ba3-5b542206345a.png
2ba23bd3-4a27-43e0-8454-59b2f1e1ccfa.png
ca70c722-f38c-49e3-ab8f-420025593ed3.png
3308dc37-6424-4215-8d04-b13a53d418e4.png
e17c140d-8787-49a1-9d5e-f309f019a701.png
069202e6-fe23-4416-abe6-27a811b7f97b.png
f4d9b2f6-0966-450f-92b2-496453204d8b.png
6844ba8a-016b-4c34-a616-5d13471ae663.png
36d5839f-471a-40a2-a61f-6268827e3799.png
ac1cbf00-84cc-4912-b95c-b5cb2bb24fc3.png
f0c7e4af-58fb-4952-96b8-279f1f7be4a4.png
eb2cec38-7962-408f-a10a-b550469d0df1.png
a3ffa843-cb08-43bb-9dac-a0e384ac4a35.png
f79babd6-36be-4f76-b542-42b8405849de.png
4db1484d-4727-4afa-b2ff-e77a1ee8829a.png
b21a3ac3-109b-49a1-b639-9a78988ff6e7.png
49c47834-6f2e-41a8-9b6e-b3533312d893.png
f7051d46-a552-404b-85c7-46a87404cc85.png
716326c3-9331-4b4e-8262-cdf4c042a61c.png
ce00df5d-50d9-4c0c-8885-caff176dac9e.png
aecdd317-451a-4b9d-8e6e-04b126e6f90f.png
48c7cffc-925e-4790-9a2a-657fc95caa6c.png
7d48f63d-f25c-46b4-ad16-0558758ccab8.png
b03a9d46-e06b-4211-8704-7ec6ec79b878.png
18a4faff-a42e-4a69-9fe5-ba40381724aa.png
7595b1b7-c8a7-46a1-90ff-32764e29886e.png
6222dca8-08d4-4fba-ab89-aedb0e1d88d1.png
fc24f68d-780c-4112-ba0b-a61427c538d5.png
5efa40b6-a6f5-4de6-a767-0a1dad8df49c.png
22673a51-01ab-463f-8d22-b81472ef29fa.png
9a0046da-4684-4537-8a66-0043415216ea.png
bfeed9f0-a201-4fcb-b359-be142d78e6a7.png
3306a28c-ad3d-4736-8d24-81d326bec1b9.png
5ab44d55-8b2a-4827-a818-e1a10ceb392b.png
66739295-a90e-460c-ad0b-fee67b6b51a8.png
7a6edcea-7041-4475-a2ea-efaf27419ec8.png
2a3ef1b3-1992-4ceb-bc0a-cfd683adcc0f.png
476813f3-692f-427d-8c6f-ddccf7b467e0.png
ca115db6-01db-43f3-8a9a-4709a5f1a95c.png
6f5da293-cde9-4b2c-b635-efc27d3952c6.png
28d1abe6-7003-4864-a261-4b9f9b7b0830.png
8141a930-0afc-490e-b566-9388aacfcb05.png
bf16e93a-c54d-43f3-9c0e-ff5212a1a28b.png
21ac938c-adfe-47d6-bc68-cf7eb6742746.png
0d29a962-44c2-4008-9c5f-fb7520b30354.png
2b2b5310-1bbe-4905-8076-3e35c8c0eda3.png
a0bfcfcc-3916-4a68-87a2-d051147c668f.png
e8089a95-c1f5-4950-b50a-8b5d8b3927c3.png
3d9b8a30-bb2f-4d8d-9fac-7ff155ab4855.png
e7c8852c-f0c0-47a8-96b3-1c39bf6ac3aa.png
8eb279db-ef5d-4199-8eb3-5b00da0a2742.png
11ee4be9-575c-4141-835a-a623327e63fd.png
f0d0210d-a746-468b-9908-63714af2b33e.png
1096d1eb-d300-4187-8f56-324d6485142e.png
fb0d02ca-c206-42d7-a938-646f305d1834.png
61738cd9-155d-4679-a52d-3ed682c01899.png
39b6c969-ae5b-476d-9bc8-1a896e28848b.png
db81b4e1-2e4e-47b4-b521-6016962a17c6.png
f2f237ec-8c78-4b83-a4fe-237ceb4b0015.png
2c13119b-f66d-47f7-9e20-d1c12ffe3e73.png
02595804-3c41-4834-a152-bb2852cac5ba.png
db1e7aa0-a067-4160-bbae-4a4c749143d9.png
b5646367-4d3b-4ef4-b6b9-284381d4351f.png
2074ba9c-45dc-49bb-8232-7b18f79c4425.png
c25cc533-9987-4494-9a08-1d5e9ee6edea.png
0ec05e67-52f9-43a1-b503-ba40462329b7.png
49f6c356-b6f6-4fa0-8c40-11e85080c37f.png
1c38f0c7-31f2-405a-9684-045dd1ee8af1.png
dc2344d7-ed82-4e27-9ae4-793d2c4f571b.png
a9ab35dc-db40-44e2-b23e-34dd9a6dc1f8.png
344fdd18-f487-4315-becb-c1927a1d8904.png
5c33ef38-7b9f-4454-8419-16e8af0b5e9f.png
866a394c-98d7-49eb-ad14-ff228f0a4332.png
94a241ff-9877-4f0c-adde-25a9fc07f3b7.png
f91af9d0-2e33-449d-b078-3c8383d8e220.png
28f06099-456e-4c43-ab0e-578625473b78.png
00500950-5cf6-46b1-a24e-1eb080bfcbe7.png
0a2f2e78-8066-4b56-a652-5fbc920e21c0.png
2eaa6f97-71e9-44b9-8abd-5af5c694ca52.png
0dd409a1-431f-4b28-b137-fbfc03837b1e.png
30878f78-99f4-48e3-a530-9960affd58a2.png
e70a1d0d-029e-43a3-876d-d46b98395fd1.png
29a59499-b5ae-47db-a015-f4e3b055baf6.png
87c02a18-f6c0-4844-9617-228011d261ab.png
d9e54205-65df-4a8e-86f4-7e8031d0f574.png
c5dfc019-241f-4b0f-93f6-9b8e5e8004e6.png
cd1b6ea6-8ce4-4f28-aa13-f52c190cd3c5.png
2d655c22-ef5f-477a-92e0-217c7cacb5aa.png
4139e7f1-5624-4a99-be06-18be1ac0c128.png
31431f57-e8dd-46c4-b977-fe7f1ac778f5.png
f3436908-d6cd-4635-bf92-9886d98e7314.png
650b31c0-2f63-43c0-9541-dc107b92740f.png
7e747beb-0126-4b35-97ad-5ff61955b437.png
d82a8d8e-b73d-4ffa-bb5a-ac1b5533742e.png
08b103cb-a963-4cc5-8415-364b460943b1.png
263ff018-3ce2-4945-a162-bd362fc3a599.png
9e9e409d-1bac-40ee-a615-ae6c864af6bf.png
e52c3199-674e-4ed1-9bd9-eb66233a8544.png
c0e789f5-6610-4d8b-ab46-09d9dfc0e969.png
96d5f11a-7657-4ca9-98df-42e996735dce.png
07888ec3-0495-4b30-ae24-0ee347f12e55.png
880f9f92-87bc-4478-971a-7d021cc11b27.png
b7062545-99ea-4940-897c-31aa2169f803.png
926ab775-d7f2-4000-833b-4db73dcaf917.png
41889e26-ca40-4da3-9a1a-5f7079a18d60.png
937770b0-e4af-4f1a-a7cc-2b0c34b12d06.png
877ef2ea-cc73-48fc-91a9-577a65a3154f.png
78020617-6f2a-4e09-8088-8368ffdb76e7.png
5fdacd23-6ebe-4cb7-8e6b-6f83bd887432.png
1555873b-6e79-4b6e-9785-82167e201ef3.jpg
f2e740e2-f874-4688-ba13-f21ec2bef552.png
6471f01f-d1c9-4e0f-bac8-13f096c0ea68.png
afd7083b-7edd-4440-9519-83f99efe68fa.png
9957af18-2004-4c8c-b277-3a3846ce0da3.png
2369c537-9d5a-48da-8536-384399e1f287.png
47f8cd5c-bbd5-49a3-b47b-d6aec3a75868.png
61624ad3-ec34-4c2c-9d61-3b6bf4dd2f25.png
21c7e8e4-1514-4d92-a87e-d605717949c5.png
53eac8ca-d232-48ad-ba1a-763749b866f1.png
34e3466d-6d3a-4a7c-9a4f-ca5f544a4cfe.png
a284197f-b45b-4545-a378-f8882df9a664.png
4859593c-be36-4ef7-9c8a-0df6eeaec688.png
undefined
b24b186a-1d8e-4923-ad24-6dd4b6050c1c.png
40679080-70da-49ee-9f38-41197da8c692.png
0ac22b6b-ec85-4545-802f-46d00203d050.png
4b78efd5-1c06-4dae-95f5-acea43da5f15.png
12c1ac7d-3e93-4c2b-80ac-162d5c6810f2.png
c4b1dc77-bbf0-47c9-8c58-602ad0817bfb.png
9aa26bfb-e3fb-4b45-9d7e-9f1986ec4fd8.png
4d3a6b8c-791b-4e1a-bfad-90dd1feac8a5.png
32ad3226-01a6-4cfc-b147-b0a027500b08.png
907677f3-87be-4b40-a59b-a4fea3f04900.png
93a3c912-aa6f-44af-b149-090431afedda.png
a162ae40-2479-4063-bd0e-7d5d501594f2.png
2460ce98-37b4-4706-8a79-2fa4418246b9.png
0a38e75b-1c80-4907-bea8-e195c4204971.png
ee10e5dd-6272-4bf8-836b-cf636f3c1a60.png
d9a40fd5-f14f-4300-95d0-8366851aea3e.png
19b786a0-54f8-4e8b-9fe6-a010947e15ce.png
35eadc5f-2432-4e3f-b1cd-7a31b3f6489a.png
270e8296-0afd-4e16-b7be-66aa3ab0e318.png
0a2011cb-93ae-471b-8361-535138ce24e3.png
47bd068d-61f3-4da7-80ae-99d6450b8793.png
6614f144-d19a-4b41-9ae3-bfd8dcf33fb8.png
undefined
undefined
undefined
5851cf90-9e23-4678-80c1-8c960840b4b8.png
c0f8a61a-a594-4df4-b2ea-e48be471b1fc.png
0d3001da-4d4a-4626-88a9-cb63d59a0d23.png
b1e10739-a4b3-4ebb-8a3b-8967d915a53d.png
4892f19a-7d62-4564-a955-4203178a9e79.png
610f95c8-d7ed-4e2b-b648-dc205c04fe4b.png
15f887a2-c18a-43d5-aa83-0313707aef22.png
571f2a2f-79eb-43ca-87d4-69dae01a5ee6.png
d371eb74-98c5-4f56-8c81-56a2a6ac733b.png
ed5c2059-257a-4b58-928d-90cd03a1d306.png
c5ed3291-1600-4b14-985f-003fdee96eb8.png
ce370035-0c84-4126-a93a-a60263f36668.png
e806d814-7823-4b2d-9e4f-8bdcfed4fa7e.png
267d75cd-7bdb-4fdb-9fd4-6e1d6be17951.png
5cd1fa5e-66bd-44fc-8875-b56841de3e75.png
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
5a019218-89e7-4a06-bc91-63ef9cf2decf.png
e4d1d3ae-ed58-429a-86f1-a05d748dab05.png
4b5ec378-18df-4979-9797-19a1e64c5494.png
ef475f68-1ee6-4d04-b27d-42b5f6ab6055.png
4020a2ac-da1e-4baa-be3f-99c617cc13ab.png
57055bdc-974b-4f02-89ae-1a2f092d7dd0.png
385b15de-bf68-408d-9559-2b58bfb3bddb.jpg
eb1ee217-b380-445e-aaad-4cd849863bad.png
d449df25-62fd-44c2-b9f0-31547e7d9049.png
a2d89bc9-025b-4e52-8536-fa6454dfd874.png
52abf9b3-da20-4562-b902-b611fb5f43a5.png
d6620b72-76f3-47bb-8459-30c68d1d8df5.png
6ca74cf3-9896-4953-bea9-f13903bd7c9c.png
0d208fc6-541b-4e4e-a1e0-af35ee82974b.png
d7742e27-90d0-4b11-931f-fe248d90402a.png
0a0af96a-e9a0-4ace-aea7-d58d317b1c30.jpg
fef7b1dd-b5f6-48ee-b5f4-e68e1014b3ca.jpg
f5c08c04-7f96-4f11-8b23-523fe5e616b1.jpg
26a13106-a3f7-4311-a014-3d3d08875463.jpg
e5e86830-8a0b-47f9-b20b-3a2952f502c4.jpg
5e189173-92be-484e-a5d9-91f70242ff7e.jpg
e7e8609d-4a18-4dc5-9a6f-5459a4fb0b53.jpg
a073aba4-f230-4c8f-8d53-bcefbfe146ec.jpg
undefined
undefined
aeed0ca4-afb4-4db9-85fd-ed96ad0d21aa.png
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
8de8a458-596f-4041-bac1-c1ba0d2c0917.png
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
60d2cf46-689b-420d-91d1-9db2f2d8a7fb.png
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
undefined
93a3c912-aa6f-44af-b149-090431afedda.png
a162ae40-2479-4063-bd0e-7d5d501594f2.png
907677f3-87be-4b40-a59b-a4fea3f04900.png
32ad3226-01a6-4cfc-b147-b0a027500b08.png
19b786a0-54f8-4e8b-9fe6-a010947e15ce.png
47bd068d-61f3-4da7-80ae-99d6450b8793.png
0a2011cb-93ae-471b-8361-535138ce24e3.png
270e8296-0afd-4e16-b7be-66aa3ab0e318.png
35eadc5f-2432-4e3f-b1cd-7a31b3f6489a.png
eddc4066-49e8-488a-bb29-f48c8b537f44.png
d9a40fd5-f14f-4300-95d0-8366851aea3e.png
ee10e5dd-6272-4bf8-836b-cf636f3c1a60.png
0a38e75b-1c80-4907-bea8-e195c4204971.png
2460ce98-37b4-4706-8a79-2fa4418246b9.png
undefined
c965f199-6673-4a73-8f7b-023bd914fc1f.png
undefined
undefined
undefined
undefined
f34ae816-816e-4a80-a876-acbb63acf501.png
efee0882-776b-4375-9164-ae6e8208de5b.png
db9ace2e-5ee3-4eb4-96f3-a41af343587f.png
8e090533-222c-4a4c-b5ac-ef20e5426874.png
2c51991f-4bea-43ad-81a9-7a84b5d429a3.webp
6bba14b5-da72-4a20-8429-375b025682e8.webp
e87901fc-ea48-4320-9c3a-f34da054b57c.webp
88d7888d-212d-4f6e-86a9-7e1a266b6158.webp
d3d5eeef-fcac-43ef-97f8-7de5ed30fbe4.png
71b61fb9-7036-4069-8540-345143908941.png
61f3cdd6-e5cc-435c-baaa-ee89784621c0.png
576a4255-0a9c-455e-9add-a607ee9c0357.png
0b5579ec-d4da-47d3-9d3e-06c86a285f53.jpg
undefined
undefined
0b5579ec-d4da-47d3-9d3e-06c86a285f53.jpg
0b5579ec-d4da-47d3-9d3e-06c86a285f53.jpg
cff3746a-327e-48b1-a33a-d56b117e6433.png
e4d1d3ae-ed58-429a-86f1-a05d748dab05.png
4b5ec378-18df-4979-9797-19a1e64c5494.png
5a019218-89e7-4a06-bc91-63ef9cf2decf.png
7175827f-b762-4440-b35f-35ccfeb05a4f.jpg
7175827f-b762-4440-b35f-35ccfeb05a4f.jpg
39d8a8c1-85b8-4280-9e64-90c7d3522147.jpg
39d8a8c1-85b8-4280-9e64-90c7d3522147.jpg
30b166e0-2350-4b0c-94df-97bc8d253453.png
undefined
f8148196-c19b-49f1-8ba1-3eeae2e7caa3.png
4d3a6b8c-791b-4e1a-bfad-90dd1feac8a5.png
7175827f-b762-4440-b35f-35ccfeb05a4f.jpg
7175827f-b762-4440-b35f-35ccfeb05a4f.jpg
6f727cb6-75f4-4d53-80ad-6d2f438b29f7.png
9aa26bfb-e3fb-4b45-9d7e-9f1986ec4fd8.png
89d303c2-6d2b-4386-9634-00c5ce077e32.jpg
89d303c2-6d2b-4386-9634-00c5ce077e32.jpg
89d303c2-6d2b-4386-9634-00c5ce077e32.jpg
12a87d26-a20a-48da-ae69-3245fc8ebff2.png
c4b1dc77-bbf0-47c9-8c58-602ad0817bfb.png
a7ccc863-1bba-4f60-823c-247fbf894731.png
12c1ac7d-3e93-4c2b-80ac-162d5c6810f2.png
1 undefined
2 44d8e78a-6f3f-4c16-adc5-d2bdd25c731c.png
3 f622826f-8456-4f44-9661-975a69597cbf.png
4 0b5579ec-d4da-47d3-9d3e-06c86a285f53.jpg
5 945a3bcb-be1b-4c05-88ed-b388c2214173.png
6 9591e3dd-fd86-4d9d-888d-0f3155e82b46.png
7 undefined
8 08c6a1f6-9729-44c3-a793-79b1a9bb29d5.jpg
9 08c6a1f6-9729-44c3-a793-79b1a9bb29d5.jpg
10 undefined
11 undefined
12 f622826f-8456-4f44-9661-975a69597cbf.png
13 undefined
14 a1a8d419-243e-4ba7-b5f4-a2c12577f464.png
15 0ecd72dc-58e7-4e61-ab75-7c7bf53fcfc9.png
16 2a9ec351-e895-4d60-927c-fc7becf7413c.png
17 c567790d-cdd2-40ba-8a9b-c0d058771a5e.jpg
18 613d0ade-2cad-4be4-979a-78a45bda93f2.jpg
19 44d2aa72-398c-4296-9d5c-06e790f27cc7.jpg
20 247597ee-030d-4bce-8465-f6caa09a4f2a.jpg
21 1fd59149-72b9-4611-8762-b4af6c1b75f8.jpg
22 094c6be6-eb0b-4987-b4c7-fdf2a0a6b3d0.jpg
23 c6ef03cd-4c18-4532-9e0e-8b043b89d61a.jpg
24 013f3590-0c1c-4bf2-8d7f-751ea3915f73.jpg
25 308687d0-743f-4492-9e84-abc6769f0920.jpeg
26 e1963418-3da9-4335-b8e6-0873b8f89280.jpg
27 1d0f24ee-4457-4902-94ed-e5fec0098c6a.jpg
28 2f495cac-d876-46aa-af47-74673bd55414.png
29 c9158cc1-7ecc-4fae-b294-6bd3c80acc12.png
30 77ea4288-ec82-4013-9849-692f4238fe21.png
31 d0cf4ffe-e035-4e59-934c-2146584ed4ab.png
32 160c71cb-1737-44ab-a61d-4d0fe1ac1d4e.png
33 8137285a-e970-485a-8f8d-669a7eda7e2e.png
34 a4614adb-8c47-4be9-8c68-4f08bed892e1.png
35 92dc0cff-1e59-48fe-b1a1-99ce7d17838a.jpg
36 1b710461-6462-469b-bd74-88fd11722303.jpg
37 a4e660f3-6585-45ac-a906-2cbfac1a93d7.png
38 73c52c85-2e2c-4669-8123-f5d0e26595e0.jpg
39 013f3590-0c1c-4bf2-8d7f-751ea3915f73.jpg
40 1d0f24ee-4457-4902-94ed-e5fec0098c6a.jpg
41 undefined
42 undefined
43 undefined
44 undefined
45 undefined
46 undefined
47 undefined
48 undefined
49 undefined
50 undefined
51 undefined
52 undefined
53 undefined
54 undefined
55 undefined
56 undefined
57 undefined
58 undefined
59 undefined
60 undefined
61 undefined
62 undefined
63 undefined
64 undefined
65 undefined
66 undefined
67 undefined
68 60d2cf46-689b-420d-91d1-9db2f2d8a7fb.png
69 71b61fb9-7036-4069-8540-345143908941.png
70 d3d5eeef-fcac-43ef-97f8-7de5ed30fbe4.png
71 88d7888d-212d-4f6e-86a9-7e1a266b6158.webp
72 e87901fc-ea48-4320-9c3a-f34da054b57c.webp
73 6bba14b5-da72-4a20-8429-375b025682e8.webp
74 2c51991f-4bea-43ad-81a9-7a84b5d429a3.webp
75 8e090533-222c-4a4c-b5ac-ef20e5426874.png
76 db9ace2e-5ee3-4eb4-96f3-a41af343587f.png
77 efee0882-776b-4375-9164-ae6e8208de5b.png
78 c965f199-6673-4a73-8f7b-023bd914fc1f.png
79 f34ae816-816e-4a80-a876-acbb63acf501.png
80 eddc4066-49e8-488a-bb29-f48c8b537f44.png
81 ccb09381-6321-404c-8b4d-07d087c9a37e.png
82 08a556e8-e521-4132-b9ff-158c68fdf55f.png
83 621af9e2-dd53-4426-83be-3e792899a93b.png
84 e1683f77-0c62-472a-961d-dab42e815a2e.png
85 b90d667a-77cc-44ad-ad7d-26543296e279.png
86 32a89892-4fba-4cd6-acaf-fb9223b1a045.png
87 b830543f-fda7-4e48-90a1-ee1e55f58d02.png
88 5495cd1c-bc01-47bb-946a-62d29a438bdd.png
89 2279aa08-9def-4ce9-b131-020f78198add.png
90 b4200470-d455-40a2-b9d4-917da953bca5.png
91 08e7700e-2a17-4dc6-9db3-eb7a4317bfcb.png
92 617136ee-08be-4df0-bb40-f202044134f7.png
93 e223007b-f451-4985-bd74-42e0848c26f2.png
94 628b5387-8cd9-4a76-8fa0-cfe469a99c9f.png
95 4455b1c6-6129-4dc3-8389-79648b9ccde1.png
96 02324019-7270-4d55-ba19-7d3d5ab4a77f.png
97 f773c702-9cc7-4835-87d8-7689a6f2f3d4.png
98 160dfa48-6738-4781-968e-ea7053649f01.png
99 e491bb9d-86b5-429a-ab0f-2e59708c94a8.png
100 79adab4a-67a6-4bc9-8009-467f5db153ce.png
101 27745056-855c-4474-af44-f7a510d084ad.png
102 528c8820-7b12-486d-9dd2-ac63dfa22c8e.png
103 a494dfbe-4ef3-4e86-a4a3-c8bc4f745e9e.png
104 c9346a1a-3278-4a96-afbf-69dc14ca15b7.png
105 9c62dd14-c425-413c-ba68-14340bd71437.png
106 3f8acf4a-eacf-4355-af8e-30b9c40828a3.png
107 cef292a2-71de-4384-b5eb-f5fa41aa46cc.png
108 b5e40c3d-3313-4d5d-87d7-6192015f7e35.png
109 9323a93b-b28a-4287-a1e0-25a784526bdb.png
110 2bf93450-4310-4c6d-9395-66aaeabe4751.png
111 13c4d8ea-447e-4c25-9296-bfb7b95f3d22.png
112 46cbbeb4-5eb7-4fe3-a30e-c084bbf47505.png
113 f8ba6ada-2bc0-4e5f-b156-987dee4161a5.png
114 aa99f373-b194-4140-a7f0-5760b9e440ec.png
115 6114fa6d-fa2c-4650-9f7b-ea9bc27f7fa9.png
116 084f280e-d659-4a6c-9b43-de16552414ef.png
117 8a35a079-4cec-405e-8ba3-5b542206345a.png
118 2ba23bd3-4a27-43e0-8454-59b2f1e1ccfa.png
119 ca70c722-f38c-49e3-ab8f-420025593ed3.png
120 3308dc37-6424-4215-8d04-b13a53d418e4.png
121 e17c140d-8787-49a1-9d5e-f309f019a701.png
122 069202e6-fe23-4416-abe6-27a811b7f97b.png
123 f4d9b2f6-0966-450f-92b2-496453204d8b.png
124 6844ba8a-016b-4c34-a616-5d13471ae663.png
125 36d5839f-471a-40a2-a61f-6268827e3799.png
126 ac1cbf00-84cc-4912-b95c-b5cb2bb24fc3.png
127 f0c7e4af-58fb-4952-96b8-279f1f7be4a4.png
128 eb2cec38-7962-408f-a10a-b550469d0df1.png
129 a3ffa843-cb08-43bb-9dac-a0e384ac4a35.png
130 f79babd6-36be-4f76-b542-42b8405849de.png
131 4db1484d-4727-4afa-b2ff-e77a1ee8829a.png
132 b21a3ac3-109b-49a1-b639-9a78988ff6e7.png
133 49c47834-6f2e-41a8-9b6e-b3533312d893.png
134 f7051d46-a552-404b-85c7-46a87404cc85.png
135 716326c3-9331-4b4e-8262-cdf4c042a61c.png
136 ce00df5d-50d9-4c0c-8885-caff176dac9e.png
137 aecdd317-451a-4b9d-8e6e-04b126e6f90f.png
138 48c7cffc-925e-4790-9a2a-657fc95caa6c.png
139 7d48f63d-f25c-46b4-ad16-0558758ccab8.png
140 b03a9d46-e06b-4211-8704-7ec6ec79b878.png
141 18a4faff-a42e-4a69-9fe5-ba40381724aa.png
142 7595b1b7-c8a7-46a1-90ff-32764e29886e.png
143 6222dca8-08d4-4fba-ab89-aedb0e1d88d1.png
144 fc24f68d-780c-4112-ba0b-a61427c538d5.png
145 5efa40b6-a6f5-4de6-a767-0a1dad8df49c.png
146 22673a51-01ab-463f-8d22-b81472ef29fa.png
147 9a0046da-4684-4537-8a66-0043415216ea.png
148 bfeed9f0-a201-4fcb-b359-be142d78e6a7.png
149 3306a28c-ad3d-4736-8d24-81d326bec1b9.png
150 5ab44d55-8b2a-4827-a818-e1a10ceb392b.png
151 66739295-a90e-460c-ad0b-fee67b6b51a8.png
152 7a6edcea-7041-4475-a2ea-efaf27419ec8.png
153 2a3ef1b3-1992-4ceb-bc0a-cfd683adcc0f.png
154 476813f3-692f-427d-8c6f-ddccf7b467e0.png
155 ca115db6-01db-43f3-8a9a-4709a5f1a95c.png
156 6f5da293-cde9-4b2c-b635-efc27d3952c6.png
157 28d1abe6-7003-4864-a261-4b9f9b7b0830.png
158 8141a930-0afc-490e-b566-9388aacfcb05.png
159 bf16e93a-c54d-43f3-9c0e-ff5212a1a28b.png
160 21ac938c-adfe-47d6-bc68-cf7eb6742746.png
161 0d29a962-44c2-4008-9c5f-fb7520b30354.png
162 2b2b5310-1bbe-4905-8076-3e35c8c0eda3.png
163 a0bfcfcc-3916-4a68-87a2-d051147c668f.png
164 e8089a95-c1f5-4950-b50a-8b5d8b3927c3.png
165 3d9b8a30-bb2f-4d8d-9fac-7ff155ab4855.png
166 e7c8852c-f0c0-47a8-96b3-1c39bf6ac3aa.png
167 8eb279db-ef5d-4199-8eb3-5b00da0a2742.png
168 11ee4be9-575c-4141-835a-a623327e63fd.png
169 f0d0210d-a746-468b-9908-63714af2b33e.png
170 1096d1eb-d300-4187-8f56-324d6485142e.png
171 fb0d02ca-c206-42d7-a938-646f305d1834.png
172 61738cd9-155d-4679-a52d-3ed682c01899.png
173 39b6c969-ae5b-476d-9bc8-1a896e28848b.png
174 db81b4e1-2e4e-47b4-b521-6016962a17c6.png
175 f2f237ec-8c78-4b83-a4fe-237ceb4b0015.png
176 2c13119b-f66d-47f7-9e20-d1c12ffe3e73.png
177 02595804-3c41-4834-a152-bb2852cac5ba.png
178 db1e7aa0-a067-4160-bbae-4a4c749143d9.png
179 b5646367-4d3b-4ef4-b6b9-284381d4351f.png
180 2074ba9c-45dc-49bb-8232-7b18f79c4425.png
181 c25cc533-9987-4494-9a08-1d5e9ee6edea.png
182 0ec05e67-52f9-43a1-b503-ba40462329b7.png
183 49f6c356-b6f6-4fa0-8c40-11e85080c37f.png
184 1c38f0c7-31f2-405a-9684-045dd1ee8af1.png
185 dc2344d7-ed82-4e27-9ae4-793d2c4f571b.png
186 a9ab35dc-db40-44e2-b23e-34dd9a6dc1f8.png
187 344fdd18-f487-4315-becb-c1927a1d8904.png
188 5c33ef38-7b9f-4454-8419-16e8af0b5e9f.png
189 866a394c-98d7-49eb-ad14-ff228f0a4332.png
190 94a241ff-9877-4f0c-adde-25a9fc07f3b7.png
191 f91af9d0-2e33-449d-b078-3c8383d8e220.png
192 28f06099-456e-4c43-ab0e-578625473b78.png
193 00500950-5cf6-46b1-a24e-1eb080bfcbe7.png
194 0a2f2e78-8066-4b56-a652-5fbc920e21c0.png
195 2eaa6f97-71e9-44b9-8abd-5af5c694ca52.png
196 0dd409a1-431f-4b28-b137-fbfc03837b1e.png
197 30878f78-99f4-48e3-a530-9960affd58a2.png
198 e70a1d0d-029e-43a3-876d-d46b98395fd1.png
199 29a59499-b5ae-47db-a015-f4e3b055baf6.png
200 87c02a18-f6c0-4844-9617-228011d261ab.png
201 d9e54205-65df-4a8e-86f4-7e8031d0f574.png
202 c5dfc019-241f-4b0f-93f6-9b8e5e8004e6.png
203 cd1b6ea6-8ce4-4f28-aa13-f52c190cd3c5.png
204 2d655c22-ef5f-477a-92e0-217c7cacb5aa.png
205 4139e7f1-5624-4a99-be06-18be1ac0c128.png
206 31431f57-e8dd-46c4-b977-fe7f1ac778f5.png
207 f3436908-d6cd-4635-bf92-9886d98e7314.png
208 650b31c0-2f63-43c0-9541-dc107b92740f.png
209 7e747beb-0126-4b35-97ad-5ff61955b437.png
210 d82a8d8e-b73d-4ffa-bb5a-ac1b5533742e.png
211 08b103cb-a963-4cc5-8415-364b460943b1.png
212 263ff018-3ce2-4945-a162-bd362fc3a599.png
213 9e9e409d-1bac-40ee-a615-ae6c864af6bf.png
214 e52c3199-674e-4ed1-9bd9-eb66233a8544.png
215 c0e789f5-6610-4d8b-ab46-09d9dfc0e969.png
216 96d5f11a-7657-4ca9-98df-42e996735dce.png
217 07888ec3-0495-4b30-ae24-0ee347f12e55.png
218 880f9f92-87bc-4478-971a-7d021cc11b27.png
219 b7062545-99ea-4940-897c-31aa2169f803.png
220 926ab775-d7f2-4000-833b-4db73dcaf917.png
221 41889e26-ca40-4da3-9a1a-5f7079a18d60.png
222 937770b0-e4af-4f1a-a7cc-2b0c34b12d06.png
223 877ef2ea-cc73-48fc-91a9-577a65a3154f.png
224 78020617-6f2a-4e09-8088-8368ffdb76e7.png
225 5fdacd23-6ebe-4cb7-8e6b-6f83bd887432.png
226 1555873b-6e79-4b6e-9785-82167e201ef3.jpg
227 f2e740e2-f874-4688-ba13-f21ec2bef552.png
228 6471f01f-d1c9-4e0f-bac8-13f096c0ea68.png
229 afd7083b-7edd-4440-9519-83f99efe68fa.png
230 9957af18-2004-4c8c-b277-3a3846ce0da3.png
231 2369c537-9d5a-48da-8536-384399e1f287.png
232 47f8cd5c-bbd5-49a3-b47b-d6aec3a75868.png
233 61624ad3-ec34-4c2c-9d61-3b6bf4dd2f25.png
234 21c7e8e4-1514-4d92-a87e-d605717949c5.png
235 53eac8ca-d232-48ad-ba1a-763749b866f1.png
236 34e3466d-6d3a-4a7c-9a4f-ca5f544a4cfe.png
237 a284197f-b45b-4545-a378-f8882df9a664.png
238 4859593c-be36-4ef7-9c8a-0df6eeaec688.png
239 undefined
240 b24b186a-1d8e-4923-ad24-6dd4b6050c1c.png
241 40679080-70da-49ee-9f38-41197da8c692.png
242 0ac22b6b-ec85-4545-802f-46d00203d050.png
243 4b78efd5-1c06-4dae-95f5-acea43da5f15.png
244 12c1ac7d-3e93-4c2b-80ac-162d5c6810f2.png
245 c4b1dc77-bbf0-47c9-8c58-602ad0817bfb.png
246 9aa26bfb-e3fb-4b45-9d7e-9f1986ec4fd8.png
247 4d3a6b8c-791b-4e1a-bfad-90dd1feac8a5.png
248 32ad3226-01a6-4cfc-b147-b0a027500b08.png
249 907677f3-87be-4b40-a59b-a4fea3f04900.png
250 93a3c912-aa6f-44af-b149-090431afedda.png
251 a162ae40-2479-4063-bd0e-7d5d501594f2.png
252 2460ce98-37b4-4706-8a79-2fa4418246b9.png
253 0a38e75b-1c80-4907-bea8-e195c4204971.png
254 ee10e5dd-6272-4bf8-836b-cf636f3c1a60.png
255 d9a40fd5-f14f-4300-95d0-8366851aea3e.png
256 19b786a0-54f8-4e8b-9fe6-a010947e15ce.png
257 35eadc5f-2432-4e3f-b1cd-7a31b3f6489a.png
258 270e8296-0afd-4e16-b7be-66aa3ab0e318.png
259 0a2011cb-93ae-471b-8361-535138ce24e3.png
260 47bd068d-61f3-4da7-80ae-99d6450b8793.png
261 6614f144-d19a-4b41-9ae3-bfd8dcf33fb8.png
262 undefined
263 undefined
264 undefined
265 5851cf90-9e23-4678-80c1-8c960840b4b8.png
266 c0f8a61a-a594-4df4-b2ea-e48be471b1fc.png
267 0d3001da-4d4a-4626-88a9-cb63d59a0d23.png
268 b1e10739-a4b3-4ebb-8a3b-8967d915a53d.png
269 4892f19a-7d62-4564-a955-4203178a9e79.png
270 610f95c8-d7ed-4e2b-b648-dc205c04fe4b.png
271 15f887a2-c18a-43d5-aa83-0313707aef22.png
272 571f2a2f-79eb-43ca-87d4-69dae01a5ee6.png
273 d371eb74-98c5-4f56-8c81-56a2a6ac733b.png
274 ed5c2059-257a-4b58-928d-90cd03a1d306.png
275 c5ed3291-1600-4b14-985f-003fdee96eb8.png
276 ce370035-0c84-4126-a93a-a60263f36668.png
277 e806d814-7823-4b2d-9e4f-8bdcfed4fa7e.png
278 267d75cd-7bdb-4fdb-9fd4-6e1d6be17951.png
279 5cd1fa5e-66bd-44fc-8875-b56841de3e75.png
280 undefined
281 undefined
282 undefined
283 undefined
284 undefined
285 undefined
286 undefined
287 undefined
288 undefined
289 undefined
290 undefined
291 undefined
292 undefined
293 undefined
294 undefined
295 undefined
296 undefined
297 undefined
298 undefined
299 undefined
300 5a019218-89e7-4a06-bc91-63ef9cf2decf.png
301 e4d1d3ae-ed58-429a-86f1-a05d748dab05.png
302 4b5ec378-18df-4979-9797-19a1e64c5494.png
303 ef475f68-1ee6-4d04-b27d-42b5f6ab6055.png
304 4020a2ac-da1e-4baa-be3f-99c617cc13ab.png
305 57055bdc-974b-4f02-89ae-1a2f092d7dd0.png
306 385b15de-bf68-408d-9559-2b58bfb3bddb.jpg
307 eb1ee217-b380-445e-aaad-4cd849863bad.png
308 d449df25-62fd-44c2-b9f0-31547e7d9049.png
309 a2d89bc9-025b-4e52-8536-fa6454dfd874.png
310 52abf9b3-da20-4562-b902-b611fb5f43a5.png
311 d6620b72-76f3-47bb-8459-30c68d1d8df5.png
312 6ca74cf3-9896-4953-bea9-f13903bd7c9c.png
313 0d208fc6-541b-4e4e-a1e0-af35ee82974b.png
314 d7742e27-90d0-4b11-931f-fe248d90402a.png
315 0a0af96a-e9a0-4ace-aea7-d58d317b1c30.jpg
316 fef7b1dd-b5f6-48ee-b5f4-e68e1014b3ca.jpg
317 f5c08c04-7f96-4f11-8b23-523fe5e616b1.jpg
318 26a13106-a3f7-4311-a014-3d3d08875463.jpg
319 e5e86830-8a0b-47f9-b20b-3a2952f502c4.jpg
320 5e189173-92be-484e-a5d9-91f70242ff7e.jpg
321 e7e8609d-4a18-4dc5-9a6f-5459a4fb0b53.jpg
322 a073aba4-f230-4c8f-8d53-bcefbfe146ec.jpg
323 undefined
324 undefined
325 aeed0ca4-afb4-4db9-85fd-ed96ad0d21aa.png
326 undefined
327 undefined
328 undefined
329 undefined
330 undefined
331 undefined
332 undefined
333 undefined
334 undefined
335 undefined
336 undefined
337 undefined
338 undefined
339 8de8a458-596f-4041-bac1-c1ba0d2c0917.png
340 undefined
341 undefined
342 undefined
343 undefined
344 undefined
345 undefined
346 undefined
347 undefined
348 undefined
349 undefined
350 undefined
351 undefined
352 undefined
353 undefined
354 undefined
355 undefined
356 undefined
357 undefined
358 undefined
359 undefined
360 undefined
361 undefined
362 60d2cf46-689b-420d-91d1-9db2f2d8a7fb.png
363 undefined
364 undefined
365 undefined
366 undefined
367 undefined
368 undefined
369 undefined
370 undefined
371 undefined
372 93a3c912-aa6f-44af-b149-090431afedda.png
373 a162ae40-2479-4063-bd0e-7d5d501594f2.png
374 907677f3-87be-4b40-a59b-a4fea3f04900.png
375 32ad3226-01a6-4cfc-b147-b0a027500b08.png
376 19b786a0-54f8-4e8b-9fe6-a010947e15ce.png
377 47bd068d-61f3-4da7-80ae-99d6450b8793.png
378 0a2011cb-93ae-471b-8361-535138ce24e3.png
379 270e8296-0afd-4e16-b7be-66aa3ab0e318.png
380 35eadc5f-2432-4e3f-b1cd-7a31b3f6489a.png
381 eddc4066-49e8-488a-bb29-f48c8b537f44.png
382 d9a40fd5-f14f-4300-95d0-8366851aea3e.png
383 ee10e5dd-6272-4bf8-836b-cf636f3c1a60.png
384 0a38e75b-1c80-4907-bea8-e195c4204971.png
385 2460ce98-37b4-4706-8a79-2fa4418246b9.png
386 undefined
387 c965f199-6673-4a73-8f7b-023bd914fc1f.png
388 undefined
389 undefined
390 undefined
391 undefined
392 f34ae816-816e-4a80-a876-acbb63acf501.png
393 efee0882-776b-4375-9164-ae6e8208de5b.png
394 db9ace2e-5ee3-4eb4-96f3-a41af343587f.png
395 8e090533-222c-4a4c-b5ac-ef20e5426874.png
396 2c51991f-4bea-43ad-81a9-7a84b5d429a3.webp
397 6bba14b5-da72-4a20-8429-375b025682e8.webp
398 e87901fc-ea48-4320-9c3a-f34da054b57c.webp
399 88d7888d-212d-4f6e-86a9-7e1a266b6158.webp
400 d3d5eeef-fcac-43ef-97f8-7de5ed30fbe4.png
401 71b61fb9-7036-4069-8540-345143908941.png
402 61f3cdd6-e5cc-435c-baaa-ee89784621c0.png
403 576a4255-0a9c-455e-9add-a607ee9c0357.png
404 0b5579ec-d4da-47d3-9d3e-06c86a285f53.jpg
405 undefined
406 undefined
407 0b5579ec-d4da-47d3-9d3e-06c86a285f53.jpg
408 0b5579ec-d4da-47d3-9d3e-06c86a285f53.jpg
409 cff3746a-327e-48b1-a33a-d56b117e6433.png
410 e4d1d3ae-ed58-429a-86f1-a05d748dab05.png
411 4b5ec378-18df-4979-9797-19a1e64c5494.png
412 5a019218-89e7-4a06-bc91-63ef9cf2decf.png
413 7175827f-b762-4440-b35f-35ccfeb05a4f.jpg
414 7175827f-b762-4440-b35f-35ccfeb05a4f.jpg
415 39d8a8c1-85b8-4280-9e64-90c7d3522147.jpg
416 39d8a8c1-85b8-4280-9e64-90c7d3522147.jpg
417 30b166e0-2350-4b0c-94df-97bc8d253453.png
418 undefined
419 f8148196-c19b-49f1-8ba1-3eeae2e7caa3.png
420 4d3a6b8c-791b-4e1a-bfad-90dd1feac8a5.png
421 7175827f-b762-4440-b35f-35ccfeb05a4f.jpg
422 7175827f-b762-4440-b35f-35ccfeb05a4f.jpg
423 6f727cb6-75f4-4d53-80ad-6d2f438b29f7.png
424 9aa26bfb-e3fb-4b45-9d7e-9f1986ec4fd8.png
425 89d303c2-6d2b-4386-9634-00c5ce077e32.jpg
426 89d303c2-6d2b-4386-9634-00c5ce077e32.jpg
427 89d303c2-6d2b-4386-9634-00c5ce077e32.jpg
428 12a87d26-a20a-48da-ae69-3245fc8ebff2.png
429 c4b1dc77-bbf0-47c9-8c58-602ad0817bfb.png
430 a7ccc863-1bba-4f60-823c-247fbf894731.png
431 12c1ac7d-3e93-4c2b-80ac-162d5c6810f2.png

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,218 @@
"locale","id","title_jbp","title_spanish","title_english","sermon_code","file_url","file_id","filename_disk","filename_download"
"es",2661,"ENFERMEDADES Y AFLICCIONES","Enfermedades Y Aflicciones","Diseases And Afflictions","50-0100","https://sjc1.vultrobjects.com/directus/d075a620-6d4a-496a-b9d2-b15f00b14e3f.pdf","d075a620-6d4a-496a-b9d2-b15f00b14e3f","d075a620-6d4a-496a-b9d2-b15f00b14e3f.pdf","SPN50-0100 Diseases And Afflictions VGR.pdf"
"es",2777,"DEMONOLOGÍA, REINO FÍSICO","Demonología, Reino Físico","Demonology, Physical Realm","53-0608A","https://sjc1.vultrobjects.com/directus/30e69cd5-62e8-41fd-aa23-1e727469e3cc.pdf","30e69cd5-62e8-41fd-aa23-1e727469e3cc","30e69cd5-62e8-41fd-aa23-1e727469e3cc.pdf","SPN53-0608A Demonology Physical Realm VGR.pdf"
"es",2779,"DEMONOLOGÍA","Demonología, Reino Religioso","Demonology, Religious Realm","53-0609A","https://sjc1.vultrobjects.com/directus/abb44350-5865-401d-a4ef-4fe67ca165ab.pdf","abb44350-5865-401d-a4ef-4fe67ca165ab","abb44350-5865-401d-a4ef-4fe67ca165ab.pdf","SPN53-0609A Demonology Religious Realm VGR.pdf"
"es",2787,"PREGUNTAS Y RESPUESTAS SOBRE GÉNESIS","Preguntas Y Respuestas Sobre Génesis","Questions And Answers On Genesis","53-0729","https://sjc1.vultrobjects.com/directus/c54a5514-5fda-4094-8f02-2c320e8262a3.pdf","c54a5514-5fda-4094-8f02-2c320e8262a3","c54a5514-5fda-4094-8f02-2c320e8262a3.pdf","SPN53-0729 Questions And Answers On Genesis VGR.pdf"
"es",2835,"PREGUNTAS Y RESPUESTAS (Libro Conducta, orden y doctrina de la iglesia)","Preguntas Y Respuestas #1","Questions And Answers #1","54-0103M","https://sjc1.vultrobjects.com/directus/37ff01b3-b92b-4472-978a-f6e18e365cf9.pdf","37ff01b3-b92b-4472-978a-f6e18e365cf9","37ff01b3-b92b-4472-978a-f6e18e365cf9.pdf","SPN54-0103M Questions And Answers 1 VGR.pdf"
"es",2865,"LA MARCA DE LA BESTIA","La Marca De La Bestia","The Mark Of The Beast","54-0513","https://sjc1.vultrobjects.com/directus/004a0200-ccf7-47cb-a8ec-bffebc2294ae.pdf","004a0200-ccf7-47cb-a8ec-bffebc2294ae","004a0200-ccf7-47cb-a8ec-bffebc2294ae.pdf","SPN54-0513 The Mark Of The Beast VGR.pdf"
"es",2899,"EL AÑO DEL JUBILEO","Año Del Jubileo","Jubilee Year","54-1003E","https://sjc1.vultrobjects.com/directus/2082533d-2245-4822-abbe-dcc72c37b1f1.pdf","2082533d-2245-4822-abbe-dcc72c37b1f1","2082533d-2245-4822-abbe-dcc72c37b1f1.pdf","SPN54-1003E Jubilee Year VGR.pdf"
"es",2900,"LA PALABRA SE HIZO CARNE (INFORME DE VIAJE A LA INDIA)","La Palabra Se Hizo Carne (Informe De Viaje A La India)","The Word Became Flesh (India Trip Report)","54-1003M","https://sjc1.vultrobjects.com/directus/964a1d88-ab0a-4f4e-8c74-e01d42025385.pdf","964a1d88-ab0a-4f4e-8c74-e01d42025385","964a1d88-ab0a-4f4e-8c74-e01d42025385.pdf","SPN54-1003M The Word Became Flesh India Trip Report VGR.pdf"
"es",2909,"JURÓ POR SÍ MISMO","Él Juró Por Sí Mismo","He Swore By Himself","54-1212","https://sjc1.vultrobjects.com/directus/0219b447-983a-40af-9988-03d6d7e13d3c.pdf","0219b447-983a-40af-9988-03d6d7e13d3c","0219b447-983a-40af-9988-03d6d7e13d3c.pdf","SPN54-1212 He Swore By Himself VGR.pdf"
"es",2910,"HECHOS DEL ESPÍRITU SANTO","Los Hechos Del Espíritu Santo","Acts Of The Holy Spirit","54-1219E","https://sjc1.vultrobjects.com/directus/df277699-ae32-4f90-9632-b213dc0d31d7.pdf","df277699-ae32-4f90-9632-b213dc0d31d7","df277699-ae32-4f90-9632-b213dc0d31d7.pdf","SPN54-1219E Acts Of The Holy Spirit VGR.pdf"
"es",2913,"PRINCIPIO Y FIN DE LA DISPENSACIÓN GENTIL","Principio Y Fin De La Dispensación Gentil","Beginning And Ending Of The Gentile Dispensation","55-0109E","https://sjc1.vultrobjects.com/directus/64434730-7c7e-4d04-ae8e-c9aff3f13635.pdf","64434730-7c7e-4d04-ae8e-c9aff3f13635","64434730-7c7e-4d04-ae8e-c9aff3f13635.pdf","SPN55-0109E Beginning And Ending Of The Gentile Dispensation VGR.pdf"
"es",2914,"MELQUISEDEC, EL GRAN PRÍNCIPE Y REY","Melquisedec, El Gran Príncipe Y Rey","Melchisedec, The Great Prince And King","55-0109M","https://sjc1.vultrobjects.com/directus/d9981d7c-e5be-479a-ab1c-2fdc1cdf7738.pdf","d9981d7c-e5be-479a-ab1c-2fdc1cdf7738","d9981d7c-e5be-479a-ab1c-2fdc1cdf7738.pdf","SPN55-0109M Melchisedec The Great Prince And King VGR.pdf"
"es",2920,"CÓMO EL ÁNGEL VINO A MÍ Y SU COMISIÓN","Cómo El Ángel Vino A Mí Y Su Comisión","How The Angel Came To Me, And His Commission","55-0117","https://sjc1.vultrobjects.com/directus/57792ed9-716b-40b0-9b65-8170258424d8.pdf","57792ed9-716b-40b0-9b65-8170258424d8","57792ed9-716b-40b0-9b65-8170258424d8.pdf","SPN55-0117 How The Angel Came To Me And His Commission VGR.pdf"
"es",2943,"COMPAÑERISMO POR MEDIO DE REDENCIÓN","Compañerismo Por Redención","Fellowship By Redemption","55-0403","https://sjc1.vultrobjects.com/directus/42eb6a71-8354-4c10-a344-64ab22bec316.pdf","42eb6a71-8354-4c10-a344-64ab22bec316","42eb6a71-8354-4c10-a344-64ab22bec316.pdf","SPN55-0403 Fellowship By Redemption VGR.pdf"
"es",2966,"ESPÍRITUS SEDUCTORES (Libro Demonología)","Espíritus Seductores","Enticing Spirits","55-0724","https://sjc1.vultrobjects.com/directus/202c151b-1d9a-43c6-901f-a63a44e9f7c4.pdf","202c151b-1d9a-43c6-901f-a63a44e9f7c4","202c151b-1d9a-43c6-901f-a63a44e9f7c4.pdf","SPN55-0724 Enticing Spirits VGR.pdf"
"es",2967,"EL SONIDO INCIERTO","El Sonido Incierto","The Uncertain Sound","55-0731","https://sjc1.vultrobjects.com/directus/a04ecf91-574c-4d0c-97a0-b1a25ca8f58d.pdf","a04ecf91-574c-4d0c-97a0-b1a25ca8f58d","a04ecf91-574c-4d0c-97a0-b1a25ca8f58d.pdf","SPN55-0731 The Uncertain Sound VGR.pdf"
"es",3003,"LA ENCRUCIJADA DEL TIEMPO","El Cruce Del Tiempo","The Junction Of Time","56-0115","https://sjc1.vultrobjects.com/directus/29dad033-d806-4ecc-b3f0-f1f312007f2a.pdf","29dad033-d806-4ecc-b3f0-f1f312007f2a","29dad033-d806-4ecc-b3f0-f1f312007f2a.pdf","SPN56-0115 The Junction Of Time VGR.pdf"
"es",3018,"DARÁ LA SALIDA","Dará La Salida","Making A Way","56-0304","https://sjc1.vultrobjects.com/directus/d07e0fb9-63f0-4b3b-8d8d-4a44575e0c77.pdf","d07e0fb9-63f0-4b3b-8d8d-4a44575e0c77","d07e0fb9-63f0-4b3b-8d8d-4a44575e0c77.pdf","SPN56-0304 Making A Way VGR.pdf"
"es",3021,"EL PODEROSO CONQUISTADOR","El Poderoso Conquistador","The Mighty Conqueror","56-0401M","https://sjc1.vultrobjects.com/directus/253b9299-75f3-4d61-940e-f1e1f222acc5.pdf","253b9299-75f3-4d61-940e-f1e1f222acc5","253b9299-75f3-4d61-940e-f1e1f222acc5.pdf","SPN56-0401M The Mighty Conqueror VGR.pdf"
"es",3041,"EN CADES-BARNEA","En Cades-Barnea","At Kadesh-Barnea","56-0527","https://sjc1.vultrobjects.com/directus/73efb91f-46ee-4b5b-a42c-fd2f50f8128c.pdf","73efb91f-46ee-4b5b-a42c-fd2f50f8128c","73efb91f-46ee-4b5b-a42c-fd2f50f8128c.pdf","SPN56-0527 At Kadesh-Barnea VGR.pdf"
"es",3058,"LA IGLESIA Y SU CONDICIÓN","La Iglesia Y Su Condición","The Church And Its Condition","56-0805","https://sjc1.vultrobjects.com/directus/f6e2b2f7-1323-43d4-b96d-277d47e7b843.pdf","f6e2b2f7-1323-43d4-b96d-277d47e7b843","f6e2b2f7-1323-43d4-b96d-277d47e7b843.pdf","SPN56-0805 The Church And Its Condition VGR.pdf"
"es",3062,"AMOR DIVINO","Amor Divino","Divine Love","56-0826","https://sjc1.vultrobjects.com/directus/692e3769-1360-4b0a-8595-03c128f32692.pdf","692e3769-1360-4b0a-8595-03c128f32692","692e3769-1360-4b0a-8595-03c128f32692.pdf","SPN56-0826 Divine Love VGR.pdf"
"es",3075,"UN MANTO DE SEGUNDA MANO","Un Manto De Segunda Mano","A Secondhanded Robe","56-1125M","https://sjc1.vultrobjects.com/directus/cad8eacc-59ca-4631-8ea5-9aa2c80889b4.pdf","cad8eacc-59ca-4631-8ea5-9aa2c80889b4","cad8eacc-59ca-4631-8ea5-9aa2c80889b4.pdf","SPN56-1125M A Secondhanded Robe VGR.pdf"
"es",3082,"JOSÉ ENCONTRANDO A SUS HERMANOS","El Encuentro De José Con Sus Hermanos","Joseph Meeting His Brethren","56-1230","https://sjc1.vultrobjects.com/directus/3177c56b-c77a-4058-8fd6-6f603f261ee6.pdf","3177c56b-c77a-4058-8fd6-6f603f261ee6","3177c56b-c77a-4058-8fd6-6f603f261ee6.pdf","SPN56-1230 Joseph Meeting His Brethren VGR.pdf"
"es",3089,"DIOS CUMPLE SU PALABRA","Dios Cumple Su Palabra","God Keeps His Word","57-0120E","https://sjc1.vultrobjects.com/directus/4bb1a34f-d2aa-48b4-b3f7-c8848ba2e253.pdf","4bb1a34f-d2aa-48b4-b3f7-c8848ba2e253","4bb1a34f-d2aa-48b4-b3f7-c8848ba2e253.pdf","SPN57-0120E God Keeps His Word VGR.pdf"
"es",3122,"EL ENTIERRO","La Sepultura","The Entombment","57-0420","https://sjc1.vultrobjects.com/directus/eea0aaaf-6b64-4809-910c-a13b7db3ecb8.pdf","eea0aaaf-6b64-4809-910c-a13b7db3ecb8","eea0aaaf-6b64-4809-910c-a13b7db3ecb8.pdf","SPN57-0420 The Entombment VGR.pdf"
"es",3124,"EL GRAN Y PODEROSO CONQUISTADOR","El Gran Y Poderoso Conquistador","The Great And Mighty Conqueror","57-0421S","https://sjc1.vultrobjects.com/directus/ece27df6-d82b-4761-80cb-5d108b2ca3e3.pdf","ece27df6-d82b-4761-80cb-5d108b2ca3e3","ece27df6-d82b-4761-80cb-5d108b2ca3e3.pdf","SPN57-0421S The Great And Mighty Conqueror VGR.pdf"
"es",3153,"MEMORIALES","Memoriales De Dios Probados Por El Tiempo","Time-Tested Memorials Of God","57-0818","https://sjc1.vultrobjects.com/directus/e567b033-518b-4844-9957-f3e15456f963.pdf","e567b033-518b-4844-9957-f3e15456f963","e567b033-518b-4844-9957-f3e15456f963.pdf","SPN57-0818 Time-Tested Memorials Of God VGR.pdf"
"es",3154,"HEBREOS, CAPÍTULO UNO","Hebreos, Capítulo Uno","Hebrews, Chapter One","57-0821","https://sjc1.vultrobjects.com/directus/1ce988d8-6438-47f5-a374-2a7b2ba212bc.pdf","1ce988d8-6438-47f5-a374-2a7b2ba212bc","1ce988d8-6438-47f5-a374-2a7b2ba212bc.pdf","SPN57-0821 Hebrews Chapter One VGR.pdf"
"es",3158,,"Hebreos, Capítulo Cuatro","Hebrews, Chapter Four","57-0901E","https://sjc1.vultrobjects.com/directus/a35b0181-f8e4-4ad9-9bcf-3aabaf9d0fc7.pdf","a35b0181-f8e4-4ad9-9bcf-3aabaf9d0fc7","a35b0181-f8e4-4ad9-9bcf-3aabaf9d0fc7.pdf","SPN57-0901E Hebrews Chapter Four VGR.pdf"
"es",3159,"HEBREOS","Hebreos, Capítulo Tres","Hebrews, Chapter Three","57-0901M","https://sjc1.vultrobjects.com/directus/1c78fb42-3e53-4862-a2fc-eceaae781d19.pdf","1c78fb42-3e53-4862-a2fc-eceaae781d19","1c78fb42-3e53-4862-a2fc-eceaae781d19.pdf","SPN57-0901M Hebrews Chapter Three VGR.pdf"
"es",3161,"HEBREOS 6, PARTE I / HEBREOS, CAPÍTULO 5 y 6, PARTE I","Hebreos, Capítulos Cinco Y Seis #1","Hebrews, Chapter Five And Six #1","57-0908M","https://sjc1.vultrobjects.com/directus/b33933c8-88be-4407-a2ae-48cea0cdf892.pdf","b33933c8-88be-4407-a2ae-48cea0cdf892","b33933c8-88be-4407-a2ae-48cea0cdf892.pdf","SPN57-0908M Hebrews Chapter Five And Six 1 VGR.pdf"
"es",3162,"HEBREOS, CAPÍTULO SIETE, PARTE I","Hebreos, Capítulo Siete #1","Hebrews, Chapter Seven #1","57-0915E","https://sjc1.vultrobjects.com/directus/f6ea8411-b95f-4268-8006-6700f3ea6f0c.pdf","f6ea8411-b95f-4268-8006-6700f3ea6f0c","f6ea8411-b95f-4268-8006-6700f3ea6f0c.pdf","SPN57-0915E Hebrews Chapter Seven 1 VGR.pdf"
"es",3164,"HEBREOS, CAPÍTULO SIETE, PARTE II","Hebreos, Capítulo Siete #2","Hebrews, Chapter Seven #2","57-0922E","https://sjc1.vultrobjects.com/directus/1f5fea61-473d-402c-94b4-1e0c257ef3a5.pdf","1f5fea61-473d-402c-94b4-1e0c257ef3a5","1f5fea61-473d-402c-94b4-1e0c257ef3a5.pdf","SPN57-0922E Hebrews Chapter Seven 2 VGR.pdf"
"es",3167,"PREGUNTAS Y RESPUESTAS DE HEBREOS, PARTE II / HEBREOS, CAPÍTULO DOS / HEBREOS, PARTE II (Libro Conducta, orden y doctrina de la Iglesia)","Preguntas Y Respuestas Hebreos, Parte II","Questions And Answers On Hebrews Part II","57-1002","https://sjc1.vultrobjects.com/directus/652472d0-df71-4a4f-b2d9-b5e5b977eed6.pdf","652472d0-df71-4a4f-b2d9-b5e5b977eed6","652472d0-df71-4a4f-b2d9-b5e5b977eed6.pdf","SPN57-1002 Questions And Answers On Hebrews 2 VGR.pdf"
"es",3168,"PREGUNTAS Y RESPUESTAS SOBRE HEBREOS / HEBREOS, PARTE III (Libro Conducta, orden y doctrina de la Iglesia)","Preguntas Y Respuestas Hebreos, Parte III","Questions And Answers On Hebrews Part III","57-1006","https://sjc1.vultrobjects.com/directus/e9597bd9-c672-4679-b866-f85a87e438b2.pdf","e9597bd9-c672-4679-b866-f85a87e438b2","e9597bd9-c672-4679-b866-f85a87e438b2.pdf","SPN57-1006 Questions And Answers On Hebrews 3 VGR.pdf"
"es",3174,"LA GRAN LUZ QUE RESPLANDECE","La Gran Luz Resplandeciente","The Great Shining Light","57-1222","https://sjc1.vultrobjects.com/directus/48ced731-e880-41b1-92d9-3034b0b8abe9.pdf","48ced731-e880-41b1-92d9-3034b0b8abe9","48ced731-e880-41b1-92d9-3034b0b8abe9.pdf","SPN57-1222 The Great Shining Light VGR.pdf"
"es",3186,"TORRE DE BABEL","La Unidad De La Unión","The Oneness Of Unity","58-0128","https://sjc1.vultrobjects.com/directus/b67ea9c9-8bdb-472f-a02c-8f45225d1ea8.pdf","b67ea9c9-8bdb-472f-a02c-8f45225d1ea8","b67ea9c9-8bdb-472f-a02c-8f45225d1ea8.pdf","SPN58-0128 The Oneness Of Unity VGR.pdf"
"es",3216,"LA EVIDENCIA DE LA RESURRECCIÓN","La Evidencia De La Resurrección","The Evidence Of The Resurrection","58-0406E","https://sjc1.vultrobjects.com/directus/f008f2f3-9e0f-4a1f-af9e-c2dd4578059f.pdf","f008f2f3-9e0f-4a1f-af9e-c2dd4578059f","f008f2f3-9e0f-4a1f-af9e-c2dd4578059f.pdf","SPN58-0406E The Evidence Of The Resurrection VGR.pdf"
"es",3248,"POR LA FE, MOISÉS","Por La Fe, Moisés","By Faith, Moses","58-0720M","https://sjc1.vultrobjects.com/directus/ba45c195-8954-45a2-b1c4-9babd10a246a.pdf","ba45c195-8954-45a2-b1c4-9babd10a246a","ba45c195-8954-45a2-b1c4-9babd10a246a.pdf","SPN58-0720M By Faith Moses VGR.pdf"
"es",3250,"LA SIMIENTE DE LA SERPIENTE","La Simiente De La Serpiente","The Serpent's Seed","58-0928E","https://sjc1.vultrobjects.com/directus/87349ad1-22f9-42e2-8ffe-d1393ec10305.pdf","87349ad1-22f9-42e2-8ffe-d1393ec10305","87349ad1-22f9-42e2-8ffe-d1393ec10305.pdf","SPN58-0928E The Serpents Seed VGR.pdf"
"es",3254,"MIRANDO LO QUE NO SE VE","Mirando Lo Invisible","Looking At The Unseen","58-1003","https://sjc1.vultrobjects.com/directus/a0e5e15b-35de-49e9-9692-7327dafa283d.pdf","a0e5e15b-35de-49e9-9692-7327dafa283d","a0e5e15b-35de-49e9-9692-7327dafa283d.pdf","SPN58-1003 Looking At The Unseen VGR.pdf"
"es",3257,"ESCUCHAD SU VOZ","Escuchad Su Voz","Hear His Voice","58-1005M","https://sjc1.vultrobjects.com/directus/a1e631a0-811d-4177-8571-35d988d71797.pdf","a1e631a0-811d-4177-8571-35d988d71797","a1e631a0-811d-4177-8571-35d988d71797.pdf","SPN58-1005M Hear His Voice VGR.pdf"
"es",3259,"EL RAPTO SECRETO DE LA IGLESIA","La Repentina Partida Secreta De La Iglesia","The Sudden, Secret Going Away Of The Church","58-1012","https://sjc1.vultrobjects.com/directus/dec4ddb0-cc3d-4704-86b0-8bf14ad0dfd7.pdf","dec4ddb0-cc3d-4704-86b0-8bf14ad0dfd7","dec4ddb0-cc3d-4704-86b0-8bf14ad0dfd7.pdf","SPN58-1012 The Sudden Secret Going Away Of The Church VGR.pdf"
"es",3260,"GUARDA, ¿QUÉ DE LA NOCHE?","Guarda, ¿qué de la noche?","Watchman, What Of The Night?","58-1130","https://sjc1.vultrobjects.com/directus/0622af2e-b3a2-40f7-b60f-d83baa7fbf67.pdf","0622af2e-b3a2-40f7-b60f-d83baa7fbf67","0622af2e-b3a2-40f7-b60f-d83baa7fbf67.pdf","SPN58-1130 Watchman What Of The Night VGR.pdf"
"es",3264,"ESTÉN CIERTOS DE DIOS","Estén Ciertos De Dios","Be Certain Of God","59-0125","https://sjc1.vultrobjects.com/directus/bfde8fca-96f7-4cfb-a91c-e05034de83bc.pdf","bfde8fca-96f7-4cfb-a91c-e05034de83bc","bfde8fca-96f7-4cfb-a91c-e05034de83bc.pdf","SPN59-0125 Be Certain Of God VGR.pdf"
"es",3267,"¿QUÉ HACES AQUÍ?","¿Qué Haces Aquí?","What Does Thou Here?","59-0301E","https://sjc1.vultrobjects.com/directus/0b0ebaa2-4973-415a-a860-f37e138e6d0b.pdf","0b0ebaa2-4973-415a-a860-f37e138e6d0b","0b0ebaa2-4973-415a-a860-f37e138e6d0b.pdf","SPN59-0301E What Does Thou Here VGR.pdf"
"es",3271,"VIVIENDO, MURIENDO, ENTERRADO, LEVANTÁNDOSE Y VINIENDO","Viviendo, Muriendo, Sepultado, Resucitando, Viniendo","Living, Dying, Buried, Rising, Coming","59-0329S","https://sjc1.vultrobjects.com/directus/55fadb62-28f5-4a1b-a1c9-e06af025bbc6.pdf","55fadb62-28f5-4a1b-a1c9-e06af025bbc6","55fadb62-28f5-4a1b-a1c9-e06af025bbc6.pdf","SPN59-0329S Living Dying Buried Rising Coming VGR.pdf"
"es",3291,"LA HISTORIA DE MI VIDA","La Historia De Mi Vida","My Life Story","59-0419A","https://sjc1.vultrobjects.com/directus/b123b65f-097e-4092-bd54-909014f572f6.pdf","b123b65f-097e-4092-bd54-909014f572f6","b123b65f-097e-4092-bd54-909014f572f6.pdf","SPN59-0419A My Life Story VGR.pdf"
"es",3297,"¿QUIÉN ES ESTE?","¿Quién es Este?","Who Is This?","59-0510E","https://sjc1.vultrobjects.com/directus/f08dd594-de25-4a33-8e56-44dc9eaaffc9.pdf","f08dd594-de25-4a33-8e56-44dc9eaaffc9","f08dd594-de25-4a33-8e56-44dc9eaaffc9.pdf","SPN59-0510E Who Is This VGR.pdf"
"es",3299,"IMÁGENES DE CRISTO","Imágenes De Cristo","Images Of Christ","59-0525","https://sjc1.vultrobjects.com/directus/10fd8c13-8b45-4021-91a5-73e2090518de.pdf","10fd8c13-8b45-4021-91a5-73e2090518de","10fd8c13-8b45-4021-91a5-73e2090518de.pdf","SPN59-0525 Images Of Christ VGR.pdf"
"es",3306,"PREGUNTAS Y RESPUESTAS","Preguntas Y Respuestas","Questions And Answers","59-0628E","https://sjc1.vultrobjects.com/directus/23c1f7a9-9867-4ea5-8eb2-b5e7e43df29a.pdf","23c1f7a9-9867-4ea5-8eb2-b5e7e43df29a","23c1f7a9-9867-4ea5-8eb2-b5e7e43df29a.pdf","SPN59-0628E Questions And Answers VGR.pdf"
"es",3307,"UNA IGLESIA ENGAÑADA POR EL MUNDO","Una Iglesia Engañada Por El Mundo","A Deceived Church, By The World","59-0628M","https://sjc1.vultrobjects.com/directus/a56ec95f-55c7-4111-86c5-40cbbb64555a.pdf","a56ec95f-55c7-4111-86c5-40cbbb64555a","a56ec95f-55c7-4111-86c5-40cbbb64555a.pdf","SPN59-0628M A Deceived Church By The World VGR.pdf"
"es",3313,"UNA TOTAL LIBERACIÓN","Una Liberación Total","A Total Deliverance","59-0712","https://sjc1.vultrobjects.com/directus/d7a23123-587c-4ff3-940f-847b32d1ef00.pdf","d7a23123-587c-4ff3-940f-847b32d1ef00","d7a23123-587c-4ff3-940f-847b32d1ef00.pdf","SPN59-0712 A Total Deliverance VGR.pdf"
"es",3317,"DISCERNIENDO EL CUERPO DEL SEÑOR","Discerniendo El Cuerpo Del Señor","Discerning The Body Of The Lord","59-0812","https://sjc1.vultrobjects.com/directus/cb2df0e5-6e5b-4153-9c60-63a907a0c56e.pdf","cb2df0e5-6e5b-4153-9c60-63a907a0c56e","cb2df0e5-6e5b-4153-9c60-63a907a0c56e.pdf","SPN59-0812 Discerning The Body Of The Lord VGR.pdf"
"es",3326,"POSEYENDO LAS PUERTAS DEL ENEMIGO","Poseyendo Las Puertas Del Enemigo","Possessing The Enemy's Gates","59-1108","https://sjc1.vultrobjects.com/directus/af26d6ba-85fb-4db3-b5de-2f213d2a0274.pdf","af26d6ba-85fb-4db3-b5de-2f213d2a0274","af26d6ba-85fb-4db3-b5de-2f213d2a0274.pdf","SPN59-1108 Possessing The Enemys Gates VGR.pdf"
"es",3338,"¿QUÉ ES EL ESPÍRITU SANTO?","¿Qué Es El Espíritu Santo?","What Is The Holy Ghost?","59-1216","https://sjc1.vultrobjects.com/directus/1ce2af54-5720-4a57-a77b-eddbbffad0f5.pdf","1ce2af54-5720-4a57-a77b-eddbbffad0f5","1ce2af54-5720-4a57-a77b-eddbbffad0f5.pdf","SPN59-1216 What Is The Holy Ghost VGR.pdf"
"es",3339,"¿PARA QUÉ FUE DADO EL ESPÍRITU SANTO?","¿Para Qué Fue Dado El Espíritu Santo?","What Was The Holy Ghost Given For?","59-1217","https://sjc1.vultrobjects.com/directus/e542f99a-8373-4eb0-b222-eac95b66f79b.pdf","e542f99a-8373-4eb0-b222-eac95b66f79b","e542f99a-8373-4eb0-b222-eac95b66f79b.pdf","SPN59-1217 What Was The Holy Ghost Given For VGR.pdf"
"es",3340,"PREGUNTAS Y RESPUESTAS SOBRE EL ESPÍRITU SANTO (Libro Conducta, orden y doctrina de la Iglesia)","Preguntas Y Respuestas Sobre El Espíritu Santo","Questions And Answers On The Holy Ghost","59-1219","https://sjc1.vultrobjects.com/directus/bd0a3044-d08d-4f59-853a-5156f1cd1dce.pdf","bd0a3044-d08d-4f59-853a-5156f1cd1dce","bd0a3044-d08d-4f59-853a-5156f1cd1dce.pdf","SPN59-1219 Questions And Answers On The Holy Ghost VGR.pdf"
"es",3343,"PREGUNTAS Y RESPUESTAS (Libro Conducta, orden y doctrina de la iglesia)","Preguntas Y Respuestas","Questions And Answers","59-1223","https://sjc1.vultrobjects.com/directus/c9f1b0dd-7490-447c-82c0-277cecf74b40.pdf","c9f1b0dd-7490-447c-82c0-277cecf74b40","c9f1b0dd-7490-447c-82c0-277cecf74b40.pdf","SPN59-1223 Questions And Answers VGR.pdf"
"es",3352,"ESCUCHANDO, RECONOCIENDO Y ACTUANDO / OYENDO, RECONOCIENDO, ACTUANDO EN LA PALABRA DE DIOS","Escuchando, Reconociendo, Actuando Según La Palabra De Dios","Hearing, Recognizing, Acting On The Word Of God","60-0221","https://sjc1.vultrobjects.com/directus/f6da40e6-6e96-4811-a85a-c05a91f8c3b0.pdf","f6da40e6-6e96-4811-a85a-c05a91f8c3b0","f6da40e6-6e96-4811-a85a-c05a91f8c3b0.pdf","SPN60-0221 Hearing Recognizing Acting On The Word Of God VGR.pdf"
"es",3354,"LA TEMPESTAD QUE SE APROXIMA","La Tempestad Que Se Aproxima","The Oncoming Storm","60-0229","https://sjc1.vultrobjects.com/directus/4d39edfb-9815-44f7-82fe-b66a118d2f73.pdf","4d39edfb-9815-44f7-82fe-b66a118d2f73","4d39edfb-9815-44f7-82fe-b66a118d2f73.pdf","SPN60-0229 The Oncoming Storm VGR.pdf"
"es",3355,"ÉL CUIDA DE TI","Él Cuida De Ti","He Careth For You","60-0301","https://sjc1.vultrobjects.com/directus/0efe6ee5-a196-447c-aa0a-eda84bc8741d.pdf","0efe6ee5-a196-447c-aa0a-eda84bc8741d","0efe6ee5-a196-447c-aa0a-eda84bc8741d.pdf","SPN60-0301 He Careth For You VGR.pdf"
"es",3378,"ADOPTADOS","Adopción #1","Adoption #1","60-0515E","https://sjc1.vultrobjects.com/directus/7d425ec0-e15f-49a9-9a18-860d3223f40a.pdf","7d425ec0-e15f-49a9-9a18-860d3223f40a","7d425ec0-e15f-49a9-9a18-860d3223f40a.pdf","SPN60-0515E Adoption 1 VGR.pdf"
"es",3380,"ADOPTADOS","Adopción #2","Adoption #2","60-0518","https://sjc1.vultrobjects.com/directus/268560eb-d9ff-46a2-86cb-e803406c2288.pdf","268560eb-d9ff-46a2-86cb-e803406c2288","268560eb-d9ff-46a2-86cb-e803406c2288.pdf","SPN60-0518 Adoption 2 VGR.pdf"
"es",3381,"ADOPTADOS","Adopción #4","Adoption #4","60-0522E","https://sjc1.vultrobjects.com/directus/4a996a0e-772e-4f61-9add-41c07ac443b6.pdf","4a996a0e-772e-4f61-9add-41c07ac443b6","4a996a0e-772e-4f61-9add-41c07ac443b6.pdf","SPN60-0522E Adoption 4 VGR.pdf"
"es",3382,"ADOPTADOS / POSICIÓN EN CRISTO","Adopción #3","Adoption #3","60-0522M","https://sjc1.vultrobjects.com/directus/0434c94e-eba8-40bf-9547-3b7e21f3ea32.pdf","0434c94e-eba8-40bf-9547-3b7e21f3ea32","0434c94e-eba8-40bf-9547-3b7e21f3ea32.pdf","SPN60-0522M Adoption 3 VGR.pdf"
"es",3416,"AQUEL DÍA EN EL CALVARIO","Aquel Día En El Calvario","That Day On Calvary","60-0925","https://sjc1.vultrobjects.com/directus/ba2ee553-29e8-437a-aaf6-bdb61aa25bfa.pdf","ba2ee553-29e8-437a-aaf6-bdb61aa25bfa","ba2ee553-29e8-437a-aaf6-bdb61aa25bfa.pdf","SPN60-0925 That Day On Calvary VGR.pdf"
"es",3418,"EL PARIENTE REDENTOR","El Pariente Redentor","The Kinsman Redeemer","60-1002","https://sjc1.vultrobjects.com/directus/5cbbf20b-89e0-4052-b4ad-3d20ea13aaaf.pdf","5cbbf20b-89e0-4052-b4ad-3d20ea13aaaf","5cbbf20b-89e0-4052-b4ad-3d20ea13aaaf.pdf","SPN60-1002 The Kinsman Redeemer VGR.pdf"
"es",3425,"LA VISIÓN DE PATMOS (Libro de ""LAS EDADES"" sin editar)","La Visión De Patmos","The Patmos Vision","60-1204Eb","https://sjc1.vultrobjects.com/directus/49ae4189-0ed5-4f85-9058-d3a369d325e9.pdf","49ae4189-0ed5-4f85-9058-d3a369d325e9","49ae4189-0ed5-4f85-9058-d3a369d325e9.pdf","SPN60-1204E The Patmos Vision VGR.pdf"
"es",3436,"EL REGALO ENVUELTO DE DIOS","El Regalo Envuelto De Dios","God's Wrapped Gift","60-1225","https://sjc1.vultrobjects.com/directus/8afa4dc5-a2d5-4f23-ac22-5c1d53e5fa9f.pdf","8afa4dc5-a2d5-4f23-ac22-5c1d53e5fa9f","8afa4dc5-a2d5-4f23-ac22-5c1d53e5fa9f.pdf","SPN60-1225 Gods Wrapped Gift VGR.pdf"
"es",3437,"REVELACIÓN, CAPÍTULO CUATRO, PARTE I (Libro de ""LAS EDADES"" sin editar)","Apocalipsis Capítulo Cuatro, Parte I","Revelation, Chapter Four Part I","60-1231","https://sjc1.vultrobjects.com/directus/e5d1712b-6af1-41fd-b83f-8b8f4b5f7fc3.pdf","e5d1712b-6af1-41fd-b83f-8b8f4b5f7fc3","e5d1712b-6af1-41fd-b83f-8b8f4b5f7fc3.pdf","SPN60-1231 Revelation Chapter Four 1 VGR.pdf"
"es",3438,"REVELACIÓN, CAPÍTULO CUATRO, PARTE II (Libro de ""LAS EDADES"" sin editar)","Apocalipsis Capítulo Cuatro, Parte II","Revelation, Chapter Four Part II","61-0101","https://sjc1.vultrobjects.com/directus/f228e51c-57a0-47f6-82d9-382f10ad3651.pdf","f228e51c-57a0-47f6-82d9-382f10ad3651","f228e51c-57a0-47f6-82d9-382f10ad3651.pdf","SPN61-0101 Revelation Chapter Four 2 VGR.pdf"
"es",3439,"REVELACIÓN, CAPÍTULO CUATRO, PARTE III (Libro de ""LAS EDADES"" sin editar)","Apocalipsis Capítulo Cuatro, Parte III","Revelation, Chapter Four Part III","61-0108","https://sjc1.vultrobjects.com/directus/533c0155-71ed-4123-a77f-99c988cc7258.pdf","533c0155-71ed-4123-a77f-99c988cc7258","533c0155-71ed-4123-a77f-99c988cc7258.pdf","SPN61-0108 Revelation Chapter Four 3 VGR.pdf"
"es",3440,"PREGUNTAS Y RESPUESTAS (Libro Conducta, orden y doctrina de la iglesia)","Preguntas Y Respuestas","Questions And Answers","61-0112","https://sjc1.vultrobjects.com/directus/2aaadac1-a468-4861-8e9e-2a740125ddb7.pdf","2aaadac1-a468-4861-8e9e-2a740125ddb7","2aaadac1-a468-4861-8e9e-2a740125ddb7.pdf","SPN61-0112 Questions And Answers VGR.pdf"
"es",3471,"MÁS ALLÁ DE LA CORTINA DEL TIEMPO","Más Allá De La Cortina Del Tiempo","Beyond The Curtain Of Time","61-0305","https://sjc1.vultrobjects.com/directus/979ec8b3-4614-42dd-aa58-fb82a8bca66f.pdf","979ec8b3-4614-42dd-aa58-fb82a8bca66f","979ec8b3-4614-42dd-aa58-fb82a8bca66f.pdf","SPN61-0305 Beyond The Curtain Of Time VGR.pdf"
"es",3479,"LA RELIGIÓN DE JEZABEL","La Religión de Jezabel","Jezebel Religion","61-0319","https://sjc1.vultrobjects.com/directus/af05f587-8824-4c1c-8ca5-a94ed73d0736.pdf","af05f587-8824-4c1c-8ca5-a94ed73d0736","af05f587-8824-4c1c-8ca5-a94ed73d0736.pdf","SPN61-0319 Jezebel Religion VGR.pdf"
"es",3492,"LA DEIDAD EXPLICADA","La Deidad Explicada","The Godhead Explained","61-0425B","https://sjc1.vultrobjects.com/directus/0c0c8414-cb84-4134-a4f4-49c27e9b302e.pdf","0c0c8414-cb84-4134-a4f4-49c27e9b302e","0c0c8414-cb84-4134-a4f4-49c27e9b302e.pdf","SPN61-0425B The Godhead Explained VGR.pdf"
"es",3507,"REVELACIÓN, CAPÍTULO CINCO, PARTE I (Libro de ""LAS EDADES"" sin editar)","Apocalipsis Capítulo Cinco, Parte I","Revelation, Chapter Five Part I","61-0611","https://sjc1.vultrobjects.com/directus/a16f632f-ccd4-43c0-8059-2c99351e9ed6.pdf","a16f632f-ccd4-43c0-8059-2c99351e9ed6","a16f632f-ccd4-43c0-8059-2c99351e9ed6.pdf","SPN61-0611 Revelation Chapter Five 1 VGR.pdf"
"es",3508,"REVELACIÓN, CAPÍTULO CINCO, PARTE II (Libro de ""LAS EDADES"" sin editar)","Apocalipsis Capítulo Cinco, Parte II","Revelation, Chapter Five Part II","61-0618","https://sjc1.vultrobjects.com/directus/2b4bb390-384f-4a5b-8871-82d33865fef6.pdf","2b4bb390-384f-4a5b-8871-82d33865fef6","2b4bb390-384f-4a5b-8871-82d33865fef6.pdf","SPN61-0618 Revelation Chapter Five 2 VGR.pdf"
"es",3511,"EL PROPÓSITO SÉXTUPLE DE LA VISITA DE GABRIEL A DANIEL (Libro de Las Setenta Semanas de Daniel)","El Propósito Séxtuple De La Visita De Gabriel A Daniel","The Sixfold Purpose Of Gabriel's Visit To Daniel","61-0730E","https://sjc1.vultrobjects.com/directus/8167924a-feb2-4048-9548-0e1b451fbf74.pdf","8167924a-feb2-4048-9548-0e1b451fbf74","8167924a-feb2-4048-9548-0e1b451fbf74.pdf","SPN61-0730E The Sixfold Purpose Of Gabriels Visit To Daniel VGR.pdf"
"es",3512,"LAS INSTRUCCIONES DE GABRIEL A DANIEL (Libro de Las Setenta Semanas de Daniel)","Las Instrucciones De Gabriel A Daniel","Gabriel's Instructions To Daniel","61-0730M","https://sjc1.vultrobjects.com/directus/8db28f36-2ad3-4d8f-831f-c94b3ebd1697.pdf","8db28f36-2ad3-4d8f-831f-c94b3ebd1697","8db28f36-2ad3-4d8f-831f-c94b3ebd1697.pdf","SPN61-0806 The Seventieth Week Of Daniel VGR (1).pdf"
"es",3513,"LA SEMANA SETENTA DE DANIEL (Libro de Las Setenta Semanas de Daniel)","La Semana Setenta De Daniel","The Seventieth Week Of Daniel","61-0806","https://sjc1.vultrobjects.com/directus/087c0efd-5f59-4688-ba91-e27be194d613.pdf","087c0efd-5f59-4688-ba91-e27be194d613","087c0efd-5f59-4688-ba91-e27be194d613.pdf","SPN61-0806 The Seventieth Week Of Daniel VGR.pdf"
"es",3516,"EL MENSAJE DE GRACIA","El Mensaje De Gracia","The Message Of Grace","61-0827","https://sjc1.vultrobjects.com/directus/fba0bf10-6c8c-4fc8-9388-b0c5dfa80b5d.pdf","fba0bf10-6c8c-4fc8-9388-b0c5dfa80b5d","fba0bf10-6c8c-4fc8-9388-b0c5dfa80b5d.pdf","SPN61-0827 The Message Of Grace VGR.pdf"
"es",3519,"NOS CONVIENE CUMPLIR TODA JUSTICIA","Nos Conviene Cumplir Toda Justicia","It Becometh Us To Fulfil All Righteousness","61-1001M","https://sjc1.vultrobjects.com/directus/f9779f78-f37f-4a5f-ad66-2a5b3cc7670a.pdf","f9779f78-f37f-4a5f-ad66-2a5b3cc7670a","f9779f78-f37f-4a5f-ad66-2a5b3cc7670a.pdf","SPN61-1001M It Becometh Us To Fulfil All Righteousness VGR.pdf"
"es",3520,"RESPETOS","Respetos","Respects","61-1015E","https://sjc1.vultrobjects.com/directus/efca1200-dab6-45d4-ba15-4b58e470b7d0.pdf","efca1200-dab6-45d4-ba15-4b58e470b7d0","efca1200-dab6-45d4-ba15-4b58e470b7d0.pdf","SPN61-1015E Respects VGR.pdf"
"es",3523,"UNA VERDADERA SEÑAL QUE HA SIDO PASADA POR ALTO","Una Verdadera Señal Que Se Pasa Por Alto","A True Sign That's Overlooked","61-1112","https://sjc1.vultrobjects.com/directus/d5d43dd5-f0d4-4fd9-9058-0e9d3eafaa9d.pdf","d5d43dd5-f0d4-4fd9-9058-0e9d3eafaa9d","d5d43dd5-f0d4-4fd9-9058-0e9d3eafaa9d.pdf","SPN61-1112 A True Sign Thats Overlooked VGR.pdf"
"es",3524,"PERFECTA FUERZA POR PERFECTA DEBILIDAD","Perfecta Fuerza Por Perfecta Debilidad","Perfect Strength By Perfect Weakness","61-1119","https://sjc1.vultrobjects.com/directus/8589c72d-8840-4dfc-b8ac-8aeee95665ac.pdf","8589c72d-8840-4dfc-b8ac-8aeee95665ac","8589c72d-8840-4dfc-b8ac-8aeee95665ac.pdf","61-1119-perfecta_fuerza_por_perfecta_debilidad.pdf"
"es",3525,"PARADOJA","Paradoja","Paradox","61-1210","https://sjc1.vultrobjects.com/directus/b07ec5dc-e767-42ab-ac43-5e2982a80d37.pdf","b07ec5dc-e767-42ab-ac43-5e2982a80d37","b07ec5dc-e767-42ab-ac43-5e2982a80d37.pdf","SPN61-1210 Paradox VGR.pdf"
"es",3526,"CRISTIANISMO CONTRA IDOLATRÍA","Cristianismo Contra Idolatría","Christianity Versus Idolatry","61-1217","https://sjc1.vultrobjects.com/directus/83e61fda-af9e-4282-88f1-ba3ad4b6db59.pdf","83e61fda-af9e-4282-88f1-ba3ad4b6db59","83e61fda-af9e-4282-88f1-ba3ad4b6db59.pdf","SPN61-1217 Christianity Versus Idolatry VGR.pdf"
"es",3532,"UN PENDÓN","Una Insignia","An Ensign","62-0119","https://sjc1.vultrobjects.com/directus/66c30aa6-312d-4d96-9995-5ce5646f9d33.pdf","66c30aa6-312d-4d96-9995-5ce5646f9d33","66c30aa6-312d-4d96-9995-5ce5646f9d33.pdf","SPN62-0119 An Ensign VGR.pdf"
"es",3544,"LA UNIDAD","La Unidad","Oneness","62-0211","https://sjc1.vultrobjects.com/directus/bef622a7-73d3-4ce2-bf32-b7f30ca663ac.pdf","bef622a7-73d3-4ce2-bf32-b7f30ca663ac","bef622a7-73d3-4ce2-bf32-b7f30ca663ac.pdf","SPN62-0211 Oneness VGR.pdf"
"es",3546,"LA MÁS GRANDE BATALLA JAMÁS PELEADA","La Más Grande Batalla Jamás Peleada","The Greatest Battle Ever Fought","62-0311","https://sjc1.vultrobjects.com/directus/e351158f-86f8-47e9-b3ce-2d7841057a34.pdf","e351158f-86f8-47e9-b3ce-2d7841057a34","e351158f-86f8-47e9-b3ce-2d7841057a34.pdf","SPN62-0311 The Greatest Battle Ever Fought VGR.pdf"
"es",3548,"LA PALABRA HABLADA ES LA SIMIENTE ORIGINAL","La Palabra Hablada Es La Simiente Original","The Spoken Word Is The Original Seed","62-0318M","https://sjc1.vultrobjects.com/directus/916b1155-1812-4ad2-9dbf-f5fc5bffc3e4.pdf","916b1155-1812-4ad2-9dbf-f5fc5bffc3e4","916b1155-1812-4ad2-9dbf-f5fc5bffc3e4.pdf","SPN62-0318 The Spoken Word Is The Original Seed VGR.pdf"
"es",3550,"SABIDURÍA CONTRA FE","Sabiduría Contra Fe","Wisdom Versus Faith","62-0401","https://sjc1.vultrobjects.com/directus/a6d463d4-a8de-4f73-a40b-ea46f0079d43.pdf","a6d463d4-a8de-4f73-a40b-ea46f0079d43","a6d463d4-a8de-4f73-a40b-ea46f0079d43.pdf","SPN62-0401 Wisdom Versus Faith VGR.pdf"
"es",3553,"LA RESTAURACIÓN DEL ÁRBOL-NOVIA","La Restauración Del Árbol Novia","The Restoration Of The Bride Tree","62-0422","https://sjc1.vultrobjects.com/directus/6f6bb860-8f4d-4dde-961e-62a80830564c.pdf","6f6bb860-8f4d-4dde-961e-62a80830564c","6f6bb860-8f4d-4dde-961e-62a80830564c.pdf","SPN62-0422 The Restoration Of The Bride Tree VGR.pdf"
"es",3554,"POSEYENDO TODAS LAS COSAS","Poseyendo Todas Las Cosas","Possessing All Things","62-0506","https://sjc1.vultrobjects.com/directus/c3cdbba7-3cba-48e0-b4ae-6705619648ef.pdf","c3cdbba7-3cba-48e0-b4ae-6705619648ef","c3cdbba7-3cba-48e0-b4ae-6705619648ef.pdf","SPN62-0506 Possessing All Things VGR.pdf"
"es",3555,"DEJANDO ESCAPAR LA PRESIÓN","Dejando Escapar La Presión","Letting Off The Pressure","62-0513E","https://sjc1.vultrobjects.com/directus/1601e05b-5d6d-474c-ade9-aece3b6e9c85.pdf","1601e05b-5d6d-474c-ade9-aece3b6e9c85","1601e05b-5d6d-474c-ade9-aece3b6e9c85.pdf","SPN62-0513E Letting Off The Pressure VGR.pdf"
"es",3556,"LA MANERA DE UN VERDADERO PROFETA","La Manera De Un Verdadero Profeta De Dios","The Way Of A True Prophet Of God","62-0513M","https://sjc1.vultrobjects.com/directus/dcc99089-d2ac-4983-bf17-b8fe1c122381.pdf","dcc99089-d2ac-4983-bf17-b8fe1c122381","dcc99089-d2ac-4983-bf17-b8fe1c122381.pdf","SPN62-0513M The Way Of A True Prophet Of God VGR.pdf"
"es",3562,"EL CONFLICTO ENTRE DIOS Y SATANÁS","El Conflicto Entre Dios Y Satanás","The Conflict Between God And Satan","62-0531","https://sjc1.vultrobjects.com/directus/83a00a43-7d32-4183-8d82-f13b06efbc6c.pdf","83a00a43-7d32-4183-8d82-f13b06efbc6c","83a00a43-7d32-4183-8d82-f13b06efbc6c.pdf","SPN62-0531 The Conflict Between God And Satan VGR.pdf"
"es",3563,"PONIÉNDONOS DEL LADO DE JESÚS","Poniéndonos Al Lado De Jesús","Taking Sides With Jesus","62-0601","https://sjc1.vultrobjects.com/directus/2c76e4f9-e5db-479e-b4b9-c7b08d9b3679.pdf","2c76e4f9-e5db-479e-b4b9-c7b08d9b3679","2c76e4f9-e5db-479e-b4b9-c7b08d9b3679.pdf","SPN62-0601 Taking Sides With Jesus VGR.pdf"
"es",3564,"EL EVANGELISMO DEL TIEMPO FINAL","El Evangelismo En El Tiempo Del Fin","The End-Time Evangelism","62-0603","https://sjc1.vultrobjects.com/directus/12d5758e-10c9-4e54-979c-28cc55eff224.pdf","12d5758e-10c9-4e54-979c-28cc55eff224","12d5758e-10c9-4e54-979c-28cc55eff224.pdf","SPN62-0603 The End-Time Evangelism VGR.pdf"
"es",3587,"JEHOVÁ PROVEERÁ","Jehová-Jireh #1","Jehovah-Jireh #1","62-0705","https://sjc1.vultrobjects.com/directus/e3528ce7-bfec-46c0-921b-efd0e6e9c463.pdf","e3528ce7-bfec-46c0-921b-efd0e6e9c463","e3528ce7-bfec-46c0-921b-efd0e6e9c463.pdf","SPN62-0705 Jehovah-Jireh 1 VGR.pdf"
"es",3608,"EL PRESENTE ESTADO DE MI MINISTERIO","El Presente Estado De Mi Ministerio","Present Stage Of My Ministry","62-0908","https://sjc1.vultrobjects.com/directus/16b45f13-5f47-4cf3-be09-a9de8d12da9c.pdf","16b45f13-5f47-4cf3-be09-a9de8d12da9c","16b45f13-5f47-4cf3-be09-a9de8d12da9c.pdf","SPN62-0908 Present Stage Of My Ministry VGR.pdf"
"es",3609,"EN SU PRESENCIA","En Su Presencia","In His Presence","62-0909E","https://sjc1.vultrobjects.com/directus/4bb159c9-3bc0-4ae5-948e-c005d66def5b.pdf","4bb159c9-3bc0-4ae5-948e-c005d66def5b","4bb159c9-3bc0-4ae5-948e-c005d66def5b.pdf","SPN62-0909E In His Presence VGR.pdf"
"es",3610,"CUENTA REGRESIVA","Cuenta Regresiva","Countdown","62-0909M","https://sjc1.vultrobjects.com/directus/0e42f9e6-90e0-4ddb-8017-6c890db28ada.pdf","0e42f9e6-90e0-4ddb-8017-6c890db28ada","0e42f9e6-90e0-4ddb-8017-6c890db28ada.pdf","SPN62-0909M Countdown VGR.pdf"
"es",3611,"LLAVE A LA PUERTA","La Llave De La Puerta","The Key To The Door","62-1007","https://sjc1.vultrobjects.com/directus/f0d50599-d35d-4bc7-8abc-5099d4421b94.pdf","f0d50599-d35d-4bc7-8abc-5099d4421b94","f0d50599-d35d-4bc7-8abc-5099d4421b94.pdf","SPN62-1007 The Key To The Door VGR.pdf"
"es",3612,,"La Influencia De Otro","The Influence Of Another","62-1013","https://sjc1.vultrobjects.com/directus/06d9a3c0-898a-445a-af5b-6a04343ecb4d.pdf","06d9a3c0-898a-445a-af5b-6a04343ecb4d","06d9a3c0-898a-445a-af5b-6a04343ecb4d.pdf","SPN62-1013 The Influence Of Another VGR.pdf"
"es",3613,"UN GUÍA","Un Guía","A Guide","62-1014E","https://sjc1.vultrobjects.com/directus/a767ddae-9491-43f1-96da-ffe8fbb77373.pdf","a767ddae-9491-43f1-96da-ffe8fbb77373","a767ddae-9491-43f1-96da-ffe8fbb77373.pdf","SPN62-1014E A Guide VGR.pdf"
"es",3614,"LA ESTATURA DE UN VARÓN PERFECTO","La Estatura De Un Varón Perfecto","The Stature Of A Perfect Man","62-1014M","https://sjc1.vultrobjects.com/directus/a46a3faf-e1af-497d-9299-9fd57ac00273.pdf","a46a3faf-e1af-497d-9299-9fd57ac00273","a46a3faf-e1af-497d-9299-9fd57ac00273.pdf","SPN62-1014M The Stature Of A Perfect Man VGR.pdf"
"es",3617,"NOMBRES BLASFEMOS","Nombres Blasfemos","Blasphemous Names","62-1104M","https://sjc1.vultrobjects.com/directus/c8eb72b7-5ba2-4528-b90f-4c98aa6fccad.pdf","c8eb72b7-5ba2-4528-b90f-4c98aa6fccad","c8eb72b7-5ba2-4528-b90f-4c98aa6fccad.pdf","SPN62-1104M Blasphemous Names VGR.pdf"
"es",3618,"¿POR QUÉ ESTOY EN CONTRA DE LA RELIGIÓN ORGANIZADA?","El Porqué Estoy En Contra De La Religión Organizada","Why I'm Against Organized Religion","62-1111E","https://sjc1.vultrobjects.com/directus/83754067-b8f7-4888-b4c6-5726be44e947.pdf","83754067-b8f7-4888-b4c6-5726be44e947","83754067-b8f7-4888-b4c6-5726be44e947.pdf","SPN62-1111E Why Im Against Organized Religion VGR.pdf"
"es",3619,"DEDICACIÓN","Dedicación","Dedication","62-1111M","https://sjc1.vultrobjects.com/directus/d03f863b-0591-4b59-959b-2a0d0f026b50.pdf","d03f863b-0591-4b59-959b-2a0d0f026b50","d03f863b-0591-4b59-959b-2a0d0f026b50.pdf","SPN62-1111M Dedication VGR.pdf"
"es",3628,"REPROCHE POR CAUSA DE LA PALABRA","El Oprobio Por La Causa De La Palabra ","The Reproach For The Cause Of The Word","62-1223","https://sjc1.vultrobjects.com/directus/a9a29047-7c5e-4fc8-8d5f-7bcd359e7f30.pdf","a9a29047-7c5e-4fc8-8d5f-7bcd359e7f30","a9a29047-7c5e-4fc8-8d5f-7bcd359e7f30.pdf","SPN62-1223 The Reproach For The Cause Of The Word VGR.pdf"
"es",3629,"SEÑORES, ¿ES ESTE EL TIEMPO?","Señor, ¿Es Esta La Señal Del Fin?","Is This The Sign Of The End, Sir?","62-1230E","https://sjc1.vultrobjects.com/directus/411f8c8e-cdc7-43a8-87f5-40a637d96258.pdf","411f8c8e-cdc7-43a8-87f5-40a637d96258","411f8c8e-cdc7-43a8-87f5-40a637d96258.pdf","SPN62-1230E Is This The Sign Of The End Sir VGR.pdf"
"es",3630,"EL ABSOLUTO","El Absoluto","Absolute","62-1230M","https://sjc1.vultrobjects.com/directus/07cdc6df-cb45-4819-9287-163cd59008f8.pdf","07cdc6df-cb45-4819-9287-163cd59008f8","07cdc6df-cb45-4819-9287-163cd59008f8.pdf","SPN62-1230M Absolute VGR.pdf"
"es",3636,"ACEPTANDO LA MANERA PROVISTA POR DIOS EN EL TIEMPO DEL FIN","Aceptando El Camino Provisto Por Dios En El Tiempo Del Fin","Accepting God's Provided Way At The End Time","63-0115","https://sjc1.vultrobjects.com/directus/13dfe103-7765-43dd-a5b6-b31c1d8a1b6e.pdf","13dfe103-7765-43dd-a5b6-b31c1d8a1b6e","13dfe103-7765-43dd-a5b6-b31c1d8a1b6e.pdf","SPN63-0115 Accepting Gods Provided Way At The End Time VGR.pdf"
"es",3637,"EL MENSAJERO DEL ATARDECER","El Mensajero De La Tarde","The Evening Messenger","63-0116","https://sjc1.vultrobjects.com/directus/4c6861b8-682d-4f4b-9249-ea91dbf09668.pdf","4c6861b8-682d-4f4b-9249-ea91dbf09668","4c6861b8-682d-4f4b-9249-ea91dbf09668.pdf","SPN63-0116 The Evening Messenger VGR.pdf"
"es",3639,"EL ESPÍRITU DE VERDAD","Espíritu De Verdad","Spirit Of Truth","63-0118","https://sjc1.vultrobjects.com/directus/2452c522-23d5-4515-8a41-75665da501aa.pdf","2452c522-23d5-4515-8a41-75665da501aa","2452c522-23d5-4515-8a41-75665da501aa.pdf","SPN63-0118 Spirit Of Truth VGR.pdf"
"es",3641,"SOLAMENTE UNA VEZ MÁS, SEÑOR","Solamente Una Vez Más, Señor","Just One More Time, Lord","63-0120E","https://sjc1.vultrobjects.com/directus/eaa8d3fc-03f5-4a36-9d8f-f9da9b3e796b.pdf","eaa8d3fc-03f5-4a36-9d8f-f9da9b3e796b","eaa8d3fc-03f5-4a36-9d8f-f9da9b3e796b.pdf","SPN63-0120E Just One More Time Lord VGR.pdf"
"es",3647,"EL ABSOLUTO","Un Absoluto","An Absolute","63-0127","https://sjc1.vultrobjects.com/directus/e182c4e6-fa99-4234-bebb-abfa551a2f0d.pdf","e182c4e6-fa99-4234-bebb-abfa551a2f0d","e182c4e6-fa99-4234-bebb-abfa551a2f0d.pdf","SPN63-0127 An Absolute VGR.pdf"
"es",3660,"DIOS OCULTÁNDOSE EN SIMPLICIDAD","Dios Ocultándose En Simplicidad","God Hiding Himself In Simplicity","63-0412E","https://sjc1.vultrobjects.com/directus/a6c219a0-e439-4630-9ccb-e2076b47e310.pdf","a6c219a0-e439-4630-9ccb-e2076b47e310","a6c219a0-e439-4630-9ccb-e2076b47e310.pdf","SPN63-0412E God Hiding Himself In Simplicity VGR.pdf"
"es",3661,"EL MUNDO SE ESTÁ CAYENDO A PEDAZOS","El Mundo Se Está Cayendo A Pedazos","The World Is Falling Apart","63-0412M","https://sjc1.vultrobjects.com/directus/38031c48-d857-45be-9fa2-a0c9a77ffe94.pdf","38031c48-d857-45be-9fa2-a0c9a77ffe94","38031c48-d857-45be-9fa2-a0c9a77ffe94.pdf","SPN63-0412M The World Is Falling Apart VGR.pdf"
"es",3662,"DÍA DE VICTORIA","Día De Victoria","Victory Day","63-0421","https://sjc1.vultrobjects.com/directus/9e1fbcec-d69f-44f4-9654-b58b7186eaaa.pdf","9e1fbcec-d69f-44f4-9654-b58b7186eaaa","9e1fbcec-d69f-44f4-9654-b58b7186eaaa.pdf","SPN63-0421 Victory Day VGR.pdf"
"es",3669,"CONFERENCIAS","Conferencias","Conferences","63-0608","https://sjc1.vultrobjects.com/directus/72dfb79b-e319-4bc2-90cc-eaf2ad14fc1f.pdf","72dfb79b-e319-4bc2-90cc-eaf2ad14fc1f","72dfb79b-e319-4bc2-90cc-eaf2ad14fc1f.pdf","SPN63-0608 Conferences VGR.pdf"
"es",3670,"LA DESTELLANTE LUZ ROJA DE LA SEÑAL DE SU VENIDA","La Destellante Luz Roja De La Señal De Su Venida","The Flashing Red Light Of The Sign Of His Coming","63-0623E","https://sjc1.vultrobjects.com/directus/4f837491-da58-48ec-ba09-4fbdc1b05fc9.pdf","4f837491-da58-48ec-ba09-4fbdc1b05fc9","4f837491-da58-48ec-ba09-4fbdc1b05fc9.pdf","SPN63-0623E The Flashing Red Light Of The Sign Of His Coming VGR.pdf"
"es",3671,"PARADO EN LA BRECHA","Parado En La Brecha","Standing In The Gap","63-0623M","https://sjc1.vultrobjects.com/directus/bbccf3a1-8ee0-4e68-91e8-becad625f5b5.pdf","bbccf3a1-8ee0-4e68-91e8-becad625f5b5","bbccf3a1-8ee0-4e68-91e8-becad625f5b5.pdf","SPN63-0623M Standing In The Gap VGR.pdf"
"es",3677,"EL TERCER ÉXODO","El Tercer Éxodo","The Third Exodus","63-0630M","https://sjc1.vultrobjects.com/directus/37bb0384-961c-4baa-9103-891b72ca64c5.pdf","37bb0384-961c-4baa-9103-891b72ca64c5","37bb0384-961c-4baa-9103-891b72ca64c5.pdf","SPN63-0630M The Third Exodus VGR.pdf"
"es",3679,"YO ACUSO A ESTA GENERACIÓN","La Acusación","The Indictment","63-0707M","https://sjc1.vultrobjects.com/directus/0bccfe9b-e135-4466-aaf1-6d92dcfc7ebe.pdf","0bccfe9b-e135-4466-aaf1-6d92dcfc7ebe","0bccfe9b-e135-4466-aaf1-6d92dcfc7ebe.pdf","SPN63-0707M The Indictment VGR.pdf"
"es",3681,"¿POR QUÉ CLAMAS? ¡HABLA!","¿Por Qué Clamas? ¡Di!","Why Cry? Speak!","63-0714M","https://sjc1.vultrobjects.com/directus/b8522fdf-3212-413e-b3e6-a2d4b1190c13.pdf","b8522fdf-3212-413e-b3e6-a2d4b1190c13","b8522fdf-3212-413e-b3e6-a2d4b1190c13.pdf","SPN63-0714M Why Cry Speak VGR.pdf"
"es",3682,"PABLO, PRISIONERO DE CRISTO","Un Prisionero","A Prisoner","63-0717","https://sjc1.vultrobjects.com/directus/6fc5e05d-8005-4a76-b91a-b8f6c202151b.pdf","6fc5e05d-8005-4a76-b91a-b8f6c202151b","6fc5e05d-8005-4a76-b91a-b8f6c202151b.pdf","SPN63-0717 A Prisoner VGR.pdf"
"es",3684,"ADVERTENCIA, LUEGO EL JUICIO","Dios No Llama A Un Hombre A Juicio Sin Primero Advertirle","God Doesn't Call Man To Judgment Without First Warning Him","63-0724","https://sjc1.vultrobjects.com/directus/e99440cd-2639-4feb-b364-3a15485a80fa.pdf","e99440cd-2639-4feb-b364-3a15485a80fa","e99440cd-2639-4feb-b364-3a15485a80fa.pdf","SPN63-0724 God Doesnt Call Man To Judgment Without First Warning Him VGR.pdf"
"es",3685,"CRISTO ES EL MISTERIO DE DIOS REVELADO","Cristo Es El Misterio De Dios Revelado","Christ Is The Mystery Of God Revealed","63-0728","https://sjc1.vultrobjects.com/directus/826f7c47-be7e-4c6e-9e6f-8e78553df219.pdf","826f7c47-be7e-4c6e-9e6f-8e78553df219","826f7c47-be7e-4c6e-9e6f-8e78553df219.pdf","SPN63-0728 Christ Is The Mystery Of God Revealed VGR.pdf"
"es",3689,"INVERSIONES","Inversiones","Investments","63-0803B","https://sjc1.vultrobjects.com/directus/f1945a11-ab07-4afc-8276-0b6dfab35257.pdf","f1945a11-ab07-4afc-8276-0b6dfab35257","f1945a11-ab07-4afc-8276-0b6dfab35257.pdf","SPN63-0803B Investments VGR.pdf"
"es",3690,"INFLUENCIA","Influencia","Influence","63-0803E","https://sjc1.vultrobjects.com/directus/13e511fb-f15d-4656-bd1e-37459be428bf.pdf","13e511fb-f15d-4656-bd1e-37459be428bf","13e511fb-f15d-4656-bd1e-37459be428bf.pdf","SPN63-0803E Influence VGR.pdf"
"es",3693,"TIEMPO DE UNIÓN Y SEÑAL","El Tiempo de Unión y Señal","The Uniting Time And Sign","63-0818","https://sjc1.vultrobjects.com/directus/a3eb254b-3d36-420f-9e2f-61f0491dcf0e.pdf","a3eb254b-3d36-420f-9e2f-61f0491dcf0e","a3eb254b-3d36-420f-9e2f-61f0491dcf0e.pdf","SPN63-0818 The Uniting Time And Sign VGR.pdf"
"es",3694,"LA FE PERFECTA","La Fe Perfecta","Perfect Faith","63-0825E","https://sjc1.vultrobjects.com/directus/ab503e08-5b73-4097-80b4-4d266b6c2d29.pdf","ab503e08-5b73-4097-80b4-4d266b6c2d29","ab503e08-5b73-4097-80b4-4d266b6c2d29.pdf","SPN63-0825E Perfect Faith VGR.pdf"
"es",3695,"¿CÓMO PUEDO VENCER?","¿Cómo Puedo Vencer?","How Can I Overcome?","63-0825M","https://sjc1.vultrobjects.com/directus/8c08ce8a-9b0f-4245-86ad-1e15657203d5.pdf","8c08ce8a-9b0f-4245-86ad-1e15657203d5","8c08ce8a-9b0f-4245-86ad-1e15657203d5.pdf","SPN63-0825M How Can I Overcome VGR.pdf"
"es",3696,"DESESPERACIÓN","Desesperaciones","Desperations","63-0901E","https://sjc1.vultrobjects.com/directus/0ce0e3aa-4981-4ea7-a27e-b74f5d1ad852.pdf","0ce0e3aa-4981-4ea7-a27e-b74f5d1ad852","0ce0e3aa-4981-4ea7-a27e-b74f5d1ad852.pdf","SPN63-0901E Desperations VGR.pdf"
"es",3697,"LA SEÑAL","La Señal","Token","63-0901M","https://sjc1.vultrobjects.com/directus/f8816545-bb27-45c0-aea3-d8dd4fbbe7c7.pdf","f8816545-bb27-45c0-aea3-d8dd4fbbe7c7","f8816545-bb27-45c0-aea3-d8dd4fbbe7c7.pdf","SPN63-0901M Token VGR.pdf"
"es",3700,"EL QUE ESTÁ EN VOSOTROS","El Que Está En Vosotros","He That Is In You","63-1110E","https://sjc1.vultrobjects.com/directus/18929342-f9a1-409b-9ecd-458d4349c831.pdf","18929342-f9a1-409b-9ecd-458d4349c831","18929342-f9a1-409b-9ecd-458d4349c831.pdf","SPN63-1110E He That Is In You VGR.pdf"
"es",3701,"ALMAS ENCARCELADAS","Almas Encarceladas Hoy","Souls That Are In Prison Now","63-1110M","https://sjc1.vultrobjects.com/directus/787085d4-4789-49ff-85e6-70cb49bfe7b9.pdf","787085d4-4789-49ff-85e6-70cb49bfe7b9","787085d4-4789-49ff-85e6-70cb49bfe7b9.pdf","SPN63-1110M Souls That Are In Prison Now VGR.pdf"
"es",3710,"TRES CLASES DE CREYENTES","Tres Clases de Creyentes","Three Kinds Of Believers","63-1124E","https://sjc1.vultrobjects.com/directus/f31bf21f-ffe3-4c32-ad83-e1b49ac0fa56.pdf","f31bf21f-ffe3-4c32-ad83-e1b49ac0fa56","f31bf21f-ffe3-4c32-ad83-e1b49ac0fa56.pdf","SPN63-1124E Three Kinds Of Believers VGR.pdf"
"es",3711,"¿QUÉ HARÉ CON JESÚS LLAMADO EL CRISTO?","¿Qué Haré De Jesús, Llamado El Cristo?","What Shall I Do With Jesus Called Christ?","63-1124M","https://sjc1.vultrobjects.com/directus/b833bb13-3569-4e3e-9246-7adb84911208.pdf","b833bb13-3569-4e3e-9246-7adb84911208","b833bb13-3569-4e3e-9246-7adb84911208.pdf","SPN63-1124M What Shall I Do With Jesus Called Christ VGR.pdf"
"es",3721,"¿POR QUÉ PEQUEÑA BELÉN?","¿Por Qué La Pequeña Belén?","Why Little Bethlehem","63-1214","https://sjc1.vultrobjects.com/directus/4c0ae3e5-2d4e-4998-8f79-9b7579a9334a.pdf","4c0ae3e5-2d4e-4998-8f79-9b7579a9334a","4c0ae3e5-2d4e-4998-8f79-9b7579a9334a.pdf","SPN63-1214 Why Little Bethlehem VGR.pdf"
"es",3723,"LOS DONES DE DIOS SIEMPRE HALLAN SUS LUGARES","Los Dones De Dios Siempre Encuentran Sus Lugares","God's Gifts Always Find Their Places","63-1222","https://sjc1.vultrobjects.com/directus/92863ea9-9987-4183-ae2d-c80ce2e62774.pdf","92863ea9-9987-4183-ae2d-c80ce2e62774","92863ea9-9987-4183-ae2d-c80ce2e62774.pdf","SPN63-1222 Gods Gifts Always Find Their Places VGR.pdf"
"es",3725,"MIRE A JESÚS","Apartando La Mirada Hacia Jesús","Look Away To Jesus","63-1229E","https://sjc1.vultrobjects.com/directus/3d34d966-a19f-481e-afbf-82e2f64c4069.pdf","3d34d966-a19f-481e-afbf-82e2f64c4069","3d34d966-a19f-481e-afbf-82e2f64c4069.pdf","SPN63-1229E Look Away To Jesus VGR.pdf"
"es",3726,"HE AQUÍ UN HOMBRE QUE PUEDE ENCENDER LA LUZ","Hay Un Hombre Aquí Que Puede Encender La Luz","There Is A Man Here That Can Turn On The Light","63-1229M","https://sjc1.vultrobjects.com/directus/485b9c54-31ea-4ffc-bda2-5670c57d4c9c.pdf","485b9c54-31ea-4ffc-bda2-5670c57d4c9c","485b9c54-31ea-4ffc-bda2-5670c57d4c9c.pdf","SPN63-1229M There Is A Man Here That Can Turn On The Light VGR.pdf"
"es",3727,"SHALOM","Shalom","Shalom","64-0112","https://sjc1.vultrobjects.com/directus/4d5739f9-65c3-4ac4-be1b-42a32dd5e58e.pdf","4d5739f9-65c3-4ac4-be1b-42a32dd5e58e","4d5739f9-65c3-4ac4-be1b-42a32dd5e58e.pdf","SPN64-0112 Shalom VGR.pdf"
"es",3728,"SHALOM","Shalom","Shalom","64-0119","https://sjc1.vultrobjects.com/directus/59eb8251-fc0c-4fa3-ab53-f1b3a8c01e73.pdf","59eb8251-fc0c-4fa3-ab53-f1b3a8c01e73","59eb8251-fc0c-4fa3-ab53-f1b3a8c01e73.pdf","SPN64-0119 Shalom VGR.pdf"
"es",3732,"ENCENDED LA LUZ","Enciende La Luz","Turn On The Light","64-0125","https://sjc1.vultrobjects.com/directus/45b7ab05-201e-43e8-8372-1718375c7181.pdf","45b7ab05-201e-43e8-8372-1718375c7181","45b7ab05-201e-43e8-8372-1718375c7181.pdf","SPN64-0125 Turn On The Light VGR.pdf"
"es",3734,"DIOS ES SU PROPIO INTÉRPRETE","Dios Es Su Propio Intérprete","God Is His Own Interpreter","64-0205","https://sjc1.vultrobjects.com/directus/cce4ad03-f19a-4eef-bad4-0c9efa99d554.pdf","cce4ad03-f19a-4eef-bad4-0c9efa99d554","cce4ad03-f19a-4eef-bad4-0c9efa99d554.pdf","SPN64-0205 God Is His Own Interpreter VGR.pdf"
"es",3737,"EL PATRIARCA ABRAHAM","El Patriarca Abraham","The Patriarch Abraham","64-0207","https://sjc1.vultrobjects.com/directus/2d4f10c7-8498-4a5c-851d-59d79c3007ee.pdf","2d4f10c7-8498-4a5c-851d-59d79c3007ee","2d4f10c7-8498-4a5c-851d-59d79c3007ee.pdf","SPN64-0207 The Patriarch Abraham VGR.pdf"
"es",3740,"CUANDO LE FUERON ABIERTOS LOS OJOS, LE RECONOCIERON","Cuando Les Fueron Abiertos Los Ojos, Le Reconocieron","When Their Eyes Were Opened, They Knew Him","64-0212","https://sjc1.vultrobjects.com/directus/371d4c39-aa71-4047-8ea1-340c92baca60.pdf","371d4c39-aa71-4047-8ea1-340c92baca60","371d4c39-aa71-4047-8ea1-340c92baca60.pdf","SPN64-0212 When Their Eyes Were Opened They Knew Him VGR.pdf"
"es",3742,"LA VOZ DE LA SEÑAL","La Voz De La Señal","The Voice Of The Sign","64-0214","https://sjc1.vultrobjects.com/directus/07c7eb76-7180-485f-a380-23670e64baa4.pdf","07c7eb76-7180-485f-a380-23670e64baa4","07c7eb76-7180-485f-a380-23670e64baa4.pdf","SPN64-0214 The Voice Of The Sign VGR.pdf"
"es",3746,"PERSEVERANTE","Perseverante","Perseverant","64-0305","https://sjc1.vultrobjects.com/directus/668149f6-e35b-459e-a408-ddb7a29be262.pdf","668149f6-e35b-459e-a408-ddb7a29be262","668149f6-e35b-459e-a408-ddb7a29be262.pdf","SPN64-0305 Perseverant VGR.pdf"
"es",3750,"DIOS ES IDENTIFICADO POR SUS CARACTERÍSTICAS","Dios Es Identificado Por Sus Características","God Is Identified By His Characteristics","64-0311","https://sjc1.vultrobjects.com/directus/f563cb18-7212-4303-a941-3a776ac7f600.pdf","f563cb18-7212-4303-a941-3a776ac7f600","f563cb18-7212-4303-a941-3a776ac7f600.pdf","SPN64-0311 God Is Identified By His Characteristics VGR.pdf"
"es",3760,"PROBANDO ANTE PUERTAS / PROBANDO ANTE PUERTAS PROMETIDAS","Poseyendo La Puerta Del Enemigo Después De La Prueba","Possessing The Gate Of The Enemy After Trial","64-0322","https://sjc1.vultrobjects.com/directus/6bd84e62-0475-4e07-a499-7d8b6d779341.pdf","6bd84e62-0475-4e07-a499-7d8b6d779341","6bd84e62-0475-4e07-a499-7d8b6d779341.pdf","SPN64-0322 Possessing The Gate Of The Enemy After Trial VGR.pdf"
"es",3762,"JEHOVÁ-JIREH","Jehová-Jireh #1","Jehovah-Jireh #1","64-0402","https://sjc1.vultrobjects.com/directus/b6f25742-84a1-43f5-9ab3-9cb1215cacf5.pdf","b6f25742-84a1-43f5-9ab3-9cb1215cacf5","b6f25742-84a1-43f5-9ab3-9cb1215cacf5.pdf","SPN64-0402 Jehovah-Jireh 1 VGR.pdf"
"es",3767,"SEÑALES ESCRITURALES DEL TIEMPO","Señales Escriturales Del Tiempo","Scriptural Signs Of The Time","64-0410","https://sjc1.vultrobjects.com/directus/7138c5ae-fa56-4afa-92cd-8e44b30872d5.pdf","7138c5ae-fa56-4afa-92cd-8e44b30872d5","7138c5ae-fa56-4afa-92cd-8e44b30872d5.pdf","SPN64-0410 Scriptural Signs Of The Time VGR.pdf"
"es",3770,"CRISTO IDENTIFICÁNDOSE EL MISMO / CRISTO IDENTIFICADO EL MISMO","Cristo Se Identifica Igual En Todas Las Generaciones","Christ Is Identified The Same In All Generations","64-0415","https://sjc1.vultrobjects.com/directus/8337e99b-1da7-4087-abcd-121e3e9cb56a.pdf","8337e99b-1da7-4087-abcd-121e3e9cb56a","8337e99b-1da7-4087-abcd-121e3e9cb56a.pdf","SPN64-0415 Christ Is Identified The Same In All Generations VGR.pdf"
"es",3775,"EL JUICIO EN LA CORTE","El Juicio","The Trial","64-0419","https://sjc1.vultrobjects.com/directus/31f73cc2-c45d-47f4-8b62-310865d53943.pdf","31f73cc2-c45d-47f4-8b62-310865d53943","31f73cc2-c45d-47f4-8b62-310865d53943.pdf","SPN64-0419 The Trial VGR.pdf"
"es",3778,,"El Raro","The Oddball","64-0614E","https://sjc1.vultrobjects.com/directus/14ed3cf3-95e9-4929-be48-52004589d0da.pdf","14ed3cf3-95e9-4929-be48-52004589d0da","14ed3cf3-95e9-4929-be48-52004589d0da.pdf","SPN64-0614E The Oddball VGR.pdf"
"es",3779,"DEVELANDO A DIOS","Develando A Dios","The Unveiling Of God","64-0614M","https://sjc1.vultrobjects.com/directus/2d57a9a7-6168-447c-9e1e-296d6e1a2912.pdf","2d57a9a7-6168-447c-9e1e-296d6e1a2912","2d57a9a7-6168-447c-9e1e-296d6e1a2912.pdf","SPN64-0614M The Unveiling Of God VGR.pdf"
"es",3782,"PERSEVERANTE","Perseverante","Perseverant","64-0619","https://sjc1.vultrobjects.com/directus/dc860062-a7e4-40dc-83e7-eaed32a549e5.pdf","dc860062-a7e4-40dc-83e7-eaed32a549e5","dc860062-a7e4-40dc-83e7-eaed32a549e5.pdf","SPN64-0619 Perseverant VGR.pdf"
"es",3785,"EL JUICIO","El Juicio","The Trial","64-0621","https://sjc1.vultrobjects.com/directus/0f34554b-fdab-4050-af04-3c386e03d3fc.pdf","0f34554b-fdab-4050-af04-3c386e03d3fc","0f34554b-fdab-4050-af04-3c386e03d3fc.pdf","SPN64-0621 The Trial VGR.pdf"
"es",3786,"EL PODEROSO DIOS DEVELADO","El Poderoso Dios Develado Ante Nosotros","The Mighty God Unveiled Before Us","64-0629","https://sjc1.vultrobjects.com/directus/0727a1b6-9bb5-4b87-86d7-1c6394e087ab.pdf","0727a1b6-9bb5-4b87-86d7-1c6394e087ab","0727a1b6-9bb5-4b87-86d7-1c6394e087ab.pdf","SPN64-0629 The Mighty God Unveiled Before Us VGR.pdf"
"es",3787,"OBRA MAESTRA","La Obra Maestra","The Masterpiece","64-0705","https://sjc1.vultrobjects.com/directus/461c2d43-f356-4449-bcc9-bdd1dfa6f0ea.pdf","461c2d43-f356-4449-bcc9-bdd1dfa6f0ea","461c2d43-f356-4449-bcc9-bdd1dfa6f0ea.pdf","SPN64-0705 The Masterpiece VGR.pdf"
"es",3789,"YENDO MÁS ALLÁ DEL CAMPO","Yendo Más Allá Del Campamento","Going Beyond The Camp","64-0719E","https://sjc1.vultrobjects.com/directus/d912e05a-fe77-49a3-b3e3-81e1b8ad2f31.pdf","d912e05a-fe77-49a3-b3e3-81e1b8ad2f31","d912e05a-fe77-49a3-b3e3-81e1b8ad2f31.pdf","SPN64-0719E Going Beyond The Camp VGR.pdf"
"es",3790,"FIESTA DE LAS TROMPETAS","La Fiesta De Las Trompetas","The Feast Of The Trumpets","64-0719M","https://sjc1.vultrobjects.com/directus/cc738870-341e-4c3c-9cba-49d2d23452e8.pdf","cc738870-341e-4c3c-9cba-49d2d23452e8","cc738870-341e-4c3c-9cba-49d2d23452e8.pdf","SPN64-0719M The Feast Of The Trumpets VGR.pdf"
"es",3791,"CISTERNAS ROTAS","Cisternas Rotas","Broken Cisterns","64-0726E","https://sjc1.vultrobjects.com/directus/201a7390-584b-4ee9-b54f-a1f475374831.pdf","201a7390-584b-4ee9-b54f-a1f475374831","201a7390-584b-4ee9-b54f-a1f475374831.pdf","SPN64-0726E Broken Cisterns VGR.pdf"
"es",3792,"RECONOCIENDO EL DÍA Y SU MENSAJE","Reconociendo Tu Día Y Su Mensaje","Recognizing Your Day And Its Message","64-0726M","https://sjc1.vultrobjects.com/directus/6c9b5fad-9824-4e7e-b9fd-3b122601b7da.pdf","6c9b5fad-9824-4e7e-b9fd-3b122601b7da","6c9b5fad-9824-4e7e-b9fd-3b122601b7da.pdf","SPN64-0726M Recognizing Your Day And Its Message VGR.pdf"
"es",3793,"FUTURO HOGAR DEL NOVIO CELESTIAL Y DE LA NOVIA TERRENAL","El Futuro Hogar Del Novio Celestial Y La Novia Terrenal","The Future Home Of The Heavenly Bridegroom And The Earthly Bride","64-0802","https://sjc1.vultrobjects.com/directus/f79eff8e-943e-4a04-9c0f-baee5862a17f.pdf","f79eff8e-943e-4a04-9c0f-baee5862a17f","f79eff8e-943e-4a04-9c0f-baee5862a17f.pdf","SPN64-0802 The Future Home Of The Heavenly Bridegroom And The Earthly Bride VGR.pdf"
"es",3794,"PROBANDO SU PALABRA","Probando Su Palabra","Proving His Word","64-0816","https://sjc1.vultrobjects.com/directus/5484b51d-5c52-460d-a711-1b432167286e.pdf","5484b51d-5c52-460d-a711-1b432167286e","5484b51d-5c52-460d-a711-1b432167286e.pdf","SPN64-0816 Proving His Word VGR.pdf"
"es",3795,"PREGUNTAS Y RESPUESTAS","Preguntas Y Respuestas #2","Questions And Answers #2","64-0823E","https://sjc1.vultrobjects.com/directus/bee86bde-fed0-4f52-a841-4b8b27a0b868.pdf","bee86bde-fed0-4f52-a841-4b8b27a0b868","bee86bde-fed0-4f52-a841-4b8b27a0b868.pdf","SPN64-0823E Questions And Answers 2 VGR.pdf"
"es",3796,,"Preguntas Y Respuestas #1","Questions And Answers #1","64-0823M","https://sjc1.vultrobjects.com/directus/962666c5-e540-460a-a021-9fc6dcec4529.pdf","962666c5-e540-460a-a021-9fc6dcec4529","962666c5-e540-460a-a021-9fc6dcec4529.pdf","SPN64-0823M Questions And Answers 1 VGR.pdf"
"es",3797,"PREGUNTAS Y RESPUESTAS","Preguntas Y Respuestas #4","Questions And Answers #4","64-0830E","https://sjc1.vultrobjects.com/directus/793c41bc-e82f-4f9b-bf62-f5656d79b033.pdf","793c41bc-e82f-4f9b-bf62-f5656d79b033","793c41bc-e82f-4f9b-bf62-f5656d79b033.pdf","SPN64-0830E Questions And Answers 4 VGR.pdf"
"es",3798,"PREGUNTAS Y RESPUESTAS","Preguntas Y Respuestas #3","Questions And Answers #3","64-0830M","https://sjc1.vultrobjects.com/directus/ee0ea82c-aecf-4bda-be8f-8e91721602ff.pdf","ee0ea82c-aecf-4bda-be8f-8e91721602ff","ee0ea82c-aecf-4bda-be8f-8e91721602ff.pdf","64-0830M-preguntas_y_respuestas-4.pdf"
"es",3799,"OBRA MAESTRA","La Obra Maestra De Dios Identificada","The Identified Masterpiece Of God","64-1205","https://sjc1.vultrobjects.com/directus/27cccd07-199a-49d1-a5a6-84359ae99a49.pdf","27cccd07-199a-49d1-a5a6-84359ae99a49","27cccd07-199a-49d1-a5a6-84359ae99a49.pdf","SPN64-1205 The Identified Masterpiece Of God VGR.pdf"
"es",3800,"TIEMPO DE LA SIEGA","El Tiempo De La Siega","The Harvest Time","64-1212","https://sjc1.vultrobjects.com/directus/2d6d180b-2b91-429e-99ec-59290a71d08b.pdf","2d6d180b-2b91-429e-99ec-59290a71d08b","2d6d180b-2b91-429e-99ec-59290a71d08b.pdf","SPN64-1212 The Harvest Time VGR.pdf"
"es",3801,"“¡POR QUÉ TUVIERON QUE SER PASTORES!","¡Por Qué Tuvo Que Ser Pastor!","Why It Had To Be Shepherd","64-1221","https://sjc1.vultrobjects.com/directus/d1385014-ab49-482a-afc6-b40720f26eff.pdf","d1385014-ab49-482a-afc6-b40720f26eff","d1385014-ab49-482a-afc6-b40720f26eff.pdf","SPN64-1221 Why It Had To Be Shepherd VGR.pdf"
"es",3802,"¿QUIÉN DICEN USTEDES QUE ES ESTE?","¿Quién Dicen Ustedes Que Es Este?","Who Do You Say This Is?","64-1227","https://sjc1.vultrobjects.com/directus/31e14a91-2fdb-405f-b25d-fa1e02b12284.pdf","31e14a91-2fdb-405f-b25d-fa1e02b12284","31e14a91-2fdb-405f-b25d-fa1e02b12284.pdf","SPN64-1227 Who Do You Say This Is VGR.pdf"
"es",3805,"LA SIMIENTE DE DISCREPANCIA","La Simiente De Discrepancia","The Seed Of Discrepancy","65-0118","https://sjc1.vultrobjects.com/directus/f6feed40-5a31-458e-b128-607259786bde.pdf","f6feed40-5a31-458e-b128-607259786bde","f6feed40-5a31-458e-b128-607259786bde.pdf","SPN65-0118 The Seed Of Discrepancy VGR.pdf"
"es",3806,"EL DIOS QUE ES RICO EN MISERICORDIA","El Dios Que Es Rico En Misericordia","The God Who Is Rich In Mercy","65-0119","https://sjc1.vultrobjects.com/directus/f657172b-028b-43d1-aa42-3a168c5613ae.pdf","f657172b-028b-43d1-aa42-3a168c5613ae","f657172b-028b-43d1-aa42-3a168c5613ae.pdf","SPN65-0119 The God Who Is Rich In Mercy VGR.pdf"
"es",3807,"NO TE APOYES EN TU PROPIO ENTENDIMIENTO","No Te Apoyes En Tu Propia Prudencia","Lean Not Unto Thy Own Understanding","65-0120","https://sjc1.vultrobjects.com/directus/08ab54ba-3af9-43d1-8a2a-f61da42b1010.pdf","08ab54ba-3af9-43d1-8a2a-f61da42b1010","08ab54ba-3af9-43d1-8a2a-f61da42b1010.pdf","SPN65-0120 Lean Not Unto Thy Own Understanding VGR.pdf"
"es",3809,"DOLORES DE PARTO","Dolores De Parto","Birth Pains","65-0124","https://sjc1.vultrobjects.com/directus/77eead95-93b1-412e-a84a-3867b49baf63.pdf","77eead95-93b1-412e-a84a-3867b49baf63","77eead95-93b1-412e-a84a-3867b49baf63.pdf","SPN65-0124 Birth Pains VGR.pdf"
"es",3811,"PUERTAS EN PUERTAS","De Puertas Adentro","Doors In Door","65-0206","https://sjc1.vultrobjects.com/directus/af21ae37-984e-4167-b846-92e2a7b00794.pdf","af21ae37-984e-4167-b846-92e2a7b00794","af21ae37-984e-4167-b846-92e2a7b00794.pdf","SPN65-0206 Doors In Door VGR.pdf"
"es",3813,"LA SIMIENTE NO HEREDA CON LA PAJA","La Semilla No Es Heredera Con La Cáscara","The Seed Is Not Heir With The Shuck","65-0218","https://sjc1.vultrobjects.com/directus/ba2ffe0c-cadf-4c19-bd70-05481d93b23f.pdf","ba2ffe0c-cadf-4c19-bd70-05481d93b23f","ba2ffe0c-cadf-4c19-bd70-05481d93b23f.pdf","SPN65-0218 The Seed Is Not Heir With The Shuck VGR.pdf"
"es",3814,"HOY SE HA CUMPLIDO ESTA ESCRITURA","Hoy Se Ha Cumplido Esta Escritura","This Day This Scripture Is Fulfilled","65-0219","https://sjc1.vultrobjects.com/directus/dbdf9048-d013-4994-bfd0-ce8a7d1d2f5b.pdf","dbdf9048-d013-4994-bfd0-ce8a7d1d2f5b","dbdf9048-d013-4994-bfd0-ce8a7d1d2f5b.pdf","SPN65-0219 This Day This Scripture Is Fulfilled VGR.pdf"
"es",3815,"EL LUGAR ESCOGIDO POR DIOS PARA ADORAR","El Lugar Escogido Por Dios Para La Adoración","God's Chosen Place Of Worship","65-0220","https://sjc1.vultrobjects.com/directus/f1804034-96fd-4c8f-a160-9e7d27c6c79c.pdf","f1804034-96fd-4c8f-a160-9e7d27c6c79c","f1804034-96fd-4c8f-a160-9e7d27c6c79c.pdf","SPN65-0220 Gods Chosen Place Of Worship VGR.pdf"
"es",3817,"¿QUIÉN ES ESTE MELQUISEDEC?","¿Quién Es Este Melquisedec?","Who Is This Melchisedec?","65-0221E","https://sjc1.vultrobjects.com/directus/0e58c972-067d-4e49-8574-a39278a9d79e.pdf","0e58c972-067d-4e49-8574-a39278a9d79e","0e58c972-067d-4e49-8574-a39278a9d79e.pdf","SPN65-0221E Who Is This Melchisedec VGR.pdf"
"es",3818,"DIVORCIO Y CASAMIENTO","Casamiento Y Divorcio","Marriage And Divorce","65-0221M","https://sjc1.vultrobjects.com/directus/e931108f-f90b-4139-b3c7-b57f77a2d422.pdf","e931108f-f90b-4139-b3c7-b57f77a2d422","e931108f-f90b-4139-b3c7-b57f77a2d422.pdf","SPN65-0221M Marriage And Divorce VGR.pdf"
"es",3819,"EL SELLO DE PASCUA","El Sello De Pascua","The Easter Seal","65-0410","https://sjc1.vultrobjects.com/directus/6fa83355-7418-4f8d-9f60-aba851f46cb1.pdf","6fa83355-7418-4f8d-9f60-aba851f46cb1","6fa83355-7418-4f8d-9f60-aba851f46cb1.pdf","SPN65-0410 The Easter Seal VGR.pdf"
"es",3820,"¿CAMBIA DIOS SU MODO DE PENSAR?","¿Cambia Dios Su Modo De Pensar Con Respecto A Su Palabra?","Does God Ever Change His Mind About His Word?","65-0418E","https://sjc1.vultrobjects.com/directus/4aa96d0a-1270-482d-bbb1-052b00d8c109.pdf","4aa96d0a-1270-482d-bbb1-052b00d8c109","4aa96d0a-1270-482d-bbb1-052b00d8c109.pdf","SPN65-0418E Does God Ever Change His Mind About His Word VGR.pdf"
"es",3821,"YA SALIDO EL SOL","Ya Salido El Sol","It Is The Rising Of The Sun","65-0418M","https://sjc1.vultrobjects.com/directus/40a0ae79-8a5f-4a59-8de6-3b276c19895d.pdf","40a0ae79-8a5f-4a59-8de6-3b276c19895d","40a0ae79-8a5f-4a59-8de6-3b276c19895d.pdf","SPN65-0418M It Is The Rising Of The Sun VGR.pdf"
"es",3824,"PROBANDO SU PALABRA","Probando Su Palabra","Proving His Word","65-0426","https://sjc1.vultrobjects.com/directus/6e3d57b9-3725-47f3-a013-0b1bfb690316.pdf","6e3d57b9-3725-47f3-a013-0b1bfb690316","6e3d57b9-3725-47f3-a013-0b1bfb690316.pdf","SPN65-0426 Proving His Word VGR (1).pdf"
"es",3827,"ESCOGIENDO UNA NOVIA","Escogiendo Una Novia","The Choosing Of A Bride","65-0429E","https://sjc1.vultrobjects.com/directus/46bcd3a7-8057-4100-b12c-c5e5e606849f.pdf","46bcd3a7-8057-4100-b12c-c5e5e606849f","46bcd3a7-8057-4100-b12c-c5e5e606849f.pdf","SPN65-0429E The Choosing Of A Bride VGR.pdf"
"es",3830,"ALIMENTO ESPIRITUAL A SU DEBIDO TIEMPO","Alimento Espiritual En Su Debido Tiempo","Spiritual Food In Due Season","65-0718E","https://sjc1.vultrobjects.com/directus/243a0371-e72c-4068-bee1-7ddefe0bd03f.pdf","243a0371-e72c-4068-bee1-7ddefe0bd03f","243a0371-e72c-4068-bee1-7ddefe0bd03f.pdf","SPN65-0718E Spiritual Food In Due Season VGR.pdf"
"es",3831,"HACIENDO UN SERVICIO A DIOS FUERA DE SU VOLUNTAD","Tratando de Hacer Un Servicio A Dios Sin Ser La Voluntad De Dios","Trying To Do God A Service Without Being The Will Of God","65-0718M","https://sjc1.vultrobjects.com/directus/b359f0bc-c9cf-4787-936a-75144372b246.pdf","b359f0bc-c9cf-4787-936a-75144372b246","b359f0bc-c9cf-4787-936a-75144372b246.pdf","SPN65-0718M Trying To Do God A Service Without Being The Will Of God VGR.pdf"
"es",3832,"¿CUÁL ES LA ATRACCIÓN EN EL MONTE?","¿Cuál Es La Atracción En El Monte?","What Is The Attraction On The Mountain?","65-0725E","https://sjc1.vultrobjects.com/directus/fd392781-5533-4eb7-8be1-27ed51d15b2e.pdf","fd392781-5533-4eb7-8be1-27ed51d15b2e","fd392781-5533-4eb7-8be1-27ed51d15b2e.pdf","SPN65-0725E What Is The Attraction On The Mountain VGR.pdf"
"es",3833,"LOS UNGIDOS DE LOS ÚLTIMOS DÍAS","Los Ungidos En El Tiempo Del Fin","The Anointed Ones At The End Time","65-0725M","https://sjc1.vultrobjects.com/directus/4940e959-8ab6-4158-8430-ccda9fbb7933.pdf","4940e959-8ab6-4158-8430-ccda9fbb7933","4940e959-8ab6-4158-8430-ccda9fbb7933.pdf","SPN65-0725M The Anointed Ones At The End Time VGR.pdf"
"es",3835,"EL DIOS DE ESTA EDAD PERVERSA","El Dios De Esta Edad Perversa","The God Of This Evil Age","65-0801M","https://sjc1.vultrobjects.com/directus/af6a5a71-0287-421f-a378-bfc23e970bfd.pdf","af6a5a71-0287-421f-a378-bfc23e970bfd","af6a5a71-0287-421f-a378-bfc23e970bfd.pdf","SPN65-0801M The God Of This Evil Age VGR.pdf"
"es",3836,"Y NO SABÉIS","Y No Lo Sabes","And Knoweth It Not","65-0815","https://sjc1.vultrobjects.com/directus/20ca42b9-6a42-422f-8748-81474a8682be.pdf","20ca42b9-6a42-422f-8748-81474a8682be","20ca42b9-6a42-422f-8748-81474a8682be.pdf","SPN65-0815 And Knoweth It Not VGR.pdf"
"es",3838,"CRISTO ES REVELADO EN SU PROPIA PALABRA","Cristo Es Revelado En Su Propia Palabra","Christ Is Revealed In His Own Word","65-0822M","https://sjc1.vultrobjects.com/directus/1d3472c1-1d70-4516-b914-7d5e1be013f1.pdf","1d3472c1-1d70-4516-b914-7d5e1be013f1","1d3472c1-1d70-4516-b914-7d5e1be013f1.pdf","SPN65-0822M Christ Is Revealed In His Own Word VGR.pdf"
"es",3840,"EL PODER DE DIOS PARA TRANSFORMAR","El Poder De Dios Para Transformar","God's Power To Transform","65-0911","https://sjc1.vultrobjects.com/directus/ecbcb749-aafe-4c5a-ad07-3db2f7eb3644.pdf","ecbcb749-aafe-4c5a-ad07-3db2f7eb3644","ecbcb749-aafe-4c5a-ad07-3db2f7eb3644.pdf","SPN65-0911 Gods Power To Transform VGR.pdf"
"es",3841,,"Sed","Thirst","65-0919","https://sjc1.vultrobjects.com/directus/1e0b1535-d427-418d-b9b4-0ddbf166fdd4.pdf","1e0b1535-d427-418d-b9b4-0ddbf166fdd4","1e0b1535-d427-418d-b9b4-0ddbf166fdd4.pdf","SPN65-0919 Thirst VGR.pdf"
"es",3845,"LA UNIÓN INVISIBLE DE LA NOVIA DE CRISTO","La Unión Invisible De La Novia De Cristo","The Invisible Union Of The Bride Of Christ","65-1125","https://sjc1.vultrobjects.com/directus/60bf9fc8-bf73-4876-a3bc-2a65c21811fc.pdf","60bf9fc8-bf73-4876-a3bc-2a65c21811fc","60bf9fc8-bf73-4876-a3bc-2a65c21811fc.pdf","SPN65-1125 The Invisible Union Of The Bride Of Christ VGR.pdf"
"es",3846,"OBRAS ES FE EXPRESADA","Obras Es La Fe Expresada","Works Is Faith Expressed","65-1126","https://sjc1.vultrobjects.com/directus/163b4c79-ba96-41c7-b688-0546551488f0.pdf","163b4c79-ba96-41c7-b688-0546551488f0","163b4c79-ba96-41c7-b688-0546551488f0.pdf","SPN65-1126 Works Is Faith Expressed VGR.pdf"
"es",3847,"TRATANDO DE HACER UN SERVICIO SIN SER LA VOLUNTAD DE DIOS","Tratando De Hacer Un Servicio A Dios Sin Ser La Voluntad De Dios","Trying To Do God A Service Without It Being God's Will","65-1127B","https://sjc1.vultrobjects.com/directus/c0025701-7095-4ea5-a9a2-77a2b5c6666a.pdf","c0025701-7095-4ea5-a9a2-77a2b5c6666a","c0025701-7095-4ea5-a9a2-77a2b5c6666a.pdf","SPN65-1127B Trying To Do God A Service Without It Being Gods Will VGR.pdf"
"es",3848,"YO HABÍA OÍDO PERO AHORA VEO","Yo Había Escuchado Mas Ahora Veo","I Have Heard But Now I See","65-1127E","https://sjc1.vultrobjects.com/directus/81ade558-9f0d-464f-9c95-1361fe6fce11.pdf","81ade558-9f0d-464f-9c95-1361fe6fce11","81ade558-9f0d-464f-9c95-1361fe6fce11.pdf","SPN65-1127E I Have Heard But Now I See VGR.pdf"
"es",3849,"SOBRE LAS ALAS DE UNA BLANCA PALOMA","En Las Alas De Una Paloma Blanca Como La Nieve","On The Wings Of A Snow-White Dove","65-1128E","https://sjc1.vultrobjects.com/directus/65c35c80-bd19-4104-8b21-244079e88e2b.pdf","65c35c80-bd19-4104-8b21-244079e88e2b","65c35c80-bd19-4104-8b21-244079e88e2b.pdf","SPN65-1128E On The Wings Of A Snow-White Dove VGR.pdf"
"es",3850,"EL ÚNICO LUGAR PROVISTO POR DIOS PARA ADORAR","El Unico Lugar Provisto Por Dios Para La Adoración","God's Only Provided Place Of Worship","65-1128M","https://sjc1.vultrobjects.com/directus/82076e42-fcf4-44a7-ac0d-f82d47026a49.pdf","82076e42-fcf4-44a7-ac0d-f82d47026a49","82076e42-fcf4-44a7-ac0d-f82d47026a49.pdf","SPN65-1128M Gods Only Provided Place Of Worship VGR.pdf"
"es",3851,"EL RAPTO","El Rapto","The Rapture","65-1204","https://sjc1.vultrobjects.com/directus/40ee3d05-00e4-4c21-971e-bfc3677ab1df.pdf","40ee3d05-00e4-4c21-971e-bfc3677ab1df","40ee3d05-00e4-4c21-971e-bfc3677ab1df.pdf","SPN65-1204 The Rapture VGR.pdf"
"es",3852,"LAS COSAS QUE HAN DE SER","Cosas Que Han De Ser","Things That Are To Be","65-1205","https://sjc1.vultrobjects.com/directus/4e00dd1a-d926-4e8e-8503-5277c5e9b909.pdf","4e00dd1a-d926-4e8e-8503-5277c5e9b909","4e00dd1a-d926-4e8e-8503-5277c5e9b909.pdf","SPN65-1205 Things That Are To Be VGR.pdf"
"es",3853,"EVENTOS MODERNOS SON ACLARADOS POR PROFECÍA","Eventos Modernos Son Aclarados Por Profecía","Modern Events Are Made Clear By Prophecy","65-1206","https://sjc1.vultrobjects.com/directus/552eaa0c-17ca-477f-909a-59b27b411f55.pdf","552eaa0c-17ca-477f-909a-59b27b411f55","552eaa0c-17ca-477f-909a-59b27b411f55.pdf","SPN65-1206 Modern Events Are Made Clear By Prophecy VGR.pdf"
"es",3854,"LIDERATO","Liderazgo","Leadership","65-1207","https://sjc1.vultrobjects.com/directus/fedd8931-6b85-471c-85cc-874a7268cf9d.pdf","fedd8931-6b85-471c-85cc-874a7268cf9d","fedd8931-6b85-471c-85cc-874a7268cf9d.pdf","SPN65-1207 Leadership VGR.pdf"
"es",3868,"CINCO IDENTIFICACIONES DEFINITIVAS DE LA VERDADERA IGLESIA DEL DIOS VIVO","Cinco Identificaciones Definitivas De La Verdadera Iglesia Del Dios Vivo","Five Definite Identifications Of The True Church Of The Living God","60-0911E","https://sjc1.vultrobjects.com/directus/b238a0c7-876d-4c08-9c12-4f37900b03c4.pdf","b238a0c7-876d-4c08-9c12-4f37900b03c4","b238a0c7-876d-4c08-9c12-4f37900b03c4.pdf","SPN60-0911E Five Definite Identifications Of The True Church Of The Living God VGR.pdf"
1 locale id title_jbp title_spanish title_english sermon_code file_url file_id filename_disk filename_download
2 es 2661 ENFERMEDADES Y AFLICCIONES Enfermedades Y Aflicciones Diseases And Afflictions 50-0100 https://sjc1.vultrobjects.com/directus/d075a620-6d4a-496a-b9d2-b15f00b14e3f.pdf d075a620-6d4a-496a-b9d2-b15f00b14e3f d075a620-6d4a-496a-b9d2-b15f00b14e3f.pdf SPN50-0100 Diseases And Afflictions VGR.pdf
3 es 2777 DEMONOLOGÍA, REINO FÍSICO Demonología, Reino Físico Demonology, Physical Realm 53-0608A https://sjc1.vultrobjects.com/directus/30e69cd5-62e8-41fd-aa23-1e727469e3cc.pdf 30e69cd5-62e8-41fd-aa23-1e727469e3cc 30e69cd5-62e8-41fd-aa23-1e727469e3cc.pdf SPN53-0608A Demonology Physical Realm VGR.pdf
4 es 2779 DEMONOLOGÍA Demonología, Reino Religioso Demonology, Religious Realm 53-0609A https://sjc1.vultrobjects.com/directus/abb44350-5865-401d-a4ef-4fe67ca165ab.pdf abb44350-5865-401d-a4ef-4fe67ca165ab abb44350-5865-401d-a4ef-4fe67ca165ab.pdf SPN53-0609A Demonology Religious Realm VGR.pdf
5 es 2787 PREGUNTAS Y RESPUESTAS SOBRE GÉNESIS Preguntas Y Respuestas Sobre Génesis Questions And Answers On Genesis 53-0729 https://sjc1.vultrobjects.com/directus/c54a5514-5fda-4094-8f02-2c320e8262a3.pdf c54a5514-5fda-4094-8f02-2c320e8262a3 c54a5514-5fda-4094-8f02-2c320e8262a3.pdf SPN53-0729 Questions And Answers On Genesis VGR.pdf
6 es 2835 PREGUNTAS Y RESPUESTAS (Libro Conducta, orden y doctrina de la iglesia) Preguntas Y Respuestas #1 Questions And Answers #1 54-0103M https://sjc1.vultrobjects.com/directus/37ff01b3-b92b-4472-978a-f6e18e365cf9.pdf 37ff01b3-b92b-4472-978a-f6e18e365cf9 37ff01b3-b92b-4472-978a-f6e18e365cf9.pdf SPN54-0103M Questions And Answers 1 VGR.pdf
7 es 2865 LA MARCA DE LA BESTIA La Marca De La Bestia The Mark Of The Beast 54-0513 https://sjc1.vultrobjects.com/directus/004a0200-ccf7-47cb-a8ec-bffebc2294ae.pdf 004a0200-ccf7-47cb-a8ec-bffebc2294ae 004a0200-ccf7-47cb-a8ec-bffebc2294ae.pdf SPN54-0513 The Mark Of The Beast VGR.pdf
8 es 2899 EL AÑO DEL JUBILEO Año Del Jubileo Jubilee Year 54-1003E https://sjc1.vultrobjects.com/directus/2082533d-2245-4822-abbe-dcc72c37b1f1.pdf 2082533d-2245-4822-abbe-dcc72c37b1f1 2082533d-2245-4822-abbe-dcc72c37b1f1.pdf SPN54-1003E Jubilee Year VGR.pdf
9 es 2900 LA PALABRA SE HIZO CARNE (INFORME DE VIAJE A LA INDIA) La Palabra Se Hizo Carne (Informe De Viaje A La India) The Word Became Flesh (India Trip Report) 54-1003M https://sjc1.vultrobjects.com/directus/964a1d88-ab0a-4f4e-8c74-e01d42025385.pdf 964a1d88-ab0a-4f4e-8c74-e01d42025385 964a1d88-ab0a-4f4e-8c74-e01d42025385.pdf SPN54-1003M The Word Became Flesh India Trip Report VGR.pdf
10 es 2909 JURÓ POR SÍ MISMO Él Juró Por Sí Mismo He Swore By Himself 54-1212 https://sjc1.vultrobjects.com/directus/0219b447-983a-40af-9988-03d6d7e13d3c.pdf 0219b447-983a-40af-9988-03d6d7e13d3c 0219b447-983a-40af-9988-03d6d7e13d3c.pdf SPN54-1212 He Swore By Himself VGR.pdf
11 es 2910 HECHOS DEL ESPÍRITU SANTO Los Hechos Del Espíritu Santo Acts Of The Holy Spirit 54-1219E https://sjc1.vultrobjects.com/directus/df277699-ae32-4f90-9632-b213dc0d31d7.pdf df277699-ae32-4f90-9632-b213dc0d31d7 df277699-ae32-4f90-9632-b213dc0d31d7.pdf SPN54-1219E Acts Of The Holy Spirit VGR.pdf
12 es 2913 PRINCIPIO Y FIN DE LA DISPENSACIÓN GENTIL Principio Y Fin De La Dispensación Gentil Beginning And Ending Of The Gentile Dispensation 55-0109E https://sjc1.vultrobjects.com/directus/64434730-7c7e-4d04-ae8e-c9aff3f13635.pdf 64434730-7c7e-4d04-ae8e-c9aff3f13635 64434730-7c7e-4d04-ae8e-c9aff3f13635.pdf SPN55-0109E Beginning And Ending Of The Gentile Dispensation VGR.pdf
13 es 2914 MELQUISEDEC, EL GRAN PRÍNCIPE Y REY Melquisedec, El Gran Príncipe Y Rey Melchisedec, The Great Prince And King 55-0109M https://sjc1.vultrobjects.com/directus/d9981d7c-e5be-479a-ab1c-2fdc1cdf7738.pdf d9981d7c-e5be-479a-ab1c-2fdc1cdf7738 d9981d7c-e5be-479a-ab1c-2fdc1cdf7738.pdf SPN55-0109M Melchisedec The Great Prince And King VGR.pdf
14 es 2920 CÓMO EL ÁNGEL VINO A MÍ Y SU COMISIÓN Cómo El Ángel Vino A Mí Y Su Comisión How The Angel Came To Me, And His Commission 55-0117 https://sjc1.vultrobjects.com/directus/57792ed9-716b-40b0-9b65-8170258424d8.pdf 57792ed9-716b-40b0-9b65-8170258424d8 57792ed9-716b-40b0-9b65-8170258424d8.pdf SPN55-0117 How The Angel Came To Me And His Commission VGR.pdf
15 es 2943 COMPAÑERISMO POR MEDIO DE REDENCIÓN Compañerismo Por Redención Fellowship By Redemption 55-0403 https://sjc1.vultrobjects.com/directus/42eb6a71-8354-4c10-a344-64ab22bec316.pdf 42eb6a71-8354-4c10-a344-64ab22bec316 42eb6a71-8354-4c10-a344-64ab22bec316.pdf SPN55-0403 Fellowship By Redemption VGR.pdf
16 es 2966 ESPÍRITUS SEDUCTORES (Libro Demonología) Espíritus Seductores Enticing Spirits 55-0724 https://sjc1.vultrobjects.com/directus/202c151b-1d9a-43c6-901f-a63a44e9f7c4.pdf 202c151b-1d9a-43c6-901f-a63a44e9f7c4 202c151b-1d9a-43c6-901f-a63a44e9f7c4.pdf SPN55-0724 Enticing Spirits VGR.pdf
17 es 2967 EL SONIDO INCIERTO El Sonido Incierto The Uncertain Sound 55-0731 https://sjc1.vultrobjects.com/directus/a04ecf91-574c-4d0c-97a0-b1a25ca8f58d.pdf a04ecf91-574c-4d0c-97a0-b1a25ca8f58d a04ecf91-574c-4d0c-97a0-b1a25ca8f58d.pdf SPN55-0731 The Uncertain Sound VGR.pdf
18 es 3003 LA ENCRUCIJADA DEL TIEMPO El Cruce Del Tiempo The Junction Of Time 56-0115 https://sjc1.vultrobjects.com/directus/29dad033-d806-4ecc-b3f0-f1f312007f2a.pdf 29dad033-d806-4ecc-b3f0-f1f312007f2a 29dad033-d806-4ecc-b3f0-f1f312007f2a.pdf SPN56-0115 The Junction Of Time VGR.pdf
19 es 3018 DARÁ LA SALIDA Dará La Salida Making A Way 56-0304 https://sjc1.vultrobjects.com/directus/d07e0fb9-63f0-4b3b-8d8d-4a44575e0c77.pdf d07e0fb9-63f0-4b3b-8d8d-4a44575e0c77 d07e0fb9-63f0-4b3b-8d8d-4a44575e0c77.pdf SPN56-0304 Making A Way VGR.pdf
20 es 3021 EL PODEROSO CONQUISTADOR El Poderoso Conquistador The Mighty Conqueror 56-0401M https://sjc1.vultrobjects.com/directus/253b9299-75f3-4d61-940e-f1e1f222acc5.pdf 253b9299-75f3-4d61-940e-f1e1f222acc5 253b9299-75f3-4d61-940e-f1e1f222acc5.pdf SPN56-0401M The Mighty Conqueror VGR.pdf
21 es 3041 EN CADES-BARNEA En Cades-Barnea At Kadesh-Barnea 56-0527 https://sjc1.vultrobjects.com/directus/73efb91f-46ee-4b5b-a42c-fd2f50f8128c.pdf 73efb91f-46ee-4b5b-a42c-fd2f50f8128c 73efb91f-46ee-4b5b-a42c-fd2f50f8128c.pdf SPN56-0527 At Kadesh-Barnea VGR.pdf
22 es 3058 LA IGLESIA Y SU CONDICIÓN La Iglesia Y Su Condición The Church And Its Condition 56-0805 https://sjc1.vultrobjects.com/directus/f6e2b2f7-1323-43d4-b96d-277d47e7b843.pdf f6e2b2f7-1323-43d4-b96d-277d47e7b843 f6e2b2f7-1323-43d4-b96d-277d47e7b843.pdf SPN56-0805 The Church And Its Condition VGR.pdf
23 es 3062 AMOR DIVINO Amor Divino Divine Love 56-0826 https://sjc1.vultrobjects.com/directus/692e3769-1360-4b0a-8595-03c128f32692.pdf 692e3769-1360-4b0a-8595-03c128f32692 692e3769-1360-4b0a-8595-03c128f32692.pdf SPN56-0826 Divine Love VGR.pdf
24 es 3075 UN MANTO DE SEGUNDA MANO Un Manto De Segunda Mano A Secondhanded Robe 56-1125M https://sjc1.vultrobjects.com/directus/cad8eacc-59ca-4631-8ea5-9aa2c80889b4.pdf cad8eacc-59ca-4631-8ea5-9aa2c80889b4 cad8eacc-59ca-4631-8ea5-9aa2c80889b4.pdf SPN56-1125M A Secondhanded Robe VGR.pdf
25 es 3082 JOSÉ ENCONTRANDO A SUS HERMANOS El Encuentro De José Con Sus Hermanos Joseph Meeting His Brethren 56-1230 https://sjc1.vultrobjects.com/directus/3177c56b-c77a-4058-8fd6-6f603f261ee6.pdf 3177c56b-c77a-4058-8fd6-6f603f261ee6 3177c56b-c77a-4058-8fd6-6f603f261ee6.pdf SPN56-1230 Joseph Meeting His Brethren VGR.pdf
26 es 3089 DIOS CUMPLE SU PALABRA Dios Cumple Su Palabra God Keeps His Word 57-0120E https://sjc1.vultrobjects.com/directus/4bb1a34f-d2aa-48b4-b3f7-c8848ba2e253.pdf 4bb1a34f-d2aa-48b4-b3f7-c8848ba2e253 4bb1a34f-d2aa-48b4-b3f7-c8848ba2e253.pdf SPN57-0120E God Keeps His Word VGR.pdf
27 es 3122 EL ENTIERRO La Sepultura The Entombment 57-0420 https://sjc1.vultrobjects.com/directus/eea0aaaf-6b64-4809-910c-a13b7db3ecb8.pdf eea0aaaf-6b64-4809-910c-a13b7db3ecb8 eea0aaaf-6b64-4809-910c-a13b7db3ecb8.pdf SPN57-0420 The Entombment VGR.pdf
28 es 3124 EL GRAN Y PODEROSO CONQUISTADOR El Gran Y Poderoso Conquistador The Great And Mighty Conqueror 57-0421S https://sjc1.vultrobjects.com/directus/ece27df6-d82b-4761-80cb-5d108b2ca3e3.pdf ece27df6-d82b-4761-80cb-5d108b2ca3e3 ece27df6-d82b-4761-80cb-5d108b2ca3e3.pdf SPN57-0421S The Great And Mighty Conqueror VGR.pdf
29 es 3153 MEMORIALES Memoriales De Dios Probados Por El Tiempo Time-Tested Memorials Of God 57-0818 https://sjc1.vultrobjects.com/directus/e567b033-518b-4844-9957-f3e15456f963.pdf e567b033-518b-4844-9957-f3e15456f963 e567b033-518b-4844-9957-f3e15456f963.pdf SPN57-0818 Time-Tested Memorials Of God VGR.pdf
30 es 3154 HEBREOS, CAPÍTULO UNO Hebreos, Capítulo Uno Hebrews, Chapter One 57-0821 https://sjc1.vultrobjects.com/directus/1ce988d8-6438-47f5-a374-2a7b2ba212bc.pdf 1ce988d8-6438-47f5-a374-2a7b2ba212bc 1ce988d8-6438-47f5-a374-2a7b2ba212bc.pdf SPN57-0821 Hebrews Chapter One VGR.pdf
31 es 3158 Hebreos, Capítulo Cuatro Hebrews, Chapter Four 57-0901E https://sjc1.vultrobjects.com/directus/a35b0181-f8e4-4ad9-9bcf-3aabaf9d0fc7.pdf a35b0181-f8e4-4ad9-9bcf-3aabaf9d0fc7 a35b0181-f8e4-4ad9-9bcf-3aabaf9d0fc7.pdf SPN57-0901E Hebrews Chapter Four VGR.pdf
32 es 3159 HEBREOS Hebreos, Capítulo Tres Hebrews, Chapter Three 57-0901M https://sjc1.vultrobjects.com/directus/1c78fb42-3e53-4862-a2fc-eceaae781d19.pdf 1c78fb42-3e53-4862-a2fc-eceaae781d19 1c78fb42-3e53-4862-a2fc-eceaae781d19.pdf SPN57-0901M Hebrews Chapter Three VGR.pdf
33 es 3161 HEBREOS 6, PARTE I / HEBREOS, CAPÍTULO 5 y 6, PARTE I Hebreos, Capítulos Cinco Y Seis #1 Hebrews, Chapter Five And Six #1 57-0908M https://sjc1.vultrobjects.com/directus/b33933c8-88be-4407-a2ae-48cea0cdf892.pdf b33933c8-88be-4407-a2ae-48cea0cdf892 b33933c8-88be-4407-a2ae-48cea0cdf892.pdf SPN57-0908M Hebrews Chapter Five And Six 1 VGR.pdf
34 es 3162 HEBREOS, CAPÍTULO SIETE, PARTE I Hebreos, Capítulo Siete #1 Hebrews, Chapter Seven #1 57-0915E https://sjc1.vultrobjects.com/directus/f6ea8411-b95f-4268-8006-6700f3ea6f0c.pdf f6ea8411-b95f-4268-8006-6700f3ea6f0c f6ea8411-b95f-4268-8006-6700f3ea6f0c.pdf SPN57-0915E Hebrews Chapter Seven 1 VGR.pdf
35 es 3164 HEBREOS, CAPÍTULO SIETE, PARTE II Hebreos, Capítulo Siete #2 Hebrews, Chapter Seven #2 57-0922E https://sjc1.vultrobjects.com/directus/1f5fea61-473d-402c-94b4-1e0c257ef3a5.pdf 1f5fea61-473d-402c-94b4-1e0c257ef3a5 1f5fea61-473d-402c-94b4-1e0c257ef3a5.pdf SPN57-0922E Hebrews Chapter Seven 2 VGR.pdf
36 es 3167 PREGUNTAS Y RESPUESTAS DE HEBREOS, PARTE II / HEBREOS, CAPÍTULO DOS / HEBREOS, PARTE II (Libro Conducta, orden y doctrina de la Iglesia) Preguntas Y Respuestas Hebreos, Parte II Questions And Answers On Hebrews Part II 57-1002 https://sjc1.vultrobjects.com/directus/652472d0-df71-4a4f-b2d9-b5e5b977eed6.pdf 652472d0-df71-4a4f-b2d9-b5e5b977eed6 652472d0-df71-4a4f-b2d9-b5e5b977eed6.pdf SPN57-1002 Questions And Answers On Hebrews 2 VGR.pdf
37 es 3168 PREGUNTAS Y RESPUESTAS SOBRE HEBREOS / HEBREOS, PARTE III (Libro Conducta, orden y doctrina de la Iglesia) Preguntas Y Respuestas Hebreos, Parte III Questions And Answers On Hebrews Part III 57-1006 https://sjc1.vultrobjects.com/directus/e9597bd9-c672-4679-b866-f85a87e438b2.pdf e9597bd9-c672-4679-b866-f85a87e438b2 e9597bd9-c672-4679-b866-f85a87e438b2.pdf SPN57-1006 Questions And Answers On Hebrews 3 VGR.pdf
38 es 3174 LA GRAN LUZ QUE RESPLANDECE La Gran Luz Resplandeciente The Great Shining Light 57-1222 https://sjc1.vultrobjects.com/directus/48ced731-e880-41b1-92d9-3034b0b8abe9.pdf 48ced731-e880-41b1-92d9-3034b0b8abe9 48ced731-e880-41b1-92d9-3034b0b8abe9.pdf SPN57-1222 The Great Shining Light VGR.pdf
39 es 3186 TORRE DE BABEL La Unidad De La Unión The Oneness Of Unity 58-0128 https://sjc1.vultrobjects.com/directus/b67ea9c9-8bdb-472f-a02c-8f45225d1ea8.pdf b67ea9c9-8bdb-472f-a02c-8f45225d1ea8 b67ea9c9-8bdb-472f-a02c-8f45225d1ea8.pdf SPN58-0128 The Oneness Of Unity VGR.pdf
40 es 3216 LA EVIDENCIA DE LA RESURRECCIÓN La Evidencia De La Resurrección The Evidence Of The Resurrection 58-0406E https://sjc1.vultrobjects.com/directus/f008f2f3-9e0f-4a1f-af9e-c2dd4578059f.pdf f008f2f3-9e0f-4a1f-af9e-c2dd4578059f f008f2f3-9e0f-4a1f-af9e-c2dd4578059f.pdf SPN58-0406E The Evidence Of The Resurrection VGR.pdf
41 es 3248 POR LA FE, MOISÉS Por La Fe, Moisés By Faith, Moses 58-0720M https://sjc1.vultrobjects.com/directus/ba45c195-8954-45a2-b1c4-9babd10a246a.pdf ba45c195-8954-45a2-b1c4-9babd10a246a ba45c195-8954-45a2-b1c4-9babd10a246a.pdf SPN58-0720M By Faith Moses VGR.pdf
42 es 3250 LA SIMIENTE DE LA SERPIENTE La Simiente De La Serpiente The Serpent's Seed 58-0928E https://sjc1.vultrobjects.com/directus/87349ad1-22f9-42e2-8ffe-d1393ec10305.pdf 87349ad1-22f9-42e2-8ffe-d1393ec10305 87349ad1-22f9-42e2-8ffe-d1393ec10305.pdf SPN58-0928E The Serpents Seed VGR.pdf
43 es 3254 MIRANDO LO QUE NO SE VE Mirando Lo Invisible Looking At The Unseen 58-1003 https://sjc1.vultrobjects.com/directus/a0e5e15b-35de-49e9-9692-7327dafa283d.pdf a0e5e15b-35de-49e9-9692-7327dafa283d a0e5e15b-35de-49e9-9692-7327dafa283d.pdf SPN58-1003 Looking At The Unseen VGR.pdf
44 es 3257 ESCUCHAD SU VOZ Escuchad Su Voz Hear His Voice 58-1005M https://sjc1.vultrobjects.com/directus/a1e631a0-811d-4177-8571-35d988d71797.pdf a1e631a0-811d-4177-8571-35d988d71797 a1e631a0-811d-4177-8571-35d988d71797.pdf SPN58-1005M Hear His Voice VGR.pdf
45 es 3259 EL RAPTO SECRETO DE LA IGLESIA La Repentina Partida Secreta De La Iglesia The Sudden, Secret Going Away Of The Church 58-1012 https://sjc1.vultrobjects.com/directus/dec4ddb0-cc3d-4704-86b0-8bf14ad0dfd7.pdf dec4ddb0-cc3d-4704-86b0-8bf14ad0dfd7 dec4ddb0-cc3d-4704-86b0-8bf14ad0dfd7.pdf SPN58-1012 The Sudden Secret Going Away Of The Church VGR.pdf
46 es 3260 GUARDA, ¿QUÉ DE LA NOCHE? Guarda, ¿qué de la noche? Watchman, What Of The Night? 58-1130 https://sjc1.vultrobjects.com/directus/0622af2e-b3a2-40f7-b60f-d83baa7fbf67.pdf 0622af2e-b3a2-40f7-b60f-d83baa7fbf67 0622af2e-b3a2-40f7-b60f-d83baa7fbf67.pdf SPN58-1130 Watchman What Of The Night VGR.pdf
47 es 3264 ESTÉN CIERTOS DE DIOS Estén Ciertos De Dios Be Certain Of God 59-0125 https://sjc1.vultrobjects.com/directus/bfde8fca-96f7-4cfb-a91c-e05034de83bc.pdf bfde8fca-96f7-4cfb-a91c-e05034de83bc bfde8fca-96f7-4cfb-a91c-e05034de83bc.pdf SPN59-0125 Be Certain Of God VGR.pdf
48 es 3267 ¿QUÉ HACES AQUÍ? ¿Qué Haces Aquí? What Does Thou Here? 59-0301E https://sjc1.vultrobjects.com/directus/0b0ebaa2-4973-415a-a860-f37e138e6d0b.pdf 0b0ebaa2-4973-415a-a860-f37e138e6d0b 0b0ebaa2-4973-415a-a860-f37e138e6d0b.pdf SPN59-0301E What Does Thou Here VGR.pdf
49 es 3271 VIVIENDO, MURIENDO, ENTERRADO, LEVANTÁNDOSE Y VINIENDO Viviendo, Muriendo, Sepultado, Resucitando, Viniendo Living, Dying, Buried, Rising, Coming 59-0329S https://sjc1.vultrobjects.com/directus/55fadb62-28f5-4a1b-a1c9-e06af025bbc6.pdf 55fadb62-28f5-4a1b-a1c9-e06af025bbc6 55fadb62-28f5-4a1b-a1c9-e06af025bbc6.pdf SPN59-0329S Living Dying Buried Rising Coming VGR.pdf
50 es 3291 LA HISTORIA DE MI VIDA La Historia De Mi Vida My Life Story 59-0419A https://sjc1.vultrobjects.com/directus/b123b65f-097e-4092-bd54-909014f572f6.pdf b123b65f-097e-4092-bd54-909014f572f6 b123b65f-097e-4092-bd54-909014f572f6.pdf SPN59-0419A My Life Story VGR.pdf
51 es 3297 ¿QUIÉN ES ESTE? ¿Quién es Este? Who Is This? 59-0510E https://sjc1.vultrobjects.com/directus/f08dd594-de25-4a33-8e56-44dc9eaaffc9.pdf f08dd594-de25-4a33-8e56-44dc9eaaffc9 f08dd594-de25-4a33-8e56-44dc9eaaffc9.pdf SPN59-0510E Who Is This VGR.pdf
52 es 3299 IMÁGENES DE CRISTO Imágenes De Cristo Images Of Christ 59-0525 https://sjc1.vultrobjects.com/directus/10fd8c13-8b45-4021-91a5-73e2090518de.pdf 10fd8c13-8b45-4021-91a5-73e2090518de 10fd8c13-8b45-4021-91a5-73e2090518de.pdf SPN59-0525 Images Of Christ VGR.pdf
53 es 3306 PREGUNTAS Y RESPUESTAS Preguntas Y Respuestas Questions And Answers 59-0628E https://sjc1.vultrobjects.com/directus/23c1f7a9-9867-4ea5-8eb2-b5e7e43df29a.pdf 23c1f7a9-9867-4ea5-8eb2-b5e7e43df29a 23c1f7a9-9867-4ea5-8eb2-b5e7e43df29a.pdf SPN59-0628E Questions And Answers VGR.pdf
54 es 3307 UNA IGLESIA ENGAÑADA POR EL MUNDO Una Iglesia Engañada Por El Mundo A Deceived Church, By The World 59-0628M https://sjc1.vultrobjects.com/directus/a56ec95f-55c7-4111-86c5-40cbbb64555a.pdf a56ec95f-55c7-4111-86c5-40cbbb64555a a56ec95f-55c7-4111-86c5-40cbbb64555a.pdf SPN59-0628M A Deceived Church By The World VGR.pdf
55 es 3313 UNA TOTAL LIBERACIÓN Una Liberación Total A Total Deliverance 59-0712 https://sjc1.vultrobjects.com/directus/d7a23123-587c-4ff3-940f-847b32d1ef00.pdf d7a23123-587c-4ff3-940f-847b32d1ef00 d7a23123-587c-4ff3-940f-847b32d1ef00.pdf SPN59-0712 A Total Deliverance VGR.pdf
56 es 3317 DISCERNIENDO EL CUERPO DEL SEÑOR Discerniendo El Cuerpo Del Señor Discerning The Body Of The Lord 59-0812 https://sjc1.vultrobjects.com/directus/cb2df0e5-6e5b-4153-9c60-63a907a0c56e.pdf cb2df0e5-6e5b-4153-9c60-63a907a0c56e cb2df0e5-6e5b-4153-9c60-63a907a0c56e.pdf SPN59-0812 Discerning The Body Of The Lord VGR.pdf
57 es 3326 POSEYENDO LAS PUERTAS DEL ENEMIGO Poseyendo Las Puertas Del Enemigo Possessing The Enemy's Gates 59-1108 https://sjc1.vultrobjects.com/directus/af26d6ba-85fb-4db3-b5de-2f213d2a0274.pdf af26d6ba-85fb-4db3-b5de-2f213d2a0274 af26d6ba-85fb-4db3-b5de-2f213d2a0274.pdf SPN59-1108 Possessing The Enemys Gates VGR.pdf
58 es 3338 ¿QUÉ ES EL ESPÍRITU SANTO? ¿Qué Es El Espíritu Santo? What Is The Holy Ghost? 59-1216 https://sjc1.vultrobjects.com/directus/1ce2af54-5720-4a57-a77b-eddbbffad0f5.pdf 1ce2af54-5720-4a57-a77b-eddbbffad0f5 1ce2af54-5720-4a57-a77b-eddbbffad0f5.pdf SPN59-1216 What Is The Holy Ghost VGR.pdf
59 es 3339 ¿PARA QUÉ FUE DADO EL ESPÍRITU SANTO? ¿Para Qué Fue Dado El Espíritu Santo? What Was The Holy Ghost Given For? 59-1217 https://sjc1.vultrobjects.com/directus/e542f99a-8373-4eb0-b222-eac95b66f79b.pdf e542f99a-8373-4eb0-b222-eac95b66f79b e542f99a-8373-4eb0-b222-eac95b66f79b.pdf SPN59-1217 What Was The Holy Ghost Given For VGR.pdf
60 es 3340 PREGUNTAS Y RESPUESTAS SOBRE EL ESPÍRITU SANTO (Libro Conducta, orden y doctrina de la Iglesia) Preguntas Y Respuestas Sobre El Espíritu Santo Questions And Answers On The Holy Ghost 59-1219 https://sjc1.vultrobjects.com/directus/bd0a3044-d08d-4f59-853a-5156f1cd1dce.pdf bd0a3044-d08d-4f59-853a-5156f1cd1dce bd0a3044-d08d-4f59-853a-5156f1cd1dce.pdf SPN59-1219 Questions And Answers On The Holy Ghost VGR.pdf
61 es 3343 PREGUNTAS Y RESPUESTAS (Libro Conducta, orden y doctrina de la iglesia) Preguntas Y Respuestas Questions And Answers 59-1223 https://sjc1.vultrobjects.com/directus/c9f1b0dd-7490-447c-82c0-277cecf74b40.pdf c9f1b0dd-7490-447c-82c0-277cecf74b40 c9f1b0dd-7490-447c-82c0-277cecf74b40.pdf SPN59-1223 Questions And Answers VGR.pdf
62 es 3352 ESCUCHANDO, RECONOCIENDO Y ACTUANDO / OYENDO, RECONOCIENDO, ACTUANDO EN LA PALABRA DE DIOS Escuchando, Reconociendo, Actuando Según La Palabra De Dios Hearing, Recognizing, Acting On The Word Of God 60-0221 https://sjc1.vultrobjects.com/directus/f6da40e6-6e96-4811-a85a-c05a91f8c3b0.pdf f6da40e6-6e96-4811-a85a-c05a91f8c3b0 f6da40e6-6e96-4811-a85a-c05a91f8c3b0.pdf SPN60-0221 Hearing Recognizing Acting On The Word Of God VGR.pdf
63 es 3354 LA TEMPESTAD QUE SE APROXIMA La Tempestad Que Se Aproxima The Oncoming Storm 60-0229 https://sjc1.vultrobjects.com/directus/4d39edfb-9815-44f7-82fe-b66a118d2f73.pdf 4d39edfb-9815-44f7-82fe-b66a118d2f73 4d39edfb-9815-44f7-82fe-b66a118d2f73.pdf SPN60-0229 The Oncoming Storm VGR.pdf
64 es 3355 ÉL CUIDA DE TI Él Cuida De Ti He Careth For You 60-0301 https://sjc1.vultrobjects.com/directus/0efe6ee5-a196-447c-aa0a-eda84bc8741d.pdf 0efe6ee5-a196-447c-aa0a-eda84bc8741d 0efe6ee5-a196-447c-aa0a-eda84bc8741d.pdf SPN60-0301 He Careth For You VGR.pdf
65 es 3378 ADOPTADOS Adopción #1 Adoption #1 60-0515E https://sjc1.vultrobjects.com/directus/7d425ec0-e15f-49a9-9a18-860d3223f40a.pdf 7d425ec0-e15f-49a9-9a18-860d3223f40a 7d425ec0-e15f-49a9-9a18-860d3223f40a.pdf SPN60-0515E Adoption 1 VGR.pdf
66 es 3380 ADOPTADOS Adopción #2 Adoption #2 60-0518 https://sjc1.vultrobjects.com/directus/268560eb-d9ff-46a2-86cb-e803406c2288.pdf 268560eb-d9ff-46a2-86cb-e803406c2288 268560eb-d9ff-46a2-86cb-e803406c2288.pdf SPN60-0518 Adoption 2 VGR.pdf
67 es 3381 ADOPTADOS Adopción #4 Adoption #4 60-0522E https://sjc1.vultrobjects.com/directus/4a996a0e-772e-4f61-9add-41c07ac443b6.pdf 4a996a0e-772e-4f61-9add-41c07ac443b6 4a996a0e-772e-4f61-9add-41c07ac443b6.pdf SPN60-0522E Adoption 4 VGR.pdf
68 es 3382 ADOPTADOS / POSICIÓN EN CRISTO Adopción #3 Adoption #3 60-0522M https://sjc1.vultrobjects.com/directus/0434c94e-eba8-40bf-9547-3b7e21f3ea32.pdf 0434c94e-eba8-40bf-9547-3b7e21f3ea32 0434c94e-eba8-40bf-9547-3b7e21f3ea32.pdf SPN60-0522M Adoption 3 VGR.pdf
69 es 3416 AQUEL DÍA EN EL CALVARIO Aquel Día En El Calvario That Day On Calvary 60-0925 https://sjc1.vultrobjects.com/directus/ba2ee553-29e8-437a-aaf6-bdb61aa25bfa.pdf ba2ee553-29e8-437a-aaf6-bdb61aa25bfa ba2ee553-29e8-437a-aaf6-bdb61aa25bfa.pdf SPN60-0925 That Day On Calvary VGR.pdf
70 es 3418 EL PARIENTE REDENTOR El Pariente Redentor The Kinsman Redeemer 60-1002 https://sjc1.vultrobjects.com/directus/5cbbf20b-89e0-4052-b4ad-3d20ea13aaaf.pdf 5cbbf20b-89e0-4052-b4ad-3d20ea13aaaf 5cbbf20b-89e0-4052-b4ad-3d20ea13aaaf.pdf SPN60-1002 The Kinsman Redeemer VGR.pdf
71 es 3425 LA VISIÓN DE PATMOS (Libro de "LAS EDADES" sin editar) La Visión De Patmos The Patmos Vision 60-1204Eb https://sjc1.vultrobjects.com/directus/49ae4189-0ed5-4f85-9058-d3a369d325e9.pdf 49ae4189-0ed5-4f85-9058-d3a369d325e9 49ae4189-0ed5-4f85-9058-d3a369d325e9.pdf SPN60-1204E The Patmos Vision VGR.pdf
72 es 3436 EL REGALO ENVUELTO DE DIOS El Regalo Envuelto De Dios God's Wrapped Gift 60-1225 https://sjc1.vultrobjects.com/directus/8afa4dc5-a2d5-4f23-ac22-5c1d53e5fa9f.pdf 8afa4dc5-a2d5-4f23-ac22-5c1d53e5fa9f 8afa4dc5-a2d5-4f23-ac22-5c1d53e5fa9f.pdf SPN60-1225 Gods Wrapped Gift VGR.pdf
73 es 3437 REVELACIÓN, CAPÍTULO CUATRO, PARTE I (Libro de "LAS EDADES" sin editar) Apocalipsis Capítulo Cuatro, Parte I Revelation, Chapter Four Part I 60-1231 https://sjc1.vultrobjects.com/directus/e5d1712b-6af1-41fd-b83f-8b8f4b5f7fc3.pdf e5d1712b-6af1-41fd-b83f-8b8f4b5f7fc3 e5d1712b-6af1-41fd-b83f-8b8f4b5f7fc3.pdf SPN60-1231 Revelation Chapter Four 1 VGR.pdf
74 es 3438 REVELACIÓN, CAPÍTULO CUATRO, PARTE II (Libro de "LAS EDADES" sin editar) Apocalipsis Capítulo Cuatro, Parte II Revelation, Chapter Four Part II 61-0101 https://sjc1.vultrobjects.com/directus/f228e51c-57a0-47f6-82d9-382f10ad3651.pdf f228e51c-57a0-47f6-82d9-382f10ad3651 f228e51c-57a0-47f6-82d9-382f10ad3651.pdf SPN61-0101 Revelation Chapter Four 2 VGR.pdf
75 es 3439 REVELACIÓN, CAPÍTULO CUATRO, PARTE III (Libro de "LAS EDADES" sin editar) Apocalipsis Capítulo Cuatro, Parte III Revelation, Chapter Four Part III 61-0108 https://sjc1.vultrobjects.com/directus/533c0155-71ed-4123-a77f-99c988cc7258.pdf 533c0155-71ed-4123-a77f-99c988cc7258 533c0155-71ed-4123-a77f-99c988cc7258.pdf SPN61-0108 Revelation Chapter Four 3 VGR.pdf
76 es 3440 PREGUNTAS Y RESPUESTAS (Libro Conducta, orden y doctrina de la iglesia) Preguntas Y Respuestas Questions And Answers 61-0112 https://sjc1.vultrobjects.com/directus/2aaadac1-a468-4861-8e9e-2a740125ddb7.pdf 2aaadac1-a468-4861-8e9e-2a740125ddb7 2aaadac1-a468-4861-8e9e-2a740125ddb7.pdf SPN61-0112 Questions And Answers VGR.pdf
77 es 3471 MÁS ALLÁ DE LA CORTINA DEL TIEMPO Más Allá De La Cortina Del Tiempo Beyond The Curtain Of Time 61-0305 https://sjc1.vultrobjects.com/directus/979ec8b3-4614-42dd-aa58-fb82a8bca66f.pdf 979ec8b3-4614-42dd-aa58-fb82a8bca66f 979ec8b3-4614-42dd-aa58-fb82a8bca66f.pdf SPN61-0305 Beyond The Curtain Of Time VGR.pdf
78 es 3479 LA RELIGIÓN DE JEZABEL La Religión de Jezabel Jezebel Religion 61-0319 https://sjc1.vultrobjects.com/directus/af05f587-8824-4c1c-8ca5-a94ed73d0736.pdf af05f587-8824-4c1c-8ca5-a94ed73d0736 af05f587-8824-4c1c-8ca5-a94ed73d0736.pdf SPN61-0319 Jezebel Religion VGR.pdf
79 es 3492 LA DEIDAD EXPLICADA La Deidad Explicada The Godhead Explained 61-0425B https://sjc1.vultrobjects.com/directus/0c0c8414-cb84-4134-a4f4-49c27e9b302e.pdf 0c0c8414-cb84-4134-a4f4-49c27e9b302e 0c0c8414-cb84-4134-a4f4-49c27e9b302e.pdf SPN61-0425B The Godhead Explained VGR.pdf
80 es 3507 REVELACIÓN, CAPÍTULO CINCO, PARTE I (Libro de "LAS EDADES" sin editar) Apocalipsis Capítulo Cinco, Parte I Revelation, Chapter Five Part I 61-0611 https://sjc1.vultrobjects.com/directus/a16f632f-ccd4-43c0-8059-2c99351e9ed6.pdf a16f632f-ccd4-43c0-8059-2c99351e9ed6 a16f632f-ccd4-43c0-8059-2c99351e9ed6.pdf SPN61-0611 Revelation Chapter Five 1 VGR.pdf
81 es 3508 REVELACIÓN, CAPÍTULO CINCO, PARTE II (Libro de "LAS EDADES" sin editar) Apocalipsis Capítulo Cinco, Parte II Revelation, Chapter Five Part II 61-0618 https://sjc1.vultrobjects.com/directus/2b4bb390-384f-4a5b-8871-82d33865fef6.pdf 2b4bb390-384f-4a5b-8871-82d33865fef6 2b4bb390-384f-4a5b-8871-82d33865fef6.pdf SPN61-0618 Revelation Chapter Five 2 VGR.pdf
82 es 3511 EL PROPÓSITO SÉXTUPLE DE LA VISITA DE GABRIEL A DANIEL (Libro de Las Setenta Semanas de Daniel) El Propósito Séxtuple De La Visita De Gabriel A Daniel The Sixfold Purpose Of Gabriel's Visit To Daniel 61-0730E https://sjc1.vultrobjects.com/directus/8167924a-feb2-4048-9548-0e1b451fbf74.pdf 8167924a-feb2-4048-9548-0e1b451fbf74 8167924a-feb2-4048-9548-0e1b451fbf74.pdf SPN61-0730E The Sixfold Purpose Of Gabriels Visit To Daniel VGR.pdf
83 es 3512 LAS INSTRUCCIONES DE GABRIEL A DANIEL (Libro de Las Setenta Semanas de Daniel) Las Instrucciones De Gabriel A Daniel Gabriel's Instructions To Daniel 61-0730M https://sjc1.vultrobjects.com/directus/8db28f36-2ad3-4d8f-831f-c94b3ebd1697.pdf 8db28f36-2ad3-4d8f-831f-c94b3ebd1697 8db28f36-2ad3-4d8f-831f-c94b3ebd1697.pdf SPN61-0806 The Seventieth Week Of Daniel VGR (1).pdf
84 es 3513 LA SEMANA SETENTA DE DANIEL (Libro de Las Setenta Semanas de Daniel) La Semana Setenta De Daniel The Seventieth Week Of Daniel 61-0806 https://sjc1.vultrobjects.com/directus/087c0efd-5f59-4688-ba91-e27be194d613.pdf 087c0efd-5f59-4688-ba91-e27be194d613 087c0efd-5f59-4688-ba91-e27be194d613.pdf SPN61-0806 The Seventieth Week Of Daniel VGR.pdf
85 es 3516 EL MENSAJE DE GRACIA El Mensaje De Gracia The Message Of Grace 61-0827 https://sjc1.vultrobjects.com/directus/fba0bf10-6c8c-4fc8-9388-b0c5dfa80b5d.pdf fba0bf10-6c8c-4fc8-9388-b0c5dfa80b5d fba0bf10-6c8c-4fc8-9388-b0c5dfa80b5d.pdf SPN61-0827 The Message Of Grace VGR.pdf
86 es 3519 NOS CONVIENE CUMPLIR TODA JUSTICIA Nos Conviene Cumplir Toda Justicia It Becometh Us To Fulfil All Righteousness 61-1001M https://sjc1.vultrobjects.com/directus/f9779f78-f37f-4a5f-ad66-2a5b3cc7670a.pdf f9779f78-f37f-4a5f-ad66-2a5b3cc7670a f9779f78-f37f-4a5f-ad66-2a5b3cc7670a.pdf SPN61-1001M It Becometh Us To Fulfil All Righteousness VGR.pdf
87 es 3520 RESPETOS Respetos Respects 61-1015E https://sjc1.vultrobjects.com/directus/efca1200-dab6-45d4-ba15-4b58e470b7d0.pdf efca1200-dab6-45d4-ba15-4b58e470b7d0 efca1200-dab6-45d4-ba15-4b58e470b7d0.pdf SPN61-1015E Respects VGR.pdf
88 es 3523 UNA VERDADERA SEÑAL QUE HA SIDO PASADA POR ALTO Una Verdadera Señal Que Se Pasa Por Alto A True Sign That's Overlooked 61-1112 https://sjc1.vultrobjects.com/directus/d5d43dd5-f0d4-4fd9-9058-0e9d3eafaa9d.pdf d5d43dd5-f0d4-4fd9-9058-0e9d3eafaa9d d5d43dd5-f0d4-4fd9-9058-0e9d3eafaa9d.pdf SPN61-1112 A True Sign Thats Overlooked VGR.pdf
89 es 3524 PERFECTA FUERZA POR PERFECTA DEBILIDAD Perfecta Fuerza Por Perfecta Debilidad Perfect Strength By Perfect Weakness 61-1119 https://sjc1.vultrobjects.com/directus/8589c72d-8840-4dfc-b8ac-8aeee95665ac.pdf 8589c72d-8840-4dfc-b8ac-8aeee95665ac 8589c72d-8840-4dfc-b8ac-8aeee95665ac.pdf 61-1119-perfecta_fuerza_por_perfecta_debilidad.pdf
90 es 3525 PARADOJA Paradoja Paradox 61-1210 https://sjc1.vultrobjects.com/directus/b07ec5dc-e767-42ab-ac43-5e2982a80d37.pdf b07ec5dc-e767-42ab-ac43-5e2982a80d37 b07ec5dc-e767-42ab-ac43-5e2982a80d37.pdf SPN61-1210 Paradox VGR.pdf
91 es 3526 CRISTIANISMO CONTRA IDOLATRÍA Cristianismo Contra Idolatría Christianity Versus Idolatry 61-1217 https://sjc1.vultrobjects.com/directus/83e61fda-af9e-4282-88f1-ba3ad4b6db59.pdf 83e61fda-af9e-4282-88f1-ba3ad4b6db59 83e61fda-af9e-4282-88f1-ba3ad4b6db59.pdf SPN61-1217 Christianity Versus Idolatry VGR.pdf
92 es 3532 UN PENDÓN Una Insignia An Ensign 62-0119 https://sjc1.vultrobjects.com/directus/66c30aa6-312d-4d96-9995-5ce5646f9d33.pdf 66c30aa6-312d-4d96-9995-5ce5646f9d33 66c30aa6-312d-4d96-9995-5ce5646f9d33.pdf SPN62-0119 An Ensign VGR.pdf
93 es 3544 LA UNIDAD La Unidad Oneness 62-0211 https://sjc1.vultrobjects.com/directus/bef622a7-73d3-4ce2-bf32-b7f30ca663ac.pdf bef622a7-73d3-4ce2-bf32-b7f30ca663ac bef622a7-73d3-4ce2-bf32-b7f30ca663ac.pdf SPN62-0211 Oneness VGR.pdf
94 es 3546 LA MÁS GRANDE BATALLA JAMÁS PELEADA La Más Grande Batalla Jamás Peleada The Greatest Battle Ever Fought 62-0311 https://sjc1.vultrobjects.com/directus/e351158f-86f8-47e9-b3ce-2d7841057a34.pdf e351158f-86f8-47e9-b3ce-2d7841057a34 e351158f-86f8-47e9-b3ce-2d7841057a34.pdf SPN62-0311 The Greatest Battle Ever Fought VGR.pdf
95 es 3548 LA PALABRA HABLADA ES LA SIMIENTE ORIGINAL La Palabra Hablada Es La Simiente Original The Spoken Word Is The Original Seed 62-0318M https://sjc1.vultrobjects.com/directus/916b1155-1812-4ad2-9dbf-f5fc5bffc3e4.pdf 916b1155-1812-4ad2-9dbf-f5fc5bffc3e4 916b1155-1812-4ad2-9dbf-f5fc5bffc3e4.pdf SPN62-0318 The Spoken Word Is The Original Seed VGR.pdf
96 es 3550 SABIDURÍA CONTRA FE Sabiduría Contra Fe Wisdom Versus Faith 62-0401 https://sjc1.vultrobjects.com/directus/a6d463d4-a8de-4f73-a40b-ea46f0079d43.pdf a6d463d4-a8de-4f73-a40b-ea46f0079d43 a6d463d4-a8de-4f73-a40b-ea46f0079d43.pdf SPN62-0401 Wisdom Versus Faith VGR.pdf
97 es 3553 LA RESTAURACIÓN DEL ÁRBOL-NOVIA La Restauración Del Árbol Novia The Restoration Of The Bride Tree 62-0422 https://sjc1.vultrobjects.com/directus/6f6bb860-8f4d-4dde-961e-62a80830564c.pdf 6f6bb860-8f4d-4dde-961e-62a80830564c 6f6bb860-8f4d-4dde-961e-62a80830564c.pdf SPN62-0422 The Restoration Of The Bride Tree VGR.pdf
98 es 3554 POSEYENDO TODAS LAS COSAS Poseyendo Todas Las Cosas Possessing All Things 62-0506 https://sjc1.vultrobjects.com/directus/c3cdbba7-3cba-48e0-b4ae-6705619648ef.pdf c3cdbba7-3cba-48e0-b4ae-6705619648ef c3cdbba7-3cba-48e0-b4ae-6705619648ef.pdf SPN62-0506 Possessing All Things VGR.pdf
99 es 3555 DEJANDO ESCAPAR LA PRESIÓN Dejando Escapar La Presión Letting Off The Pressure 62-0513E https://sjc1.vultrobjects.com/directus/1601e05b-5d6d-474c-ade9-aece3b6e9c85.pdf 1601e05b-5d6d-474c-ade9-aece3b6e9c85 1601e05b-5d6d-474c-ade9-aece3b6e9c85.pdf SPN62-0513E Letting Off The Pressure VGR.pdf
100 es 3556 LA MANERA DE UN VERDADERO PROFETA La Manera De Un Verdadero Profeta De Dios The Way Of A True Prophet Of God 62-0513M https://sjc1.vultrobjects.com/directus/dcc99089-d2ac-4983-bf17-b8fe1c122381.pdf dcc99089-d2ac-4983-bf17-b8fe1c122381 dcc99089-d2ac-4983-bf17-b8fe1c122381.pdf SPN62-0513M The Way Of A True Prophet Of God VGR.pdf
101 es 3562 EL CONFLICTO ENTRE DIOS Y SATANÁS El Conflicto Entre Dios Y Satanás The Conflict Between God And Satan 62-0531 https://sjc1.vultrobjects.com/directus/83a00a43-7d32-4183-8d82-f13b06efbc6c.pdf 83a00a43-7d32-4183-8d82-f13b06efbc6c 83a00a43-7d32-4183-8d82-f13b06efbc6c.pdf SPN62-0531 The Conflict Between God And Satan VGR.pdf
102 es 3563 PONIÉNDONOS DEL LADO DE JESÚS Poniéndonos Al Lado De Jesús Taking Sides With Jesus 62-0601 https://sjc1.vultrobjects.com/directus/2c76e4f9-e5db-479e-b4b9-c7b08d9b3679.pdf 2c76e4f9-e5db-479e-b4b9-c7b08d9b3679 2c76e4f9-e5db-479e-b4b9-c7b08d9b3679.pdf SPN62-0601 Taking Sides With Jesus VGR.pdf
103 es 3564 EL EVANGELISMO DEL TIEMPO FINAL El Evangelismo En El Tiempo Del Fin The End-Time Evangelism 62-0603 https://sjc1.vultrobjects.com/directus/12d5758e-10c9-4e54-979c-28cc55eff224.pdf 12d5758e-10c9-4e54-979c-28cc55eff224 12d5758e-10c9-4e54-979c-28cc55eff224.pdf SPN62-0603 The End-Time Evangelism VGR.pdf
104 es 3587 JEHOVÁ PROVEERÁ Jehová-Jireh #1 Jehovah-Jireh #1 62-0705 https://sjc1.vultrobjects.com/directus/e3528ce7-bfec-46c0-921b-efd0e6e9c463.pdf e3528ce7-bfec-46c0-921b-efd0e6e9c463 e3528ce7-bfec-46c0-921b-efd0e6e9c463.pdf SPN62-0705 Jehovah-Jireh 1 VGR.pdf
105 es 3608 EL PRESENTE ESTADO DE MI MINISTERIO El Presente Estado De Mi Ministerio Present Stage Of My Ministry 62-0908 https://sjc1.vultrobjects.com/directus/16b45f13-5f47-4cf3-be09-a9de8d12da9c.pdf 16b45f13-5f47-4cf3-be09-a9de8d12da9c 16b45f13-5f47-4cf3-be09-a9de8d12da9c.pdf SPN62-0908 Present Stage Of My Ministry VGR.pdf
106 es 3609 EN SU PRESENCIA En Su Presencia In His Presence 62-0909E https://sjc1.vultrobjects.com/directus/4bb159c9-3bc0-4ae5-948e-c005d66def5b.pdf 4bb159c9-3bc0-4ae5-948e-c005d66def5b 4bb159c9-3bc0-4ae5-948e-c005d66def5b.pdf SPN62-0909E In His Presence VGR.pdf
107 es 3610 CUENTA REGRESIVA Cuenta Regresiva Countdown 62-0909M https://sjc1.vultrobjects.com/directus/0e42f9e6-90e0-4ddb-8017-6c890db28ada.pdf 0e42f9e6-90e0-4ddb-8017-6c890db28ada 0e42f9e6-90e0-4ddb-8017-6c890db28ada.pdf SPN62-0909M Countdown VGR.pdf
108 es 3611 LLAVE A LA PUERTA La Llave De La Puerta The Key To The Door 62-1007 https://sjc1.vultrobjects.com/directus/f0d50599-d35d-4bc7-8abc-5099d4421b94.pdf f0d50599-d35d-4bc7-8abc-5099d4421b94 f0d50599-d35d-4bc7-8abc-5099d4421b94.pdf SPN62-1007 The Key To The Door VGR.pdf
109 es 3612 La Influencia De Otro The Influence Of Another 62-1013 https://sjc1.vultrobjects.com/directus/06d9a3c0-898a-445a-af5b-6a04343ecb4d.pdf 06d9a3c0-898a-445a-af5b-6a04343ecb4d 06d9a3c0-898a-445a-af5b-6a04343ecb4d.pdf SPN62-1013 The Influence Of Another VGR.pdf
110 es 3613 UN GUÍA Un Guía A Guide 62-1014E https://sjc1.vultrobjects.com/directus/a767ddae-9491-43f1-96da-ffe8fbb77373.pdf a767ddae-9491-43f1-96da-ffe8fbb77373 a767ddae-9491-43f1-96da-ffe8fbb77373.pdf SPN62-1014E A Guide VGR.pdf
111 es 3614 LA ESTATURA DE UN VARÓN PERFECTO La Estatura De Un Varón Perfecto The Stature Of A Perfect Man 62-1014M https://sjc1.vultrobjects.com/directus/a46a3faf-e1af-497d-9299-9fd57ac00273.pdf a46a3faf-e1af-497d-9299-9fd57ac00273 a46a3faf-e1af-497d-9299-9fd57ac00273.pdf SPN62-1014M The Stature Of A Perfect Man VGR.pdf
112 es 3617 NOMBRES BLASFEMOS Nombres Blasfemos Blasphemous Names 62-1104M https://sjc1.vultrobjects.com/directus/c8eb72b7-5ba2-4528-b90f-4c98aa6fccad.pdf c8eb72b7-5ba2-4528-b90f-4c98aa6fccad c8eb72b7-5ba2-4528-b90f-4c98aa6fccad.pdf SPN62-1104M Blasphemous Names VGR.pdf
113 es 3618 ¿POR QUÉ ESTOY EN CONTRA DE LA RELIGIÓN ORGANIZADA? El Porqué Estoy En Contra De La Religión Organizada Why I'm Against Organized Religion 62-1111E https://sjc1.vultrobjects.com/directus/83754067-b8f7-4888-b4c6-5726be44e947.pdf 83754067-b8f7-4888-b4c6-5726be44e947 83754067-b8f7-4888-b4c6-5726be44e947.pdf SPN62-1111E Why Im Against Organized Religion VGR.pdf
114 es 3619 DEDICACIÓN Dedicación Dedication 62-1111M https://sjc1.vultrobjects.com/directus/d03f863b-0591-4b59-959b-2a0d0f026b50.pdf d03f863b-0591-4b59-959b-2a0d0f026b50 d03f863b-0591-4b59-959b-2a0d0f026b50.pdf SPN62-1111M Dedication VGR.pdf
115 es 3628 REPROCHE POR CAUSA DE LA PALABRA El Oprobio Por La Causa De La Palabra The Reproach For The Cause Of The Word 62-1223 https://sjc1.vultrobjects.com/directus/a9a29047-7c5e-4fc8-8d5f-7bcd359e7f30.pdf a9a29047-7c5e-4fc8-8d5f-7bcd359e7f30 a9a29047-7c5e-4fc8-8d5f-7bcd359e7f30.pdf SPN62-1223 The Reproach For The Cause Of The Word VGR.pdf
116 es 3629 SEÑORES, ¿ES ESTE EL TIEMPO? Señor, ¿Es Esta La Señal Del Fin? Is This The Sign Of The End, Sir? 62-1230E https://sjc1.vultrobjects.com/directus/411f8c8e-cdc7-43a8-87f5-40a637d96258.pdf 411f8c8e-cdc7-43a8-87f5-40a637d96258 411f8c8e-cdc7-43a8-87f5-40a637d96258.pdf SPN62-1230E Is This The Sign Of The End Sir VGR.pdf
117 es 3630 EL ABSOLUTO El Absoluto Absolute 62-1230M https://sjc1.vultrobjects.com/directus/07cdc6df-cb45-4819-9287-163cd59008f8.pdf 07cdc6df-cb45-4819-9287-163cd59008f8 07cdc6df-cb45-4819-9287-163cd59008f8.pdf SPN62-1230M Absolute VGR.pdf
118 es 3636 ACEPTANDO LA MANERA PROVISTA POR DIOS EN EL TIEMPO DEL FIN Aceptando El Camino Provisto Por Dios En El Tiempo Del Fin Accepting God's Provided Way At The End Time 63-0115 https://sjc1.vultrobjects.com/directus/13dfe103-7765-43dd-a5b6-b31c1d8a1b6e.pdf 13dfe103-7765-43dd-a5b6-b31c1d8a1b6e 13dfe103-7765-43dd-a5b6-b31c1d8a1b6e.pdf SPN63-0115 Accepting Gods Provided Way At The End Time VGR.pdf
119 es 3637 EL MENSAJERO DEL ATARDECER El Mensajero De La Tarde The Evening Messenger 63-0116 https://sjc1.vultrobjects.com/directus/4c6861b8-682d-4f4b-9249-ea91dbf09668.pdf 4c6861b8-682d-4f4b-9249-ea91dbf09668 4c6861b8-682d-4f4b-9249-ea91dbf09668.pdf SPN63-0116 The Evening Messenger VGR.pdf
120 es 3639 EL ESPÍRITU DE VERDAD Espíritu De Verdad Spirit Of Truth 63-0118 https://sjc1.vultrobjects.com/directus/2452c522-23d5-4515-8a41-75665da501aa.pdf 2452c522-23d5-4515-8a41-75665da501aa 2452c522-23d5-4515-8a41-75665da501aa.pdf SPN63-0118 Spirit Of Truth VGR.pdf
121 es 3641 SOLAMENTE UNA VEZ MÁS, SEÑOR Solamente Una Vez Más, Señor Just One More Time, Lord 63-0120E https://sjc1.vultrobjects.com/directus/eaa8d3fc-03f5-4a36-9d8f-f9da9b3e796b.pdf eaa8d3fc-03f5-4a36-9d8f-f9da9b3e796b eaa8d3fc-03f5-4a36-9d8f-f9da9b3e796b.pdf SPN63-0120E Just One More Time Lord VGR.pdf
122 es 3647 EL ABSOLUTO Un Absoluto An Absolute 63-0127 https://sjc1.vultrobjects.com/directus/e182c4e6-fa99-4234-bebb-abfa551a2f0d.pdf e182c4e6-fa99-4234-bebb-abfa551a2f0d e182c4e6-fa99-4234-bebb-abfa551a2f0d.pdf SPN63-0127 An Absolute VGR.pdf
123 es 3660 DIOS OCULTÁNDOSE EN SIMPLICIDAD Dios Ocultándose En Simplicidad God Hiding Himself In Simplicity 63-0412E https://sjc1.vultrobjects.com/directus/a6c219a0-e439-4630-9ccb-e2076b47e310.pdf a6c219a0-e439-4630-9ccb-e2076b47e310 a6c219a0-e439-4630-9ccb-e2076b47e310.pdf SPN63-0412E God Hiding Himself In Simplicity VGR.pdf
124 es 3661 EL MUNDO SE ESTÁ CAYENDO A PEDAZOS El Mundo Se Está Cayendo A Pedazos The World Is Falling Apart 63-0412M https://sjc1.vultrobjects.com/directus/38031c48-d857-45be-9fa2-a0c9a77ffe94.pdf 38031c48-d857-45be-9fa2-a0c9a77ffe94 38031c48-d857-45be-9fa2-a0c9a77ffe94.pdf SPN63-0412M The World Is Falling Apart VGR.pdf
125 es 3662 DÍA DE VICTORIA Día De Victoria Victory Day 63-0421 https://sjc1.vultrobjects.com/directus/9e1fbcec-d69f-44f4-9654-b58b7186eaaa.pdf 9e1fbcec-d69f-44f4-9654-b58b7186eaaa 9e1fbcec-d69f-44f4-9654-b58b7186eaaa.pdf SPN63-0421 Victory Day VGR.pdf
126 es 3669 CONFERENCIAS Conferencias Conferences 63-0608 https://sjc1.vultrobjects.com/directus/72dfb79b-e319-4bc2-90cc-eaf2ad14fc1f.pdf 72dfb79b-e319-4bc2-90cc-eaf2ad14fc1f 72dfb79b-e319-4bc2-90cc-eaf2ad14fc1f.pdf SPN63-0608 Conferences VGR.pdf
127 es 3670 LA DESTELLANTE LUZ ROJA DE LA SEÑAL DE SU VENIDA La Destellante Luz Roja De La Señal De Su Venida The Flashing Red Light Of The Sign Of His Coming 63-0623E https://sjc1.vultrobjects.com/directus/4f837491-da58-48ec-ba09-4fbdc1b05fc9.pdf 4f837491-da58-48ec-ba09-4fbdc1b05fc9 4f837491-da58-48ec-ba09-4fbdc1b05fc9.pdf SPN63-0623E The Flashing Red Light Of The Sign Of His Coming VGR.pdf
128 es 3671 PARADO EN LA BRECHA Parado En La Brecha Standing In The Gap 63-0623M https://sjc1.vultrobjects.com/directus/bbccf3a1-8ee0-4e68-91e8-becad625f5b5.pdf bbccf3a1-8ee0-4e68-91e8-becad625f5b5 bbccf3a1-8ee0-4e68-91e8-becad625f5b5.pdf SPN63-0623M Standing In The Gap VGR.pdf
129 es 3677 EL TERCER ÉXODO El Tercer Éxodo The Third Exodus 63-0630M https://sjc1.vultrobjects.com/directus/37bb0384-961c-4baa-9103-891b72ca64c5.pdf 37bb0384-961c-4baa-9103-891b72ca64c5 37bb0384-961c-4baa-9103-891b72ca64c5.pdf SPN63-0630M The Third Exodus VGR.pdf
130 es 3679 YO ACUSO A ESTA GENERACIÓN La Acusación The Indictment 63-0707M https://sjc1.vultrobjects.com/directus/0bccfe9b-e135-4466-aaf1-6d92dcfc7ebe.pdf 0bccfe9b-e135-4466-aaf1-6d92dcfc7ebe 0bccfe9b-e135-4466-aaf1-6d92dcfc7ebe.pdf SPN63-0707M The Indictment VGR.pdf
131 es 3681 ¿POR QUÉ CLAMAS? ¡HABLA! ¿Por Qué Clamas? ¡Di! Why Cry? Speak! 63-0714M https://sjc1.vultrobjects.com/directus/b8522fdf-3212-413e-b3e6-a2d4b1190c13.pdf b8522fdf-3212-413e-b3e6-a2d4b1190c13 b8522fdf-3212-413e-b3e6-a2d4b1190c13.pdf SPN63-0714M Why Cry Speak VGR.pdf
132 es 3682 PABLO, PRISIONERO DE CRISTO Un Prisionero A Prisoner 63-0717 https://sjc1.vultrobjects.com/directus/6fc5e05d-8005-4a76-b91a-b8f6c202151b.pdf 6fc5e05d-8005-4a76-b91a-b8f6c202151b 6fc5e05d-8005-4a76-b91a-b8f6c202151b.pdf SPN63-0717 A Prisoner VGR.pdf
133 es 3684 ADVERTENCIA, LUEGO EL JUICIO Dios No Llama A Un Hombre A Juicio Sin Primero Advertirle God Doesn't Call Man To Judgment Without First Warning Him 63-0724 https://sjc1.vultrobjects.com/directus/e99440cd-2639-4feb-b364-3a15485a80fa.pdf e99440cd-2639-4feb-b364-3a15485a80fa e99440cd-2639-4feb-b364-3a15485a80fa.pdf SPN63-0724 God Doesnt Call Man To Judgment Without First Warning Him VGR.pdf
134 es 3685 CRISTO ES EL MISTERIO DE DIOS REVELADO Cristo Es El Misterio De Dios Revelado Christ Is The Mystery Of God Revealed 63-0728 https://sjc1.vultrobjects.com/directus/826f7c47-be7e-4c6e-9e6f-8e78553df219.pdf 826f7c47-be7e-4c6e-9e6f-8e78553df219 826f7c47-be7e-4c6e-9e6f-8e78553df219.pdf SPN63-0728 Christ Is The Mystery Of God Revealed VGR.pdf
135 es 3689 INVERSIONES Inversiones Investments 63-0803B https://sjc1.vultrobjects.com/directus/f1945a11-ab07-4afc-8276-0b6dfab35257.pdf f1945a11-ab07-4afc-8276-0b6dfab35257 f1945a11-ab07-4afc-8276-0b6dfab35257.pdf SPN63-0803B Investments VGR.pdf
136 es 3690 INFLUENCIA Influencia Influence 63-0803E https://sjc1.vultrobjects.com/directus/13e511fb-f15d-4656-bd1e-37459be428bf.pdf 13e511fb-f15d-4656-bd1e-37459be428bf 13e511fb-f15d-4656-bd1e-37459be428bf.pdf SPN63-0803E Influence VGR.pdf
137 es 3693 TIEMPO DE UNIÓN Y SEÑAL El Tiempo de Unión y Señal The Uniting Time And Sign 63-0818 https://sjc1.vultrobjects.com/directus/a3eb254b-3d36-420f-9e2f-61f0491dcf0e.pdf a3eb254b-3d36-420f-9e2f-61f0491dcf0e a3eb254b-3d36-420f-9e2f-61f0491dcf0e.pdf SPN63-0818 The Uniting Time And Sign VGR.pdf
138 es 3694 LA FE PERFECTA La Fe Perfecta Perfect Faith 63-0825E https://sjc1.vultrobjects.com/directus/ab503e08-5b73-4097-80b4-4d266b6c2d29.pdf ab503e08-5b73-4097-80b4-4d266b6c2d29 ab503e08-5b73-4097-80b4-4d266b6c2d29.pdf SPN63-0825E Perfect Faith VGR.pdf
139 es 3695 ¿CÓMO PUEDO VENCER? ¿Cómo Puedo Vencer? How Can I Overcome? 63-0825M https://sjc1.vultrobjects.com/directus/8c08ce8a-9b0f-4245-86ad-1e15657203d5.pdf 8c08ce8a-9b0f-4245-86ad-1e15657203d5 8c08ce8a-9b0f-4245-86ad-1e15657203d5.pdf SPN63-0825M How Can I Overcome VGR.pdf
140 es 3696 DESESPERACIÓN Desesperaciones Desperations 63-0901E https://sjc1.vultrobjects.com/directus/0ce0e3aa-4981-4ea7-a27e-b74f5d1ad852.pdf 0ce0e3aa-4981-4ea7-a27e-b74f5d1ad852 0ce0e3aa-4981-4ea7-a27e-b74f5d1ad852.pdf SPN63-0901E Desperations VGR.pdf
141 es 3697 LA SEÑAL La Señal Token 63-0901M https://sjc1.vultrobjects.com/directus/f8816545-bb27-45c0-aea3-d8dd4fbbe7c7.pdf f8816545-bb27-45c0-aea3-d8dd4fbbe7c7 f8816545-bb27-45c0-aea3-d8dd4fbbe7c7.pdf SPN63-0901M Token VGR.pdf
142 es 3700 EL QUE ESTÁ EN VOSOTROS El Que Está En Vosotros He That Is In You 63-1110E https://sjc1.vultrobjects.com/directus/18929342-f9a1-409b-9ecd-458d4349c831.pdf 18929342-f9a1-409b-9ecd-458d4349c831 18929342-f9a1-409b-9ecd-458d4349c831.pdf SPN63-1110E He That Is In You VGR.pdf
143 es 3701 ALMAS ENCARCELADAS Almas Encarceladas Hoy Souls That Are In Prison Now 63-1110M https://sjc1.vultrobjects.com/directus/787085d4-4789-49ff-85e6-70cb49bfe7b9.pdf 787085d4-4789-49ff-85e6-70cb49bfe7b9 787085d4-4789-49ff-85e6-70cb49bfe7b9.pdf SPN63-1110M Souls That Are In Prison Now VGR.pdf
144 es 3710 TRES CLASES DE CREYENTES Tres Clases de Creyentes Three Kinds Of Believers 63-1124E https://sjc1.vultrobjects.com/directus/f31bf21f-ffe3-4c32-ad83-e1b49ac0fa56.pdf f31bf21f-ffe3-4c32-ad83-e1b49ac0fa56 f31bf21f-ffe3-4c32-ad83-e1b49ac0fa56.pdf SPN63-1124E Three Kinds Of Believers VGR.pdf
145 es 3711 ¿QUÉ HARÉ CON JESÚS LLAMADO EL CRISTO? ¿Qué Haré De Jesús, Llamado El Cristo? What Shall I Do With Jesus Called Christ? 63-1124M https://sjc1.vultrobjects.com/directus/b833bb13-3569-4e3e-9246-7adb84911208.pdf b833bb13-3569-4e3e-9246-7adb84911208 b833bb13-3569-4e3e-9246-7adb84911208.pdf SPN63-1124M What Shall I Do With Jesus Called Christ VGR.pdf
146 es 3721 ¿POR QUÉ PEQUEÑA BELÉN? ¿Por Qué La Pequeña Belén? Why Little Bethlehem 63-1214 https://sjc1.vultrobjects.com/directus/4c0ae3e5-2d4e-4998-8f79-9b7579a9334a.pdf 4c0ae3e5-2d4e-4998-8f79-9b7579a9334a 4c0ae3e5-2d4e-4998-8f79-9b7579a9334a.pdf SPN63-1214 Why Little Bethlehem VGR.pdf
147 es 3723 LOS DONES DE DIOS SIEMPRE HALLAN SUS LUGARES Los Dones De Dios Siempre Encuentran Sus Lugares God's Gifts Always Find Their Places 63-1222 https://sjc1.vultrobjects.com/directus/92863ea9-9987-4183-ae2d-c80ce2e62774.pdf 92863ea9-9987-4183-ae2d-c80ce2e62774 92863ea9-9987-4183-ae2d-c80ce2e62774.pdf SPN63-1222 Gods Gifts Always Find Their Places VGR.pdf
148 es 3725 MIRE A JESÚS Apartando La Mirada Hacia Jesús Look Away To Jesus 63-1229E https://sjc1.vultrobjects.com/directus/3d34d966-a19f-481e-afbf-82e2f64c4069.pdf 3d34d966-a19f-481e-afbf-82e2f64c4069 3d34d966-a19f-481e-afbf-82e2f64c4069.pdf SPN63-1229E Look Away To Jesus VGR.pdf
149 es 3726 HE AQUÍ UN HOMBRE QUE PUEDE ENCENDER LA LUZ Hay Un Hombre Aquí Que Puede Encender La Luz There Is A Man Here That Can Turn On The Light 63-1229M https://sjc1.vultrobjects.com/directus/485b9c54-31ea-4ffc-bda2-5670c57d4c9c.pdf 485b9c54-31ea-4ffc-bda2-5670c57d4c9c 485b9c54-31ea-4ffc-bda2-5670c57d4c9c.pdf SPN63-1229M There Is A Man Here That Can Turn On The Light VGR.pdf
150 es 3727 SHALOM Shalom Shalom 64-0112 https://sjc1.vultrobjects.com/directus/4d5739f9-65c3-4ac4-be1b-42a32dd5e58e.pdf 4d5739f9-65c3-4ac4-be1b-42a32dd5e58e 4d5739f9-65c3-4ac4-be1b-42a32dd5e58e.pdf SPN64-0112 Shalom VGR.pdf
151 es 3728 SHALOM Shalom Shalom 64-0119 https://sjc1.vultrobjects.com/directus/59eb8251-fc0c-4fa3-ab53-f1b3a8c01e73.pdf 59eb8251-fc0c-4fa3-ab53-f1b3a8c01e73 59eb8251-fc0c-4fa3-ab53-f1b3a8c01e73.pdf SPN64-0119 Shalom VGR.pdf
152 es 3732 ENCENDED LA LUZ Enciende La Luz Turn On The Light 64-0125 https://sjc1.vultrobjects.com/directus/45b7ab05-201e-43e8-8372-1718375c7181.pdf 45b7ab05-201e-43e8-8372-1718375c7181 45b7ab05-201e-43e8-8372-1718375c7181.pdf SPN64-0125 Turn On The Light VGR.pdf
153 es 3734 DIOS ES SU PROPIO INTÉRPRETE Dios Es Su Propio Intérprete God Is His Own Interpreter 64-0205 https://sjc1.vultrobjects.com/directus/cce4ad03-f19a-4eef-bad4-0c9efa99d554.pdf cce4ad03-f19a-4eef-bad4-0c9efa99d554 cce4ad03-f19a-4eef-bad4-0c9efa99d554.pdf SPN64-0205 God Is His Own Interpreter VGR.pdf
154 es 3737 EL PATRIARCA ABRAHAM El Patriarca Abraham The Patriarch Abraham 64-0207 https://sjc1.vultrobjects.com/directus/2d4f10c7-8498-4a5c-851d-59d79c3007ee.pdf 2d4f10c7-8498-4a5c-851d-59d79c3007ee 2d4f10c7-8498-4a5c-851d-59d79c3007ee.pdf SPN64-0207 The Patriarch Abraham VGR.pdf
155 es 3740 CUANDO LE FUERON ABIERTOS LOS OJOS, LE RECONOCIERON Cuando Les Fueron Abiertos Los Ojos, Le Reconocieron When Their Eyes Were Opened, They Knew Him 64-0212 https://sjc1.vultrobjects.com/directus/371d4c39-aa71-4047-8ea1-340c92baca60.pdf 371d4c39-aa71-4047-8ea1-340c92baca60 371d4c39-aa71-4047-8ea1-340c92baca60.pdf SPN64-0212 When Their Eyes Were Opened They Knew Him VGR.pdf
156 es 3742 LA VOZ DE LA SEÑAL La Voz De La Señal The Voice Of The Sign 64-0214 https://sjc1.vultrobjects.com/directus/07c7eb76-7180-485f-a380-23670e64baa4.pdf 07c7eb76-7180-485f-a380-23670e64baa4 07c7eb76-7180-485f-a380-23670e64baa4.pdf SPN64-0214 The Voice Of The Sign VGR.pdf
157 es 3746 PERSEVERANTE Perseverante Perseverant 64-0305 https://sjc1.vultrobjects.com/directus/668149f6-e35b-459e-a408-ddb7a29be262.pdf 668149f6-e35b-459e-a408-ddb7a29be262 668149f6-e35b-459e-a408-ddb7a29be262.pdf SPN64-0305 Perseverant VGR.pdf
158 es 3750 DIOS ES IDENTIFICADO POR SUS CARACTERÍSTICAS Dios Es Identificado Por Sus Características God Is Identified By His Characteristics 64-0311 https://sjc1.vultrobjects.com/directus/f563cb18-7212-4303-a941-3a776ac7f600.pdf f563cb18-7212-4303-a941-3a776ac7f600 f563cb18-7212-4303-a941-3a776ac7f600.pdf SPN64-0311 God Is Identified By His Characteristics VGR.pdf
159 es 3760 PROBANDO ANTE PUERTAS / PROBANDO ANTE PUERTAS PROMETIDAS Poseyendo La Puerta Del Enemigo Después De La Prueba Possessing The Gate Of The Enemy After Trial 64-0322 https://sjc1.vultrobjects.com/directus/6bd84e62-0475-4e07-a499-7d8b6d779341.pdf 6bd84e62-0475-4e07-a499-7d8b6d779341 6bd84e62-0475-4e07-a499-7d8b6d779341.pdf SPN64-0322 Possessing The Gate Of The Enemy After Trial VGR.pdf
160 es 3762 JEHOVÁ-JIREH Jehová-Jireh #1 Jehovah-Jireh #1 64-0402 https://sjc1.vultrobjects.com/directus/b6f25742-84a1-43f5-9ab3-9cb1215cacf5.pdf b6f25742-84a1-43f5-9ab3-9cb1215cacf5 b6f25742-84a1-43f5-9ab3-9cb1215cacf5.pdf SPN64-0402 Jehovah-Jireh 1 VGR.pdf
161 es 3767 SEÑALES ESCRITURALES DEL TIEMPO Señales Escriturales Del Tiempo Scriptural Signs Of The Time 64-0410 https://sjc1.vultrobjects.com/directus/7138c5ae-fa56-4afa-92cd-8e44b30872d5.pdf 7138c5ae-fa56-4afa-92cd-8e44b30872d5 7138c5ae-fa56-4afa-92cd-8e44b30872d5.pdf SPN64-0410 Scriptural Signs Of The Time VGR.pdf
162 es 3770 CRISTO IDENTIFICÁNDOSE EL MISMO / CRISTO IDENTIFICADO EL MISMO Cristo Se Identifica Igual En Todas Las Generaciones Christ Is Identified The Same In All Generations 64-0415 https://sjc1.vultrobjects.com/directus/8337e99b-1da7-4087-abcd-121e3e9cb56a.pdf 8337e99b-1da7-4087-abcd-121e3e9cb56a 8337e99b-1da7-4087-abcd-121e3e9cb56a.pdf SPN64-0415 Christ Is Identified The Same In All Generations VGR.pdf
163 es 3775 EL JUICIO EN LA CORTE El Juicio The Trial 64-0419 https://sjc1.vultrobjects.com/directus/31f73cc2-c45d-47f4-8b62-310865d53943.pdf 31f73cc2-c45d-47f4-8b62-310865d53943 31f73cc2-c45d-47f4-8b62-310865d53943.pdf SPN64-0419 The Trial VGR.pdf
164 es 3778 El Raro The Oddball 64-0614E https://sjc1.vultrobjects.com/directus/14ed3cf3-95e9-4929-be48-52004589d0da.pdf 14ed3cf3-95e9-4929-be48-52004589d0da 14ed3cf3-95e9-4929-be48-52004589d0da.pdf SPN64-0614E The Oddball VGR.pdf
165 es 3779 DEVELANDO A DIOS Develando A Dios The Unveiling Of God 64-0614M https://sjc1.vultrobjects.com/directus/2d57a9a7-6168-447c-9e1e-296d6e1a2912.pdf 2d57a9a7-6168-447c-9e1e-296d6e1a2912 2d57a9a7-6168-447c-9e1e-296d6e1a2912.pdf SPN64-0614M The Unveiling Of God VGR.pdf
166 es 3782 PERSEVERANTE Perseverante Perseverant 64-0619 https://sjc1.vultrobjects.com/directus/dc860062-a7e4-40dc-83e7-eaed32a549e5.pdf dc860062-a7e4-40dc-83e7-eaed32a549e5 dc860062-a7e4-40dc-83e7-eaed32a549e5.pdf SPN64-0619 Perseverant VGR.pdf
167 es 3785 EL JUICIO El Juicio The Trial 64-0621 https://sjc1.vultrobjects.com/directus/0f34554b-fdab-4050-af04-3c386e03d3fc.pdf 0f34554b-fdab-4050-af04-3c386e03d3fc 0f34554b-fdab-4050-af04-3c386e03d3fc.pdf SPN64-0621 The Trial VGR.pdf
168 es 3786 EL PODEROSO DIOS DEVELADO El Poderoso Dios Develado Ante Nosotros The Mighty God Unveiled Before Us 64-0629 https://sjc1.vultrobjects.com/directus/0727a1b6-9bb5-4b87-86d7-1c6394e087ab.pdf 0727a1b6-9bb5-4b87-86d7-1c6394e087ab 0727a1b6-9bb5-4b87-86d7-1c6394e087ab.pdf SPN64-0629 The Mighty God Unveiled Before Us VGR.pdf
169 es 3787 OBRA MAESTRA La Obra Maestra The Masterpiece 64-0705 https://sjc1.vultrobjects.com/directus/461c2d43-f356-4449-bcc9-bdd1dfa6f0ea.pdf 461c2d43-f356-4449-bcc9-bdd1dfa6f0ea 461c2d43-f356-4449-bcc9-bdd1dfa6f0ea.pdf SPN64-0705 The Masterpiece VGR.pdf
170 es 3789 YENDO MÁS ALLÁ DEL CAMPO Yendo Más Allá Del Campamento Going Beyond The Camp 64-0719E https://sjc1.vultrobjects.com/directus/d912e05a-fe77-49a3-b3e3-81e1b8ad2f31.pdf d912e05a-fe77-49a3-b3e3-81e1b8ad2f31 d912e05a-fe77-49a3-b3e3-81e1b8ad2f31.pdf SPN64-0719E Going Beyond The Camp VGR.pdf
171 es 3790 FIESTA DE LAS TROMPETAS La Fiesta De Las Trompetas The Feast Of The Trumpets 64-0719M https://sjc1.vultrobjects.com/directus/cc738870-341e-4c3c-9cba-49d2d23452e8.pdf cc738870-341e-4c3c-9cba-49d2d23452e8 cc738870-341e-4c3c-9cba-49d2d23452e8.pdf SPN64-0719M The Feast Of The Trumpets VGR.pdf
172 es 3791 CISTERNAS ROTAS Cisternas Rotas Broken Cisterns 64-0726E https://sjc1.vultrobjects.com/directus/201a7390-584b-4ee9-b54f-a1f475374831.pdf 201a7390-584b-4ee9-b54f-a1f475374831 201a7390-584b-4ee9-b54f-a1f475374831.pdf SPN64-0726E Broken Cisterns VGR.pdf
173 es 3792 RECONOCIENDO EL DÍA Y SU MENSAJE Reconociendo Tu Día Y Su Mensaje Recognizing Your Day And Its Message 64-0726M https://sjc1.vultrobjects.com/directus/6c9b5fad-9824-4e7e-b9fd-3b122601b7da.pdf 6c9b5fad-9824-4e7e-b9fd-3b122601b7da 6c9b5fad-9824-4e7e-b9fd-3b122601b7da.pdf SPN64-0726M Recognizing Your Day And Its Message VGR.pdf
174 es 3793 FUTURO HOGAR DEL NOVIO CELESTIAL Y DE LA NOVIA TERRENAL El Futuro Hogar Del Novio Celestial Y La Novia Terrenal The Future Home Of The Heavenly Bridegroom And The Earthly Bride 64-0802 https://sjc1.vultrobjects.com/directus/f79eff8e-943e-4a04-9c0f-baee5862a17f.pdf f79eff8e-943e-4a04-9c0f-baee5862a17f f79eff8e-943e-4a04-9c0f-baee5862a17f.pdf SPN64-0802 The Future Home Of The Heavenly Bridegroom And The Earthly Bride VGR.pdf
175 es 3794 PROBANDO SU PALABRA Probando Su Palabra Proving His Word 64-0816 https://sjc1.vultrobjects.com/directus/5484b51d-5c52-460d-a711-1b432167286e.pdf 5484b51d-5c52-460d-a711-1b432167286e 5484b51d-5c52-460d-a711-1b432167286e.pdf SPN64-0816 Proving His Word VGR.pdf
176 es 3795 PREGUNTAS Y RESPUESTAS Preguntas Y Respuestas #2 Questions And Answers #2 64-0823E https://sjc1.vultrobjects.com/directus/bee86bde-fed0-4f52-a841-4b8b27a0b868.pdf bee86bde-fed0-4f52-a841-4b8b27a0b868 bee86bde-fed0-4f52-a841-4b8b27a0b868.pdf SPN64-0823E Questions And Answers 2 VGR.pdf
177 es 3796 Preguntas Y Respuestas #1 Questions And Answers #1 64-0823M https://sjc1.vultrobjects.com/directus/962666c5-e540-460a-a021-9fc6dcec4529.pdf 962666c5-e540-460a-a021-9fc6dcec4529 962666c5-e540-460a-a021-9fc6dcec4529.pdf SPN64-0823M Questions And Answers 1 VGR.pdf
178 es 3797 PREGUNTAS Y RESPUESTAS Preguntas Y Respuestas #4 Questions And Answers #4 64-0830E https://sjc1.vultrobjects.com/directus/793c41bc-e82f-4f9b-bf62-f5656d79b033.pdf 793c41bc-e82f-4f9b-bf62-f5656d79b033 793c41bc-e82f-4f9b-bf62-f5656d79b033.pdf SPN64-0830E Questions And Answers 4 VGR.pdf
179 es 3798 PREGUNTAS Y RESPUESTAS Preguntas Y Respuestas #3 Questions And Answers #3 64-0830M https://sjc1.vultrobjects.com/directus/ee0ea82c-aecf-4bda-be8f-8e91721602ff.pdf ee0ea82c-aecf-4bda-be8f-8e91721602ff ee0ea82c-aecf-4bda-be8f-8e91721602ff.pdf 64-0830M-preguntas_y_respuestas-4.pdf
180 es 3799 OBRA MAESTRA La Obra Maestra De Dios Identificada The Identified Masterpiece Of God 64-1205 https://sjc1.vultrobjects.com/directus/27cccd07-199a-49d1-a5a6-84359ae99a49.pdf 27cccd07-199a-49d1-a5a6-84359ae99a49 27cccd07-199a-49d1-a5a6-84359ae99a49.pdf SPN64-1205 The Identified Masterpiece Of God VGR.pdf
181 es 3800 TIEMPO DE LA SIEGA El Tiempo De La Siega The Harvest Time 64-1212 https://sjc1.vultrobjects.com/directus/2d6d180b-2b91-429e-99ec-59290a71d08b.pdf 2d6d180b-2b91-429e-99ec-59290a71d08b 2d6d180b-2b91-429e-99ec-59290a71d08b.pdf SPN64-1212 The Harvest Time VGR.pdf
182 es 3801 “¡POR QUÉ TUVIERON QUE SER PASTORES! ¡Por Qué Tuvo Que Ser Pastor! Why It Had To Be Shepherd 64-1221 https://sjc1.vultrobjects.com/directus/d1385014-ab49-482a-afc6-b40720f26eff.pdf d1385014-ab49-482a-afc6-b40720f26eff d1385014-ab49-482a-afc6-b40720f26eff.pdf SPN64-1221 Why It Had To Be Shepherd VGR.pdf
183 es 3802 ¿QUIÉN DICEN USTEDES QUE ES ESTE? ¿Quién Dicen Ustedes Que Es Este? Who Do You Say This Is? 64-1227 https://sjc1.vultrobjects.com/directus/31e14a91-2fdb-405f-b25d-fa1e02b12284.pdf 31e14a91-2fdb-405f-b25d-fa1e02b12284 31e14a91-2fdb-405f-b25d-fa1e02b12284.pdf SPN64-1227 Who Do You Say This Is VGR.pdf
184 es 3805 LA SIMIENTE DE DISCREPANCIA La Simiente De Discrepancia The Seed Of Discrepancy 65-0118 https://sjc1.vultrobjects.com/directus/f6feed40-5a31-458e-b128-607259786bde.pdf f6feed40-5a31-458e-b128-607259786bde f6feed40-5a31-458e-b128-607259786bde.pdf SPN65-0118 The Seed Of Discrepancy VGR.pdf
185 es 3806 EL DIOS QUE ES RICO EN MISERICORDIA El Dios Que Es Rico En Misericordia The God Who Is Rich In Mercy 65-0119 https://sjc1.vultrobjects.com/directus/f657172b-028b-43d1-aa42-3a168c5613ae.pdf f657172b-028b-43d1-aa42-3a168c5613ae f657172b-028b-43d1-aa42-3a168c5613ae.pdf SPN65-0119 The God Who Is Rich In Mercy VGR.pdf
186 es 3807 NO TE APOYES EN TU PROPIO ENTENDIMIENTO No Te Apoyes En Tu Propia Prudencia Lean Not Unto Thy Own Understanding 65-0120 https://sjc1.vultrobjects.com/directus/08ab54ba-3af9-43d1-8a2a-f61da42b1010.pdf 08ab54ba-3af9-43d1-8a2a-f61da42b1010 08ab54ba-3af9-43d1-8a2a-f61da42b1010.pdf SPN65-0120 Lean Not Unto Thy Own Understanding VGR.pdf
187 es 3809 DOLORES DE PARTO Dolores De Parto Birth Pains 65-0124 https://sjc1.vultrobjects.com/directus/77eead95-93b1-412e-a84a-3867b49baf63.pdf 77eead95-93b1-412e-a84a-3867b49baf63 77eead95-93b1-412e-a84a-3867b49baf63.pdf SPN65-0124 Birth Pains VGR.pdf
188 es 3811 PUERTAS EN PUERTAS De Puertas Adentro Doors In Door 65-0206 https://sjc1.vultrobjects.com/directus/af21ae37-984e-4167-b846-92e2a7b00794.pdf af21ae37-984e-4167-b846-92e2a7b00794 af21ae37-984e-4167-b846-92e2a7b00794.pdf SPN65-0206 Doors In Door VGR.pdf
189 es 3813 LA SIMIENTE NO HEREDA CON LA PAJA La Semilla No Es Heredera Con La Cáscara The Seed Is Not Heir With The Shuck 65-0218 https://sjc1.vultrobjects.com/directus/ba2ffe0c-cadf-4c19-bd70-05481d93b23f.pdf ba2ffe0c-cadf-4c19-bd70-05481d93b23f ba2ffe0c-cadf-4c19-bd70-05481d93b23f.pdf SPN65-0218 The Seed Is Not Heir With The Shuck VGR.pdf
190 es 3814 HOY SE HA CUMPLIDO ESTA ESCRITURA Hoy Se Ha Cumplido Esta Escritura This Day This Scripture Is Fulfilled 65-0219 https://sjc1.vultrobjects.com/directus/dbdf9048-d013-4994-bfd0-ce8a7d1d2f5b.pdf dbdf9048-d013-4994-bfd0-ce8a7d1d2f5b dbdf9048-d013-4994-bfd0-ce8a7d1d2f5b.pdf SPN65-0219 This Day This Scripture Is Fulfilled VGR.pdf
191 es 3815 EL LUGAR ESCOGIDO POR DIOS PARA ADORAR El Lugar Escogido Por Dios Para La Adoración God's Chosen Place Of Worship 65-0220 https://sjc1.vultrobjects.com/directus/f1804034-96fd-4c8f-a160-9e7d27c6c79c.pdf f1804034-96fd-4c8f-a160-9e7d27c6c79c f1804034-96fd-4c8f-a160-9e7d27c6c79c.pdf SPN65-0220 Gods Chosen Place Of Worship VGR.pdf
192 es 3817 ¿QUIÉN ES ESTE MELQUISEDEC? ¿Quién Es Este Melquisedec? Who Is This Melchisedec? 65-0221E https://sjc1.vultrobjects.com/directus/0e58c972-067d-4e49-8574-a39278a9d79e.pdf 0e58c972-067d-4e49-8574-a39278a9d79e 0e58c972-067d-4e49-8574-a39278a9d79e.pdf SPN65-0221E Who Is This Melchisedec VGR.pdf
193 es 3818 DIVORCIO Y CASAMIENTO Casamiento Y Divorcio Marriage And Divorce 65-0221M https://sjc1.vultrobjects.com/directus/e931108f-f90b-4139-b3c7-b57f77a2d422.pdf e931108f-f90b-4139-b3c7-b57f77a2d422 e931108f-f90b-4139-b3c7-b57f77a2d422.pdf SPN65-0221M Marriage And Divorce VGR.pdf
194 es 3819 EL SELLO DE PASCUA El Sello De Pascua The Easter Seal 65-0410 https://sjc1.vultrobjects.com/directus/6fa83355-7418-4f8d-9f60-aba851f46cb1.pdf 6fa83355-7418-4f8d-9f60-aba851f46cb1 6fa83355-7418-4f8d-9f60-aba851f46cb1.pdf SPN65-0410 The Easter Seal VGR.pdf
195 es 3820 ¿CAMBIA DIOS SU MODO DE PENSAR? ¿Cambia Dios Su Modo De Pensar Con Respecto A Su Palabra? Does God Ever Change His Mind About His Word? 65-0418E https://sjc1.vultrobjects.com/directus/4aa96d0a-1270-482d-bbb1-052b00d8c109.pdf 4aa96d0a-1270-482d-bbb1-052b00d8c109 4aa96d0a-1270-482d-bbb1-052b00d8c109.pdf SPN65-0418E Does God Ever Change His Mind About His Word VGR.pdf
196 es 3821 YA SALIDO EL SOL Ya Salido El Sol It Is The Rising Of The Sun 65-0418M https://sjc1.vultrobjects.com/directus/40a0ae79-8a5f-4a59-8de6-3b276c19895d.pdf 40a0ae79-8a5f-4a59-8de6-3b276c19895d 40a0ae79-8a5f-4a59-8de6-3b276c19895d.pdf SPN65-0418M It Is The Rising Of The Sun VGR.pdf
197 es 3824 PROBANDO SU PALABRA Probando Su Palabra Proving His Word 65-0426 https://sjc1.vultrobjects.com/directus/6e3d57b9-3725-47f3-a013-0b1bfb690316.pdf 6e3d57b9-3725-47f3-a013-0b1bfb690316 6e3d57b9-3725-47f3-a013-0b1bfb690316.pdf SPN65-0426 Proving His Word VGR (1).pdf
198 es 3827 ESCOGIENDO UNA NOVIA Escogiendo Una Novia The Choosing Of A Bride 65-0429E https://sjc1.vultrobjects.com/directus/46bcd3a7-8057-4100-b12c-c5e5e606849f.pdf 46bcd3a7-8057-4100-b12c-c5e5e606849f 46bcd3a7-8057-4100-b12c-c5e5e606849f.pdf SPN65-0429E The Choosing Of A Bride VGR.pdf
199 es 3830 ALIMENTO ESPIRITUAL A SU DEBIDO TIEMPO Alimento Espiritual En Su Debido Tiempo Spiritual Food In Due Season 65-0718E https://sjc1.vultrobjects.com/directus/243a0371-e72c-4068-bee1-7ddefe0bd03f.pdf 243a0371-e72c-4068-bee1-7ddefe0bd03f 243a0371-e72c-4068-bee1-7ddefe0bd03f.pdf SPN65-0718E Spiritual Food In Due Season VGR.pdf
200 es 3831 HACIENDO UN SERVICIO A DIOS FUERA DE SU VOLUNTAD Tratando de Hacer Un Servicio A Dios Sin Ser La Voluntad De Dios Trying To Do God A Service Without Being The Will Of God 65-0718M https://sjc1.vultrobjects.com/directus/b359f0bc-c9cf-4787-936a-75144372b246.pdf b359f0bc-c9cf-4787-936a-75144372b246 b359f0bc-c9cf-4787-936a-75144372b246.pdf SPN65-0718M Trying To Do God A Service Without Being The Will Of God VGR.pdf
201 es 3832 ¿CUÁL ES LA ATRACCIÓN EN EL MONTE? ¿Cuál Es La Atracción En El Monte? What Is The Attraction On The Mountain? 65-0725E https://sjc1.vultrobjects.com/directus/fd392781-5533-4eb7-8be1-27ed51d15b2e.pdf fd392781-5533-4eb7-8be1-27ed51d15b2e fd392781-5533-4eb7-8be1-27ed51d15b2e.pdf SPN65-0725E What Is The Attraction On The Mountain VGR.pdf
202 es 3833 LOS UNGIDOS DE LOS ÚLTIMOS DÍAS Los Ungidos En El Tiempo Del Fin The Anointed Ones At The End Time 65-0725M https://sjc1.vultrobjects.com/directus/4940e959-8ab6-4158-8430-ccda9fbb7933.pdf 4940e959-8ab6-4158-8430-ccda9fbb7933 4940e959-8ab6-4158-8430-ccda9fbb7933.pdf SPN65-0725M The Anointed Ones At The End Time VGR.pdf
203 es 3835 EL DIOS DE ESTA EDAD PERVERSA El Dios De Esta Edad Perversa The God Of This Evil Age 65-0801M https://sjc1.vultrobjects.com/directus/af6a5a71-0287-421f-a378-bfc23e970bfd.pdf af6a5a71-0287-421f-a378-bfc23e970bfd af6a5a71-0287-421f-a378-bfc23e970bfd.pdf SPN65-0801M The God Of This Evil Age VGR.pdf
204 es 3836 Y NO SABÉIS Y No Lo Sabes And Knoweth It Not 65-0815 https://sjc1.vultrobjects.com/directus/20ca42b9-6a42-422f-8748-81474a8682be.pdf 20ca42b9-6a42-422f-8748-81474a8682be 20ca42b9-6a42-422f-8748-81474a8682be.pdf SPN65-0815 And Knoweth It Not VGR.pdf
205 es 3838 CRISTO ES REVELADO EN SU PROPIA PALABRA Cristo Es Revelado En Su Propia Palabra Christ Is Revealed In His Own Word 65-0822M https://sjc1.vultrobjects.com/directus/1d3472c1-1d70-4516-b914-7d5e1be013f1.pdf 1d3472c1-1d70-4516-b914-7d5e1be013f1 1d3472c1-1d70-4516-b914-7d5e1be013f1.pdf SPN65-0822M Christ Is Revealed In His Own Word VGR.pdf
206 es 3840 EL PODER DE DIOS PARA TRANSFORMAR El Poder De Dios Para Transformar God's Power To Transform 65-0911 https://sjc1.vultrobjects.com/directus/ecbcb749-aafe-4c5a-ad07-3db2f7eb3644.pdf ecbcb749-aafe-4c5a-ad07-3db2f7eb3644 ecbcb749-aafe-4c5a-ad07-3db2f7eb3644.pdf SPN65-0911 Gods Power To Transform VGR.pdf
207 es 3841 Sed Thirst 65-0919 https://sjc1.vultrobjects.com/directus/1e0b1535-d427-418d-b9b4-0ddbf166fdd4.pdf 1e0b1535-d427-418d-b9b4-0ddbf166fdd4 1e0b1535-d427-418d-b9b4-0ddbf166fdd4.pdf SPN65-0919 Thirst VGR.pdf
208 es 3845 LA UNIÓN INVISIBLE DE LA NOVIA DE CRISTO La Unión Invisible De La Novia De Cristo The Invisible Union Of The Bride Of Christ 65-1125 https://sjc1.vultrobjects.com/directus/60bf9fc8-bf73-4876-a3bc-2a65c21811fc.pdf 60bf9fc8-bf73-4876-a3bc-2a65c21811fc 60bf9fc8-bf73-4876-a3bc-2a65c21811fc.pdf SPN65-1125 The Invisible Union Of The Bride Of Christ VGR.pdf
209 es 3846 OBRAS ES FE EXPRESADA Obras Es La Fe Expresada Works Is Faith Expressed 65-1126 https://sjc1.vultrobjects.com/directus/163b4c79-ba96-41c7-b688-0546551488f0.pdf 163b4c79-ba96-41c7-b688-0546551488f0 163b4c79-ba96-41c7-b688-0546551488f0.pdf SPN65-1126 Works Is Faith Expressed VGR.pdf
210 es 3847 TRATANDO DE HACER UN SERVICIO SIN SER LA VOLUNTAD DE DIOS Tratando De Hacer Un Servicio A Dios Sin Ser La Voluntad De Dios Trying To Do God A Service Without It Being God's Will 65-1127B https://sjc1.vultrobjects.com/directus/c0025701-7095-4ea5-a9a2-77a2b5c6666a.pdf c0025701-7095-4ea5-a9a2-77a2b5c6666a c0025701-7095-4ea5-a9a2-77a2b5c6666a.pdf SPN65-1127B Trying To Do God A Service Without It Being Gods Will VGR.pdf
211 es 3848 YO HABÍA OÍDO PERO AHORA VEO Yo Había Escuchado Mas Ahora Veo I Have Heard But Now I See 65-1127E https://sjc1.vultrobjects.com/directus/81ade558-9f0d-464f-9c95-1361fe6fce11.pdf 81ade558-9f0d-464f-9c95-1361fe6fce11 81ade558-9f0d-464f-9c95-1361fe6fce11.pdf SPN65-1127E I Have Heard But Now I See VGR.pdf
212 es 3849 SOBRE LAS ALAS DE UNA BLANCA PALOMA En Las Alas De Una Paloma Blanca Como La Nieve On The Wings Of A Snow-White Dove 65-1128E https://sjc1.vultrobjects.com/directus/65c35c80-bd19-4104-8b21-244079e88e2b.pdf 65c35c80-bd19-4104-8b21-244079e88e2b 65c35c80-bd19-4104-8b21-244079e88e2b.pdf SPN65-1128E On The Wings Of A Snow-White Dove VGR.pdf
213 es 3850 EL ÚNICO LUGAR PROVISTO POR DIOS PARA ADORAR El Unico Lugar Provisto Por Dios Para La Adoración God's Only Provided Place Of Worship 65-1128M https://sjc1.vultrobjects.com/directus/82076e42-fcf4-44a7-ac0d-f82d47026a49.pdf 82076e42-fcf4-44a7-ac0d-f82d47026a49 82076e42-fcf4-44a7-ac0d-f82d47026a49.pdf SPN65-1128M Gods Only Provided Place Of Worship VGR.pdf
214 es 3851 EL RAPTO El Rapto The Rapture 65-1204 https://sjc1.vultrobjects.com/directus/40ee3d05-00e4-4c21-971e-bfc3677ab1df.pdf 40ee3d05-00e4-4c21-971e-bfc3677ab1df 40ee3d05-00e4-4c21-971e-bfc3677ab1df.pdf SPN65-1204 The Rapture VGR.pdf
215 es 3852 LAS COSAS QUE HAN DE SER Cosas Que Han De Ser Things That Are To Be 65-1205 https://sjc1.vultrobjects.com/directus/4e00dd1a-d926-4e8e-8503-5277c5e9b909.pdf 4e00dd1a-d926-4e8e-8503-5277c5e9b909 4e00dd1a-d926-4e8e-8503-5277c5e9b909.pdf SPN65-1205 Things That Are To Be VGR.pdf
216 es 3853 EVENTOS MODERNOS SON ACLARADOS POR PROFECÍA Eventos Modernos Son Aclarados Por Profecía Modern Events Are Made Clear By Prophecy 65-1206 https://sjc1.vultrobjects.com/directus/552eaa0c-17ca-477f-909a-59b27b411f55.pdf 552eaa0c-17ca-477f-909a-59b27b411f55 552eaa0c-17ca-477f-909a-59b27b411f55.pdf SPN65-1206 Modern Events Are Made Clear By Prophecy VGR.pdf
217 es 3854 LIDERATO Liderazgo Leadership 65-1207 https://sjc1.vultrobjects.com/directus/fedd8931-6b85-471c-85cc-874a7268cf9d.pdf fedd8931-6b85-471c-85cc-874a7268cf9d fedd8931-6b85-471c-85cc-874a7268cf9d.pdf SPN65-1207 Leadership VGR.pdf
218 es 3868 CINCO IDENTIFICACIONES DEFINITIVAS DE LA VERDADERA IGLESIA DEL DIOS VIVO Cinco Identificaciones Definitivas De La Verdadera Iglesia Del Dios Vivo Five Definite Identifications Of The True Church Of The Living God 60-0911E https://sjc1.vultrobjects.com/directus/b238a0c7-876d-4c08-9c12-4f37900b03c4.pdf b238a0c7-876d-4c08-9c12-4f37900b03c4 b238a0c7-876d-4c08-9c12-4f37900b03c4.pdf SPN60-0911E Five Definite Identifications Of The True Church Of The Living God VGR.pdf

View File

@ -1,16 +1 @@
#!/bin/sh ../he/bin/he
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../he/bin/he" "$@"
else
exec node "$basedir/../he/bin/he" "$@"
fi

View File

@ -1,16 +1 @@
#!/bin/sh ../mkdirp/bin/cmd.js
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../mkdirp/bin/cmd.js" "$@"
else
exec node "$basedir/../mkdirp/bin/cmd.js" "$@"
fi

View File

@ -1,16 +1 @@
#!/bin/sh ../mustache/bin/mustache
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../mustache/bin/mustache" "$@"
else
exec node "$basedir/../mustache/bin/mustache" "$@"
fi

View File

@ -1,16 +1 @@
#!/bin/sh ../sshpk/bin/sshpk-conv
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../sshpk/bin/sshpk-conv" "$@"
else
exec node "$basedir/../sshpk/bin/sshpk-conv" "$@"
fi

View File

@ -1,16 +1 @@
#!/bin/sh ../sshpk/bin/sshpk-sign
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../sshpk/bin/sshpk-sign" "$@"
else
exec node "$basedir/../sshpk/bin/sshpk-sign" "$@"
fi

View File

@ -1,16 +1 @@
#!/bin/sh ../sshpk/bin/sshpk-verify
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../sshpk/bin/sshpk-verify" "$@"
else
exec node "$basedir/../sshpk/bin/sshpk-verify" "$@"
fi

View File

@ -1,16 +1 @@
#!/bin/sh ../uuid/bin/uuid
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../uuid/bin/uuid" "$@"
else
exec node "$basedir/../uuid/bin/uuid" "$@"
fi

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,107 @@
import Typesense from "typesense";
import dayjs from "dayjs";
import { JSDOM } from "jsdom";
const { window } = new JSDOM();
let client = new Typesense.Client({
nodes: [
{
host: "searchts.carpa.com",
port: "443",
protocol: "https",
}
],
apiKey: "3KrmYlcirARCxG4AZPV5bnJgQD0qtoW0",
});
import fs from 'fs';
import readline from 'readline';
import { create } from "domain";
async function processJsonLines(filePath) {
const errors = [];
const stream = fs.createReadStream(filePath);
const rl = readline.createInterface({
input: stream,
crlfDelay: Infinity,
});
let lineCount = 0;
for await (const line of rl) {
lineCount = 0;
try {
// Parse the line as JSON
const data = JSON.parse(line);
//if( data.id != 62643 ) continue; // Skip until we find the specific ID
console.log('Processing: ', data.title);
const doc_id = await createDocument(data);
console.log('Document created with ID:', doc_id);
} catch (error) {
//console.error(`Error processing line ${line}:`, error);
let data = JSON.parse(line);
errors.push({ line: data.id, error: error.message });
}
//break;
}
console.log(`Finished processing. Total lines: ${lineCount}. Errors: ${errors.length}`);
if (errors.length > 0) {
console.log('Errors:', errors);
}
}
//processJsonLines('./input/activities_wp_ES.json');
processJsonLines('./input/conferences_wp_ES.json');
{
"date": 1779210000,
"files": [
{
"downloadname": "marcador_elsonador-cumpleJBP2026 copy.jpg",
"filename": "b7b145db-b3ae-4ade-bc07-0fd675ae1195.jpg",
"type": ""
}
],
"id": "1",
"images": [
{
"downloadname": "photo_2026-05-19_17-41-20.jpg",
"file": "995283e3-a798-48c9-9221-ae1edd4b2706.jpg"
}
],
"locale": "es",
"number": 1,
"slug": "marcador-el-sonador-cumpliendo-el-establecimiento-del-reino-judio",
"subtype": "marcador",
"thumbnail": "15f887a2-c18a-43d5-aa83-0313707aef22.png",
"title": "Marcador: El Soñador cumpliendo el establecimiento del Reino Judío",
"type": "material"
}
// Main function to create document in Typesense
async function createDocument(data){
let document = {
date: data.timestamp,
files: data.files,
id: data.id,
images: data.images,
locale: data.locale,
number: data.number,
slug: data.slug,
subtype: data.subtype,
thumbnail: data.thumbnail,
title: data.title,
type: data.type
};
let doc = await client.collections('print-materials').documents().upsert(document);
return doc.id;
}