From d69f513520dddaf0352b20f2b1d463c6785845ff Mon Sep 17 00:00:00 2001 From: Eric GT Date: Fri, 15 Oct 2021 16:06:27 -0400 Subject: [PATCH 1/8] prettify the statement for readability --- api/src/sql/fetch_latest.sql | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/api/src/sql/fetch_latest.sql b/api/src/sql/fetch_latest.sql index 7af3b8d..fcf3d16 100644 --- a/api/src/sql/fetch_latest.sql +++ b/api/src/sql/fetch_latest.sql @@ -38,6 +38,7 @@ WITH WHERE params.key = 'screen' ), + DEFAULT_SCREEN AS ( SELECT attribution_id, @@ -57,6 +58,7 @@ WITH WHERE params.key = 'firebase_screen' ) ), + LITERACY_DATA AS ( SELECT * @@ -72,6 +74,7 @@ WITH OR event_name = 'GamePlay') AND (device.advertising_id = @user_id OR user_pseudo_id = @user_id OR @user_id = '') ), + FILTERED_LIT_DATA AS ( SELECT `{{dataset}}.getValue`(params.value) as action, @@ -82,7 +85,9 @@ FILTERED_LIT_DATA AS ( WHERE params.key = "action" AND (params.value.string_value LIKE CONCAT(@event, '%') OR @event = '') -), SCREENS AS ( +), + + SCREENS AS ( SELECT `{{dataset}}.getValue`(params.value) as screen, action, @@ -102,6 +107,7 @@ FILTERED_LIT_DATA AS ( UNNEST(SCREENS.event_params) as params WHERE params.key = "label" ), + VALS AS ( SELECT action, @@ -113,6 +119,7 @@ VALS AS ( UNNEST(LABELS.event_params) as params WHERE params.key = "value" ) + SELECT APP_INITIALIZED.attribution_id, VALS.action, From 812233500965e8c8b64edb18ef2bf3f93cf266c3 Mon Sep 17 00:00:00 2001 From: Eric GT Date: Fri, 15 Oct 2021 16:06:44 -0400 Subject: [PATCH 2/8] deduplicate data prior to formatting --- api/src/api.js | 3 ++- api/src/helperClasses.js | 12 ++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/api/src/api.js b/api/src/api.js index 46bb9e1..59bb4d1 100644 --- a/api/src/api.js +++ b/api/src/api.js @@ -37,7 +37,8 @@ const getDataset = function (map, id, getHistoric) { function sendRows(res, rows, nextCursor) { const parser = new BigQueryParser(config.sourceMapping); - const resObj = parser.formatRowsToJson(rows); + const dedupe = parser.deduplicateData(rows); + const resObj = parser.formatRowsToJson(dedupe); return res.status(200).json({nextCursor, size: resObj.length, data: resObj}); } diff --git a/api/src/helperClasses.js b/api/src/helperClasses.js index f79d7a0..0c4940f 100644 --- a/api/src/helperClasses.js +++ b/api/src/helperClasses.js @@ -20,6 +20,18 @@ class BigQueryParser { constructor(mapping){ this.mapping = mapping; } +// https://stackoverflow.com/questions/2218999/how-to-remove-all-duplicates-from-an-array-of-objects +// this will only ever iterate over a max of 1000 rows, so it won't tank endpoint speed +// like totally reformatting the query to deduplicate all the data will + deduplicateData (rows) { + const dedupe = rows.filter((row, index) => { + const _row = JSON.stringify(row); + return index === rows.findIndex(obj => { + return JSON.stringify(obj) === _row; + }); + }); + return dedupe; + } formatRowsToJson (rows) { let resObj = rows.map((row) => { From 4e91512495528132992b683d80a80284db5c6045 Mon Sep 17 00:00:00 2001 From: Eric GT Date: Mon, 18 Oct 2021 10:04:51 -0400 Subject: [PATCH 3/8] add deduplication test coverage --- api/test/bigQueryParser.spec.js | 39 ++++++++++++++------------------- 1 file changed, 17 insertions(+), 22 deletions(-) diff --git a/api/test/bigQueryParser.spec.js b/api/test/bigQueryParser.spec.js index d03c39f..45610fb 100644 --- a/api/test/bigQueryParser.spec.js +++ b/api/test/bigQueryParser.spec.js @@ -195,30 +195,25 @@ describe('BigQueryHelper', () => { }); }); + describe('deduplicateData', () => { + it('should remove duplicate rows', () => { + const rows = fixtures.map((row) => {return row.row}); + console.log(rows); + const data = rows.concat(rows); + const result = bqParser.deduplicateData(data); + result.should.deep.equal(rows); + }); + it('should not change an array of unique objects', () => { + const rows = fixtures.map((row) => {return row.row}); + const result = bqParser.deduplicateData(rows); + result.should.deep.equal(rows); + }); + }); + describe('formatRowsToJson', () => { it('should parse data correctly', () => { - const rows = [ - fixtures[0].row, - fixtures[1].row, - fixtures[2].row, - fixtures[3].row, - fixtures[4].row, - fixtures[5].row, - fixtures[6].row, - fixtures[7].row, - fixtures[8].row - ]; - const expected = [ - fixtures[0].expected, - fixtures[1].expected, - fixtures[2].expected, - fixtures[3].expected, - fixtures[4].expected, - fixtures[5].expected, - fixtures[6].expected, - fixtures[7].expected, - fixtures[8].expected - ]; + const rows = fixtures.map((row) => {return row.row}); + const expected = fixtures.map((row) => {return row.expected}); const actual = bqParser.formatRowsToJson(rows); actual.should.deep.equal(expected); }); From 4cee29b909cd7edebfd7e3888c44534c84b648d7 Mon Sep 17 00:00:00 2001 From: Eric GT Date: Fri, 29 Oct 2021 13:16:15 -0400 Subject: [PATCH 4/8] refactor dedupe to work in linear time --- api/src/helperClasses.js | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/api/src/helperClasses.js b/api/src/helperClasses.js index 0c4940f..19ce6d8 100644 --- a/api/src/helperClasses.js +++ b/api/src/helperClasses.js @@ -24,13 +24,14 @@ class BigQueryParser { // this will only ever iterate over a max of 1000 rows, so it won't tank endpoint speed // like totally reformatting the query to deduplicate all the data will deduplicateData (rows) { - const dedupe = rows.filter((row, index) => { - const _row = JSON.stringify(row); - return index === rows.findIndex(obj => { - return JSON.stringify(obj) === _row; - }); + const map = {}; + rows.forEach((row) => { + const key = JSON.stringify(row); + if (!map[key]) { + map[key] = row; + } }); - return dedupe; + return Object.values(map); } formatRowsToJson (rows) { From bf6a8c36de829326588cb39edc29bc39c9d287b9 Mon Sep 17 00:00:00 2001 From: Eric GT Date: Mon, 13 Dec 2021 12:18:07 -0500 Subject: [PATCH 5/8] return generated uuid from BigQuery data --- api/src/helperClasses.js | 4 ++-- api/src/sql/fetch_latest.sql | 18 +++++++++++++----- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/api/src/helperClasses.js b/api/src/helperClasses.js index 19ce6d8..0a6d2b1 100644 --- a/api/src/helperClasses.js +++ b/api/src/helperClasses.js @@ -41,7 +41,7 @@ class BigQueryParser { app_id: row.app_package_name, ordered_id: row.event_timestamp, user: { - id: row.user_pseudo_id, + id: row.uuid? row.uuid : row.user_pseudo_id, metadata: { continent: row.geo.continent, country: row.geo.country, @@ -51,7 +51,7 @@ class BigQueryParser { ad_attribution: { source: this.getSource(row.attribution_id), data: { - advertising_id: row.device.advertising_id, + advertising_id: row.uuid? row.uuid : row.device.advertising_id, }, }, }, diff --git a/api/src/sql/fetch_latest.sql b/api/src/sql/fetch_latest.sql index fcf3d16..d51d0fe 100644 --- a/api/src/sql/fetch_latest.sql +++ b/api/src/sql/fetch_latest.sql @@ -13,25 +13,29 @@ WITH APP_INITIALIZED AS ( SELECT params.value.string_value as attribution_id, + props.value.string_value as uuid, CAST(event_timestamp as STRING) as val, "app_initialized" as action, "timestamp" as label, * EXCEPT(user_properties, key, value) FROM `{{dataset}}.events_*`, - UNNEST(event_params) AS params + UNNEST(event_params) AS params, + UNNEST(user_properties) AS props, WHERE _TABLE_SUFFIX BETWEEN '20210801' AND FORMAT_DATE('%Y%m%d', DATE_SUB(CURRENT_DATE(), INTERVAL 1 DAY)) AND event_name = 'app_initialized' - AND params.value.string_value = @ref_id OR @ref_id=''), + AND params.value.string_value = @ref_id OR @ref_id='') + AND props.key = 'uuid0' INIT_SCREEN AS ( SELECT attribution_id, + uuid, action, label, val, `{{dataset}}.getValue`(params.value) as screen, - * EXCEPT(attribution_id, val, action, label, event_params, key, value) + * EXCEPT(attribution_id, uuid val, action, label, event_params, key, value) FROM APP_INITIALIZED, UNNEST(APP_INITIALIZED.event_params) as params @@ -42,11 +46,12 @@ WITH DEFAULT_SCREEN AS ( SELECT attribution_id, + uuid, action, label, val, "Splash Screen" as screen, - * EXCEPT(attribution_id, val, action, label, event_params) + * EXCEPT(attribution_id, uuid, val, action, label, event_params) FROM APP_INITIALIZED WHERE @@ -78,12 +83,15 @@ WITH FILTERED_LIT_DATA AS ( SELECT `{{dataset}}.getValue`(params.value) as action, + props.value.string_value as uuid, * EXCEPT(key, value) FROM LITERACY_DATA, - UNNEST(LITERACY_DATA.event_params) as params + UNNEST(LITERACY_DATA.event_params) as params, + UNNEST(LITERACY_DATA.user_properties) as props, WHERE params.key = "action" + props.key = "uuid0" AND (params.value.string_value LIKE CONCAT(@event, '%') OR @event = '') ), From 7ea7222a34a6516612e0a301f77a45be42a5673d Mon Sep 17 00:00:00 2001 From: Eric GT Date: Mon, 3 Jan 2022 14:13:06 -0500 Subject: [PATCH 6/8] scrape uuid and profile from LogUserUUID event --- api/src/helperClasses.js | 4 +-- api/src/sql/fetch_latest.sql | 57 ++++++++++++++++++++++++--------- api/test/api.spec.js | 3 -- api/test/bigQueryParser.spec.js | 9 +++--- 4 files changed, 48 insertions(+), 25 deletions(-) diff --git a/api/src/helperClasses.js b/api/src/helperClasses.js index 0a6d2b1..eb8ce8d 100644 --- a/api/src/helperClasses.js +++ b/api/src/helperClasses.js @@ -62,7 +62,7 @@ class BigQueryParser { value_type: this.getValueType(row.label), value: this.getValue(row.label) || row.val, level: this.getLevel(row.screen) || this.getLevel(row.label)||this.getLevel(row.action)||"0", - profile: this.getProfile(row.screen) || 'unknown', + profile: row.profile? row.profile: this.getProfile(row.screen), rawData: { action: row.action, label: row.label, @@ -99,7 +99,7 @@ class BigQueryParser { try { return screen.split(':')[1].trim(); } catch(e) { - return null; + return "unknown"; } } diff --git a/api/src/sql/fetch_latest.sql b/api/src/sql/fetch_latest.sql index d51d0fe..5fdd0ac 100644 --- a/api/src/sql/fetch_latest.sql +++ b/api/src/sql/fetch_latest.sql @@ -10,32 +10,53 @@ AS( END ); WITH + UUIDS AS ( + SELECT + user_pseudo_id, + params.value.string_value as uuid, + event_params + FROM + `{{dataset}}.events_*`, + UNNEST(event_params) as params + WHERE + _TABLE_SUFFIX BETWEEN '20211201' AND FORMAT_DATE('%Y%m%d', DATE_SUB(CURRENT_DATE(), INTERVAL 1 DAY)) + AND app_info.id = @pkg_id + AND event_name = "LogUserUUID" + AND params.key = "uuid" + ), + + UUID_AND_PROFILE AS ( + SELECT + * EXCEPT(event_params), + params.value.int_value as profile + FROM + UUIDs, + UNNEST(event_params) as params + WHERE + params.key = "profile" + ), APP_INITIALIZED AS ( SELECT params.value.string_value as attribution_id, - props.value.string_value as uuid, CAST(event_timestamp as STRING) as val, "app_initialized" as action, "timestamp" as label, * EXCEPT(user_properties, key, value) FROM `{{dataset}}.events_*`, - UNNEST(event_params) AS params, - UNNEST(user_properties) AS props, + UNNEST(event_params) AS params WHERE _TABLE_SUFFIX BETWEEN '20210801' AND FORMAT_DATE('%Y%m%d', DATE_SUB(CURRENT_DATE(), INTERVAL 1 DAY)) AND event_name = 'app_initialized' - AND params.value.string_value = @ref_id OR @ref_id='') - AND props.key = 'uuid0' + AND params.value.string_value = @ref_id OR @ref_id=''), INIT_SCREEN AS ( SELECT attribution_id, - uuid, action, label, val, `{{dataset}}.getValue`(params.value) as screen, - * EXCEPT(attribution_id, uuid val, action, label, event_params, key, value) + * EXCEPT(attribution_id, val, action, label, event_params, key, value) FROM APP_INITIALIZED, UNNEST(APP_INITIALIZED.event_params) as params @@ -46,12 +67,11 @@ WITH DEFAULT_SCREEN AS ( SELECT attribution_id, - uuid, action, label, val, "Splash Screen" as screen, - * EXCEPT(attribution_id, uuid, val, action, label, event_params) + * EXCEPT(attribution_id, val, action, label, event_params) FROM APP_INITIALIZED WHERE @@ -83,15 +103,12 @@ WITH FILTERED_LIT_DATA AS ( SELECT `{{dataset}}.getValue`(params.value) as action, - props.value.string_value as uuid, * EXCEPT(key, value) FROM LITERACY_DATA, - UNNEST(LITERACY_DATA.event_params) as params, - UNNEST(LITERACY_DATA.user_properties) as props, + UNNEST(LITERACY_DATA.event_params) as params WHERE params.key = "action" - props.key = "uuid0" AND (params.value.string_value LIKE CONCAT(@event, '%') OR @event = '') ), @@ -128,16 +145,20 @@ VALS AS ( WHERE params.key = "value" ) + SELECT APP_INITIALIZED.attribution_id, VALS.action, VALS.label, VALS.val, VALS.screen, + UUID_AND_PROFILE.profile, + UUID_AND_PROFILE.uuid, VALS.* EXCEPT(action, label, val, screen, event_params, user_properties) FROM VALS INNER JOIN APP_INITIALIZED on APP_INITIALIZED.user_pseudo_id = VALS.user_pseudo_id +INNER JOIN UUID_AND_PROFILE on UUID_AND_PROFILE.user_pseudo_id = VALS.user_pseudo_id AND (VALS.screen = "Splash Screen" OR VALS.screen LIKE CONCAT("%- Profile ", UUID_AND_PROFILE.profile) OR VALS.screen LIKE CONCAT("%Profile: ", UUID_AND_PROFILE.profile)) UNION ALL( SELECT attribution_id, @@ -145,9 +166,12 @@ UNION ALL( label, val, screen, - * EXCEPT(attribution_id, action, screen, label, val) + UUID_AND_PROFILE.profile, + UUID_AND_PROFILE.uuid, + INIT_SCREEN.* EXCEPT(attribution_id, action, screen, label, val) FROM INIT_SCREEN + INNER JOIN UUID_AND_PROFILE on UUID_AND_PROFILE.user_pseudo_id = INIT_SCREEN.user_pseudo_id AND (INIT_SCREEN.screen = "Splash Screen" OR INIT_SCREEN.screen LIKE CONCAT("%- Profile ", UUID_AND_PROFILE.profile) OR INIT_SCREEN.screen LIKE CONCAT("%Profile: ", UUID_AND_PROFILE.profile)) ) UNION ALL ( SELECT @@ -156,8 +180,11 @@ UNION ALL ( label, val, screen, - * EXCEPT(attribution_id, action, screen, label, val) + UUID_AND_PROFILE.profile, + UUID_AND_PROFILE.uuid, + DEFAULT_SCREEN.* EXCEPT(attribution_id, action, screen, label, val) FROM DEFAULT_SCREEN + INNER JOIN UUID_AND_PROFILE on UUID_AND_PROFILE.user_pseudo_id = DEFAULT_SCREEN.user_pseudo_id AND (DEFAULT_SCREEN.screen = "Splash Screen" OR DEFAULT_SCREEN.screen LIKE CONCAT("%- Profile ", UUID_AND_PROFILE.profile) OR DEFAULT_SCREEN.screen LIKE CONCAT("%Profile: ", UUID_AND_PROFILE.profile)) ) ORDER BY event_timestamp DESC diff --git a/api/test/api.spec.js b/api/test/api.spec.js index 88b5e9e..24140f7 100644 --- a/api/test/api.spec.js +++ b/api/test/api.spec.js @@ -295,7 +295,6 @@ describe('Literacy API Routes', () => { .expect(200) .end((err, res)=> { if (err) return done(err); - console.log("beep"); request .get('/fetch_latest') .query({ @@ -307,7 +306,6 @@ describe('Literacy API Routes', () => { .expect(200) .end((err, fi) => { if (err) return done(err); - console.log("boop"); fi.body.data.should.deep.equal(expected); done(); }); @@ -364,7 +362,6 @@ describe('Literacy API Routes', () => { .end((err, res)=> { if (err) return done(err); - console.log(`cursor: ${res.body.nextCursor}`) request .get('/fetch_latest') .query({ diff --git a/api/test/bigQueryParser.spec.js b/api/test/bigQueryParser.spec.js index 45610fb..f944f61 100644 --- a/api/test/bigQueryParser.spec.js +++ b/api/test/bigQueryParser.spec.js @@ -96,16 +96,16 @@ describe('BigQueryHelper', () => { actual.should.equal(expected.event.profile); }); - it('should return null on an improperly formatted string', () => { + it('should return "unknown" on an improperly formatted string', () => { const row = fixtures[6].row; const actual = bqParser.getProfile(row.screen); - expect(actual).to.be.null; + expect(actual).to.equal("unknown"); }); - it('should return null on an improperly formatted string', () => { + it('should return "unknown" on an improperly formatted string', () => { const row = fixtures[2].row; const actual = bqParser.getProfile(row.screen); - expect(actual).to.be.null; + expect(actual).to.equal("unknown"); }); }); @@ -198,7 +198,6 @@ describe('BigQueryHelper', () => { describe('deduplicateData', () => { it('should remove duplicate rows', () => { const rows = fixtures.map((row) => {return row.row}); - console.log(rows); const data = rows.concat(rows); const result = bqParser.deduplicateData(data); result.should.deep.equal(rows); From af86fcccb1f8122805545645c560f7957b74ba82 Mon Sep 17 00:00:00 2001 From: Eric Tondreau Date: Fri, 28 Jan 2022 14:30:40 -0500 Subject: [PATCH 7/8] remove "advertising_id" from payload --- api/src/helperClasses.js | 18 +- api/test/api.spec.js | 15 +- api/test/fixtures/parserFixtures.json | 90 ++---- api/test/fixtures/queryResults.json | 404 +++++++++++++------------- package-lock.json | 3 + 5 files changed, 230 insertions(+), 300 deletions(-) create mode 100644 package-lock.json diff --git a/api/src/helperClasses.js b/api/src/helperClasses.js index eb8ce8d..7e4c9b4 100644 --- a/api/src/helperClasses.js +++ b/api/src/helperClasses.js @@ -20,18 +20,11 @@ class BigQueryParser { constructor(mapping){ this.mapping = mapping; } -// https://stackoverflow.com/questions/2218999/how-to-remove-all-duplicates-from-an-array-of-objects // this will only ever iterate over a max of 1000 rows, so it won't tank endpoint speed // like totally reformatting the query to deduplicate all the data will deduplicateData (rows) { - const map = {}; - rows.forEach((row) => { - const key = JSON.stringify(row); - if (!map[key]) { - map[key] = row; - } - }); - return Object.values(map); + const set = new Set(rows); + return [...set]; } formatRowsToJson (rows) { @@ -41,7 +34,7 @@ class BigQueryParser { app_id: row.app_package_name, ordered_id: row.event_timestamp, user: { - id: row.uuid? row.uuid : row.user_pseudo_id, + id: row.uuid? row.uuid : null, metadata: { continent: row.geo.continent, country: row.geo.country, @@ -49,10 +42,7 @@ class BigQueryParser { city: row.geo.city, }, ad_attribution: { - source: this.getSource(row.attribution_id), - data: { - advertising_id: row.uuid? row.uuid : row.device.advertising_id, - }, + source: this.getSource(row.attribution_id) }, }, event: { diff --git a/api/test/api.spec.js b/api/test/api.spec.js index 24140f7..e72fd51 100644 --- a/api/test/api.spec.js +++ b/api/test/api.spec.js @@ -168,7 +168,7 @@ describe('Literacy API Routes', () => { app_id: row.app_package_name, ordered_id: row.event_timestamp, user: { - id: row.user_pseudo_id, + id: row.uuid, metadata: { continent: row.geo.continent, country: row.geo.country, @@ -177,9 +177,6 @@ describe('Literacy API Routes', () => { }, ad_attribution: { source: 'no-source', - data: { - advertising_id: row.device.advertising_id, - }, }, }, event: { @@ -253,7 +250,7 @@ describe('Literacy API Routes', () => { app_id: row.app_package_name, ordered_id: row.event_timestamp, user: { - id: row.user_pseudo_id, + id: row.uuid, metadata: { continent: row.geo.continent, country: row.geo.country, @@ -262,9 +259,6 @@ describe('Literacy API Routes', () => { }, ad_attribution: { source: 'no-source', - data: { - advertising_id: row.device.advertising_id, - }, }, }, event: { @@ -319,7 +313,7 @@ describe('Literacy API Routes', () => { app_id: row.app_package_name, ordered_id: row.event_timestamp, user: { - id: row.user_pseudo_id, + id: row.uuid, metadata: { continent: row.geo.continent, country: row.geo.country, @@ -328,9 +322,6 @@ describe('Literacy API Routes', () => { }, ad_attribution: { source: 'no-source', - data: { - advertising_id: row.device.advertising_id, - }, }, }, event: { diff --git a/api/test/fixtures/parserFixtures.json b/api/test/fixtures/parserFixtures.json index 890b073..7d9afc6 100644 --- a/api/test/fixtures/parserFixtures.json +++ b/api/test/fixtures/parserFixtures.json @@ -1,12 +1,9 @@ [{ "row": { - "user_pseudo_id": "pseudo_id_1", + "uuid": "pseudo_id_1", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1001, - "device": { - "advertising_id": "fake-ad-id-1" - }, "event_date": "fake-date", "geo": { "continent": "fake-continent", @@ -39,10 +36,7 @@ "city": "fake-city" }, "ad_attribution": { - "source": "no-source", - "data": { - "advertising_id": "fake-ad-id-1" - } + "source": "no-source" } }, "event": { @@ -69,13 +63,10 @@ }, { "row": { - "user_pseudo_id": "pseudo_id_22", + "uuid": "pseudo_id_22", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10022, - "device": { - "advertising_id": "fake-ad-id-22" - }, "event_date": "fake-date", "geo": { "continent": "fake-continent", @@ -108,10 +99,7 @@ "city": "fake-city" }, "ad_attribution": { - "source": "no-source", - "data": { - "advertising_id": "fake-ad-id-22" - } + "source": "no-source" } }, "event": { @@ -138,13 +126,10 @@ }, { "row": { - "user_pseudo_id": "pseudo_id_52", + "uuid": "pseudo_id_52", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10052, - "device": { - "advertising_id": "fake-ad-id-52" - }, "event_date": "fake-date", "geo": { "continent": "fake-continent", @@ -177,10 +162,7 @@ "city": "fake-city" }, "ad_attribution": { - "source": "no-source", - "data": { - "advertising_id": "fake-ad-id-52" - } + "source": "no-source" } }, "event": { @@ -207,13 +189,10 @@ }, { "row": { - "user_pseudo_id": "pseudo_id_53", + "uuid": "pseudo_id_53", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10053, - "device": { - "advertising_id": "fake-ad-id-53" - }, "event_date": "fake-date", "geo": { "continent": "fake-continent", @@ -246,10 +225,7 @@ "city": "fake-city" }, "ad_attribution": { - "source": "no-source", - "data": { - "advertising_id": "fake-ad-id-53" - } + "source": "no-source" } }, "event": { @@ -276,13 +252,10 @@ }, { "row": { - "user_pseudo_id": "pseudo_id_77", + "uuid": "pseudo_id_77", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10077, - "device": { - "advertising_id": "fake-ad-id-77" - }, "event_date": "fake-date", "geo": { "continent": "fake-continent", @@ -315,10 +288,7 @@ "city": "fake-city" }, "ad_attribution": { - "source": "no-source", - "data": { - "advertising_id": "fake-ad-id-77" - } + "source": "no-source" } }, "event": { @@ -345,13 +315,10 @@ }, { "row": { - "user_pseudo_id": "pseudo_id_77", + "uuid": "pseudo_id_77", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10077, - "device": { - "advertising_id": "fake-ad-id-77" - }, "event_date": "fake-date", "geo": { "continent": "fake-continent", @@ -384,10 +351,7 @@ "city": "fake-city" }, "ad_attribution": { - "source": "no-source", - "data": { - "advertising_id": "fake-ad-id-77" - } + "source": "no-source" } }, "event": { @@ -414,13 +378,10 @@ }, { "row": { - "user_pseudo_id": "pseudo_id_77", + "uuid": "pseudo_id_77", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10077, - "device": { - "advertising_id": "fake-ad-id-77" - }, "event_date": "fake-date", "geo": { "continent": "fake-continent", @@ -453,10 +414,7 @@ "city": "fake-city" }, "ad_attribution": { - "source": "no-source", - "data": { - "advertising_id": "fake-ad-id-77" - } + "source": "no-source" } }, "event": { @@ -483,13 +441,10 @@ }, { "row": { - "user_pseudo_id": "pseudo_id_77", + "uuid": "pseudo_id_77", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10077, - "device": { - "advertising_id": "fake-ad-id-77" - }, "event_date": "fake-date", "geo": { "continent": "fake-continent", @@ -522,10 +477,7 @@ "city": "fake-city" }, "ad_attribution": { - "source": "no-source", - "data": { - "advertising_id": "fake-ad-id-77" - } + "source": "no-source" } }, "event": { @@ -552,13 +504,10 @@ }, { "row": { - "user_pseudo_id": "pseudo_id_22", + "uuid": "pseudo_id_22", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10022, - "device": { - "advertising_id": "fake-ad-id-22" - }, "event_date": "fake-date", "geo": { "continent": "fake-continent", @@ -591,10 +540,7 @@ "city": "fake-city" }, "ad_attribution": { - "source": "no-source", - "data": { - "advertising_id": "fake-ad-id-22" - } + "source": "no-source" } }, "event": { diff --git a/api/test/fixtures/queryResults.json b/api/test/fixtures/queryResults.json index 73ab513..217a7fa 100644 --- a/api/test/fixtures/queryResults.json +++ b/api/test/fixtures/queryResults.json @@ -1,207 +1,207 @@ {"set1": [ {"row": 1 }, {"row": 2 }, {"row": 3}, {"row": 4}, {"row": 5}, {"row": 6}, {"row": 7}, {"row": 8}, {"row": 9}, {"row": 10 }, {"row": 11 }, {"row": 12 }, {"row": 13 }, {"row": 14 }, {"row": 15 }, {"row": 16 }, {"row": 17 }, {"row": 18 }, {"row": 19 }, {"row": 20 }, {"row": 21 }, {"row": 22 }, {"row": 23 }, {"row": 24 }, {"row": 25 }, {"row": 26 }, {"row": 27 }, {"row": 28 }, {"row": 29 }, {"row": 30 }, {"row": 31 }, {"row": 32 }, {"row": 33 }, {"row": 34 }, {"row": 35 }, {"row": 36 }, {"row": 37 }, {"row": 38 }, {"row": 39 }, {"row": 40 }, {"row": 41 }, {"row": 42 }, {"row": 43 }, {"row": 44 }, {"row": 45 }, {"row": 46 }, {"row": 47 }, {"row": 48 }, {"row": 49 }, {"row": 50 }, {"row": 51 }, {"row": 52 }, {"row": 53 }, {"row": 54 }, {"row": 55 }, {"row": 56 }, {"row": 57 }, {"row": 58 }, {"row": 59 }, {"row": 60 }, {"row": 61 }, {"row": 62 }, {"row": 63 }, {"row": 64 }, {"row": 65 }, {"row": 66 }, {"row": 67 }, {"row": 68 }, {"row": 69 }, {"row": 70 }, {"row": 71 }, {"row": 72 }, {"row": 73 }, {"row": 74 }, {"row": 75 }, {"row": 76 }, {"row": 77 }, {"row": 78 }, {"row": 79 }, {"row": 80 }, {"row": 81 }, {"row": 82 }, {"row": 83 }, {"row": 84 }, {"row": 85 }, {"row": 86 }, {"row": 87 }, {"row": 88 }, {"row": 89 }, {"row": 90 }, {"row": 91 }, {"row": 92 }, {"row": 93 }, {"row": 94 }, {"row": 95 }, {"row": 96 }, {"row": 97 }, {"row": 98 }, {"row": 99 }, {"row": 100 }, {"row": 101 }, {"row": 102 }, {"row": 103 }, {"row": 104 }, {"row": 105 }, {"row": 106 }, {"row": 107 }, {"row": 108 }, {"row": 109 }, {"row": 110 }, {"row": 111 }, {"row": 112 }, {"row": 113 }, {"row": 114 }, {"row": 115 }, {"row": 116 }, {"row": 117 }, {"row": 118 }, {"row": 119 }, {"row": 120 }, {"row": 121 }, {"row": 122 }, {"row": 123 }, {"row": 124 }, {"row": 125 }, {"row": 126 }, {"row": 127 }, {"row": 128 }, {"row": 129 }, {"row": 130 }, {"row": 131 }, {"row": 132 }, {"row": 133 }, {"row": 134 }, {"row": 135 }, {"row": 136 }, {"row": 137 }, {"row": 138 }, {"row": 139 }, {"row": 140 }, {"row": 141 }, {"row": 142 }, {"row": 143 }, {"row": 144 }, {"row": 145 }, {"row": 146 }, {"row": 147 }, {"row": 148 }, {"row": 149 }, {"row": 150 }, {"row": 151 }, {"row": 152 }, {"row": 153 }, {"row": 154 }, {"row": 155 }, {"row": 156 }, {"row": 157 }, {"row": 158 }, {"row": 159 }, {"row": 160 }, {"row": 161 }, {"row": 162 }, {"row": 163 }, {"row": 164 }, {"row": 165 }, {"row": 166 }, {"row": 167 }, {"row": 168 }, {"row": 169 }, {"row": 170 }, {"row": 171 }, {"row": 172 }, {"row": 173 }, {"row": 174 }, {"row": 175 }, {"row": 176 }, {"row": 177 }, {"row": 178 }, {"row": 179 }, {"row": 180 }, {"row": 181 }, {"row": 182 }, {"row": 183 }, {"row": 184 }, {"row": 185 }, {"row": 186 }, {"row": 187 }, {"row": 188 }, {"row": 189 }, {"row": 190 }, {"row": 191 }, {"row": 192 }, {"row": 193 }, {"row": 194 }, {"row": 195 }, {"row": 196 }, {"row": 197 }, {"row": 198 }, {"row": 199 }, {"row": 200 }, {"row": 201 }, {"row": 202 }, {"row": 203 }, {"row": 204 }, {"row": 205 }, {"row": 206 }, {"row": 207 }, {"row": 208 }, {"row": 209 }, {"row": 210 }, {"row": 211 }, {"row": 212 }, {"row": 213 }, {"row": 214 }, {"row": 215 }, {"row": 216 }, {"row": 217 }, {"row": 218 }, {"row": 219 }, {"row": 220 }, {"row": 221 }, {"row": 222 }, {"row": 223 }, {"row": 224 }, {"row": 225 }, {"row": 226 }, {"row": 227 }, {"row": 228 }, {"row": 229 }, {"row": 230 }, {"row": 231 }, {"row": 232 }, {"row": 233 }, {"row": 234 }, {"row": 235 }, {"row": 236 }, {"row": 237 }, {"row": 238 }, {"row": 239 }, {"row": 240 }, {"row": 241 }, {"row": 242 }, {"row": 243 }, {"row": 244 }, {"row": 245 }, {"row": 246 }, {"row": 247 }, {"row": 248 }, {"row": 249 }, {"row": 250 }, {"row": 251 }, {"row": 252 }, {"row": 253 }, {"row": 254 }, {"row": 255 }, {"row": 256 }, {"row": 257 }, {"row": 258 }, {"row": 259 }, {"row": 260 }, {"row": 261 }, {"row": 262 }, {"row": 263 }, {"row": 264 }, {"row": 265 }, {"row": 266 }, {"row": 267 }, {"row": 268 }, {"row": 269 }, {"row": 270 }, {"row": 271 }, {"row": 272 }, {"row": 273 }, {"row": 274 }, {"row": 275 }, {"row": 276 }, {"row": 277 }, {"row": 278 }, {"row": 279 }, {"row": 280 }, {"row": 281 }, {"row": 282 }, {"row": 283 }, {"row": 284 }, {"row": 285 }, {"row": 286 }, {"row": 287 }, {"row": 288 }, {"row": 289 }, {"row": 290 }, {"row": 291 }, {"row": 292 }, {"row": 293 }, {"row": 294 }, {"row": 295 }, {"row": 296 }, {"row": 297 }, {"row": 298 }, {"row": 299 }, {"row": 300 }, {"row": 301 }, {"row": 302 }, {"row": 303 }, {"row": 304 }, {"row": 305 }, {"row": 306 }, {"row": 307 }, {"row": 308 }, {"row": 309 }, {"row": 310 }, {"row": 311 }, {"row": 312 }, {"row": 313 }, {"row": 314 }, {"row": 315 }, {"row": 316 }, {"row": 317 }, {"row": 318 }, {"row": 319 }, {"row": 320 }, {"row": 321 }, {"row": 322 }, {"row": 323 }, {"row": 324 }, {"row": 325 }, {"row": 326 }, {"row": 327 }, {"row": 328 }, {"row": 329 }, {"row": 330 }, {"row": 331 }, {"row": 332 }, {"row": 333 }, {"row": 334 }, {"row": 335 }, {"row": 336 }, {"row": 337 }, {"row": 338 }, {"row": 339 }, {"row": 340 }, {"row": 341 }, {"row": 342 }, {"row": 343 }, {"row": 344 }, {"row": 345 }, {"row": 346 }, {"row": 347 }, {"row": 348 }, {"row": 349 }, {"row": 350 }, {"row": 351 }, {"row": 352 }, {"row": 353 }, {"row": 354 }, {"row": 355 }, {"row": 356 }, {"row": 357 }, {"row": 358 }, {"row": 359 }, {"row": 360 }, {"row": 361 }, {"row": 362 }, {"row": 363 }, {"row": 364 }, {"row": 365 }, {"row": 366 }, {"row": 367 }, {"row": 368 }, {"row": 369 }, {"row": 370 }, {"row": 371 }, {"row": 372 }, {"row": 373 }, {"row": 374 }, {"row": 375 }, {"row": 376 }, {"row": 377 }, {"row": 378 }, {"row": 379 }, {"row": 380 }, {"row": 381 }, {"row": 382 }, {"row": 383 }, {"row": 384 }, {"row": 385 }, {"row": 386 }, {"row": 387 }, {"row": 388 }, {"row": 389 }, {"row": 390 }, {"row": 391 }, {"row": 392 }, {"row": 393 }, {"row": 394 }, {"row": 395 }, {"row": 396 }, {"row": 397 }, {"row": 398 }, {"row": 399 }, {"row": 400 }, {"row": 401 }, {"row": 402 }, {"row": 403 }, {"row": 404 }, {"row": 405 }, {"row": 406 }, {"row": 407 }, {"row": 408 }, {"row": 409 }, {"row": 410 }, {"row": 411 }, {"row": 412 }, {"row": 413 }, {"row": 414 }, {"row": 415 }, {"row": 416 }, {"row": 417 }, {"row": 418 }, {"row": 419 }, {"row": 420 }, {"row": 421 }, {"row": 422 }, {"row": 423 }, {"row": 424 }, {"row": 425 }, {"row": 426 }, {"row": 427 }, {"row": 428 }, {"row": 429 }, {"row": 430 }, {"row": 431 }, {"row": 432 }, {"row": 433 }, {"row": 434 }, {"row": 435 }, {"row": 436 }, {"row": 437 }, {"row": 438 }, {"row": 439 }, {"row": 440 }, {"row": 441 }, {"row": 442 }, {"row": 443 }, {"row": 444 }, {"row": 445 }, {"row": 446 }, {"row": 447 }, {"row": 448 }, {"row": 449 }, {"row": 450 }, {"row": 451 }, {"row": 452 }, {"row": 453 }, {"row": 454 }, {"row": 455 }, {"row": 456 }, {"row": 457 }, {"row": 458 }, {"row": 459 }, {"row": 460 }, {"row": 461 }, {"row": 462 }, {"row": 463 }, {"row": 464 }, {"row": 465 }, {"row": 466 }, {"row": 467 }, {"row": 468 }, {"row": 469 }, {"row": 470 }, {"row": 471 }, {"row": 472 }, {"row": 473 }, {"row": 474 }, {"row": 475 }, {"row": 476 }, {"row": 477 }, {"row": 478 }, {"row": 479 }, {"row": 480 }, {"row": 481 }, {"row": 482 }, {"row": 483 }, {"row": 484 }, {"row": 485 }, {"row": 486 }, {"row": 487 }, {"row": 488 }, {"row": 489 }, {"row": 490 }, {"row": 491 }, {"row": 492 }, {"row": 493 }, {"row": 494 }, {"row": 495 }, {"row": 496 }, {"row": 497 }, {"row": 498 }, {"row": 499 }, {"row": 500 }, {"row": 501 }, {"row": 502 }, {"row": 503 }, {"row": 504 }, {"row": 505 }, {"row": 506 }, {"row": 507 }, {"row": 508 }, {"row": 509 }, {"row": 510 }, {"row": 511 }, {"row": 512 }, {"row": 513 }, {"row": 514 }, {"row": 515 }, {"row": 516 }, {"row": 517 }, {"row": 518 }, {"row": 519 }, {"row": 520 }, {"row": 521 }, {"row": 522 }, {"row": 523 }, {"row": 524 }, {"row": 525 }, {"row": 526 }, {"row": 527 }, {"row": 528 }, {"row": 529 }, {"row": 530 }, {"row": 531 }, {"row": 532 }, {"row": 533 }, {"row": 534 }, {"row": 535 }, {"row": 536 }, {"row": 537 }, {"row": 538 }, {"row": 539 }, {"row": 540 }, {"row": 541 }, {"row": 542 }, {"row": 543 }, {"row": 544 }, {"row": 545 }, {"row": 546 }, {"row": 547 }, {"row": 548 }, {"row": 549 }, {"row": 550 }, {"row": 551 }, {"row": 552 }, {"row": 553 }, {"row": 554 }, {"row": 555 }, {"row": 556 }, {"row": 557 }, {"row": 558 }, {"row": 559 }, {"row": 560 }, {"row": 561 }, {"row": 562 }, {"row": 563 }, {"row": 564 }, {"row": 565 }, {"row": 566 }, {"row": 567 }, {"row": 568 }, {"row": 569 }, {"row": 570 }, {"row": 571 }, {"row": 572 }, {"row": 573 }, {"row": 574 }, {"row": 575 }, {"row": 576 }, {"row": 577 }, {"row": 578 }, {"row": 579 }, {"row": 580 }, {"row": 581 }, {"row": 582 }, {"row": 583 }, {"row": 584 }, {"row": 585 }, {"row": 586 }, {"row": 587 }, {"row": 588 }, {"row": 589 }, {"row": 590 }, {"row": 591 }, {"row": 592 }, {"row": 593 }, {"row": 594 }, {"row": 595 }, {"row": 596 }, {"row": 597 }, {"row": 598 }, {"row": 599 }, {"row": 600 }, {"row": 601 }, {"row": 602 }, {"row": 603 }, {"row": 604 }, {"row": 605 }, {"row": 606 }, {"row": 607 }, {"row": 608 }, {"row": 609 }, {"row": 610 }, {"row": 611 }, {"row": 612 }, {"row": 613 }, {"row": 614 }, {"row": 615 }, {"row": 616 }, {"row": 617 }, {"row": 618 }, {"row": 619 }, {"row": 620 }, {"row": 621 }, {"row": 622 }, {"row": 623 }, {"row": 624 }, {"row": 625 }, {"row": 626 }, {"row": 627 }, {"row": 628 }, {"row": 629 }, {"row": 630 }, {"row": 631 }, {"row": 632 }, {"row": 633 }, {"row": 634 }, {"row": 635 }, {"row": 636 }, {"row": 637 }, {"row": 638 }, {"row": 639 }, {"row": 640 }, {"row": 641 }, {"row": 642 }, {"row": 643 }, {"row": 644 }, {"row": 645 }, {"row": 646 }, {"row": 647 }, {"row": 648 }, {"row": 649 }, {"row": 650 }, {"row": 651 }, {"row": 652 }, {"row": 653 }, {"row": 654 }, {"row": 655 }, {"row": 656 }, {"row": 657 }, {"row": 658 }, {"row": 659 }, {"row": 660 }, {"row": 661 }, {"row": 662 }, {"row": 663 }, {"row": 664 }, {"row": 665 }, {"row": 666 }, {"row": 667 }, {"row": 668 }, {"row": 669 }, {"row": 670 }, {"row": 671 }, {"row": 672 }, {"row": 673 }, {"row": 674 }, {"row": 675 }, {"row": 676 }, {"row": 677 }, {"row": 678 }, {"row": 679 }, {"row": 680 }, {"row": 681 }, {"row": 682 }, {"row": 683 }, {"row": 684 }, {"row": 685 }, {"row": 686 }, {"row": 687 }, {"row": 688 }, {"row": 689 }, {"row": 690 }, {"row": 691 }, {"row": 692 }, {"row": 693 }, {"row": 694 }, {"row": 695 }, {"row": 696 }, {"row": 697 }, {"row": 698 }, {"row": 699 }, {"row": 700 }, {"row": 701 }, {"row": 702 }, {"row": 703 }, {"row": 704 }, {"row": 705 }, {"row": 706 }, {"row": 707 }, {"row": 708 }, {"row": 709 }, {"row": 710 }, {"row": 711 }, {"row": 712 }, {"row": 713 }, {"row": 714 }, {"row": 715 }, {"row": 716 }, {"row": 717 }, {"row": 718 }, {"row": 719 }, {"row": 720 }, {"row": 721 }, {"row": 722 }, {"row": 723 }, {"row": 724 }, {"row": 725 }, {"row": 726 }, {"row": 727 }, {"row": 728 }, {"row": 729 }, {"row": 730 }, {"row": 731 }, {"row": 732 }, {"row": 733 }, {"row": 734 }, {"row": 735 }, {"row": 736 }, {"row": 737 }, {"row": 738 }, {"row": 739 }, {"row": 740 }, {"row": 741 }, {"row": 742 }, {"row": 743 }, {"row": 744 }, {"row": 745 }, {"row": 746 }, {"row": 747 }, {"row": 748 }, {"row": 749 }, {"row": 750 }, {"row": 751 }, {"row": 752 }, {"row": 753 }, {"row": 754 }, {"row": 755 }, {"row": 756 }, {"row": 757 }, {"row": 758 }, {"row": 759 }, {"row": 760 }, {"row": 761 }, {"row": 762 }, {"row": 763 }, {"row": 764 }, {"row": 765 }, {"row": 766 }, {"row": 767 }, {"row": 768 }, {"row": 769 }, {"row": 770 }, {"row": 771 }, {"row": 772 }, {"row": 773 }, {"row": 774 }, {"row": 775 }, {"row": 776 }, {"row": 777 }, {"row": 778 }, {"row": 779 }, {"row": 780 }, {"row": 781 }, {"row": 782 }, {"row": 783 }, {"row": 784 }, {"row": 785 }, {"row": 786 }, {"row": 787 }, {"row": 788 }, {"row": 789 }, {"row": 790 }, {"row": 791 }, {"row": 792 }, {"row": 793 }, {"row": 794 }, {"row": 795 }, {"row": 796 }, {"row": 797 }, {"row": 798 }, {"row": 799 }, {"row": 800 }, {"row": 801 }, {"row": 802 }, {"row": 803 }, {"row": 804 }, {"row": 805 }, {"row": 806 }, {"row": 807 }, {"row": 808 }, {"row": 809 }, {"row": 810 }, {"row": 811 }, {"row": 812 }, {"row": 813 }, {"row": 814 }, {"row": 815 }, {"row": 816 }, {"row": 817 }, {"row": 818 }, {"row": 819 }, {"row": 820 }, {"row": 821 }, {"row": 822 }, {"row": 823 }, {"row": 824 }, {"row": 825 }, {"row": 826 }, {"row": 827 }, {"row": 828 }, {"row": 829 }, {"row": 830 }, {"row": 831 }, {"row": 832 }, {"row": 833 }, {"row": 834 }, {"row": 835 }, {"row": 836 }, {"row": 837 }, {"row": 838 }, {"row": 839 }, {"row": 840 }, {"row": 841 }, {"row": 842 }, {"row": 843 }, {"row": 844 }, {"row": 845 }, {"row": 846 }, {"row": 847 }, {"row": 848 }, {"row": 849 }, {"row": 850 }, {"row": 851 }, {"row": 852 }, {"row": 853 }, {"row": 854 }, {"row": 855 }, {"row": 856 }, {"row": 857 }, {"row": 858 }, {"row": 859 }, {"row": 860 }, {"row": 861 }, {"row": 862 }, {"row": 863 }, {"row": 864 }, {"row": 865 }, {"row": 866 }, {"row": 867 }, {"row": 868 }, {"row": 869 }, {"row": 870 }, {"row": 871 }, {"row": 872 }, {"row": 873 }, {"row": 874 }, {"row": 875 }, {"row": 876 }, {"row": 877 }, {"row": 878 }, {"row": 879 }, {"row": 880 }, {"row": 881 }, {"row": 882 }, {"row": 883 }, {"row": 884 }, {"row": 885 }, {"row": 886 }, {"row": 887 }, {"row": 888 }, {"row": 889 }, {"row": 890 }, {"row": 891 }, {"row": 892 }, {"row": 893 }, {"row": 894 }, {"row": 895 }, {"row": 896 }, {"row": 897 }, {"row": 898 }, {"row": 899 }, {"row": 900 }, {"row": 901 }, {"row": 902 }, {"row": 903 }, {"row": 904 }, {"row": 905 }, {"row": 906 }, {"row": 907 }, {"row": 908 }, {"row": 909 }, {"row": 910 }, {"row": 911 }, {"row": 912 }, {"row": 913 }, {"row": 914 }, {"row": 915 }, {"row": 916 }, {"row": 917 }, {"row": 918 }, {"row": 919 }, {"row": 920 }, {"row": 921 }, {"row": 922 }, {"row": 923 }, {"row": 924 }, {"row": 925 }, {"row": 926 }, {"row": 927 }, {"row": 928 }, {"row": 929 }, {"row": 930 }, {"row": 931 }, {"row": 932 }, {"row": 933 }, {"row": 934 }, {"row": 935 }, {"row": 936 }, {"row": 937 }, {"row": 938 }, {"row": 939 }, {"row": 940 }, {"row": 941 }, {"row": 942 }, {"row": 943 }, {"row": 944 }, {"row": 945 }, {"row": 946 }, {"row": 947 }, {"row": 948 }, {"row": 949 }, {"row": 950 }, {"row": 951 }, {"row": 952 }, {"row": 953 }, {"row": 954 }, {"row": 955 }, {"row": 956 }, {"row": 957 }, {"row": 958 }, {"row": 959 }, {"row": 960 }, {"row": 961 }, {"row": 962 }, {"row": 963 }, {"row": 964 }, {"row": 965 }, {"row": 966 }, {"row": 967 }, {"row": 968 }, {"row": 969 }, {"row": 970 }, {"row": 971 }, {"row": 972 }, {"row": 973 }, {"row": 974 }, {"row": 975 }, {"row": 976 }, {"row": 977 }, {"row": 978 }, {"row": 979 }, {"row": 980 }, {"row": 981 }, {"row": 982 }, {"row": 983 }, {"row": 984 }, {"row": 985 }, {"row": 986 }, {"row": 987 }, {"row": 988 }, {"row": 989 }, {"row": 990 }, {"row": 991 }, {"row": 992 }, {"row": 993 }, {"row": 994 }, {"row": 995 }, {"row": 996 }, {"row": 997 }, {"row": 998 }, {"row": 999 }, {"row": 1000 } ], "set2": [ {"row": 1001}, {"row": 1002}, {"row": 1003}, {"row": 1004}, {"row": 1005}, {"row": 1006}, {"row": 1007}, {"row": 1008}, {"row": 1009}, {"row": 1010}, {"row": 1011}, {"row": 1012}, {"row": 1013}, {"row": 1014}, {"row": 1015}, {"row": 1016}, {"row": 1017}, {"row": 1018}, {"row": 1019}, {"row": 1020}, {"row": 1021}, {"row": 1022}, {"row": 1023}, {"row": 1024}, {"row": 1025}, {"row": 1026}, {"row": 1027}, {"row": 1028}, {"row": 1029}, {"row": 1030}, {"row": 1031}, {"row": 1032}, {"row": 1033}, {"row": 1034}, {"row": 1035}, {"row": 1036}, {"row": 1037}, {"row": 1038}, {"row": 1039}, {"row": 1040}, {"row": 1041}, {"row": 1042}, {"row": 1043}, {"row": 1044}, {"row": 1045}, {"row": 1046}, {"row": 1047}, {"row": 1048}, {"row": 1049}, {"row": 1050}, {"row": 1051}, {"row": 1052}, {"row": 1053}, {"row": 1054}, {"row": 1055}, {"row": 1056}, {"row": 1057}, {"row": 1058}, {"row": 1059}, {"row": 1060}, {"row": 1061}, {"row": 1062}, {"row": 1063}, {"row": 1064}, {"row": 1065}, {"row": 1066}, {"row": 1067}, {"row": 1068}, {"row": 1069}, {"row": 1070}, {"row": 1071}, {"row": 1072}, {"row": 1073}, {"row": 1074}, {"row": 1075}, {"row": 1076}, {"row": 1077}, {"row": 1078}, {"row": 1079}, {"row": 1080}, {"row": 1081}, {"row": 1082}, {"row": 1083}, {"row": 1084}, {"row": 1085}, {"row": 1086}, {"row": 1087}, {"row": 1088}, {"row": 1089}, {"row": 1090}, {"row": 1091}, {"row": 1092}, {"row": 1093}, {"row": 1094}, {"row": 1095}, {"row": 1096}, {"row": 1097}, {"row": 1098}, {"row": 1099}, {"row": 1100}, {"row": 1101}, {"row": 1102}, {"row": 1103}, {"row": 1104}, {"row": 1105}, {"row": 1106}, {"row": 1107}, {"row": 1108}, {"row": 1109}, {"row": 1111}, {"row": 1112}, {"row": 1113}, {"row": 1114}, {"row": 1115}, {"row": 1116}, {"row": 1117}, {"row": 1118}, {"row": 1119}, {"row": 1110}, {"row": 1111}, {"row": 1112}, {"row": 1113}, {"row": 1114}, {"row": 1115}, {"row": 1116}, {"row": 1117}, {"row": 1118}, {"row": 1119}, {"row": 1120}, {"row": 1121}, {"row": 1122}, {"row": 1123}, {"row": 1124}, {"row": 1125}, {"row": 1126}, {"row": 1127}, {"row": 1128}, {"row": 1129}, {"row": 1130}, {"row": 1131}, {"row": 1132}, {"row": 1133}, {"row": 1134}, {"row": 1135}, {"row": 1136}, {"row": 1137}, {"row": 1138}, {"row": 1139}, {"row": 1140}, {"row": 1141}, {"row": 1142}, {"row": 1143}, {"row": 1144}, {"row": 1145}, {"row": 1146}, {"row": 1147}, {"row": 1148}, {"row": 1149}, {"row": 1150}, {"row": 1151}, {"row": 1152}, {"row": 1153}, {"row": 1154}, {"row": 1155}, {"row": 1156}, {"row": 1157}, {"row": 1158}, {"row": 1159}, {"row": 1160}, {"row": 1161}, {"row": 1162}, {"row": 1163}, {"row": 1164}, {"row": 1165}, {"row": 1166}, {"row": 1167}, {"row": 1168}, {"row": 1169}, {"row": 1170}, {"row": 1171}, {"row": 1172}, {"row": 1173}, {"row": 1174}, {"row": 1175}, {"row": 1176}, {"row": 1177}, {"row": 1178}, {"row": 1179}, {"row": 1180}, {"row": 1181}, {"row": 1182}, {"row": 1183}, {"row": 1184}, {"row": 1185}, {"row": 1186}, {"row": 1187}, {"row": 1188}, {"row": 1189}, {"row": 1190}, {"row": 1191}, {"row": 1192}, {"row": 1193}, {"row": 1194}, {"row": 1195}, {"row": 1196}, {"row": 1197}, {"row": 1198}, {"row": 1199}, {"row": 1200}, {"row": 1201}, {"row": 1202}, {"row": 1203}, {"row": 1204}, {"row": 1205}, {"row": 1206}, {"row": 1207}, {"row": 1208}, {"row": 1209}, {"row": 1210}, {"row": 1211}, {"row": 1212}, {"row": 1213}, {"row": 1214}, {"row": 1215}, {"row": 1216}, {"row": 1217}, {"row": 1218}, {"row": 1219}, {"row": 1220}, {"row": 1221}, {"row": 1222}, {"row": 1223}, {"row": 1224}, {"row": 1225}, {"row": 1226}, {"row": 1227}, {"row": 1228}, {"row": 1229}, {"row": 1230}, {"row": 1231}, {"row": 1232}, {"row": 1233}, {"row": 1234}, {"row": 1235}, {"row": 1236}, {"row": 1237}, {"row": 1238}, {"row": 1239}, {"row": 1240}, {"row": 1241}, {"row": 1242}, {"row": 1243}, {"row": 1244}, {"row": 1245}, {"row": 1246}, {"row": 1247}, {"row": 1248}, {"row": 1249}, {"row": 1250}, {"row": 1251}, {"row": 1252}, {"row": 1253}, {"row": 1254}, {"row": 1255}, {"row": 1256}, {"row": 1257}, {"row": 1258}, {"row": 1259}, {"row": 1260}, {"row": 1261}, {"row": 1262}, {"row": 1263}, {"row": 1264}, {"row": 1265}, {"row": 1266}, {"row": 1267}, {"row": 1268}, {"row": 1269}, {"row": 1270}, {"row": 1271}, {"row": 1272}, {"row": 1273}, {"row": 1274}, {"row": 1275}, {"row": 1276}, {"row": 1277}, {"row": 1278}, {"row": 1279}, {"row": 1280}, {"row": 1281}, {"row": 1282}, {"row": 1283}, {"row": 1284}, {"row": 1285}, {"row": 1286}, {"row": 1287}, {"row": 1288}, {"row": 1289}, {"row": 1290}, {"row": 1291}, {"row": 1292}, {"row": 1293}, {"row": 1294}, {"row": 1295}, {"row": 1296}, {"row": 1297}, {"row": 1298}, {"row": 1299}, {"row": 1300}, {"row": 1301}, {"row": 1302}, {"row": 1303}, {"row": 1304}, {"row": 1305}, {"row": 1306}, {"row": 1307}, {"row": 1308}, {"row": 1309}, {"row": 1310}, {"row": 1311}, {"row": 1312}, {"row": 1313}, {"row": 1314}, {"row": 1315}, {"row": 1316}, {"row": 1317}, {"row": 1318}, {"row": 1319}, {"row": 1320}, {"row": 1321}, {"row": 1322}, {"row": 1323}, {"row": 1324}, {"row": 1325}, {"row": 1326}, {"row": 1327}, {"row": 1328}, {"row": 1329}, {"row": 1330}, {"row": 1331}, {"row": 1332}, {"row": 1333}, {"row": 1334}, {"row": 1335}, {"row": 1336}, {"row": 1337}, {"row": 1338}, {"row": 1339}, {"row": 1340}, {"row": 1341}, {"row": 1342}, {"row": 1343}, {"row": 1344}, {"row": 1345}, {"row": 1346}, {"row": 1347}, {"row": 1348}, {"row": 1349}, {"row": 1350}, {"row": 1351}, {"row": 1352}, {"row": 1353}, {"row": 1354}, {"row": 1355}, {"row": 1356}, {"row": 1357}, {"row": 1358}, {"row": 1359}, {"row": 1360}, {"row": 1361}, {"row": 1362}, {"row": 1363}, {"row": 1364}, {"row": 1365}, {"row": 1366}, {"row": 1367}, {"row": 1368}, {"row": 1369}, {"row": 1370}, {"row": 1371}, {"row": 1372}, {"row": 1373}, {"row": 1374}, {"row": 1375}, {"row": 1376}, {"row": 1377}, {"row": 1378}, {"row": 1379}, {"row": 1380}, {"row": 1381}, {"row": 1382}, {"row": 1383}, {"row": 1384}, {"row": 1385}, {"row": 1386}, {"row": 1387}, {"row": 1388}, {"row": 1389}, {"row": 1390}, {"row": 1391}, {"row": 1392}, {"row": 1393}, {"row": 1394}, {"row": 1395}, {"row": 1396}, {"row": 1397}, {"row": 1398}, {"row": 1399}, {"row": 1400}, {"row": 1401}, {"row": 1402}, {"row": 1403}, {"row": 1404}, {"row": 1405}, {"row": 1406}, {"row": 1407}, {"row": 1408}, {"row": 1409}, {"row": 1410}, {"row": 1411}, {"row": 1412}, {"row": 1413}, {"row": 1414}, {"row": 1415}, {"row": 1416}, {"row": 1417}, {"row": 1418}, {"row": 1419}, {"row": 1420}, {"row": 1421}, {"row": 1422}, {"row": 1423}, {"row": 1424}, {"row": 1425}, {"row": 1426}, {"row": 1427}, {"row": 1428}, {"row": 1429}, {"row": 1430}, {"row": 1431}, {"row": 1432}, {"row": 1433}, {"row": 1434}, {"row": 1435}, {"row": 1436}, {"row": 1437}, {"row": 1438}, {"row": 1439}, {"row": 1440}, {"row": 1441}, {"row": 1442}, {"row": 1443}, {"row": 1444}, {"row": 1445}, {"row": 1446}, {"row": 1447}, {"row": 1448}, {"row": 1449}, {"row": 1450}, {"row": 1451}, {"row": 1452}, {"row": 1453}, {"row": 1454}, {"row": 1455}, {"row": 1456}, {"row": 1457}, {"row": 1458}, {"row": 1459}, {"row": 1460}, {"row": 1461}, {"row": 1462}, {"row": 1463}, {"row": 1464}, {"row": 1465}, {"row": 1466}, {"row": 1467}, {"row": 1468}, {"row": 1469}, {"row": 1470}, {"row": 1471}, {"row": 1472}, {"row": 1473}, {"row": 1474}, {"row": 1475}, {"row": 1476}, {"row": 1477}, {"row": 1478}, {"row": 1479}, {"row": 1480}, {"row": 1481}, {"row": 1482}, {"row": 1483}, {"row": 1484}, {"row": 1485}, {"row": 1486}, {"row": 1487}, {"row": 1488}, {"row": 1489}, {"row": 1490}, {"row": 1491}, {"row": 1492}, {"row": 1493}, {"row": 1494}, {"row": 1495}, {"row": 1496}, {"row": 1497}, {"row": 1498}, {"row": 1499}, {"row": 1500}, {"row": 1501}, {"row": 1502}, {"row": 1503}, {"row": 1504}, {"row": 1505}, {"row": 1506}, {"row": 1507}, {"row": 1508}, {"row": 1509}, {"row": 1510}, {"row": 1511}, {"row": 1512}, {"row": 1513}, {"row": 1514}, {"row": 1515}, {"row": 1516}, {"row": 1517}, {"row": 1518}, {"row": 1519}, {"row": 1520}, {"row": 1521}, {"row": 1522}, {"row": 1523}, {"row": 1524}, {"row": 1525}, {"row": 1526}, {"row": 1527}, {"row": 1528}, {"row": 1529}, {"row": 1530}, {"row": 1531}, {"row": 1532}, {"row": 1533}, {"row": 1534}, {"row": 1535}, {"row": 1536}, {"row": 1537}, {"row": 1538}, {"row": 1539}, {"row": 1540}, {"row": 1541}, {"row": 1542}, {"row": 1543}, {"row": 1544}, {"row": 1545}, {"row": 1546}, {"row": 1547}, {"row": 1548}, {"row": 1549}, {"row": 1550}, {"row": 1551}, {"row": 1552}, {"row": 1553}, {"row": 1554}, {"row": 1555}, {"row": 1556}, {"row": 1557}, {"row": 1558}, {"row": 1559}, {"row": 1560}, {"row": 1561}, {"row": 1562}, {"row": 1563}, {"row": 1564}, {"row": 1565}, {"row": 1566}, {"row": 1567}, {"row": 1568}, {"row": 1569}, {"row": 1570}, {"row": 1571}, {"row": 1572}, {"row": 1573}, {"row": 1574}, {"row": 1575}, {"row": 1576}, {"row": 1577}, {"row": 1578}, {"row": 1579}, {"row": 1580}, {"row": 1581}, {"row": 1582}, {"row": 1583}, {"row": 1584}, {"row": 1585}, {"row": 1586}, {"row": 1587}, {"row": 1588}, {"row": 1589}, {"row": 1590}, {"row": 1591}, {"row": 1592}, {"row": 1593}, {"row": 1594}, {"row": 1595}, {"row": 1596}, {"row": 1597}, {"row": 1598}, {"row": 1599}, {"row": 1600}, {"row": 1601}, {"row": 1602}, {"row": 1603}, {"row": 1604}, {"row": 1605}, {"row": 1606}, {"row": 1607}, {"row": 1608}, {"row": 1609}, {"row": 1610}, {"row": 1611}, {"row": 1612}, {"row": 1613}, {"row": 1614}, {"row": 1615}, {"row": 1616}, {"row": 1617}, {"row": 1618}, {"row": 1619}, {"row": 1620}, {"row": 1621}, {"row": 1622}, {"row": 1623}, {"row": 1624}, {"row": 1625}, {"row": 1626}, {"row": 1627}, {"row": 1628}, {"row": 1629}, {"row": 1630}, {"row": 1631}, {"row": 1632}, {"row": 1633}, {"row": 1634}, {"row": 1635}, {"row": 1636}, {"row": 1637}, {"row": 1638}, {"row": 1639}, {"row": 1640}, {"row": 1641}, {"row": 1642}, {"row": 1643}, {"row": 1644}, {"row": 1645}, {"row": 1646}, {"row": 1647}, {"row": 1648}, {"row": 1649}, {"row": 1650}, {"row": 1651}, {"row": 1652}, {"row": 1653}, {"row": 1654}, {"row": 1655}, {"row": 1656}, {"row": 1657}, {"row": 1658}, {"row": 1659}, {"row": 1660}, {"row": 1661}, {"row": 1662}, {"row": 1663}, {"row": 1664}, {"row": 1665}, {"row": 1666}, {"row": 1667}, {"row": 1668}, {"row": 1669}, {"row": 1670}, {"row": 1671}, {"row": 1672}, {"row": 1673}, {"row": 1674}, {"row": 1675}, {"row": 1676}, {"row": 1677}, {"row": 1678}, {"row": 1679}, {"row": 1680}, {"row": 1681}, {"row": 1682}, {"row": 1683}, {"row": 1684}, {"row": 1685}, {"row": 1686}, {"row": 1687}, {"row": 1688}, {"row": 1689}, {"row": 1690}, {"row": 1691}, {"row": 1692}, {"row": 1693}, {"row": 1694}, {"row": 1695}, {"row": 1696}, {"row": 1697}, {"row": 1698}, {"row": 1699}, {"row": 1700}, {"row": 1701}, {"row": 1702}, {"row": 1703}, {"row": 1704}, {"row": 1705}, {"row": 1706}, {"row": 1707}, {"row": 1708}, {"row": 1709}, {"row": 1710}, {"row": 1711}, {"row": 1712}, {"row": 1713}, {"row": 1714}, {"row": 1715}, {"row": 1716}, {"row": 1717}, {"row": 1718}, {"row": 1719}, {"row": 1720}, {"row": 1721}, {"row": 1722}, {"row": 1723}, {"row": 1724}, {"row": 1725}, {"row": 1726}, {"row": 1727}, {"row": 1728}, {"row": 1729}, {"row": 1730}, {"row": 1731}, {"row": 1732}, {"row": 1733}, {"row": 1734}, {"row": 1735}, {"row": 1736}, {"row": 1737}, {"row": 1738}, {"row": 1739}, {"row": 1740}, {"row": 1741}, {"row": 1742}, {"row": 1743}, {"row": 1744}, {"row": 1745}, {"row": 1746}, {"row": 1747}, {"row": 1748}, {"row": 1749}, {"row": 1750}, {"row": 1751}, {"row": 1752}, {"row": 1753}, {"row": 1754}, {"row": 1755}, {"row": 1756}, {"row": 1757}, {"row": 1758}, {"row": 1759}, {"row": 1760}, {"row": 1761}, {"row": 1762}, {"row": 1763}, {"row": 1764}, {"row": 1765}, {"row": 1766}, {"row": 1767}, {"row": 1768}, {"row": 1769}, {"row": 1770}, {"row": 1771}, {"row": 1772}, {"row": 1773}, {"row": 1774}, {"row": 1775}, {"row": 1776}, {"row": 1777}, {"row": 1778}, {"row": 1779}, {"row": 1780}, {"row": 1781}, {"row": 1782}, {"row": 1783}, {"row": 1784}, {"row": 1785}, {"row": 1786}, {"row": 1787}, {"row": 1788}, {"row": 1789}, {"row": 1790}, {"row": 1791}, {"row": 1792}, {"row": 1793}, {"row": 1794}, {"row": 1795}, {"row": 1796}, {"row": 1797}, {"row": 1798}, {"row": 1799}, {"row": 1800}, {"row": 1801}, {"row": 1802}, {"row": 1803}, {"row": 1804}, {"row": 1805}, {"row": 1806}, {"row": 1807}, {"row": 1808}, {"row": 1809}, {"row": 1810}, {"row": 1811}, {"row": 1812}, {"row": 1813}, {"row": 1814}, {"row": 1815}, {"row": 1816}, {"row": 1817}, {"row": 1818}, {"row": 1819}, {"row": 1820}, {"row": 1821}, {"row": 1822}, {"row": 1823}, {"row": 1824}, {"row": 1825}, {"row": 1826}, {"row": 1827}, {"row": 1828}, {"row": 1829}, {"row": 1830}, {"row": 1831}, {"row": 1832}, {"row": 1833}, {"row": 1834}, {"row": 1835}, {"row": 1836}, {"row": 1837}, {"row": 1838}, {"row": 1839}, {"row": 1840}, {"row": 1841}, {"row": 1842}, {"row": 1843}, {"row": 1844}, {"row": 1845}, {"row": 1846}, {"row": 1847}, {"row": 1848}, {"row": 1849}, {"row": 1850}, {"row": 1851}, {"row": 1852}, {"row": 1853}, {"row": 1854}, {"row": 1855}, {"row": 1856}, {"row": 1857}, {"row": 1858}, {"row": 1859}, {"row": 1860}, {"row": 1861}, {"row": 1862}, {"row": 1863}, {"row": 1864}, {"row": 1865}, {"row": 1866}, {"row": 1867}, {"row": 1868}, {"row": 1869}, {"row": 1870}, {"row": 1871}, {"row": 1872}, {"row": 1873}, {"row": 1874}, {"row": 1875}, {"row": 1876}, {"row": 1877}, {"row": 1878}, {"row": 1879}, {"row": 1880}, {"row": 1881}, {"row": 1882}, {"row": 1883}, {"row": 1884}, {"row": 1885}, {"row": 1886}, {"row": 1887}, {"row": 1888}, {"row": 1889}, {"row": 1890}, {"row": 1891}, {"row": 1892}, {"row": 1893}, {"row": 1894}, {"row": 1895}, {"row": 1896}, {"row": 1897}, {"row": 1898}, {"row": 1899}, {"row": 1900}, {"row": 1901}, {"row": 1902}, {"row": 1903}, {"row": 1904}, {"row": 1905}, {"row": 1906}, {"row": 1907}, {"row": 1908}, {"row": 1909}, {"row": 1910}, {"row": 1911}, {"row": 1912}, {"row": 1913}, {"row": 1914}, {"row": 1915}, {"row": 1916}, {"row": 1917}, {"row": 1918}, {"row": 1919}, {"row": 1920}, {"row": 1921}, {"row": 1922}, {"row": 1923}, {"row": 1924}, {"row": 1925}, {"row": 1926}, {"row": 1927}, {"row": 1928}, {"row": 1929}, {"row": 1930}, {"row": 1931}, {"row": 1932}, {"row": 1933}, {"row": 1934}, {"row": 1935}, {"row": 1936}, {"row": 1937}, {"row": 1938}, {"row": 1939}, {"row": 1940}, {"row": 1941}, {"row": 1942}, {"row": 1943}, {"row": 1944}, {"row": 1945}, {"row": 1946}, {"row": 1947}, {"row": 1948}, {"row": 1949}, {"row": 1950}, {"row": 1951}, {"row": 1952}, {"row": 1953}, {"row": 1954}, {"row": 1955}, {"row": 1956}, {"row": 1957}, {"row": 1958}, {"row": 1959}, {"row": 1960}, {"row": 1961}, {"row": 1962}, {"row": 1963}, {"row": 1964}, {"row": 1965}, {"row": 1966}, {"row": 1967}, {"row": 1968}, {"row": 1969}, {"row": 1970}, {"row": 1971}, {"row": 1972}, {"row": 1973}, {"row": 1974}, {"row": 1975}, {"row": 1976}, {"row": 1977}, {"row": 1978}, {"row": 1979}, {"row": 1980}, {"row": 1981}, {"row": 1982}, {"row": 1983}, {"row": 1984}, {"row": 1985}, {"row": 1986}, {"row": 1987}, {"row": 1988}, {"row": 1989}, {"row": 1990}, {"row": 1991}, {"row": 1992}, {"row": 1993}, {"row": 1994}, {"row": 1995}, {"row": 1996}, {"row": 1997}, {"row": 1998}, {"row": 1999}, {"row": 2000} ], "set3": [ - {"user_pseudo_id": "pseudo_id_1", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1,"device": {"advertising_id": "fake-ad-id-1"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentStart_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_2", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 2,"device": {"advertising_id": "fake-ad-id-2"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentStart_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_3", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 3,"device": {"advertising_id": "fake-ad-id-3"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentStart_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_4", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 4,"device": {"advertising_id": "fake-ad-id-4"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentStart_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_5", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 5,"device": {"advertising_id": "fake-ad-id-5"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentStart_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_6", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 6,"device": {"advertising_id": "fake-ad-id-6"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentSuccess_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_7", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 7,"device": {"advertising_id": "fake-ad-id-7"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentSuccess_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_8", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 8,"device": {"advertising_id": "fake-ad-id-8"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentSuccess_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_9", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 9,"device": {"advertising_id": "fake-ad-id-9"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentSuccess_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_10", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10,"device": {"advertising_id": "fake-ad-id-10"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "Segment_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_11", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 11,"device": {"advertising_id": "fake-ad-id-11"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentStart_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_12", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 12,"device": {"advertising_id": "fake-ad-id-12"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentStart_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_13", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 13,"device": {"advertising_id": "fake-ad-id-13"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentStart_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_14", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 14,"device": {"advertising_id": "fake-ad-id-14"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentStart_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_15", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 15,"device": {"advertising_id": "fake-ad-id-15"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentStart_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_16", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 16,"device": {"advertising_id": "fake-ad-id-16"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_17", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 17,"device": {"advertising_id": "fake-ad-id-17"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_18", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 18,"device": {"advertising_id": "fake-ad-id-18"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_19", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 19,"device": {"advertising_id": "fake-ad-id-19"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_20", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 20,"device": {"advertising_id": "fake-ad-id-20"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_21", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 21,"device": {"advertising_id": "fake-ad-id-21"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_22", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 22,"device": {"advertising_id": "fake-ad-id-22"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_23", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 23,"device": {"advertising_id": "fake-ad-id-23"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_24", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 24,"device": {"advertising_id": "fake-ad-id-24"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_25", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 25,"device": {"advertising_id": "fake-ad-id-25"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_26", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 26,"device": {"advertising_id": "fake-ad-id-26"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_27", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 27,"device": {"advertising_id": "fake-ad-id-27"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_28", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 28,"device": {"advertising_id": "fake-ad-id-28"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_29", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 29,"device": {"advertising_id": "fake-ad-id-29"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_30", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 30,"device": {"advertising_id": "fake-ad-id-30"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_31", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 31,"device": {"advertising_id": "fake-ad-id-31"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_32", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 32,"device": {"advertising_id": "fake-ad-id-32"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_33", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 33,"device": {"advertising_id": "fake-ad-id-33"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_34", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 34,"device": {"advertising_id": "fake-ad-id-34"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_35", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 35,"device": {"advertising_id": "fake-ad-id-35"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_36", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 36,"device": {"advertising_id": "fake-ad-id-36"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_37", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 37,"device": {"advertising_id": "fake-ad-id-37"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_38", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 38,"device": {"advertising_id": "fake-ad-id-38"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_39", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 39,"device": {"advertising_id": "fake-ad-id-39"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_40", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 40,"device": {"advertising_id": "fake-ad-id-40"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_41", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 41,"device": {"advertising_id": "fake-ad-id-41"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_42", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 42,"device": {"advertising_id": "fake-ad-id-42"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_43", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 43,"device": {"advertising_id": "fake-ad-id-43"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_44", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 44,"device": {"advertising_id": "fake-ad-id-44"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_45", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 45,"device": {"advertising_id": "fake-ad-id-45"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_46", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 46,"device": {"advertising_id": "fake-ad-id-46"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_47", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 47,"device": {"advertising_id": "fake-ad-id-47"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_48", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 48,"device": {"advertising_id": "fake-ad-id-48"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_49", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 49,"device": {"advertising_id": "fake-ad-id-49"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_50", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 50,"device": {"advertising_id": "fake-ad-id-50"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_51", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 51,"device": {"advertising_id": "fake-ad-id-51"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_52", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 52,"device": {"advertising_id": "fake-ad-id-52"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_53", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 53,"device": {"advertising_id": "fake-ad-id-53"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_54", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 54,"device": {"advertising_id": "fake-ad-id-54"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_55", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 55,"device": {"advertising_id": "fake-ad-id-55"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_56", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 56,"device": {"advertising_id": "fake-ad-id-56"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_57", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 57,"device": {"advertising_id": "fake-ad-id-57"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_58", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 58,"device": {"advertising_id": "fake-ad-id-58"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_59", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 59,"device": {"advertising_id": "fake-ad-id-59"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_60", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 60,"device": {"advertising_id": "fake-ad-id-60"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_61", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 61,"device": {"advertising_id": "fake-ad-id-61"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_62", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 62,"device": {"advertising_id": "fake-ad-id-62"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_63", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 63,"device": {"advertising_id": "fake-ad-id-63"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_64", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 64,"device": {"advertising_id": "fake-ad-id-64"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_65", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 65,"device": {"advertising_id": "fake-ad-id-65"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_66", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 66,"device": {"advertising_id": "fake-ad-id-66"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_67", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 67,"device": {"advertising_id": "fake-ad-id-67"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_68", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 68,"device": {"advertising_id": "fake-ad-id-68"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_69", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 69,"device": {"advertising_id": "fake-ad-id-69"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_70", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 70,"device": {"advertising_id": "fake-ad-id-70"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_71", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 71,"device": {"advertising_id": "fake-ad-id-71"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_72", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 72,"device": {"advertising_id": "fake-ad-id-72"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_73", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 73,"device": {"advertising_id": "fake-ad-id-73"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_74", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 74,"device": {"advertising_id": "fake-ad-id-74"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_75", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 75,"device": {"advertising_id": "fake-ad-id-75"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_76", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 76,"device": {"advertising_id": "fake-ad-id-76"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_77", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 77,"device": {"advertising_id": "fake-ad-id-77"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_78", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 78,"device": {"advertising_id": "fake-ad-id-78"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_79", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 79,"device": {"advertising_id": "fake-ad-id-79"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_80", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 80,"device": {"advertising_id": "fake-ad-id-80"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_81", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 81,"device": {"advertising_id": "fake-ad-id-81"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_82", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 82,"device": {"advertising_id": "fake-ad-id-82"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_83", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 83,"device": {"advertising_id": "fake-ad-id-83"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_84", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 84,"device": {"advertising_id": "fake-ad-id-84"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_85", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 85,"device": {"advertising_id": "fake-ad-id-85"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_86", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 86,"device": {"advertising_id": "fake-ad-id-86"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_87", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 87,"device": {"advertising_id": "fake-ad-id-87"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_88", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 88,"device": {"advertising_id": "fake-ad-id-88"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_89", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 89,"device": {"advertising_id": "fake-ad-id-89"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_90", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 90,"device": {"advertising_id": "fake-ad-id-90"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_91", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 91,"device": {"advertising_id": "fake-ad-id-91"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_92", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 92,"device": {"advertising_id": "fake-ad-id-92"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_93", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 93,"device": {"advertising_id": "fake-ad-id-93"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_94", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 94,"device": {"advertising_id": "fake-ad-id-94"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_95", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 95,"device": {"advertising_id": "fake-ad-id-95"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_96", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 96,"device": {"advertising_id": "fake-ad-id-96"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_97", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 97,"device": {"advertising_id": "fake-ad-id-97"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_98", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 98,"device": {"advertising_id": "fake-ad-id-98"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_99", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 99,"device": {"advertising_id": "fake-ad-id-99"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_100", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 100,"device": {"advertising_id": "fake-ad-id-100"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_101", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 101,"device": {"advertising_id": "fake-ad-id-101"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}} + {"uuid": "pseudo_id_1", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1,"device": {"advertising_id": "fake-ad-id-1"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentStart_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_2", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 2,"device": {"advertising_id": "fake-ad-id-2"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentStart_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_3", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 3,"device": {"advertising_id": "fake-ad-id-3"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentStart_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_4", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 4,"device": {"advertising_id": "fake-ad-id-4"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentStart_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_5", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 5,"device": {"advertising_id": "fake-ad-id-5"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentStart_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_6", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 6,"device": {"advertising_id": "fake-ad-id-6"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentSuccess_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_7", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 7,"device": {"advertising_id": "fake-ad-id-7"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentSuccess_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_8", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 8,"device": {"advertising_id": "fake-ad-id-8"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentSuccess_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_9", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 9,"device": {"advertising_id": "fake-ad-id-9"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentSuccess_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_10", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10,"device": {"advertising_id": "fake-ad-id-10"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "Segment_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_11", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 11,"device": {"advertising_id": "fake-ad-id-11"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentStart_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_12", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 12,"device": {"advertising_id": "fake-ad-id-12"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentStart_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_13", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 13,"device": {"advertising_id": "fake-ad-id-13"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentStart_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_14", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 14,"device": {"advertising_id": "fake-ad-id-14"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentStart_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_15", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 15,"device": {"advertising_id": "fake-ad-id-15"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentStart_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_16", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 16,"device": {"advertising_id": "fake-ad-id-16"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_17", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 17,"device": {"advertising_id": "fake-ad-id-17"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_18", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 18,"device": {"advertising_id": "fake-ad-id-18"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_19", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 19,"device": {"advertising_id": "fake-ad-id-19"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_20", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 20,"device": {"advertising_id": "fake-ad-id-20"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_21", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 21,"device": {"advertising_id": "fake-ad-id-21"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_22", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 22,"device": {"advertising_id": "fake-ad-id-22"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_23", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 23,"device": {"advertising_id": "fake-ad-id-23"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_24", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 24,"device": {"advertising_id": "fake-ad-id-24"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_25", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 25,"device": {"advertising_id": "fake-ad-id-25"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_26", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 26,"device": {"advertising_id": "fake-ad-id-26"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_27", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 27,"device": {"advertising_id": "fake-ad-id-27"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_28", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 28,"device": {"advertising_id": "fake-ad-id-28"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_29", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 29,"device": {"advertising_id": "fake-ad-id-29"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_30", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 30,"device": {"advertising_id": "fake-ad-id-30"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_31", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 31,"device": {"advertising_id": "fake-ad-id-31"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_32", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 32,"device": {"advertising_id": "fake-ad-id-32"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_33", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 33,"device": {"advertising_id": "fake-ad-id-33"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_34", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 34,"device": {"advertising_id": "fake-ad-id-34"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_35", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 35,"device": {"advertising_id": "fake-ad-id-35"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_36", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 36,"device": {"advertising_id": "fake-ad-id-36"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_37", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 37,"device": {"advertising_id": "fake-ad-id-37"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_38", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 38,"device": {"advertising_id": "fake-ad-id-38"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_39", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 39,"device": {"advertising_id": "fake-ad-id-39"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_40", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 40,"device": {"advertising_id": "fake-ad-id-40"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_41", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 41,"device": {"advertising_id": "fake-ad-id-41"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_42", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 42,"device": {"advertising_id": "fake-ad-id-42"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_43", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 43,"device": {"advertising_id": "fake-ad-id-43"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_44", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 44,"device": {"advertising_id": "fake-ad-id-44"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_45", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 45,"device": {"advertising_id": "fake-ad-id-45"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_46", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 46,"device": {"advertising_id": "fake-ad-id-46"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_47", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 47,"device": {"advertising_id": "fake-ad-id-47"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_48", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 48,"device": {"advertising_id": "fake-ad-id-48"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_49", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 49,"device": {"advertising_id": "fake-ad-id-49"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_50", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 50,"device": {"advertising_id": "fake-ad-id-50"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_51", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 51,"device": {"advertising_id": "fake-ad-id-51"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_52", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 52,"device": {"advertising_id": "fake-ad-id-52"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_53", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 53,"device": {"advertising_id": "fake-ad-id-53"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_54", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 54,"device": {"advertising_id": "fake-ad-id-54"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_55", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 55,"device": {"advertising_id": "fake-ad-id-55"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_56", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 56,"device": {"advertising_id": "fake-ad-id-56"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_57", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 57,"device": {"advertising_id": "fake-ad-id-57"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_58", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 58,"device": {"advertising_id": "fake-ad-id-58"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_59", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 59,"device": {"advertising_id": "fake-ad-id-59"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_60", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 60,"device": {"advertising_id": "fake-ad-id-60"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_61", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 61,"device": {"advertising_id": "fake-ad-id-61"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_62", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 62,"device": {"advertising_id": "fake-ad-id-62"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_63", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 63,"device": {"advertising_id": "fake-ad-id-63"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_64", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 64,"device": {"advertising_id": "fake-ad-id-64"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_65", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 65,"device": {"advertising_id": "fake-ad-id-65"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_66", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 66,"device": {"advertising_id": "fake-ad-id-66"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_67", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 67,"device": {"advertising_id": "fake-ad-id-67"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_68", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 68,"device": {"advertising_id": "fake-ad-id-68"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_69", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 69,"device": {"advertising_id": "fake-ad-id-69"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_70", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 70,"device": {"advertising_id": "fake-ad-id-70"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_71", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 71,"device": {"advertising_id": "fake-ad-id-71"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_72", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 72,"device": {"advertising_id": "fake-ad-id-72"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_73", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 73,"device": {"advertising_id": "fake-ad-id-73"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_74", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 74,"device": {"advertising_id": "fake-ad-id-74"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_75", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 75,"device": {"advertising_id": "fake-ad-id-75"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_76", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 76,"device": {"advertising_id": "fake-ad-id-76"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_77", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 77,"device": {"advertising_id": "fake-ad-id-77"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_78", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 78,"device": {"advertising_id": "fake-ad-id-78"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_79", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 79,"device": {"advertising_id": "fake-ad-id-79"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_80", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 80,"device": {"advertising_id": "fake-ad-id-80"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_81", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 81,"device": {"advertising_id": "fake-ad-id-81"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_82", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 82,"device": {"advertising_id": "fake-ad-id-82"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_83", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 83,"device": {"advertising_id": "fake-ad-id-83"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_84", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 84,"device": {"advertising_id": "fake-ad-id-84"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_85", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 85,"device": {"advertising_id": "fake-ad-id-85"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_86", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 86,"device": {"advertising_id": "fake-ad-id-86"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_87", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 87,"device": {"advertising_id": "fake-ad-id-87"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_88", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 88,"device": {"advertising_id": "fake-ad-id-88"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_89", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 89,"device": {"advertising_id": "fake-ad-id-89"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_90", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 90,"device": {"advertising_id": "fake-ad-id-90"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_91", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 91,"device": {"advertising_id": "fake-ad-id-91"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_92", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 92,"device": {"advertising_id": "fake-ad-id-92"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_93", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 93,"device": {"advertising_id": "fake-ad-id-93"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_94", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 94,"device": {"advertising_id": "fake-ad-id-94"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_95", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 95,"device": {"advertising_id": "fake-ad-id-95"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_96", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 96,"device": {"advertising_id": "fake-ad-id-96"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_97", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 97,"device": {"advertising_id": "fake-ad-id-97"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_98", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 98,"device": {"advertising_id": "fake-ad-id-98"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_99", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 99,"device": {"advertising_id": "fake-ad-id-99"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_100", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 100,"device": {"advertising_id": "fake-ad-id-100"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_101", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 101,"device": {"advertising_id": "fake-ad-id-101"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}} ], "set4": [ - {"user_pseudo_id": "pseudo_id_1", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1001,"device": {"advertising_id": "fake-ad-id-1"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_2", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1002,"device": {"advertising_id": "fake-ad-id-2"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_3", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1003,"device": {"advertising_id": "fake-ad-id-3"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_4", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1004,"device": {"advertising_id": "fake-ad-id-4"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_5", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1005,"device": {"advertising_id": "fake-ad-id-5"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_6", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1006,"device": {"advertising_id": "fake-ad-id-6"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_7", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1007,"device": {"advertising_id": "fake-ad-id-7"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_8", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1008,"device": {"advertising_id": "fake-ad-id-8"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_9", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1009,"device": {"advertising_id": "fake-ad-id-9"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_10", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10010,"device": {"advertising_id": "fake-ad-id-10"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_11", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10011,"device": {"advertising_id": "fake-ad-id-11"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_12", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10012,"device": {"advertising_id": "fake-ad-id-12"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_13", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10013,"device": {"advertising_id": "fake-ad-id-13"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_14", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10014,"device": {"advertising_id": "fake-ad-id-14"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_15", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10015,"device": {"advertising_id": "fake-ad-id-15"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_16", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10016,"device": {"advertising_id": "fake-ad-id-16"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_17", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10017,"device": {"advertising_id": "fake-ad-id-17"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_18", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10018,"device": {"advertising_id": "fake-ad-id-18"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_19", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10019,"device": {"advertising_id": "fake-ad-id-19"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_20", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10020,"device": {"advertising_id": "fake-ad-id-20"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_21", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10021,"device": {"advertising_id": "fake-ad-id-21"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_22", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10022,"device": {"advertising_id": "fake-ad-id-22"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_23", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10023,"device": {"advertising_id": "fake-ad-id-23"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_24", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10024,"device": {"advertising_id": "fake-ad-id-24"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_25", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10025,"device": {"advertising_id": "fake-ad-id-25"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_26", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10026,"device": {"advertising_id": "fake-ad-id-26"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_27", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10027,"device": {"advertising_id": "fake-ad-id-27"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_28", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10028,"device": {"advertising_id": "fake-ad-id-28"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_29", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10029,"device": {"advertising_id": "fake-ad-id-29"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_30", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10030,"device": {"advertising_id": "fake-ad-id-30"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_31", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10031,"device": {"advertising_id": "fake-ad-id-31"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_32", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10032,"device": {"advertising_id": "fake-ad-id-32"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_33", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10033,"device": {"advertising_id": "fake-ad-id-33"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_34", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10034,"device": {"advertising_id": "fake-ad-id-34"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_35", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10035,"device": {"advertising_id": "fake-ad-id-35"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_36", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10036,"device": {"advertising_id": "fake-ad-id-36"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_37", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10037,"device": {"advertising_id": "fake-ad-id-37"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_38", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10038,"device": {"advertising_id": "fake-ad-id-38"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_39", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10039,"device": {"advertising_id": "fake-ad-id-39"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_40", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10040,"device": {"advertising_id": "fake-ad-id-40"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_41", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10041,"device": {"advertising_id": "fake-ad-id-41"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_42", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10042,"device": {"advertising_id": "fake-ad-id-42"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_43", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10043,"device": {"advertising_id": "fake-ad-id-43"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_44", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10044,"device": {"advertising_id": "fake-ad-id-44"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_45", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10045,"device": {"advertising_id": "fake-ad-id-45"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_46", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10046,"device": {"advertising_id": "fake-ad-id-46"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_47", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10047,"device": {"advertising_id": "fake-ad-id-47"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_48", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10048,"device": {"advertising_id": "fake-ad-id-48"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_49", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10049,"device": {"advertising_id": "fake-ad-id-49"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_50", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10050,"device": {"advertising_id": "fake-ad-id-50"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_51", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10051,"device": {"advertising_id": "fake-ad-id-51"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_52", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10052,"device": {"advertising_id": "fake-ad-id-52"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Level_6", "action": "SelectMonster Magnet Evolve_4", "screen": "MonsterSelect", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_53", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10053,"device": {"advertising_id": "fake-ad-id-53"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_54", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10054,"device": {"advertising_id": "fake-ad-id-54"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_55", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10055,"device": {"advertising_id": "fake-ad-id-55"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_56", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10056,"device": {"advertising_id": "fake-ad-id-56"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_57", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10057,"device": {"advertising_id": "fake-ad-id-57"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_58", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10058,"device": {"advertising_id": "fake-ad-id-58"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_59", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10059,"device": {"advertising_id": "fake-ad-id-59"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_60", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10060,"device": {"advertising_id": "fake-ad-id-60"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_61", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10061,"device": {"advertising_id": "fake-ad-id-61"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_62", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10062,"device": {"advertising_id": "fake-ad-id-62"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_63", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10063,"device": {"advertising_id": "fake-ad-id-63"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_64", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10064,"device": {"advertising_id": "fake-ad-id-64"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_65", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10065,"device": {"advertising_id": "fake-ad-id-65"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_66", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10066,"device": {"advertising_id": "fake-ad-id-66"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_67", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10067,"device": {"advertising_id": "fake-ad-id-67"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_68", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10068,"device": {"advertising_id": "fake-ad-id-68"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_69", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10069,"device": {"advertising_id": "fake-ad-id-69"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_70", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10070,"device": {"advertising_id": "fake-ad-id-70"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_71", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10071,"device": {"advertising_id": "fake-ad-id-71"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_72", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10072,"device": {"advertising_id": "fake-ad-id-72"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_73", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10073,"device": {"advertising_id": "fake-ad-id-73"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_74", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10074,"device": {"advertising_id": "fake-ad-id-74"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_75", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10075,"device": {"advertising_id": "fake-ad-id-75"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_76", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10076,"device": {"advertising_id": "fake-ad-id-76"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_77", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10077,"device": {"advertising_id": "fake-ad-id-77"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_78", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10078,"device": {"advertising_id": "fake-ad-id-78"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_79", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10079,"device": {"advertising_id": "fake-ad-id-79"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_80", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10080,"device": {"advertising_id": "fake-ad-id-80"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_81", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10081,"device": {"advertising_id": "fake-ad-id-81"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_82", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10082,"device": {"advertising_id": "fake-ad-id-82"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_83", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10083,"device": {"advertising_id": "fake-ad-id-83"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_84", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10084,"device": {"advertising_id": "fake-ad-id-84"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_85", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10085,"device": {"advertising_id": "fake-ad-id-85"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_86", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10086,"device": {"advertising_id": "fake-ad-id-86"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_87", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10087,"device": {"advertising_id": "fake-ad-id-87"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_88", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10088,"device": {"advertising_id": "fake-ad-id-88"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_89", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10089,"device": {"advertising_id": "fake-ad-id-89"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_90", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10090,"device": {"advertising_id": "fake-ad-id-90"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_91", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10091,"device": {"advertising_id": "fake-ad-id-91"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_92", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10092,"device": {"advertising_id": "fake-ad-id-92"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_93", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10093,"device": {"advertising_id": "fake-ad-id-93"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_94", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10094,"device": {"advertising_id": "fake-ad-id-94"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_95", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10095,"device": {"advertising_id": "fake-ad-id-95"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_96", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10096,"device": {"advertising_id": "fake-ad-id-96"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_97", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10097,"device": {"advertising_id": "fake-ad-id-97"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_98", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10098,"device": {"advertising_id": "fake-ad-id-98"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_99", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10099,"device": {"advertising_id": "fake-ad-id-99"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_100", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 100100,"device": {"advertising_id": "fake-ad-id-100"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"user_pseudo_id": "pseudo_id_101", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 100101,"device": {"advertising_id": "fake-ad-id-101"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}} + {"uuid": "pseudo_id_1", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1001,"device": {"advertising_id": "fake-ad-id-1"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_2", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1002,"device": {"advertising_id": "fake-ad-id-2"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_3", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1003,"device": {"advertising_id": "fake-ad-id-3"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_4", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1004,"device": {"advertising_id": "fake-ad-id-4"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_5", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1005,"device": {"advertising_id": "fake-ad-id-5"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_6", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1006,"device": {"advertising_id": "fake-ad-id-6"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_7", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1007,"device": {"advertising_id": "fake-ad-id-7"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_8", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1008,"device": {"advertising_id": "fake-ad-id-8"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_9", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1009,"device": {"advertising_id": "fake-ad-id-9"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_10", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10010,"device": {"advertising_id": "fake-ad-id-10"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_11", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10011,"device": {"advertising_id": "fake-ad-id-11"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_12", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10012,"device": {"advertising_id": "fake-ad-id-12"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_13", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10013,"device": {"advertising_id": "fake-ad-id-13"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_14", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10014,"device": {"advertising_id": "fake-ad-id-14"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_15", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10015,"device": {"advertising_id": "fake-ad-id-15"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_16", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10016,"device": {"advertising_id": "fake-ad-id-16"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_17", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10017,"device": {"advertising_id": "fake-ad-id-17"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_18", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10018,"device": {"advertising_id": "fake-ad-id-18"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_19", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10019,"device": {"advertising_id": "fake-ad-id-19"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_20", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10020,"device": {"advertising_id": "fake-ad-id-20"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_21", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10021,"device": {"advertising_id": "fake-ad-id-21"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_22", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10022,"device": {"advertising_id": "fake-ad-id-22"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_23", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10023,"device": {"advertising_id": "fake-ad-id-23"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_24", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10024,"device": {"advertising_id": "fake-ad-id-24"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_25", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10025,"device": {"advertising_id": "fake-ad-id-25"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_26", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10026,"device": {"advertising_id": "fake-ad-id-26"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_27", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10027,"device": {"advertising_id": "fake-ad-id-27"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_28", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10028,"device": {"advertising_id": "fake-ad-id-28"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_29", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10029,"device": {"advertising_id": "fake-ad-id-29"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_30", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10030,"device": {"advertising_id": "fake-ad-id-30"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_31", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10031,"device": {"advertising_id": "fake-ad-id-31"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_32", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10032,"device": {"advertising_id": "fake-ad-id-32"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_33", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10033,"device": {"advertising_id": "fake-ad-id-33"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_34", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10034,"device": {"advertising_id": "fake-ad-id-34"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_35", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10035,"device": {"advertising_id": "fake-ad-id-35"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_36", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10036,"device": {"advertising_id": "fake-ad-id-36"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_37", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10037,"device": {"advertising_id": "fake-ad-id-37"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_38", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10038,"device": {"advertising_id": "fake-ad-id-38"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_39", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10039,"device": {"advertising_id": "fake-ad-id-39"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_40", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10040,"device": {"advertising_id": "fake-ad-id-40"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_41", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10041,"device": {"advertising_id": "fake-ad-id-41"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_42", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10042,"device": {"advertising_id": "fake-ad-id-42"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_43", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10043,"device": {"advertising_id": "fake-ad-id-43"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_44", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10044,"device": {"advertising_id": "fake-ad-id-44"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_45", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10045,"device": {"advertising_id": "fake-ad-id-45"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_46", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10046,"device": {"advertising_id": "fake-ad-id-46"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_47", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10047,"device": {"advertising_id": "fake-ad-id-47"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_48", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10048,"device": {"advertising_id": "fake-ad-id-48"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_49", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10049,"device": {"advertising_id": "fake-ad-id-49"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_50", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10050,"device": {"advertising_id": "fake-ad-id-50"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_51", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10051,"device": {"advertising_id": "fake-ad-id-51"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_52", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10052,"device": {"advertising_id": "fake-ad-id-52"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Level_6", "action": "SelectMonster Magnet Evolve_4", "screen": "MonsterSelect", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_53", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10053,"device": {"advertising_id": "fake-ad-id-53"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_54", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10054,"device": {"advertising_id": "fake-ad-id-54"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_55", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10055,"device": {"advertising_id": "fake-ad-id-55"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_56", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10056,"device": {"advertising_id": "fake-ad-id-56"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_57", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10057,"device": {"advertising_id": "fake-ad-id-57"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_58", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10058,"device": {"advertising_id": "fake-ad-id-58"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_59", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10059,"device": {"advertising_id": "fake-ad-id-59"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_60", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10060,"device": {"advertising_id": "fake-ad-id-60"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_61", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10061,"device": {"advertising_id": "fake-ad-id-61"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_62", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10062,"device": {"advertising_id": "fake-ad-id-62"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_63", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10063,"device": {"advertising_id": "fake-ad-id-63"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_64", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10064,"device": {"advertising_id": "fake-ad-id-64"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_65", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10065,"device": {"advertising_id": "fake-ad-id-65"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_66", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10066,"device": {"advertising_id": "fake-ad-id-66"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_67", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10067,"device": {"advertising_id": "fake-ad-id-67"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_68", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10068,"device": {"advertising_id": "fake-ad-id-68"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_69", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10069,"device": {"advertising_id": "fake-ad-id-69"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_70", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10070,"device": {"advertising_id": "fake-ad-id-70"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_71", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10071,"device": {"advertising_id": "fake-ad-id-71"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_72", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10072,"device": {"advertising_id": "fake-ad-id-72"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_73", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10073,"device": {"advertising_id": "fake-ad-id-73"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_74", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10074,"device": {"advertising_id": "fake-ad-id-74"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_75", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10075,"device": {"advertising_id": "fake-ad-id-75"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_76", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10076,"device": {"advertising_id": "fake-ad-id-76"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_77", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10077,"device": {"advertising_id": "fake-ad-id-77"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_78", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10078,"device": {"advertising_id": "fake-ad-id-78"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_79", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10079,"device": {"advertising_id": "fake-ad-id-79"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_80", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10080,"device": {"advertising_id": "fake-ad-id-80"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_81", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10081,"device": {"advertising_id": "fake-ad-id-81"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_82", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10082,"device": {"advertising_id": "fake-ad-id-82"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_83", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10083,"device": {"advertising_id": "fake-ad-id-83"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_84", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10084,"device": {"advertising_id": "fake-ad-id-84"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_85", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10085,"device": {"advertising_id": "fake-ad-id-85"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_86", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10086,"device": {"advertising_id": "fake-ad-id-86"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_87", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10087,"device": {"advertising_id": "fake-ad-id-87"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_88", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10088,"device": {"advertising_id": "fake-ad-id-88"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_89", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10089,"device": {"advertising_id": "fake-ad-id-89"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_90", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10090,"device": {"advertising_id": "fake-ad-id-90"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_91", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10091,"device": {"advertising_id": "fake-ad-id-91"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_92", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10092,"device": {"advertising_id": "fake-ad-id-92"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_93", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10093,"device": {"advertising_id": "fake-ad-id-93"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_94", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10094,"device": {"advertising_id": "fake-ad-id-94"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_95", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10095,"device": {"advertising_id": "fake-ad-id-95"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_96", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10096,"device": {"advertising_id": "fake-ad-id-96"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_97", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10097,"device": {"advertising_id": "fake-ad-id-97"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_98", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10098,"device": {"advertising_id": "fake-ad-id-98"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_99", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10099,"device": {"advertising_id": "fake-ad-id-99"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_100", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 100100,"device": {"advertising_id": "fake-ad-id-100"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_101", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 100101,"device": {"advertising_id": "fake-ad-id-101"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}} ]} diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..48e341a --- /dev/null +++ b/package-lock.json @@ -0,0 +1,3 @@ +{ + "lockfileVersion": 1 +} From d421ae301f4c1c7d9457c11da2474076dea29ce5 Mon Sep 17 00:00:00 2001 From: Eric GT Date: Mon, 11 Apr 2022 17:51:45 -0400 Subject: [PATCH 8/8] report DeepLinkParams metadata --- api/src/helperClasses.js | 11 +- api/src/sql/fetch_latest.sql | 10 +- api/test/api.spec.js | 6 + api/test/fixtures/parserFixtures.json | 54 ++++ api/test/fixtures/queryResults.json | 404 +++++++++++++------------- 5 files changed, 278 insertions(+), 207 deletions(-) diff --git a/api/src/helperClasses.js b/api/src/helperClasses.js index 7e4c9b4..f1f7db0 100644 --- a/api/src/helperClasses.js +++ b/api/src/helperClasses.js @@ -29,6 +29,11 @@ class BigQueryParser { formatRowsToJson (rows) { let resObj = rows.map((row) => { + let metadata= {}; + row.metadata.forEach(kvp => { //only store most recent value for key + metadata[kvp.key] = kvp.val + }); + return { attribution_url: row.attribution_id, app_id: row.app_package_name, @@ -36,10 +41,8 @@ class BigQueryParser { user: { id: row.uuid? row.uuid : null, metadata: { - continent: row.geo.continent, - country: row.geo.country, - region: row.geo.region, - city: row.geo.city, + ...metadata, + ...row.geo, }, ad_attribution: { source: this.getSource(row.attribution_id) diff --git a/api/src/sql/fetch_latest.sql b/api/src/sql/fetch_latest.sql index 5fdd0ac..e2ea76c 100644 --- a/api/src/sql/fetch_latest.sql +++ b/api/src/sql/fetch_latest.sql @@ -63,7 +63,13 @@ WITH WHERE params.key = 'screen' ), - + METADATA AS( + SELECT + params.* + FROM + `{{dataset}}.deep_link_parameters*` as params + INNER JOIN UUID_AND_PROFILE on UUID_AND_PROFILE.use_pseudo_id = params.user_pseudo_id + ), DEFAULT_SCREEN AS ( SELECT attribution_id, @@ -152,6 +158,7 @@ SELECT VALS.label, VALS.val, VALS.screen, + METADATA.metadata UUID_AND_PROFILE.profile, UUID_AND_PROFILE.uuid, VALS.* EXCEPT(action, label, val, screen, event_params, user_properties) @@ -159,6 +166,7 @@ FROM VALS INNER JOIN APP_INITIALIZED on APP_INITIALIZED.user_pseudo_id = VALS.user_pseudo_id INNER JOIN UUID_AND_PROFILE on UUID_AND_PROFILE.user_pseudo_id = VALS.user_pseudo_id AND (VALS.screen = "Splash Screen" OR VALS.screen LIKE CONCAT("%- Profile ", UUID_AND_PROFILE.profile) OR VALS.screen LIKE CONCAT("%Profile: ", UUID_AND_PROFILE.profile)) +INNER JOIN METADATA on METADATA.user_pseudo_id = VALS.user_pseudo_id UNION ALL( SELECT attribution_id, diff --git a/api/test/api.spec.js b/api/test/api.spec.js index e72fd51..ce2eab0 100644 --- a/api/test/api.spec.js +++ b/api/test/api.spec.js @@ -170,6 +170,8 @@ describe('Literacy API Routes', () => { user: { id: row.uuid, metadata: { + key1: row.metadata[0].val, + key2: row.metadata[1].val, continent: row.geo.continent, country: row.geo.country, region: row.geo.region, @@ -252,6 +254,8 @@ describe('Literacy API Routes', () => { user: { id: row.uuid, metadata: { + key1: row.metadata[0].val, + key2: row.metadata[1].val, continent: row.geo.continent, country: row.geo.country, region: row.geo.region, @@ -315,6 +319,8 @@ describe('Literacy API Routes', () => { user: { id: row.uuid, metadata: { + key1: row.metadata[0].val, + key2: row.metadata[1].val, continent: row.geo.continent, country: row.geo.country, region: row.geo.region, diff --git a/api/test/fixtures/parserFixtures.json b/api/test/fixtures/parserFixtures.json index 7d9afc6..0eea764 100644 --- a/api/test/fixtures/parserFixtures.json +++ b/api/test/fixtures/parserFixtures.json @@ -2,6 +2,10 @@ "row": { "uuid": "pseudo_id_1", "attribution_id": "referral_source_8675309", + "metadata":[ + {"key": "key1", "val": "val1"}, + {"key": "key2", "val": "val2"} + ], "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1001, "event_date": "fake-date", @@ -30,6 +34,8 @@ "user": { "id": "pseudo_id_1", "metadata": { + "key1": "val1", + "key2": "val2", "continent": "fake-continent", "country": "fake-country", "region": "fake-region", @@ -65,6 +71,10 @@ "row": { "uuid": "pseudo_id_22", "attribution_id": "referral_source_8675309", + "metadata":[ + {"key": "key1", "val": "val1"}, + {"key": "key2", "val": "val2"} + ], "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10022, "event_date": "fake-date", @@ -93,6 +103,8 @@ "user": { "id": "pseudo_id_22", "metadata": { + "key1": "val1", + "key2": "val2", "continent": "fake-continent", "country": "fake-country", "region": "fake-region", @@ -128,6 +140,10 @@ "row": { "uuid": "pseudo_id_52", "attribution_id": "referral_source_8675309", + "metadata":[ + {"key": "key1", "val": "val1"}, + {"key": "key2", "val": "val2"} + ], "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10052, "event_date": "fake-date", @@ -156,6 +172,8 @@ "user": { "id": "pseudo_id_52", "metadata": { + "key1": "val1", + "key2": "val2", "continent": "fake-continent", "country": "fake-country", "region": "fake-region", @@ -191,6 +209,10 @@ "row": { "uuid": "pseudo_id_53", "attribution_id": "referral_source_8675309", + "metadata":[ + {"key": "key1", "val": "val1"}, + {"key": "key2", "val": "val2"} + ], "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10053, "event_date": "fake-date", @@ -219,6 +241,8 @@ "user": { "id": "pseudo_id_53", "metadata": { + "key1": "val1", + "key2": "val2", "continent": "fake-continent", "country": "fake-country", "region": "fake-region", @@ -254,6 +278,10 @@ "row": { "uuid": "pseudo_id_77", "attribution_id": "referral_source_8675309", + "metadata":[ + {"key": "key1", "val": "val1"}, + {"key": "key2", "val": "val2"} + ], "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10077, "event_date": "fake-date", @@ -282,6 +310,8 @@ "user": { "id": "pseudo_id_77", "metadata": { + "key1": "val1", + "key2": "val2", "continent": "fake-continent", "country": "fake-country", "region": "fake-region", @@ -317,6 +347,10 @@ "row": { "uuid": "pseudo_id_77", "attribution_id": "referral_source_8675309", + "metadata":[ + {"key": "key1", "val": "val1"}, + {"key": "key2", "val": "val2"} + ], "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10077, "event_date": "fake-date", @@ -345,6 +379,8 @@ "user": { "id": "pseudo_id_77", "metadata": { + "key1": "val1", + "key2": "val2", "continent": "fake-continent", "country": "fake-country", "region": "fake-region", @@ -380,6 +416,10 @@ "row": { "uuid": "pseudo_id_77", "attribution_id": "referral_source_8675309", + "metadata":[ + {"key": "key1", "val": "val1"}, + {"key": "key2", "val": "val2"} + ], "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10077, "event_date": "fake-date", @@ -408,6 +448,8 @@ "user": { "id": "pseudo_id_77", "metadata": { + "key1": "val1", + "key2": "val2", "continent": "fake-continent", "country": "fake-country", "region": "fake-region", @@ -443,6 +485,10 @@ "row": { "uuid": "pseudo_id_77", "attribution_id": "referral_source_8675309", + "metadata":[ + {"key": "key1", "val": "val1"}, + {"key": "key2", "val": "val2"} + ], "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10077, "event_date": "fake-date", @@ -471,6 +517,8 @@ "user": { "id": "pseudo_id_77", "metadata": { + "key1": "val1", + "key2": "val2", "continent": "fake-continent", "country": "fake-country", "region": "fake-region", @@ -506,6 +554,10 @@ "row": { "uuid": "pseudo_id_22", "attribution_id": "referral_source_8675309", + "metadata":[ + {"key": "key1", "val": "val1"}, + {"key": "key2", "val": "val2"} + ], "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10022, "event_date": "fake-date", @@ -534,6 +586,8 @@ "user": { "id": "pseudo_id_22", "metadata": { + "key1": "val1", + "key2": "val2", "continent": "fake-continent", "country": "fake-country", "region": "fake-region", diff --git a/api/test/fixtures/queryResults.json b/api/test/fixtures/queryResults.json index 217a7fa..9e56956 100644 --- a/api/test/fixtures/queryResults.json +++ b/api/test/fixtures/queryResults.json @@ -1,207 +1,207 @@ {"set1": [ {"row": 1 }, {"row": 2 }, {"row": 3}, {"row": 4}, {"row": 5}, {"row": 6}, {"row": 7}, {"row": 8}, {"row": 9}, {"row": 10 }, {"row": 11 }, {"row": 12 }, {"row": 13 }, {"row": 14 }, {"row": 15 }, {"row": 16 }, {"row": 17 }, {"row": 18 }, {"row": 19 }, {"row": 20 }, {"row": 21 }, {"row": 22 }, {"row": 23 }, {"row": 24 }, {"row": 25 }, {"row": 26 }, {"row": 27 }, {"row": 28 }, {"row": 29 }, {"row": 30 }, {"row": 31 }, {"row": 32 }, {"row": 33 }, {"row": 34 }, {"row": 35 }, {"row": 36 }, {"row": 37 }, {"row": 38 }, {"row": 39 }, {"row": 40 }, {"row": 41 }, {"row": 42 }, {"row": 43 }, {"row": 44 }, {"row": 45 }, {"row": 46 }, {"row": 47 }, {"row": 48 }, {"row": 49 }, {"row": 50 }, {"row": 51 }, {"row": 52 }, {"row": 53 }, {"row": 54 }, {"row": 55 }, {"row": 56 }, {"row": 57 }, {"row": 58 }, {"row": 59 }, {"row": 60 }, {"row": 61 }, {"row": 62 }, {"row": 63 }, {"row": 64 }, {"row": 65 }, {"row": 66 }, {"row": 67 }, {"row": 68 }, {"row": 69 }, {"row": 70 }, {"row": 71 }, {"row": 72 }, {"row": 73 }, {"row": 74 }, {"row": 75 }, {"row": 76 }, {"row": 77 }, {"row": 78 }, {"row": 79 }, {"row": 80 }, {"row": 81 }, {"row": 82 }, {"row": 83 }, {"row": 84 }, {"row": 85 }, {"row": 86 }, {"row": 87 }, {"row": 88 }, {"row": 89 }, {"row": 90 }, {"row": 91 }, {"row": 92 }, {"row": 93 }, {"row": 94 }, {"row": 95 }, {"row": 96 }, {"row": 97 }, {"row": 98 }, {"row": 99 }, {"row": 100 }, {"row": 101 }, {"row": 102 }, {"row": 103 }, {"row": 104 }, {"row": 105 }, {"row": 106 }, {"row": 107 }, {"row": 108 }, {"row": 109 }, {"row": 110 }, {"row": 111 }, {"row": 112 }, {"row": 113 }, {"row": 114 }, {"row": 115 }, {"row": 116 }, {"row": 117 }, {"row": 118 }, {"row": 119 }, {"row": 120 }, {"row": 121 }, {"row": 122 }, {"row": 123 }, {"row": 124 }, {"row": 125 }, {"row": 126 }, {"row": 127 }, {"row": 128 }, {"row": 129 }, {"row": 130 }, {"row": 131 }, {"row": 132 }, {"row": 133 }, {"row": 134 }, {"row": 135 }, {"row": 136 }, {"row": 137 }, {"row": 138 }, {"row": 139 }, {"row": 140 }, {"row": 141 }, {"row": 142 }, {"row": 143 }, {"row": 144 }, {"row": 145 }, {"row": 146 }, {"row": 147 }, {"row": 148 }, {"row": 149 }, {"row": 150 }, {"row": 151 }, {"row": 152 }, {"row": 153 }, {"row": 154 }, {"row": 155 }, {"row": 156 }, {"row": 157 }, {"row": 158 }, {"row": 159 }, {"row": 160 }, {"row": 161 }, {"row": 162 }, {"row": 163 }, {"row": 164 }, {"row": 165 }, {"row": 166 }, {"row": 167 }, {"row": 168 }, {"row": 169 }, {"row": 170 }, {"row": 171 }, {"row": 172 }, {"row": 173 }, {"row": 174 }, {"row": 175 }, {"row": 176 }, {"row": 177 }, {"row": 178 }, {"row": 179 }, {"row": 180 }, {"row": 181 }, {"row": 182 }, {"row": 183 }, {"row": 184 }, {"row": 185 }, {"row": 186 }, {"row": 187 }, {"row": 188 }, {"row": 189 }, {"row": 190 }, {"row": 191 }, {"row": 192 }, {"row": 193 }, {"row": 194 }, {"row": 195 }, {"row": 196 }, {"row": 197 }, {"row": 198 }, {"row": 199 }, {"row": 200 }, {"row": 201 }, {"row": 202 }, {"row": 203 }, {"row": 204 }, {"row": 205 }, {"row": 206 }, {"row": 207 }, {"row": 208 }, {"row": 209 }, {"row": 210 }, {"row": 211 }, {"row": 212 }, {"row": 213 }, {"row": 214 }, {"row": 215 }, {"row": 216 }, {"row": 217 }, {"row": 218 }, {"row": 219 }, {"row": 220 }, {"row": 221 }, {"row": 222 }, {"row": 223 }, {"row": 224 }, {"row": 225 }, {"row": 226 }, {"row": 227 }, {"row": 228 }, {"row": 229 }, {"row": 230 }, {"row": 231 }, {"row": 232 }, {"row": 233 }, {"row": 234 }, {"row": 235 }, {"row": 236 }, {"row": 237 }, {"row": 238 }, {"row": 239 }, {"row": 240 }, {"row": 241 }, {"row": 242 }, {"row": 243 }, {"row": 244 }, {"row": 245 }, {"row": 246 }, {"row": 247 }, {"row": 248 }, {"row": 249 }, {"row": 250 }, {"row": 251 }, {"row": 252 }, {"row": 253 }, {"row": 254 }, {"row": 255 }, {"row": 256 }, {"row": 257 }, {"row": 258 }, {"row": 259 }, {"row": 260 }, {"row": 261 }, {"row": 262 }, {"row": 263 }, {"row": 264 }, {"row": 265 }, {"row": 266 }, {"row": 267 }, {"row": 268 }, {"row": 269 }, {"row": 270 }, {"row": 271 }, {"row": 272 }, {"row": 273 }, {"row": 274 }, {"row": 275 }, {"row": 276 }, {"row": 277 }, {"row": 278 }, {"row": 279 }, {"row": 280 }, {"row": 281 }, {"row": 282 }, {"row": 283 }, {"row": 284 }, {"row": 285 }, {"row": 286 }, {"row": 287 }, {"row": 288 }, {"row": 289 }, {"row": 290 }, {"row": 291 }, {"row": 292 }, {"row": 293 }, {"row": 294 }, {"row": 295 }, {"row": 296 }, {"row": 297 }, {"row": 298 }, {"row": 299 }, {"row": 300 }, {"row": 301 }, {"row": 302 }, {"row": 303 }, {"row": 304 }, {"row": 305 }, {"row": 306 }, {"row": 307 }, {"row": 308 }, {"row": 309 }, {"row": 310 }, {"row": 311 }, {"row": 312 }, {"row": 313 }, {"row": 314 }, {"row": 315 }, {"row": 316 }, {"row": 317 }, {"row": 318 }, {"row": 319 }, {"row": 320 }, {"row": 321 }, {"row": 322 }, {"row": 323 }, {"row": 324 }, {"row": 325 }, {"row": 326 }, {"row": 327 }, {"row": 328 }, {"row": 329 }, {"row": 330 }, {"row": 331 }, {"row": 332 }, {"row": 333 }, {"row": 334 }, {"row": 335 }, {"row": 336 }, {"row": 337 }, {"row": 338 }, {"row": 339 }, {"row": 340 }, {"row": 341 }, {"row": 342 }, {"row": 343 }, {"row": 344 }, {"row": 345 }, {"row": 346 }, {"row": 347 }, {"row": 348 }, {"row": 349 }, {"row": 350 }, {"row": 351 }, {"row": 352 }, {"row": 353 }, {"row": 354 }, {"row": 355 }, {"row": 356 }, {"row": 357 }, {"row": 358 }, {"row": 359 }, {"row": 360 }, {"row": 361 }, {"row": 362 }, {"row": 363 }, {"row": 364 }, {"row": 365 }, {"row": 366 }, {"row": 367 }, {"row": 368 }, {"row": 369 }, {"row": 370 }, {"row": 371 }, {"row": 372 }, {"row": 373 }, {"row": 374 }, {"row": 375 }, {"row": 376 }, {"row": 377 }, {"row": 378 }, {"row": 379 }, {"row": 380 }, {"row": 381 }, {"row": 382 }, {"row": 383 }, {"row": 384 }, {"row": 385 }, {"row": 386 }, {"row": 387 }, {"row": 388 }, {"row": 389 }, {"row": 390 }, {"row": 391 }, {"row": 392 }, {"row": 393 }, {"row": 394 }, {"row": 395 }, {"row": 396 }, {"row": 397 }, {"row": 398 }, {"row": 399 }, {"row": 400 }, {"row": 401 }, {"row": 402 }, {"row": 403 }, {"row": 404 }, {"row": 405 }, {"row": 406 }, {"row": 407 }, {"row": 408 }, {"row": 409 }, {"row": 410 }, {"row": 411 }, {"row": 412 }, {"row": 413 }, {"row": 414 }, {"row": 415 }, {"row": 416 }, {"row": 417 }, {"row": 418 }, {"row": 419 }, {"row": 420 }, {"row": 421 }, {"row": 422 }, {"row": 423 }, {"row": 424 }, {"row": 425 }, {"row": 426 }, {"row": 427 }, {"row": 428 }, {"row": 429 }, {"row": 430 }, {"row": 431 }, {"row": 432 }, {"row": 433 }, {"row": 434 }, {"row": 435 }, {"row": 436 }, {"row": 437 }, {"row": 438 }, {"row": 439 }, {"row": 440 }, {"row": 441 }, {"row": 442 }, {"row": 443 }, {"row": 444 }, {"row": 445 }, {"row": 446 }, {"row": 447 }, {"row": 448 }, {"row": 449 }, {"row": 450 }, {"row": 451 }, {"row": 452 }, {"row": 453 }, {"row": 454 }, {"row": 455 }, {"row": 456 }, {"row": 457 }, {"row": 458 }, {"row": 459 }, {"row": 460 }, {"row": 461 }, {"row": 462 }, {"row": 463 }, {"row": 464 }, {"row": 465 }, {"row": 466 }, {"row": 467 }, {"row": 468 }, {"row": 469 }, {"row": 470 }, {"row": 471 }, {"row": 472 }, {"row": 473 }, {"row": 474 }, {"row": 475 }, {"row": 476 }, {"row": 477 }, {"row": 478 }, {"row": 479 }, {"row": 480 }, {"row": 481 }, {"row": 482 }, {"row": 483 }, {"row": 484 }, {"row": 485 }, {"row": 486 }, {"row": 487 }, {"row": 488 }, {"row": 489 }, {"row": 490 }, {"row": 491 }, {"row": 492 }, {"row": 493 }, {"row": 494 }, {"row": 495 }, {"row": 496 }, {"row": 497 }, {"row": 498 }, {"row": 499 }, {"row": 500 }, {"row": 501 }, {"row": 502 }, {"row": 503 }, {"row": 504 }, {"row": 505 }, {"row": 506 }, {"row": 507 }, {"row": 508 }, {"row": 509 }, {"row": 510 }, {"row": 511 }, {"row": 512 }, {"row": 513 }, {"row": 514 }, {"row": 515 }, {"row": 516 }, {"row": 517 }, {"row": 518 }, {"row": 519 }, {"row": 520 }, {"row": 521 }, {"row": 522 }, {"row": 523 }, {"row": 524 }, {"row": 525 }, {"row": 526 }, {"row": 527 }, {"row": 528 }, {"row": 529 }, {"row": 530 }, {"row": 531 }, {"row": 532 }, {"row": 533 }, {"row": 534 }, {"row": 535 }, {"row": 536 }, {"row": 537 }, {"row": 538 }, {"row": 539 }, {"row": 540 }, {"row": 541 }, {"row": 542 }, {"row": 543 }, {"row": 544 }, {"row": 545 }, {"row": 546 }, {"row": 547 }, {"row": 548 }, {"row": 549 }, {"row": 550 }, {"row": 551 }, {"row": 552 }, {"row": 553 }, {"row": 554 }, {"row": 555 }, {"row": 556 }, {"row": 557 }, {"row": 558 }, {"row": 559 }, {"row": 560 }, {"row": 561 }, {"row": 562 }, {"row": 563 }, {"row": 564 }, {"row": 565 }, {"row": 566 }, {"row": 567 }, {"row": 568 }, {"row": 569 }, {"row": 570 }, {"row": 571 }, {"row": 572 }, {"row": 573 }, {"row": 574 }, {"row": 575 }, {"row": 576 }, {"row": 577 }, {"row": 578 }, {"row": 579 }, {"row": 580 }, {"row": 581 }, {"row": 582 }, {"row": 583 }, {"row": 584 }, {"row": 585 }, {"row": 586 }, {"row": 587 }, {"row": 588 }, {"row": 589 }, {"row": 590 }, {"row": 591 }, {"row": 592 }, {"row": 593 }, {"row": 594 }, {"row": 595 }, {"row": 596 }, {"row": 597 }, {"row": 598 }, {"row": 599 }, {"row": 600 }, {"row": 601 }, {"row": 602 }, {"row": 603 }, {"row": 604 }, {"row": 605 }, {"row": 606 }, {"row": 607 }, {"row": 608 }, {"row": 609 }, {"row": 610 }, {"row": 611 }, {"row": 612 }, {"row": 613 }, {"row": 614 }, {"row": 615 }, {"row": 616 }, {"row": 617 }, {"row": 618 }, {"row": 619 }, {"row": 620 }, {"row": 621 }, {"row": 622 }, {"row": 623 }, {"row": 624 }, {"row": 625 }, {"row": 626 }, {"row": 627 }, {"row": 628 }, {"row": 629 }, {"row": 630 }, {"row": 631 }, {"row": 632 }, {"row": 633 }, {"row": 634 }, {"row": 635 }, {"row": 636 }, {"row": 637 }, {"row": 638 }, {"row": 639 }, {"row": 640 }, {"row": 641 }, {"row": 642 }, {"row": 643 }, {"row": 644 }, {"row": 645 }, {"row": 646 }, {"row": 647 }, {"row": 648 }, {"row": 649 }, {"row": 650 }, {"row": 651 }, {"row": 652 }, {"row": 653 }, {"row": 654 }, {"row": 655 }, {"row": 656 }, {"row": 657 }, {"row": 658 }, {"row": 659 }, {"row": 660 }, {"row": 661 }, {"row": 662 }, {"row": 663 }, {"row": 664 }, {"row": 665 }, {"row": 666 }, {"row": 667 }, {"row": 668 }, {"row": 669 }, {"row": 670 }, {"row": 671 }, {"row": 672 }, {"row": 673 }, {"row": 674 }, {"row": 675 }, {"row": 676 }, {"row": 677 }, {"row": 678 }, {"row": 679 }, {"row": 680 }, {"row": 681 }, {"row": 682 }, {"row": 683 }, {"row": 684 }, {"row": 685 }, {"row": 686 }, {"row": 687 }, {"row": 688 }, {"row": 689 }, {"row": 690 }, {"row": 691 }, {"row": 692 }, {"row": 693 }, {"row": 694 }, {"row": 695 }, {"row": 696 }, {"row": 697 }, {"row": 698 }, {"row": 699 }, {"row": 700 }, {"row": 701 }, {"row": 702 }, {"row": 703 }, {"row": 704 }, {"row": 705 }, {"row": 706 }, {"row": 707 }, {"row": 708 }, {"row": 709 }, {"row": 710 }, {"row": 711 }, {"row": 712 }, {"row": 713 }, {"row": 714 }, {"row": 715 }, {"row": 716 }, {"row": 717 }, {"row": 718 }, {"row": 719 }, {"row": 720 }, {"row": 721 }, {"row": 722 }, {"row": 723 }, {"row": 724 }, {"row": 725 }, {"row": 726 }, {"row": 727 }, {"row": 728 }, {"row": 729 }, {"row": 730 }, {"row": 731 }, {"row": 732 }, {"row": 733 }, {"row": 734 }, {"row": 735 }, {"row": 736 }, {"row": 737 }, {"row": 738 }, {"row": 739 }, {"row": 740 }, {"row": 741 }, {"row": 742 }, {"row": 743 }, {"row": 744 }, {"row": 745 }, {"row": 746 }, {"row": 747 }, {"row": 748 }, {"row": 749 }, {"row": 750 }, {"row": 751 }, {"row": 752 }, {"row": 753 }, {"row": 754 }, {"row": 755 }, {"row": 756 }, {"row": 757 }, {"row": 758 }, {"row": 759 }, {"row": 760 }, {"row": 761 }, {"row": 762 }, {"row": 763 }, {"row": 764 }, {"row": 765 }, {"row": 766 }, {"row": 767 }, {"row": 768 }, {"row": 769 }, {"row": 770 }, {"row": 771 }, {"row": 772 }, {"row": 773 }, {"row": 774 }, {"row": 775 }, {"row": 776 }, {"row": 777 }, {"row": 778 }, {"row": 779 }, {"row": 780 }, {"row": 781 }, {"row": 782 }, {"row": 783 }, {"row": 784 }, {"row": 785 }, {"row": 786 }, {"row": 787 }, {"row": 788 }, {"row": 789 }, {"row": 790 }, {"row": 791 }, {"row": 792 }, {"row": 793 }, {"row": 794 }, {"row": 795 }, {"row": 796 }, {"row": 797 }, {"row": 798 }, {"row": 799 }, {"row": 800 }, {"row": 801 }, {"row": 802 }, {"row": 803 }, {"row": 804 }, {"row": 805 }, {"row": 806 }, {"row": 807 }, {"row": 808 }, {"row": 809 }, {"row": 810 }, {"row": 811 }, {"row": 812 }, {"row": 813 }, {"row": 814 }, {"row": 815 }, {"row": 816 }, {"row": 817 }, {"row": 818 }, {"row": 819 }, {"row": 820 }, {"row": 821 }, {"row": 822 }, {"row": 823 }, {"row": 824 }, {"row": 825 }, {"row": 826 }, {"row": 827 }, {"row": 828 }, {"row": 829 }, {"row": 830 }, {"row": 831 }, {"row": 832 }, {"row": 833 }, {"row": 834 }, {"row": 835 }, {"row": 836 }, {"row": 837 }, {"row": 838 }, {"row": 839 }, {"row": 840 }, {"row": 841 }, {"row": 842 }, {"row": 843 }, {"row": 844 }, {"row": 845 }, {"row": 846 }, {"row": 847 }, {"row": 848 }, {"row": 849 }, {"row": 850 }, {"row": 851 }, {"row": 852 }, {"row": 853 }, {"row": 854 }, {"row": 855 }, {"row": 856 }, {"row": 857 }, {"row": 858 }, {"row": 859 }, {"row": 860 }, {"row": 861 }, {"row": 862 }, {"row": 863 }, {"row": 864 }, {"row": 865 }, {"row": 866 }, {"row": 867 }, {"row": 868 }, {"row": 869 }, {"row": 870 }, {"row": 871 }, {"row": 872 }, {"row": 873 }, {"row": 874 }, {"row": 875 }, {"row": 876 }, {"row": 877 }, {"row": 878 }, {"row": 879 }, {"row": 880 }, {"row": 881 }, {"row": 882 }, {"row": 883 }, {"row": 884 }, {"row": 885 }, {"row": 886 }, {"row": 887 }, {"row": 888 }, {"row": 889 }, {"row": 890 }, {"row": 891 }, {"row": 892 }, {"row": 893 }, {"row": 894 }, {"row": 895 }, {"row": 896 }, {"row": 897 }, {"row": 898 }, {"row": 899 }, {"row": 900 }, {"row": 901 }, {"row": 902 }, {"row": 903 }, {"row": 904 }, {"row": 905 }, {"row": 906 }, {"row": 907 }, {"row": 908 }, {"row": 909 }, {"row": 910 }, {"row": 911 }, {"row": 912 }, {"row": 913 }, {"row": 914 }, {"row": 915 }, {"row": 916 }, {"row": 917 }, {"row": 918 }, {"row": 919 }, {"row": 920 }, {"row": 921 }, {"row": 922 }, {"row": 923 }, {"row": 924 }, {"row": 925 }, {"row": 926 }, {"row": 927 }, {"row": 928 }, {"row": 929 }, {"row": 930 }, {"row": 931 }, {"row": 932 }, {"row": 933 }, {"row": 934 }, {"row": 935 }, {"row": 936 }, {"row": 937 }, {"row": 938 }, {"row": 939 }, {"row": 940 }, {"row": 941 }, {"row": 942 }, {"row": 943 }, {"row": 944 }, {"row": 945 }, {"row": 946 }, {"row": 947 }, {"row": 948 }, {"row": 949 }, {"row": 950 }, {"row": 951 }, {"row": 952 }, {"row": 953 }, {"row": 954 }, {"row": 955 }, {"row": 956 }, {"row": 957 }, {"row": 958 }, {"row": 959 }, {"row": 960 }, {"row": 961 }, {"row": 962 }, {"row": 963 }, {"row": 964 }, {"row": 965 }, {"row": 966 }, {"row": 967 }, {"row": 968 }, {"row": 969 }, {"row": 970 }, {"row": 971 }, {"row": 972 }, {"row": 973 }, {"row": 974 }, {"row": 975 }, {"row": 976 }, {"row": 977 }, {"row": 978 }, {"row": 979 }, {"row": 980 }, {"row": 981 }, {"row": 982 }, {"row": 983 }, {"row": 984 }, {"row": 985 }, {"row": 986 }, {"row": 987 }, {"row": 988 }, {"row": 989 }, {"row": 990 }, {"row": 991 }, {"row": 992 }, {"row": 993 }, {"row": 994 }, {"row": 995 }, {"row": 996 }, {"row": 997 }, {"row": 998 }, {"row": 999 }, {"row": 1000 } ], "set2": [ {"row": 1001}, {"row": 1002}, {"row": 1003}, {"row": 1004}, {"row": 1005}, {"row": 1006}, {"row": 1007}, {"row": 1008}, {"row": 1009}, {"row": 1010}, {"row": 1011}, {"row": 1012}, {"row": 1013}, {"row": 1014}, {"row": 1015}, {"row": 1016}, {"row": 1017}, {"row": 1018}, {"row": 1019}, {"row": 1020}, {"row": 1021}, {"row": 1022}, {"row": 1023}, {"row": 1024}, {"row": 1025}, {"row": 1026}, {"row": 1027}, {"row": 1028}, {"row": 1029}, {"row": 1030}, {"row": 1031}, {"row": 1032}, {"row": 1033}, {"row": 1034}, {"row": 1035}, {"row": 1036}, {"row": 1037}, {"row": 1038}, {"row": 1039}, {"row": 1040}, {"row": 1041}, {"row": 1042}, {"row": 1043}, {"row": 1044}, {"row": 1045}, {"row": 1046}, {"row": 1047}, {"row": 1048}, {"row": 1049}, {"row": 1050}, {"row": 1051}, {"row": 1052}, {"row": 1053}, {"row": 1054}, {"row": 1055}, {"row": 1056}, {"row": 1057}, {"row": 1058}, {"row": 1059}, {"row": 1060}, {"row": 1061}, {"row": 1062}, {"row": 1063}, {"row": 1064}, {"row": 1065}, {"row": 1066}, {"row": 1067}, {"row": 1068}, {"row": 1069}, {"row": 1070}, {"row": 1071}, {"row": 1072}, {"row": 1073}, {"row": 1074}, {"row": 1075}, {"row": 1076}, {"row": 1077}, {"row": 1078}, {"row": 1079}, {"row": 1080}, {"row": 1081}, {"row": 1082}, {"row": 1083}, {"row": 1084}, {"row": 1085}, {"row": 1086}, {"row": 1087}, {"row": 1088}, {"row": 1089}, {"row": 1090}, {"row": 1091}, {"row": 1092}, {"row": 1093}, {"row": 1094}, {"row": 1095}, {"row": 1096}, {"row": 1097}, {"row": 1098}, {"row": 1099}, {"row": 1100}, {"row": 1101}, {"row": 1102}, {"row": 1103}, {"row": 1104}, {"row": 1105}, {"row": 1106}, {"row": 1107}, {"row": 1108}, {"row": 1109}, {"row": 1111}, {"row": 1112}, {"row": 1113}, {"row": 1114}, {"row": 1115}, {"row": 1116}, {"row": 1117}, {"row": 1118}, {"row": 1119}, {"row": 1110}, {"row": 1111}, {"row": 1112}, {"row": 1113}, {"row": 1114}, {"row": 1115}, {"row": 1116}, {"row": 1117}, {"row": 1118}, {"row": 1119}, {"row": 1120}, {"row": 1121}, {"row": 1122}, {"row": 1123}, {"row": 1124}, {"row": 1125}, {"row": 1126}, {"row": 1127}, {"row": 1128}, {"row": 1129}, {"row": 1130}, {"row": 1131}, {"row": 1132}, {"row": 1133}, {"row": 1134}, {"row": 1135}, {"row": 1136}, {"row": 1137}, {"row": 1138}, {"row": 1139}, {"row": 1140}, {"row": 1141}, {"row": 1142}, {"row": 1143}, {"row": 1144}, {"row": 1145}, {"row": 1146}, {"row": 1147}, {"row": 1148}, {"row": 1149}, {"row": 1150}, {"row": 1151}, {"row": 1152}, {"row": 1153}, {"row": 1154}, {"row": 1155}, {"row": 1156}, {"row": 1157}, {"row": 1158}, {"row": 1159}, {"row": 1160}, {"row": 1161}, {"row": 1162}, {"row": 1163}, {"row": 1164}, {"row": 1165}, {"row": 1166}, {"row": 1167}, {"row": 1168}, {"row": 1169}, {"row": 1170}, {"row": 1171}, {"row": 1172}, {"row": 1173}, {"row": 1174}, {"row": 1175}, {"row": 1176}, {"row": 1177}, {"row": 1178}, {"row": 1179}, {"row": 1180}, {"row": 1181}, {"row": 1182}, {"row": 1183}, {"row": 1184}, {"row": 1185}, {"row": 1186}, {"row": 1187}, {"row": 1188}, {"row": 1189}, {"row": 1190}, {"row": 1191}, {"row": 1192}, {"row": 1193}, {"row": 1194}, {"row": 1195}, {"row": 1196}, {"row": 1197}, {"row": 1198}, {"row": 1199}, {"row": 1200}, {"row": 1201}, {"row": 1202}, {"row": 1203}, {"row": 1204}, {"row": 1205}, {"row": 1206}, {"row": 1207}, {"row": 1208}, {"row": 1209}, {"row": 1210}, {"row": 1211}, {"row": 1212}, {"row": 1213}, {"row": 1214}, {"row": 1215}, {"row": 1216}, {"row": 1217}, {"row": 1218}, {"row": 1219}, {"row": 1220}, {"row": 1221}, {"row": 1222}, {"row": 1223}, {"row": 1224}, {"row": 1225}, {"row": 1226}, {"row": 1227}, {"row": 1228}, {"row": 1229}, {"row": 1230}, {"row": 1231}, {"row": 1232}, {"row": 1233}, {"row": 1234}, {"row": 1235}, {"row": 1236}, {"row": 1237}, {"row": 1238}, {"row": 1239}, {"row": 1240}, {"row": 1241}, {"row": 1242}, {"row": 1243}, {"row": 1244}, {"row": 1245}, {"row": 1246}, {"row": 1247}, {"row": 1248}, {"row": 1249}, {"row": 1250}, {"row": 1251}, {"row": 1252}, {"row": 1253}, {"row": 1254}, {"row": 1255}, {"row": 1256}, {"row": 1257}, {"row": 1258}, {"row": 1259}, {"row": 1260}, {"row": 1261}, {"row": 1262}, {"row": 1263}, {"row": 1264}, {"row": 1265}, {"row": 1266}, {"row": 1267}, {"row": 1268}, {"row": 1269}, {"row": 1270}, {"row": 1271}, {"row": 1272}, {"row": 1273}, {"row": 1274}, {"row": 1275}, {"row": 1276}, {"row": 1277}, {"row": 1278}, {"row": 1279}, {"row": 1280}, {"row": 1281}, {"row": 1282}, {"row": 1283}, {"row": 1284}, {"row": 1285}, {"row": 1286}, {"row": 1287}, {"row": 1288}, {"row": 1289}, {"row": 1290}, {"row": 1291}, {"row": 1292}, {"row": 1293}, {"row": 1294}, {"row": 1295}, {"row": 1296}, {"row": 1297}, {"row": 1298}, {"row": 1299}, {"row": 1300}, {"row": 1301}, {"row": 1302}, {"row": 1303}, {"row": 1304}, {"row": 1305}, {"row": 1306}, {"row": 1307}, {"row": 1308}, {"row": 1309}, {"row": 1310}, {"row": 1311}, {"row": 1312}, {"row": 1313}, {"row": 1314}, {"row": 1315}, {"row": 1316}, {"row": 1317}, {"row": 1318}, {"row": 1319}, {"row": 1320}, {"row": 1321}, {"row": 1322}, {"row": 1323}, {"row": 1324}, {"row": 1325}, {"row": 1326}, {"row": 1327}, {"row": 1328}, {"row": 1329}, {"row": 1330}, {"row": 1331}, {"row": 1332}, {"row": 1333}, {"row": 1334}, {"row": 1335}, {"row": 1336}, {"row": 1337}, {"row": 1338}, {"row": 1339}, {"row": 1340}, {"row": 1341}, {"row": 1342}, {"row": 1343}, {"row": 1344}, {"row": 1345}, {"row": 1346}, {"row": 1347}, {"row": 1348}, {"row": 1349}, {"row": 1350}, {"row": 1351}, {"row": 1352}, {"row": 1353}, {"row": 1354}, {"row": 1355}, {"row": 1356}, {"row": 1357}, {"row": 1358}, {"row": 1359}, {"row": 1360}, {"row": 1361}, {"row": 1362}, {"row": 1363}, {"row": 1364}, {"row": 1365}, {"row": 1366}, {"row": 1367}, {"row": 1368}, {"row": 1369}, {"row": 1370}, {"row": 1371}, {"row": 1372}, {"row": 1373}, {"row": 1374}, {"row": 1375}, {"row": 1376}, {"row": 1377}, {"row": 1378}, {"row": 1379}, {"row": 1380}, {"row": 1381}, {"row": 1382}, {"row": 1383}, {"row": 1384}, {"row": 1385}, {"row": 1386}, {"row": 1387}, {"row": 1388}, {"row": 1389}, {"row": 1390}, {"row": 1391}, {"row": 1392}, {"row": 1393}, {"row": 1394}, {"row": 1395}, {"row": 1396}, {"row": 1397}, {"row": 1398}, {"row": 1399}, {"row": 1400}, {"row": 1401}, {"row": 1402}, {"row": 1403}, {"row": 1404}, {"row": 1405}, {"row": 1406}, {"row": 1407}, {"row": 1408}, {"row": 1409}, {"row": 1410}, {"row": 1411}, {"row": 1412}, {"row": 1413}, {"row": 1414}, {"row": 1415}, {"row": 1416}, {"row": 1417}, {"row": 1418}, {"row": 1419}, {"row": 1420}, {"row": 1421}, {"row": 1422}, {"row": 1423}, {"row": 1424}, {"row": 1425}, {"row": 1426}, {"row": 1427}, {"row": 1428}, {"row": 1429}, {"row": 1430}, {"row": 1431}, {"row": 1432}, {"row": 1433}, {"row": 1434}, {"row": 1435}, {"row": 1436}, {"row": 1437}, {"row": 1438}, {"row": 1439}, {"row": 1440}, {"row": 1441}, {"row": 1442}, {"row": 1443}, {"row": 1444}, {"row": 1445}, {"row": 1446}, {"row": 1447}, {"row": 1448}, {"row": 1449}, {"row": 1450}, {"row": 1451}, {"row": 1452}, {"row": 1453}, {"row": 1454}, {"row": 1455}, {"row": 1456}, {"row": 1457}, {"row": 1458}, {"row": 1459}, {"row": 1460}, {"row": 1461}, {"row": 1462}, {"row": 1463}, {"row": 1464}, {"row": 1465}, {"row": 1466}, {"row": 1467}, {"row": 1468}, {"row": 1469}, {"row": 1470}, {"row": 1471}, {"row": 1472}, {"row": 1473}, {"row": 1474}, {"row": 1475}, {"row": 1476}, {"row": 1477}, {"row": 1478}, {"row": 1479}, {"row": 1480}, {"row": 1481}, {"row": 1482}, {"row": 1483}, {"row": 1484}, {"row": 1485}, {"row": 1486}, {"row": 1487}, {"row": 1488}, {"row": 1489}, {"row": 1490}, {"row": 1491}, {"row": 1492}, {"row": 1493}, {"row": 1494}, {"row": 1495}, {"row": 1496}, {"row": 1497}, {"row": 1498}, {"row": 1499}, {"row": 1500}, {"row": 1501}, {"row": 1502}, {"row": 1503}, {"row": 1504}, {"row": 1505}, {"row": 1506}, {"row": 1507}, {"row": 1508}, {"row": 1509}, {"row": 1510}, {"row": 1511}, {"row": 1512}, {"row": 1513}, {"row": 1514}, {"row": 1515}, {"row": 1516}, {"row": 1517}, {"row": 1518}, {"row": 1519}, {"row": 1520}, {"row": 1521}, {"row": 1522}, {"row": 1523}, {"row": 1524}, {"row": 1525}, {"row": 1526}, {"row": 1527}, {"row": 1528}, {"row": 1529}, {"row": 1530}, {"row": 1531}, {"row": 1532}, {"row": 1533}, {"row": 1534}, {"row": 1535}, {"row": 1536}, {"row": 1537}, {"row": 1538}, {"row": 1539}, {"row": 1540}, {"row": 1541}, {"row": 1542}, {"row": 1543}, {"row": 1544}, {"row": 1545}, {"row": 1546}, {"row": 1547}, {"row": 1548}, {"row": 1549}, {"row": 1550}, {"row": 1551}, {"row": 1552}, {"row": 1553}, {"row": 1554}, {"row": 1555}, {"row": 1556}, {"row": 1557}, {"row": 1558}, {"row": 1559}, {"row": 1560}, {"row": 1561}, {"row": 1562}, {"row": 1563}, {"row": 1564}, {"row": 1565}, {"row": 1566}, {"row": 1567}, {"row": 1568}, {"row": 1569}, {"row": 1570}, {"row": 1571}, {"row": 1572}, {"row": 1573}, {"row": 1574}, {"row": 1575}, {"row": 1576}, {"row": 1577}, {"row": 1578}, {"row": 1579}, {"row": 1580}, {"row": 1581}, {"row": 1582}, {"row": 1583}, {"row": 1584}, {"row": 1585}, {"row": 1586}, {"row": 1587}, {"row": 1588}, {"row": 1589}, {"row": 1590}, {"row": 1591}, {"row": 1592}, {"row": 1593}, {"row": 1594}, {"row": 1595}, {"row": 1596}, {"row": 1597}, {"row": 1598}, {"row": 1599}, {"row": 1600}, {"row": 1601}, {"row": 1602}, {"row": 1603}, {"row": 1604}, {"row": 1605}, {"row": 1606}, {"row": 1607}, {"row": 1608}, {"row": 1609}, {"row": 1610}, {"row": 1611}, {"row": 1612}, {"row": 1613}, {"row": 1614}, {"row": 1615}, {"row": 1616}, {"row": 1617}, {"row": 1618}, {"row": 1619}, {"row": 1620}, {"row": 1621}, {"row": 1622}, {"row": 1623}, {"row": 1624}, {"row": 1625}, {"row": 1626}, {"row": 1627}, {"row": 1628}, {"row": 1629}, {"row": 1630}, {"row": 1631}, {"row": 1632}, {"row": 1633}, {"row": 1634}, {"row": 1635}, {"row": 1636}, {"row": 1637}, {"row": 1638}, {"row": 1639}, {"row": 1640}, {"row": 1641}, {"row": 1642}, {"row": 1643}, {"row": 1644}, {"row": 1645}, {"row": 1646}, {"row": 1647}, {"row": 1648}, {"row": 1649}, {"row": 1650}, {"row": 1651}, {"row": 1652}, {"row": 1653}, {"row": 1654}, {"row": 1655}, {"row": 1656}, {"row": 1657}, {"row": 1658}, {"row": 1659}, {"row": 1660}, {"row": 1661}, {"row": 1662}, {"row": 1663}, {"row": 1664}, {"row": 1665}, {"row": 1666}, {"row": 1667}, {"row": 1668}, {"row": 1669}, {"row": 1670}, {"row": 1671}, {"row": 1672}, {"row": 1673}, {"row": 1674}, {"row": 1675}, {"row": 1676}, {"row": 1677}, {"row": 1678}, {"row": 1679}, {"row": 1680}, {"row": 1681}, {"row": 1682}, {"row": 1683}, {"row": 1684}, {"row": 1685}, {"row": 1686}, {"row": 1687}, {"row": 1688}, {"row": 1689}, {"row": 1690}, {"row": 1691}, {"row": 1692}, {"row": 1693}, {"row": 1694}, {"row": 1695}, {"row": 1696}, {"row": 1697}, {"row": 1698}, {"row": 1699}, {"row": 1700}, {"row": 1701}, {"row": 1702}, {"row": 1703}, {"row": 1704}, {"row": 1705}, {"row": 1706}, {"row": 1707}, {"row": 1708}, {"row": 1709}, {"row": 1710}, {"row": 1711}, {"row": 1712}, {"row": 1713}, {"row": 1714}, {"row": 1715}, {"row": 1716}, {"row": 1717}, {"row": 1718}, {"row": 1719}, {"row": 1720}, {"row": 1721}, {"row": 1722}, {"row": 1723}, {"row": 1724}, {"row": 1725}, {"row": 1726}, {"row": 1727}, {"row": 1728}, {"row": 1729}, {"row": 1730}, {"row": 1731}, {"row": 1732}, {"row": 1733}, {"row": 1734}, {"row": 1735}, {"row": 1736}, {"row": 1737}, {"row": 1738}, {"row": 1739}, {"row": 1740}, {"row": 1741}, {"row": 1742}, {"row": 1743}, {"row": 1744}, {"row": 1745}, {"row": 1746}, {"row": 1747}, {"row": 1748}, {"row": 1749}, {"row": 1750}, {"row": 1751}, {"row": 1752}, {"row": 1753}, {"row": 1754}, {"row": 1755}, {"row": 1756}, {"row": 1757}, {"row": 1758}, {"row": 1759}, {"row": 1760}, {"row": 1761}, {"row": 1762}, {"row": 1763}, {"row": 1764}, {"row": 1765}, {"row": 1766}, {"row": 1767}, {"row": 1768}, {"row": 1769}, {"row": 1770}, {"row": 1771}, {"row": 1772}, {"row": 1773}, {"row": 1774}, {"row": 1775}, {"row": 1776}, {"row": 1777}, {"row": 1778}, {"row": 1779}, {"row": 1780}, {"row": 1781}, {"row": 1782}, {"row": 1783}, {"row": 1784}, {"row": 1785}, {"row": 1786}, {"row": 1787}, {"row": 1788}, {"row": 1789}, {"row": 1790}, {"row": 1791}, {"row": 1792}, {"row": 1793}, {"row": 1794}, {"row": 1795}, {"row": 1796}, {"row": 1797}, {"row": 1798}, {"row": 1799}, {"row": 1800}, {"row": 1801}, {"row": 1802}, {"row": 1803}, {"row": 1804}, {"row": 1805}, {"row": 1806}, {"row": 1807}, {"row": 1808}, {"row": 1809}, {"row": 1810}, {"row": 1811}, {"row": 1812}, {"row": 1813}, {"row": 1814}, {"row": 1815}, {"row": 1816}, {"row": 1817}, {"row": 1818}, {"row": 1819}, {"row": 1820}, {"row": 1821}, {"row": 1822}, {"row": 1823}, {"row": 1824}, {"row": 1825}, {"row": 1826}, {"row": 1827}, {"row": 1828}, {"row": 1829}, {"row": 1830}, {"row": 1831}, {"row": 1832}, {"row": 1833}, {"row": 1834}, {"row": 1835}, {"row": 1836}, {"row": 1837}, {"row": 1838}, {"row": 1839}, {"row": 1840}, {"row": 1841}, {"row": 1842}, {"row": 1843}, {"row": 1844}, {"row": 1845}, {"row": 1846}, {"row": 1847}, {"row": 1848}, {"row": 1849}, {"row": 1850}, {"row": 1851}, {"row": 1852}, {"row": 1853}, {"row": 1854}, {"row": 1855}, {"row": 1856}, {"row": 1857}, {"row": 1858}, {"row": 1859}, {"row": 1860}, {"row": 1861}, {"row": 1862}, {"row": 1863}, {"row": 1864}, {"row": 1865}, {"row": 1866}, {"row": 1867}, {"row": 1868}, {"row": 1869}, {"row": 1870}, {"row": 1871}, {"row": 1872}, {"row": 1873}, {"row": 1874}, {"row": 1875}, {"row": 1876}, {"row": 1877}, {"row": 1878}, {"row": 1879}, {"row": 1880}, {"row": 1881}, {"row": 1882}, {"row": 1883}, {"row": 1884}, {"row": 1885}, {"row": 1886}, {"row": 1887}, {"row": 1888}, {"row": 1889}, {"row": 1890}, {"row": 1891}, {"row": 1892}, {"row": 1893}, {"row": 1894}, {"row": 1895}, {"row": 1896}, {"row": 1897}, {"row": 1898}, {"row": 1899}, {"row": 1900}, {"row": 1901}, {"row": 1902}, {"row": 1903}, {"row": 1904}, {"row": 1905}, {"row": 1906}, {"row": 1907}, {"row": 1908}, {"row": 1909}, {"row": 1910}, {"row": 1911}, {"row": 1912}, {"row": 1913}, {"row": 1914}, {"row": 1915}, {"row": 1916}, {"row": 1917}, {"row": 1918}, {"row": 1919}, {"row": 1920}, {"row": 1921}, {"row": 1922}, {"row": 1923}, {"row": 1924}, {"row": 1925}, {"row": 1926}, {"row": 1927}, {"row": 1928}, {"row": 1929}, {"row": 1930}, {"row": 1931}, {"row": 1932}, {"row": 1933}, {"row": 1934}, {"row": 1935}, {"row": 1936}, {"row": 1937}, {"row": 1938}, {"row": 1939}, {"row": 1940}, {"row": 1941}, {"row": 1942}, {"row": 1943}, {"row": 1944}, {"row": 1945}, {"row": 1946}, {"row": 1947}, {"row": 1948}, {"row": 1949}, {"row": 1950}, {"row": 1951}, {"row": 1952}, {"row": 1953}, {"row": 1954}, {"row": 1955}, {"row": 1956}, {"row": 1957}, {"row": 1958}, {"row": 1959}, {"row": 1960}, {"row": 1961}, {"row": 1962}, {"row": 1963}, {"row": 1964}, {"row": 1965}, {"row": 1966}, {"row": 1967}, {"row": 1968}, {"row": 1969}, {"row": 1970}, {"row": 1971}, {"row": 1972}, {"row": 1973}, {"row": 1974}, {"row": 1975}, {"row": 1976}, {"row": 1977}, {"row": 1978}, {"row": 1979}, {"row": 1980}, {"row": 1981}, {"row": 1982}, {"row": 1983}, {"row": 1984}, {"row": 1985}, {"row": 1986}, {"row": 1987}, {"row": 1988}, {"row": 1989}, {"row": 1990}, {"row": 1991}, {"row": 1992}, {"row": 1993}, {"row": 1994}, {"row": 1995}, {"row": 1996}, {"row": 1997}, {"row": 1998}, {"row": 1999}, {"row": 2000} ], "set3": [ - {"uuid": "pseudo_id_1", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1,"device": {"advertising_id": "fake-ad-id-1"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentStart_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_2", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 2,"device": {"advertising_id": "fake-ad-id-2"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentStart_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_3", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 3,"device": {"advertising_id": "fake-ad-id-3"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentStart_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_4", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 4,"device": {"advertising_id": "fake-ad-id-4"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentStart_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_5", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 5,"device": {"advertising_id": "fake-ad-id-5"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentStart_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_6", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 6,"device": {"advertising_id": "fake-ad-id-6"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentSuccess_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_7", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 7,"device": {"advertising_id": "fake-ad-id-7"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentSuccess_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_8", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 8,"device": {"advertising_id": "fake-ad-id-8"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentSuccess_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_9", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 9,"device": {"advertising_id": "fake-ad-id-9"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentSuccess_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_10", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10,"device": {"advertising_id": "fake-ad-id-10"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "Segment_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_11", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 11,"device": {"advertising_id": "fake-ad-id-11"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentStart_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_12", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 12,"device": {"advertising_id": "fake-ad-id-12"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentStart_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_13", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 13,"device": {"advertising_id": "fake-ad-id-13"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentStart_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_14", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 14,"device": {"advertising_id": "fake-ad-id-14"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentStart_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_15", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 15,"device": {"advertising_id": "fake-ad-id-15"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentStart_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_16", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 16,"device": {"advertising_id": "fake-ad-id-16"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_17", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 17,"device": {"advertising_id": "fake-ad-id-17"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_18", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 18,"device": {"advertising_id": "fake-ad-id-18"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_19", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 19,"device": {"advertising_id": "fake-ad-id-19"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_20", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 20,"device": {"advertising_id": "fake-ad-id-20"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_21", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 21,"device": {"advertising_id": "fake-ad-id-21"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_22", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 22,"device": {"advertising_id": "fake-ad-id-22"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_23", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 23,"device": {"advertising_id": "fake-ad-id-23"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_24", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 24,"device": {"advertising_id": "fake-ad-id-24"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_25", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 25,"device": {"advertising_id": "fake-ad-id-25"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_26", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 26,"device": {"advertising_id": "fake-ad-id-26"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_27", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 27,"device": {"advertising_id": "fake-ad-id-27"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_28", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 28,"device": {"advertising_id": "fake-ad-id-28"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_29", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 29,"device": {"advertising_id": "fake-ad-id-29"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_30", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 30,"device": {"advertising_id": "fake-ad-id-30"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_31", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 31,"device": {"advertising_id": "fake-ad-id-31"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_32", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 32,"device": {"advertising_id": "fake-ad-id-32"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_33", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 33,"device": {"advertising_id": "fake-ad-id-33"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_34", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 34,"device": {"advertising_id": "fake-ad-id-34"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_35", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 35,"device": {"advertising_id": "fake-ad-id-35"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_36", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 36,"device": {"advertising_id": "fake-ad-id-36"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_37", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 37,"device": {"advertising_id": "fake-ad-id-37"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_38", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 38,"device": {"advertising_id": "fake-ad-id-38"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_39", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 39,"device": {"advertising_id": "fake-ad-id-39"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_40", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 40,"device": {"advertising_id": "fake-ad-id-40"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_41", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 41,"device": {"advertising_id": "fake-ad-id-41"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_42", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 42,"device": {"advertising_id": "fake-ad-id-42"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_43", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 43,"device": {"advertising_id": "fake-ad-id-43"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_44", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 44,"device": {"advertising_id": "fake-ad-id-44"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_45", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 45,"device": {"advertising_id": "fake-ad-id-45"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_46", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 46,"device": {"advertising_id": "fake-ad-id-46"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_47", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 47,"device": {"advertising_id": "fake-ad-id-47"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_48", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 48,"device": {"advertising_id": "fake-ad-id-48"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_49", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 49,"device": {"advertising_id": "fake-ad-id-49"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_50", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 50,"device": {"advertising_id": "fake-ad-id-50"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_51", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 51,"device": {"advertising_id": "fake-ad-id-51"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_52", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 52,"device": {"advertising_id": "fake-ad-id-52"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_53", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 53,"device": {"advertising_id": "fake-ad-id-53"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_54", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 54,"device": {"advertising_id": "fake-ad-id-54"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_55", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 55,"device": {"advertising_id": "fake-ad-id-55"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_56", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 56,"device": {"advertising_id": "fake-ad-id-56"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_57", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 57,"device": {"advertising_id": "fake-ad-id-57"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_58", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 58,"device": {"advertising_id": "fake-ad-id-58"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_59", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 59,"device": {"advertising_id": "fake-ad-id-59"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_60", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 60,"device": {"advertising_id": "fake-ad-id-60"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_61", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 61,"device": {"advertising_id": "fake-ad-id-61"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_62", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 62,"device": {"advertising_id": "fake-ad-id-62"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_63", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 63,"device": {"advertising_id": "fake-ad-id-63"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_64", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 64,"device": {"advertising_id": "fake-ad-id-64"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_65", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 65,"device": {"advertising_id": "fake-ad-id-65"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_66", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 66,"device": {"advertising_id": "fake-ad-id-66"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_67", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 67,"device": {"advertising_id": "fake-ad-id-67"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_68", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 68,"device": {"advertising_id": "fake-ad-id-68"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_69", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 69,"device": {"advertising_id": "fake-ad-id-69"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_70", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 70,"device": {"advertising_id": "fake-ad-id-70"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_71", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 71,"device": {"advertising_id": "fake-ad-id-71"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_72", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 72,"device": {"advertising_id": "fake-ad-id-72"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_73", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 73,"device": {"advertising_id": "fake-ad-id-73"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_74", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 74,"device": {"advertising_id": "fake-ad-id-74"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_75", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 75,"device": {"advertising_id": "fake-ad-id-75"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_76", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 76,"device": {"advertising_id": "fake-ad-id-76"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_77", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 77,"device": {"advertising_id": "fake-ad-id-77"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_78", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 78,"device": {"advertising_id": "fake-ad-id-78"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_79", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 79,"device": {"advertising_id": "fake-ad-id-79"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_80", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 80,"device": {"advertising_id": "fake-ad-id-80"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_81", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 81,"device": {"advertising_id": "fake-ad-id-81"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_82", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 82,"device": {"advertising_id": "fake-ad-id-82"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_83", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 83,"device": {"advertising_id": "fake-ad-id-83"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_84", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 84,"device": {"advertising_id": "fake-ad-id-84"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_85", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 85,"device": {"advertising_id": "fake-ad-id-85"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_86", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 86,"device": {"advertising_id": "fake-ad-id-86"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_87", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 87,"device": {"advertising_id": "fake-ad-id-87"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_88", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 88,"device": {"advertising_id": "fake-ad-id-88"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_89", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 89,"device": {"advertising_id": "fake-ad-id-89"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_90", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 90,"device": {"advertising_id": "fake-ad-id-90"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_91", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 91,"device": {"advertising_id": "fake-ad-id-91"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_92", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 92,"device": {"advertising_id": "fake-ad-id-92"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_93", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 93,"device": {"advertising_id": "fake-ad-id-93"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_94", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 94,"device": {"advertising_id": "fake-ad-id-94"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_95", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 95,"device": {"advertising_id": "fake-ad-id-95"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_96", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 96,"device": {"advertising_id": "fake-ad-id-96"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_97", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 97,"device": {"advertising_id": "fake-ad-id-97"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_98", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 98,"device": {"advertising_id": "fake-ad-id-98"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_99", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 99,"device": {"advertising_id": "fake-ad-id-99"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_100", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 100,"device": {"advertising_id": "fake-ad-id-100"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_101", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 101,"device": {"advertising_id": "fake-ad-id-101"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}} + {"uuid": "pseudo_id_1", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 1,"device": {"advertising_id": "fake-ad-id-1"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentStart_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_2", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 2,"device": {"advertising_id": "fake-ad-id-2"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentStart_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_3", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 3,"device": {"advertising_id": "fake-ad-id-3"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentStart_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_4", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 4,"device": {"advertising_id": "fake-ad-id-4"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentStart_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_5", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 5,"device": {"advertising_id": "fake-ad-id-5"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentStart_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_6", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 6,"device": {"advertising_id": "fake-ad-id-6"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentSuccess_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_7", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 7,"device": {"advertising_id": "fake-ad-id-7"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentSuccess_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_8", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 8,"device": {"advertising_id": "fake-ad-id-8"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentSuccess_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_9", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 9,"device": {"advertising_id": "fake-ad-id-9"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "SegmentSuccess_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_10", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10,"device": {"advertising_id": "fake-ad-id-10"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: a", "screen": "Level 1 - Profile: 1", "action": "Segment_Level_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_11", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 11,"device": {"advertising_id": "fake-ad-id-11"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentStart_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_12", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 12,"device": {"advertising_id": "fake-ad-id-12"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentStart_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_13", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 13,"device": {"advertising_id": "fake-ad-id-13"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentStart_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_14", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 14,"device": {"advertising_id": "fake-ad-id-14"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentStart_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_15", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 15,"device": {"advertising_id": "fake-ad-id-15"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentStart_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_16", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 16,"device": {"advertising_id": "fake-ad-id-16"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_17", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 17,"device": {"advertising_id": "fake-ad-id-17"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_18", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 18,"device": {"advertising_id": "fake-ad-id-18"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_19", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 19,"device": {"advertising_id": "fake-ad-id-19"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_20", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 20,"device": {"advertising_id": "fake-ad-id-20"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_21", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 21,"device": {"advertising_id": "fake-ad-id-21"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_22", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 22,"device": {"advertising_id": "fake-ad-id-22"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_23", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 23,"device": {"advertising_id": "fake-ad-id-23"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_24", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 24,"device": {"advertising_id": "fake-ad-id-24"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_25", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 25,"device": {"advertising_id": "fake-ad-id-25"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_26", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 26,"device": {"advertising_id": "fake-ad-id-26"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_27", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 27,"device": {"advertising_id": "fake-ad-id-27"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_28", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 28,"device": {"advertising_id": "fake-ad-id-28"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_29", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 29,"device": {"advertising_id": "fake-ad-id-29"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_30", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 30,"device": {"advertising_id": "fake-ad-id-30"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_31", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 31,"device": {"advertising_id": "fake-ad-id-31"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_32", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 32,"device": {"advertising_id": "fake-ad-id-32"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_33", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 33,"device": {"advertising_id": "fake-ad-id-33"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_34", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 34,"device": {"advertising_id": "fake-ad-id-34"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_35", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 35,"device": {"advertising_id": "fake-ad-id-35"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_36", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 36,"device": {"advertising_id": "fake-ad-id-36"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_37", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 37,"device": {"advertising_id": "fake-ad-id-37"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_38", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 38,"device": {"advertising_id": "fake-ad-id-38"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_39", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 39,"device": {"advertising_id": "fake-ad-id-39"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Puzzle Letter: b", "screen": "Level 2 - Profile: 1", "action": "SegmentSuccess_Level_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_40", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 40,"device": {"advertising_id": "fake-ad-id-40"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_41", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 41,"device": {"advertising_id": "fake-ad-id-41"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_42", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 42,"device": {"advertising_id": "fake-ad-id-42"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_43", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 43,"device": {"advertising_id": "fake-ad-id-43"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_44", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 44,"device": {"advertising_id": "fake-ad-id-44"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_45", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 45,"device": {"advertising_id": "fake-ad-id-45"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_46", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 46,"device": {"advertising_id": "fake-ad-id-46"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_47", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 47,"device": {"advertising_id": "fake-ad-id-47"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_48", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 48,"device": {"advertising_id": "fake-ad-id-48"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_49", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 49,"device": {"advertising_id": "fake-ad-id-49"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_50", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 50,"device": {"advertising_id": "fake-ad-id-50"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_51", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 51,"device": {"advertising_id": "fake-ad-id-51"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_52", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 52,"device": {"advertising_id": "fake-ad-id-52"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_53", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 53,"device": {"advertising_id": "fake-ad-id-53"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_54", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 54,"device": {"advertising_id": "fake-ad-id-54"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_55", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 55,"device": {"advertising_id": "fake-ad-id-55"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_56", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 56,"device": {"advertising_id": "fake-ad-id-56"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_57", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 57,"device": {"advertising_id": "fake-ad-id-57"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_58", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 58,"device": {"advertising_id": "fake-ad-id-58"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_59", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 59,"device": {"advertising_id": "fake-ad-id-59"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_60", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 60,"device": {"advertising_id": "fake-ad-id-60"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_61", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 61,"device": {"advertising_id": "fake-ad-id-61"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_62", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 62,"device": {"advertising_id": "fake-ad-id-62"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_63", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 63,"device": {"advertising_id": "fake-ad-id-63"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_64", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 64,"device": {"advertising_id": "fake-ad-id-64"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_65", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 65,"device": {"advertising_id": "fake-ad-id-65"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_66", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 66,"device": {"advertising_id": "fake-ad-id-66"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_67", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 67,"device": {"advertising_id": "fake-ad-id-67"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_68", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 68,"device": {"advertising_id": "fake-ad-id-68"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_69", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 69,"device": {"advertising_id": "fake-ad-id-69"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_70", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 70,"device": {"advertising_id": "fake-ad-id-70"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_71", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 71,"device": {"advertising_id": "fake-ad-id-71"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_72", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 72,"device": {"advertising_id": "fake-ad-id-72"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_73", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 73,"device": {"advertising_id": "fake-ad-id-73"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_74", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 74,"device": {"advertising_id": "fake-ad-id-74"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_75", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 75,"device": {"advertising_id": "fake-ad-id-75"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_76", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 76,"device": {"advertising_id": "fake-ad-id-76"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_77", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 77,"device": {"advertising_id": "fake-ad-id-77"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_78", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 78,"device": {"advertising_id": "fake-ad-id-78"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_79", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 79,"device": {"advertising_id": "fake-ad-id-79"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_80", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 80,"device": {"advertising_id": "fake-ad-id-80"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_81", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 81,"device": {"advertising_id": "fake-ad-id-81"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_82", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 82,"device": {"advertising_id": "fake-ad-id-82"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_83", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 83,"device": {"advertising_id": "fake-ad-id-83"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_84", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 84,"device": {"advertising_id": "fake-ad-id-84"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_85", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 85,"device": {"advertising_id": "fake-ad-id-85"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_86", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 86,"device": {"advertising_id": "fake-ad-id-86"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_87", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 87,"device": {"advertising_id": "fake-ad-id-87"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_88", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 88,"device": {"advertising_id": "fake-ad-id-88"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_89", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 89,"device": {"advertising_id": "fake-ad-id-89"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_90", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 90,"device": {"advertising_id": "fake-ad-id-90"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_91", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 91,"device": {"advertising_id": "fake-ad-id-91"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_92", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 92,"device": {"advertising_id": "fake-ad-id-92"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_93", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 93,"device": {"advertising_id": "fake-ad-id-93"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_94", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 94,"device": {"advertising_id": "fake-ad-id-94"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_95", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 95,"device": {"advertising_id": "fake-ad-id-95"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "days_since_last", "screen": "Level 1 - Profile: 1", "action": "DaysSinceLast", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_96", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 96,"device": {"advertising_id": "fake-ad-id-96"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_97", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 97,"device": {"advertising_id": "fake-ad-id-97"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_98", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 98,"device": {"advertising_id": "fake-ad-id-98"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_99", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 99,"device": {"advertising_id": "fake-ad-id-99"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_100", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 100,"device": {"advertising_id": "fake-ad-id-100"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_101", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 101,"device": {"advertising_id": "fake-ad-id-101"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}} ], "set4": [ - {"uuid": "pseudo_id_1", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1001,"device": {"advertising_id": "fake-ad-id-1"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_2", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1002,"device": {"advertising_id": "fake-ad-id-2"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_3", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1003,"device": {"advertising_id": "fake-ad-id-3"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_4", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1004,"device": {"advertising_id": "fake-ad-id-4"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_5", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1005,"device": {"advertising_id": "fake-ad-id-5"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_6", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1006,"device": {"advertising_id": "fake-ad-id-6"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_7", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1007,"device": {"advertising_id": "fake-ad-id-7"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_8", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1008,"device": {"advertising_id": "fake-ad-id-8"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_9", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 1009,"device": {"advertising_id": "fake-ad-id-9"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_10", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10010,"device": {"advertising_id": "fake-ad-id-10"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_11", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10011,"device": {"advertising_id": "fake-ad-id-11"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_12", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10012,"device": {"advertising_id": "fake-ad-id-12"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_13", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10013,"device": {"advertising_id": "fake-ad-id-13"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_14", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10014,"device": {"advertising_id": "fake-ad-id-14"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_15", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10015,"device": {"advertising_id": "fake-ad-id-15"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_16", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10016,"device": {"advertising_id": "fake-ad-id-16"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_17", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10017,"device": {"advertising_id": "fake-ad-id-17"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_18", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10018,"device": {"advertising_id": "fake-ad-id-18"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_19", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10019,"device": {"advertising_id": "fake-ad-id-19"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_20", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10020,"device": {"advertising_id": "fake-ad-id-20"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_21", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10021,"device": {"advertising_id": "fake-ad-id-21"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_22", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10022,"device": {"advertising_id": "fake-ad-id-22"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_23", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10023,"device": {"advertising_id": "fake-ad-id-23"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_24", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10024,"device": {"advertising_id": "fake-ad-id-24"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_25", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10025,"device": {"advertising_id": "fake-ad-id-25"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_26", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10026,"device": {"advertising_id": "fake-ad-id-26"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_27", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10027,"device": {"advertising_id": "fake-ad-id-27"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_28", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10028,"device": {"advertising_id": "fake-ad-id-28"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_29", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10029,"device": {"advertising_id": "fake-ad-id-29"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_30", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10030,"device": {"advertising_id": "fake-ad-id-30"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_31", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10031,"device": {"advertising_id": "fake-ad-id-31"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_32", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10032,"device": {"advertising_id": "fake-ad-id-32"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_33", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10033,"device": {"advertising_id": "fake-ad-id-33"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_34", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10034,"device": {"advertising_id": "fake-ad-id-34"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_35", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10035,"device": {"advertising_id": "fake-ad-id-35"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_36", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10036,"device": {"advertising_id": "fake-ad-id-36"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_37", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10037,"device": {"advertising_id": "fake-ad-id-37"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_38", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10038,"device": {"advertising_id": "fake-ad-id-38"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_39", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10039,"device": {"advertising_id": "fake-ad-id-39"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_40", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10040,"device": {"advertising_id": "fake-ad-id-40"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_41", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10041,"device": {"advertising_id": "fake-ad-id-41"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_42", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10042,"device": {"advertising_id": "fake-ad-id-42"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_43", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10043,"device": {"advertising_id": "fake-ad-id-43"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_44", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10044,"device": {"advertising_id": "fake-ad-id-44"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_45", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10045,"device": {"advertising_id": "fake-ad-id-45"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_46", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10046,"device": {"advertising_id": "fake-ad-id-46"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_47", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10047,"device": {"advertising_id": "fake-ad-id-47"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_48", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10048,"device": {"advertising_id": "fake-ad-id-48"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_49", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10049,"device": {"advertising_id": "fake-ad-id-49"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_50", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10050,"device": {"advertising_id": "fake-ad-id-50"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_51", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10051,"device": {"advertising_id": "fake-ad-id-51"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_52", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10052,"device": {"advertising_id": "fake-ad-id-52"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Level_6", "action": "SelectMonster Magnet Evolve_4", "screen": "MonsterSelect", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_53", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10053,"device": {"advertising_id": "fake-ad-id-53"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_54", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10054,"device": {"advertising_id": "fake-ad-id-54"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_55", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10055,"device": {"advertising_id": "fake-ad-id-55"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_56", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10056,"device": {"advertising_id": "fake-ad-id-56"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_57", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10057,"device": {"advertising_id": "fake-ad-id-57"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_58", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10058,"device": {"advertising_id": "fake-ad-id-58"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_59", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10059,"device": {"advertising_id": "fake-ad-id-59"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_60", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10060,"device": {"advertising_id": "fake-ad-id-60"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_61", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10061,"device": {"advertising_id": "fake-ad-id-61"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_62", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10062,"device": {"advertising_id": "fake-ad-id-62"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_63", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10063,"device": {"advertising_id": "fake-ad-id-63"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_64", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10064,"device": {"advertising_id": "fake-ad-id-64"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_65", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10065,"device": {"advertising_id": "fake-ad-id-65"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_66", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10066,"device": {"advertising_id": "fake-ad-id-66"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_67", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10067,"device": {"advertising_id": "fake-ad-id-67"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_68", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10068,"device": {"advertising_id": "fake-ad-id-68"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_69", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10069,"device": {"advertising_id": "fake-ad-id-69"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_70", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10070,"device": {"advertising_id": "fake-ad-id-70"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_71", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10071,"device": {"advertising_id": "fake-ad-id-71"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_72", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10072,"device": {"advertising_id": "fake-ad-id-72"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_73", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10073,"device": {"advertising_id": "fake-ad-id-73"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_74", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10074,"device": {"advertising_id": "fake-ad-id-74"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_75", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10075,"device": {"advertising_id": "fake-ad-id-75"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_76", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10076,"device": {"advertising_id": "fake-ad-id-76"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_77", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10077,"device": {"advertising_id": "fake-ad-id-77"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_78", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10078,"device": {"advertising_id": "fake-ad-id-78"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_79", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10079,"device": {"advertising_id": "fake-ad-id-79"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_80", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10080,"device": {"advertising_id": "fake-ad-id-80"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_81", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10081,"device": {"advertising_id": "fake-ad-id-81"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_82", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10082,"device": {"advertising_id": "fake-ad-id-82"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_83", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10083,"device": {"advertising_id": "fake-ad-id-83"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_84", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10084,"device": {"advertising_id": "fake-ad-id-84"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_85", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10085,"device": {"advertising_id": "fake-ad-id-85"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_86", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10086,"device": {"advertising_id": "fake-ad-id-86"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_87", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10087,"device": {"advertising_id": "fake-ad-id-87"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_88", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10088,"device": {"advertising_id": "fake-ad-id-88"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_89", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10089,"device": {"advertising_id": "fake-ad-id-89"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_90", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10090,"device": {"advertising_id": "fake-ad-id-90"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_91", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10091,"device": {"advertising_id": "fake-ad-id-91"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_92", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10092,"device": {"advertising_id": "fake-ad-id-92"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_93", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10093,"device": {"advertising_id": "fake-ad-id-93"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_94", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10094,"device": {"advertising_id": "fake-ad-id-94"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_95", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10095,"device": {"advertising_id": "fake-ad-id-95"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_96", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10096,"device": {"advertising_id": "fake-ad-id-96"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_97", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10097,"device": {"advertising_id": "fake-ad-id-97"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_98", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10098,"device": {"advertising_id": "fake-ad-id-98"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_99", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 10099,"device": {"advertising_id": "fake-ad-id-99"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_100", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 100100,"device": {"advertising_id": "fake-ad-id-100"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, - {"uuid": "pseudo_id_101", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "event_timestamp": 100101,"device": {"advertising_id": "fake-ad-id-101"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}} + {"uuid": "pseudo_id_1", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 1001,"device": {"advertising_id": "fake-ad-id-1"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_2", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 1002,"device": {"advertising_id": "fake-ad-id-2"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_3", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 1003,"device": {"advertising_id": "fake-ad-id-3"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_4", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 1004,"device": {"advertising_id": "fake-ad-id-4"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_5", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 1005,"device": {"advertising_id": "fake-ad-id-5"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_6", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 1006,"device": {"advertising_id": "fake-ad-id-6"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_7", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 1007,"device": {"advertising_id": "fake-ad-id-7"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_8", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 1008,"device": {"advertising_id": "fake-ad-id-8"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_9", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 1009,"device": {"advertising_id": "fake-ad-id-9"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_10", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10010,"device": {"advertising_id": "fake-ad-id-10"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_11", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10011,"device": {"advertising_id": "fake-ad-id-11"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_12", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10012,"device": {"advertising_id": "fake-ad-id-12"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_13", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10013,"device": {"advertising_id": "fake-ad-id-13"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_14", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10014,"device": {"advertising_id": "fake-ad-id-14"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_15", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10015,"device": {"advertising_id": "fake-ad-id-15"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_16", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10016,"device": {"advertising_id": "fake-ad-id-16"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_17", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10017,"device": {"advertising_id": "fake-ad-id-17"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_18", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10018,"device": {"advertising_id": "fake-ad-id-18"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_19", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10019,"device": {"advertising_id": "fake-ad-id-19"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_20", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10020,"device": {"advertising_id": "fake-ad-id-20"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_21", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10021,"device": {"advertising_id": "fake-ad-id-21"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "total_playtime", "screen": "Level 1 - Profile: 2", "action": "TotalPlaytime", "val": "120000", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_22", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10022,"device": {"advertising_id": "fake-ad-id-22"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_23", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10023,"device": {"advertising_id": "fake-ad-id-23"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_24", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10024,"device": {"advertising_id": "fake-ad-id-24"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_25", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10025,"device": {"advertising_id": "fake-ad-id-25"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_26", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10026,"device": {"advertising_id": "fake-ad-id-26"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_27", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10027,"device": {"advertising_id": "fake-ad-id-27"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_28", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10028,"device": {"advertising_id": "fake-ad-id-28"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_29", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10029,"device": {"advertising_id": "fake-ad-id-29"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_30", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10030,"device": {"advertising_id": "fake-ad-id-30"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_31", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10031,"device": {"advertising_id": "fake-ad-id-31"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_32", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10032,"device": {"advertising_id": "fake-ad-id-32"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_33", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10033,"device": {"advertising_id": "fake-ad-id-33"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_34", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10034,"device": {"advertising_id": "fake-ad-id-34"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_35", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10035,"device": {"advertising_id": "fake-ad-id-35"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_36", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10036,"device": {"advertising_id": "fake-ad-id-36"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_37", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10037,"device": {"advertising_id": "fake-ad-id-37"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_38", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10038,"device": {"advertising_id": "fake-ad-id-38"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_39", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10039,"device": {"advertising_id": "fake-ad-id-39"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_40", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10040,"device": {"advertising_id": "fake-ad-id-40"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_41", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10041,"device": {"advertising_id": "fake-ad-id-41"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_42", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10042,"device": {"advertising_id": "fake-ad-id-42"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_43", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10043,"device": {"advertising_id": "fake-ad-id-43"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_44", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10044,"device": {"advertising_id": "fake-ad-id-44"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_45", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10045,"device": {"advertising_id": "fake-ad-id-45"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_46", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10046,"device": {"advertising_id": "fake-ad-id-46"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_47", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10047,"device": {"advertising_id": "fake-ad-id-47"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_48", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10048,"device": {"advertising_id": "fake-ad-id-48"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_49", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10049,"device": {"advertising_id": "fake-ad-id-49"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_50", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10050,"device": {"advertising_id": "fake-ad-id-50"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_51", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10051,"device": {"advertising_id": "fake-ad-id-51"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "average_session", "screen": "Level 1 - Profile: 0", "action": "AvgSession", "val": "477.80062866210938", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_52", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10052,"device": {"advertising_id": "fake-ad-id-52"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "Level_6", "action": "SelectMonster Magnet Evolve_4", "screen": "MonsterSelect", "val": "1", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_53", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10053,"device": {"advertising_id": "fake-ad-id-53"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_54", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10054,"device": {"advertising_id": "fake-ad-id-54"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_55", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10055,"device": {"advertising_id": "fake-ad-id-55"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_56", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10056,"device": {"advertising_id": "fake-ad-id-56"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_57", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10057,"device": {"advertising_id": "fake-ad-id-57"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_58", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10058,"device": {"advertising_id": "fake-ad-id-58"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_59", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10059,"device": {"advertising_id": "fake-ad-id-59"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_60", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10060,"device": {"advertising_id": "fake-ad-id-60"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_61", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10061,"device": {"advertising_id": "fake-ad-id-61"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_62", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10062,"device": {"advertising_id": "fake-ad-id-62"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_63", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10063,"device": {"advertising_id": "fake-ad-id-63"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_64", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10064,"device": {"advertising_id": "fake-ad-id-64"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_65", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10065,"device": {"advertising_id": "fake-ad-id-65"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_66", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10066,"device": {"advertising_id": "fake-ad-id-66"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_67", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10067,"device": {"advertising_id": "fake-ad-id-67"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_68", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10068,"device": {"advertising_id": "fake-ad-id-68"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_69", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10069,"device": {"advertising_id": "fake-ad-id-69"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_70", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10070,"device": {"advertising_id": "fake-ad-id-70"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_71", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10071,"device": {"advertising_id": "fake-ad-id-71"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_72", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10072,"device": {"advertising_id": "fake-ad-id-72"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_73", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10073,"device": {"advertising_id": "fake-ad-id-73"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_74", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10074,"device": {"advertising_id": "fake-ad-id-74"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_75", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10075,"device": {"advertising_id": "fake-ad-id-75"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_76", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10076,"device": {"advertising_id": "fake-ad-id-76"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "3 puzzles", "screen": "Level 1 - Profile: 1", "action": "LevelSuccess_1", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_77", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10077,"device": {"advertising_id": "fake-ad-id-77"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_78", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10078,"device": {"advertising_id": "fake-ad-id-78"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_79", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10079,"device": {"advertising_id": "fake-ad-id-79"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_80", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10080,"device": {"advertising_id": "fake-ad-id-80"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_81", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10081,"device": {"advertising_id": "fake-ad-id-81"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_82", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10082,"device": {"advertising_id": "fake-ad-id-82"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_83", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10083,"device": {"advertising_id": "fake-ad-id-83"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_84", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10084,"device": {"advertising_id": "fake-ad-id-84"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_85", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10085,"device": {"advertising_id": "fake-ad-id-85"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_86", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10086,"device": {"advertising_id": "fake-ad-id-86"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_87", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10087,"device": {"advertising_id": "fake-ad-id-87"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_88", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10088,"device": {"advertising_id": "fake-ad-id-88"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_89", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10089,"device": {"advertising_id": "fake-ad-id-89"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_90", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10090,"device": {"advertising_id": "fake-ad-id-90"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_91", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10091,"device": {"advertising_id": "fake-ad-id-91"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_92", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10092,"device": {"advertising_id": "fake-ad-id-92"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_93", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10093,"device": {"advertising_id": "fake-ad-id-93"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_94", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10094,"device": {"advertising_id": "fake-ad-id-94"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_95", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10095,"device": {"advertising_id": "fake-ad-id-95"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_96", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10096,"device": {"advertising_id": "fake-ad-id-96"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_97", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10097,"device": {"advertising_id": "fake-ad-id-97"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_98", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10098,"device": {"advertising_id": "fake-ad-id-98"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_99", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 10099,"device": {"advertising_id": "fake-ad-id-99"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_100", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 100100,"device": {"advertising_id": "fake-ad-id-100"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}}, + {"uuid": "pseudo_id_101", "attribution_id": "referral_source_8675309", "app_package_name": "com.eduapp4syria.feedthemonsterENGLISH", "metadata": [{"key": "key1", "val": "val1"}, {"key": "key2", "val": "val2"}], "event_timestamp": 100101,"device": {"advertising_id": "fake-ad-id-101"}, "event_date": "fake-date", "geo": {"continent": "fake-continent", "country": "fake-country", "city": "fake-city", "region": "fake-region"}, "event_name": "fake-event", "label": "1 puzzles", "screen": "Level 2 - Profile: 1", "action": "LevelFail_2", "val": "0", "value": {"string_value": "fake-value", "int_value": "NULL", "float_value": "NULL", "double_value": "NULL"}} ]}