Skip to content

Commit

Permalink
Merge pull request #6 from fivetran/jm-updates
Browse files Browse the repository at this point in the history
package updates
  • Loading branch information
fivetran-joemarkiewicz authored Mar 29, 2021
2 parents e22f61e + 935253b commit ebfa106
Show file tree
Hide file tree
Showing 70 changed files with 1,014 additions and 296 deletions.
60 changes: 60 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
version: 2

jobs:
build:
docker:
- image: circleci/python:3.7.9-stretch

steps:
- checkout

- run:
run: setup_creds
command: |
echo $GCLOUD_SERVICE_KEY | base64 --decode --ignore-garbage > ${HOME}/gcloud-service-key.json
- run:
name: "Setup dbt"
command: |
python3 -m venv venv
. venv/bin/activate
pip install --upgrade pip setuptools
pip install -r integration_tests/requirements.txt
mkdir -p ~/.dbt
cp integration_tests/ci/sample.profiles.yml ~/.dbt/profiles.yml
- run:
name: "Run Tests - Redshift"
command: |
. venv/bin/activate
echo `pwd`
cd integration_tests
dbt deps
dbt seed --target redshift --full-refresh
dbt run --target redshift --full-refresh
dbt test --target redshift
- run:
name: "Run Tests - Snowflake"
command: |
. venv/bin/activate
echo `pwd`
cd integration_tests
dbt deps
dbt seed --target snowflake --full-refresh
dbt run --target snowflake --full-refresh
dbt test --target snowflake
- run:
name: "Run Tests - BigQuery"
environment:
GCLOUD_SERVICE_KEY_PATH: "/home/circleci/gcloud-service-key.json"

command: |
. venv/bin/activate
echo `pwd`
cd integration_tests
dbt deps
dbt seed --target bigquery --full-refresh
dbt run --target bigquery --full-refresh
dbt test --target bigquery
- save_cache:
key: deps2-{{ .Branch }}
paths:
- "venv"
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Asana

This package models Asana data from [Fivetran's connector](https://fivetran.com/docs/applications/asana). It uses data in the format described by [this ERD](https://docs.google.com/presentation/d/14m2L2aYGmt0IXseExR80FlEO-7fxjBKfoALR2jVh0G8/edit).
This package models Asana data from [Fivetran's connector](https://fivetran.com/docs/applications/asana). It uses data in the format described by [this ERD](https://fivetran.com/docs/applications/asana#schemainformation).

This package enriches your Fivetran data by doing the following:
* Adds descriptions to tables and columns that are synced using Fivetran
Expand Down Expand Up @@ -36,6 +36,21 @@ vars:
asana_schema: your_schema_name
```
### Changing the Build Schema
By default this package will build the Asana staging models within a schema titled (<target_schema> + `_stg_asana`) in your target database. If this is not where you would like your Asana staging data to be written to, add the following configuration to your `dbt_project.yml` file:

```yml
# dbt_project.yml
...
models:
asana_source:
+schema: my_new_schema_name # leave blank for just the target_schema
```

## Database support
This package is compatible with BigQuery, Snowflake, and Redshift.

## Contributions

Additional contributions to this package are very welcome! Please create issues
Expand Down
27 changes: 14 additions & 13 deletions dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
config-version: 2

name: 'asana_source'
version: '0.2.0'
version: '0.3.0'

require-dbt-version: [">=0.18.0", "<0.19.0"]
require-dbt-version: [">=0.18.0", "<0.20.0"]

models:
asana_source:
+schema: stg_asana
materialized: table

vars:
asana_source:
user: "{{ source('asana', 'user') }}"
project: "{{ source('asana', 'project') }}"
task: "{{ source('asana', 'task') }}"
story: "{{ source('asana', 'story') }}"
team: "{{ source('asana', 'team') }}"
tag: "{{ source('asana', 'tag') }}"
project_task: "{{ source('asana', 'project_task') }}"
task_follower: "{{ source('asana', 'task_follower') }}"
task_tag: "{{ source('asana', 'task_tag') }}"
section: "{{ source('asana', 'section') }}"
task_section: "{{ source('asana', 'task_section') }}"
user: "{{ source('asana', 'user') }}"
project: "{{ source('asana', 'project') }}"
task: "{{ source('asana', 'task') }}"
story: "{{ source('asana', 'story') }}"
team: "{{ source('asana', 'team') }}"
tag: "{{ source('asana', 'tag') }}"
project_task: "{{ source('asana', 'project_task') }}"
task_follower: "{{ source('asana', 'task_follower') }}"
task_tag: "{{ source('asana', 'task_tag') }}"
section: "{{ source('asana', 'section') }}"
task_section: "{{ source('asana', 'task_section') }}"
1 change: 1 addition & 0 deletions docs/catalog.json

Large diffs are not rendered by default.

102 changes: 102 additions & 0 deletions docs/index.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/manifest.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/run_results.json

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions integration_tests/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

target/
dbt_modules/
logs/
.DS_Store
37 changes: 37 additions & 0 deletions integration_tests/ci/sample.profiles.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@

# HEY! This file is used in the asana integrations tests with CircleCI.
# You should __NEVER__ check credentials into version control. Thanks for reading :)

config:
send_anonymous_usage_stats: False
use_colors: True

integration_tests:
target: snowflake
outputs:
redshift:
type: redshift
host: "{{ env_var('CI_REDSHIFT_DBT_HOST') }}"
user: "{{ env_var('CI_REDSHIFT_DBT_USER') }}"
pass: "{{ env_var('CI_REDSHIFT_DBT_PASS') }}"
dbname: "{{ env_var('CI_REDSHIFT_DBT_DBNAME') }}"
port: 5439
schema: asana_source_integration_tests
threads: 8
bigquery:
type: bigquery
method: service-account
keyfile: "{{ env_var('GCLOUD_SERVICE_KEY_PATH') }}"
project: 'dbt-package-testing'
schema: asana_source_integration_tests
threads: 8
snowflake:
type: snowflake
account: "{{ env_var('CI_SNOWFLAKE_DBT_ACCOUNT') }}"
user: "{{ env_var('CI_SNOWFLAKE_DBT_USER') }}"
password: "{{ env_var('CI_SNOWFLAKE_DBT_PASS') }}"
role: "{{ env_var('CI_SNOWFLAKE_DBT_ROLE') }}"
database: "{{ env_var('CI_SNOWFLAKE_DBT_DATABASE') }}"
warehouse: "{{ env_var('CI_SNOWFLAKE_DBT_WAREHOUSE') }}"
schema: asana_source_integration_tests
threads: 8
17 changes: 17 additions & 0 deletions integration_tests/data/project_data.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
id,_fivetran_deleted,_fivetran_synced,archived,color,created_at,current_status,due_date,modified_at,name,notes,owner_id,public,team_id,workspace_id
1142815262788834,FALSE,2021-03-22 14:24:47,FALSE,light-purple,2019-10-02 16:02:54,,,2020-02-27 17:26:31,75f4eda5755b226c07bdd5ef96624733,,,,1109585467162456,2104505001950
339036947888917,FALSE,2021-03-22 14:24:31,FALSE,dark-green,2019-09-18 17:03:10,,,2020-02-27 17:25:56,3a704e169290367034b7a33b86a6c894,,,,1109585467162456,2104505001950
1135568818569273,FALSE,2021-03-22 14:23:20,FALSE,light-blue,2019-08-14 4:26:19,,,2020-02-27 17:26:24,35a0789351b1e8bea1efce4b7e1b6d58,f2872ac60b5baf3040b01ae77f699889,,,1109585467162456,2104505001950
339036947888916,FALSE,2021-03-22 14:24:21,FALSE,light-purple,2019-09-13 18:17:47,,,2019-09-21 22:37:42,5c7fac1b9516ef9ff51cbc30a6292a80,,2104505001945,,1130944552712711,2104505001950
1123411555652103,FALSE,2021-03-22 14:21:52,FALSE,light-purple,2019-05-16 16:15:08,,,2019-05-16 16:15:10,d3d4421c105c43597ec6bc36c21c7a05,,2349446254454,,2527546068509,2104505001950
994480050688368,FALSE,2021-03-22 14:21:46,FALSE,,2019-01-17 18:17:50,,,2019-09-21 22:27:55,ea50dd49e3f04fc0b08874465c0568ed,,2349446254454,,2527546068509,2104505001950
339036947888918,FALSE,2021-03-22 14:21:26,FALSE,,2017-05-10 18:58:18,,,2019-09-21 22:27:28,44426ab2d0738bb56fec785a43de6e62,,2349446254454,,2527546068509,2104505001950
339014487764325,FALSE,2021-03-22 14:21:25,FALSE,,2017-05-10 17:07:21,,,2019-09-21 22:27:08,72d7ec4b0127c0b11876d57b054b1201,,2349446254454,,2527546068509,2104505001950
339036947888913,FALSE,2021-03-22 14:21:25,FALSE,,2017-05-10 18:30:46,,,2019-09-21 22:27:17,780efbde414f524f93e38332db3cc32d,,2349446254454,,2527546068509,2104505001950
339282757803825,FALSE,2021-03-22 14:21:27,FALSE,,2017-05-10 22:25:19,,,2019-09-21 22:27:21,f32c3edaacea72c0ddb30ecf0135c4de,,2349446254454,,2527546068509,2104505001950
338932209783787,FALSE,2021-03-22 14:21:24,FALSE,,2017-05-10 16:44:24,,,2019-09-21 22:27:15,f5e81e2cb4be3ae9d39fffc68d8af82c,,2349446254454,,2527546068509,2104505001950
1119233841877068,FALSE,2021-03-22 14:21:51,FALSE,light-blue,2019-04-18 14:25:19,,,2019-04-18 14:25:21,df021e8d790008ba29b535b898402cd0,,2349446254454,,2527546068509,2104505001950
1103976536247089,FALSE,2021-03-22 14:21:50,FALSE,,2019-01-28 6:14:18,,,2019-09-21 22:27:55,678884011246bebab096ff8b65f1b541,,2349446254454,,2527546068509,2104505001950
1133789517942526,FALSE,2021-03-22 14:22:37,FALSE,dark-pink,2019-07-31 20:35:29,,2019-09-11 0:00:00,2020-02-27 17:26:23,d704501c4aadd255aa9245d2c926529d,d41d8cd98f00b204e9800998ecf8427e,338984235816349,,1109585467162456,2104505001950
1127687633259843,FALSE,2021-03-22 14:21:58,FALSE,light-warm-gray,2019-06-19 5:04:03,,,2020-02-27 17:26:22,d704501c4aadd255aa9245d2c926529d,,338984235816349,,1109585467162456,2104505001950
1138337102495418,FALSE,2021-03-22 14:24:06,FALSE,light-blue,2019-09-04 0:06:05,752e3db7344085cd1bdb19f63d241ca8,,2020-02-27 17:26:29,d704501c4aadd255aa9245d2c926529d,ccf334d79abdfd11da2d0cba23fb1108,338984235816349,,1109585467162456,2104505001950
3 changes: 3 additions & 0 deletions integration_tests/data/project_task_data.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
project_id,task_id,_fivetran_synced
1145621382672906,1199893417793941,2021-02-04 02:24:35
1134396676363546,1199893417793941,2021-02-04 02:24:35
14 changes: 14 additions & 0 deletions integration_tests/data/section_data.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
id,_fivetran_synced,created_at,name,project_id
1140999307201834,2021-03-22 14:21:03,2019-09-21 22:25:26,05a821cdf4370ff1dd2fc1d4465fb23e,2417304153254
1140999305179192,2021-03-22 14:21:03,2019-09-21 22:25:04,453486c410b442f5df1143816d2fa52f,2417304153254
1140999422113332,2021-03-22 14:21:04,2019-09-21 22:25:04,453486c410b442f5df1143816d2fa52f,2693467581098
1140999422891922,2021-03-22 14:21:06,2019-09-21 22:25:14,453486c410b442f5df1143816d2fa52f,2724895544714
1140999306720518,2021-03-22 14:21:08,2019-09-21 22:25:21,453486c410b442f5df1143816d2fa52f,3931050316709
1140999423455392,2021-03-22 14:21:11,2019-09-21 22:25:21,453486c410b442f5df1143816d2fa52f,3944161162427
1140999424217513,2021-03-22 14:21:11,2019-09-21 22:25:27,453486c410b442f5df1143816d2fa52f,4021281497638
1140999307427051,2021-03-22 14:21:14,2019-09-21 22:25:31,453486c410b442f5df1143816d2fa52f,4388687446288
1140999307646897,2021-03-22 14:21:14,2019-09-21 22:25:36,98f770b0af18ca763421bac22b4b6805,4388687446288
1140999307646896,2021-03-22 14:21:15,2019-09-21 22:25:35,453486c410b442f5df1143816d2fa52f,4404698904438
1140999307926262,2021-03-22 14:21:16,2019-09-21 22:25:39,453486c410b442f5df1143816d2fa52f,4428993261541
1140999428608188,2021-03-22 14:21:18,2019-09-21 22:26:19,23ce0eb7d180f3dc8391d4af48572d21,28303577354184
1140999427143974,2021-03-22 14:21:18,2019-09-21 22:26:02,453486c410b442f5df1143816d2fa52f,28303577354184
4 changes: 4 additions & 0 deletions integration_tests/data/story_data.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
id,_fivetran_synced,created_at,created_by_id,hearted,num_hearts,source,target_id,text,type
1199886380677330,2021-02-04 02:24:36,2021-02-04 00:22:02,1137799670337705,,0,web,1199893417793941,e4d11d32473e2f36be6c080f2d4ba59b,system
1199886372611183,2021-02-04 02:24:36,2021-02-04 00:11:27,1137799670337705,,0,web,1199893417793941,1d2d2a1e18edac3a1d519b7df24ec16e,system
1199886381437255,2021-02-04 02:24:36,2021-02-04 00:22:15,1137799670337705,,0,web,1199893417793941,533b581ae821186aa349ca7cd8f19179,system
18 changes: 18 additions & 0 deletions integration_tests/data/tag_data.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
id,_fivetran_deleted,_fivetran_synced,color,created_at,message,name,notes,workspace_id
163915846063865,FALSE,2021-03-22 14:20:57,,2016-08-04 17:26:14,,54ce99fa85c92b1d87678436e956a2e8,,2104505001950
155711202630775,FALSE,2021-03-22 14:20:57,,2016-07-14 23:52:42,,5b6cf869265c13af8566f192b4ab3d2a,,2104505001950
205334637062213,FALSE,2021-03-22 14:20:57,,2016-11-01 15:28:12,,e7cc8f3f3aef4a5a55daa94bebb1b577,,2104505001950
155711202630769,FALSE,2021-03-22 14:20:57,,2016-07-14 23:52:14,,221d2a347ebfc15d48665188f639d1cb,,2104505001950
155711202630772,FALSE,2021-03-22 14:20:57,,2016-07-14 23:52:36,,7cb15e416d62919b1b40298324fbe30b,,2104505001950
155711202630764,FALSE,2021-03-22 14:20:57,,2016-07-14 23:51:23,,87f9f735a1d36793ceaecd4e47124b63,,2104505001950
155711202630767,FALSE,2021-03-22 14:20:57,,2016-07-14 23:51:31,,24f47cdbe9ddba774a7cc53e51d9032e,,2104505001950
87008074978192,FALSE,2021-03-22 14:20:57,,2016-02-03 18:36:17,,11ff9f68afb6b8b5b8eda218d7c83a65,,2104505001950
155711202630759,FALSE,2021-03-22 14:20:57,,2016-07-14 23:50:37,,e01aecb528730f3bfe10f9d57f1317bf,,2104505001950
155711202630747,FALSE,2021-03-22 14:20:57,,2016-07-14 23:49:45,,21021ea0e52be8e9c599f4dff41e5be0,,2104505001950
155711202630754,FALSE,2021-03-22 14:20:57,,2016-07-14 23:50:10,,bf78fa4160a6ed81e32eb6964d297cf9,,2104505001950
155711202630745,FALSE,2021-03-22 14:20:57,,2016-07-14 23:49:31,,8c6384dda98d8864d00e29dc96179970,,2104505001950
155711202630751,FALSE,2021-03-22 14:20:57,,2016-07-14 23:50:03,,cc8d68c551c4a9a6d5313e07de4deafd,,2104505001950
1143821191383339,FALSE,2021-03-22 14:20:57,,2019-10-08 20:56:09,,464fe4ea0557b9c34b4ef33c135f6a08,,2104505001950
148696288165443,FALSE,2021-03-22 14:20:57,,2016-06-27 17:44:23,,da50c2fb0cbcdf1b923b0ca88e4d49ee,,2104505001950
146630888383184,FALSE,2021-03-22 14:20:57,,2016-06-21 19:34:34,,2ceea82aab3ac5bc623e79186b389481,,2104505001950
148289869797755,FALSE,2021-03-22 14:20:57,,2016-06-25 0:54:37,,4007f46c835117c8761ebbaf8dd9969f,,2104505001950
2 changes: 2 additions & 0 deletions integration_tests/data/task_data.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
id,_fivetran_synced,assignee_id,assignee_status,completed,completed_at,completed_by_id,created_at,due_at,due_on,hearted,modified_at,name,notes,num_hearts,parent_id,start_on,workspace_id
1199893417793941,2021-02-04 02:24:35,1137799670337705,inbox,FALSE,,,2021-02-04 00:11:27,,,FALSE,2021-02-04 00:22:16,dab5f67e57087576d51dc40d79c517bc,,0,,,2104505001950
2 changes: 2 additions & 0 deletions integration_tests/data/task_follower_data.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
task_id,user_id,_fivetran_synced
1199893417793941,1137799670337705,2021-02-04 02:24:35
3 changes: 3 additions & 0 deletions integration_tests/data/task_section_data.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
section_id,task_id,_fivetran_synced
1145638605769770,1199893417793941,2021-02-04 02:24:35
1140999344898860,1199893417793941,2021-02-04 02:24:35
5 changes: 5 additions & 0 deletions integration_tests/data/task_tag_data.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
tag_id,task_id,_fivetran_synced
163915846063865,1199893417793941,2021-02-04 02:24:35
155711202630775,1199893417793941,2021-02-04 02:24:35
205334637062213,1199893417793941,2021-02-04 02:24:35
155711202630769,1199893417793941,2021-02-04 02:24:35
26 changes: 26 additions & 0 deletions integration_tests/data/team_data.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
id,_fivetran_deleted,_fivetran_synced,name,organization_id
1175290352849593,FALSE,2021-03-22 14:20:55,c8a88aee2acd5dbf76978f421dd70dee,2104505001950
1165006878005385,FALSE,2021-03-22 14:20:55,042627cc066e7a21b9b0b16ddf92a089,2104505001950
1175424836114178,FALSE,2021-03-22 14:20:55,b1861e61b41ba3fff4e74757d74c4e90,2104505001950
1190726085138177,FALSE,2021-03-22 14:20:55,e545301c9a02e33abe2917f4e38405e5,2104505001950
1163857948371041,FALSE,2021-03-22 14:20:55,53e0dbc06e48e3d381ac224fa8bae3df,2104505001950
1175424836114180,FALSE,2021-03-22 14:20:55,54dd0f611e06ada1547a2fa4b5ac4e2c,2104505001950
1145563915215145,FALSE,2021-03-22 14:20:55,7cb15e416d62919b1b40298324fbe30b,2104505001950
1140675397099665,FALSE,2021-03-22 14:20:55,7d10c031056d08b88a3b4fcf25631682,2104505001950
1131216624451101,FALSE,2021-03-22 14:20:55,f9d8847b3da721264efcd1aaeebacf13,2104505001950
1127125465171855,FALSE,2021-03-22 14:20:55,99992776e80912d4b03c9540a2255c1a,2104505001950
1131147572225013,FALSE,2021-03-22 14:20:55,1458f7aba7fa08b3920d2836d95ce518,2104505001950
1130779217347436,FALSE,2021-03-22 14:20:55,d98628a5ec525dab008c2262ad6669d4,2104505001950
1139142125254369,FALSE,2021-03-22 14:20:55,29d94732ca1696b21b3cdd2df5795dab,2104505001950
1130944552712711,FALSE,2021-03-22 14:20:55,31ff7243543d02f6537c4a43a4a18ce5,2104505001950
1125199132412749,FALSE,2021-03-22 14:20:55,36cbc41c1c121f2c68f5776a118ea027,2104505001950
1126309244892859,FALSE,2021-03-22 14:20:55,cd32106bcb6de321930cf34574ea388c,2104505001950
1126866959976249,FALSE,2021-03-22 14:20:55,deb10517653c255364175796ace3553f,2104505001950
1126539229462849,FALSE,2021-03-22 14:20:55,5f3c8189bb84d2ea4061e757daa9561f,2104505001950
1126687349073941,FALSE,2021-03-22 14:20:55,c482980d384a9d0e7bc39e1140270870,2104505001950
1119148247636811,FALSE,2021-03-22 14:20:55,5231dee7156b84b0d1854de1a18dd169,2104505001950
2527546068509,FALSE,2021-03-22 14:20:55,a7ace9d7b0d52558c00f7540af56ed57,2104505001950
595727761265526,FALSE,2021-03-22 14:20:55,c46c77edb3c31643a9260161249548c5,2104505001950
1109585467162456,FALSE,2021-03-22 14:20:55,7cb15e416d62919b1b40298324fbe30b,2104505001950
1199557466985079,FALSE,2021-03-22 14:20:55,cd32106bcb6de321930cf34574ea388c,2104505001950
1199576475848629,FALSE,2021-03-22 14:20:55,deb10517653c255364175796ace3553f,2104505001950
21 changes: 21 additions & 0 deletions integration_tests/data/user_data.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
id,_fivetran_deleted,_fivetran_synced,email,name
1145566427371773,FALSE,2021-03-22 14:20:55,f8fca099b562801e43e671847ab63793,ba502a3057da84df93c1cee38be20d98
1140679468933567,FALSE,2021-03-22 14:20:55,bf70064fcc790acb2640c9ea6658e7bf,784742a66a3a0c271feced5b149ff8db
1143584790050961,FALSE,2021-03-22 14:20:55,0e8eb57f064990dd67d18c6457d3b7e4,3c065e105ba1ffa3cbcb06ce6274a0b4
1142174241683304,FALSE,2021-03-22 14:20:55,74ea05adc4b1b53d8ed38de392bb6ae8,eea1bd8603b800df2834f07d362a1998
1140738529427046,FALSE,2021-03-22 14:20:55,0920cafb10279abbb850ccf42906f584,dc4bc96708073c555c91c4909f3e7da2
874533751271912,FALSE,2021-03-22 14:20:55,c2045671bfeec500fa785e46bda796b0,c2045671bfeec500fa785e46bda796b0
892002646367883,FALSE,2021-03-22 14:20:55,cc9681199b8d7962c787a49aad79b28a,c0639ca053b1211987bbbfd70e944bdc
1115060366861453,FALSE,2021-03-22 14:20:55,1d4af9f6d0045aac6abf03629535e875,b31671608b9a4785bf89d02a868391c9
1109585316746864,FALSE,2021-03-22 14:20:55,b9adcab5121811121c2c3d0aaaf9b2e8,b6e6868d2c745b987fd6bac86965e201
874533751409163,FALSE,2021-03-22 14:20:55,64b62aabe443ca4e937bbc5576179c88,64b62aabe443ca4e937bbc5576179c88
892002646367901,FALSE,2021-03-22 14:20:55,368eaa391757666b80b48d45492d5a62,413685a28fcb6d760c825c796a0fcecf
1119270776407458,FALSE,2021-03-22 14:20:55,72af537b7a20cdc9125de91f5f6c9052,72af537b7a20cdc9125de91f5f6c9052
1116354963772542,FALSE,2021-03-22 14:20:55,396b3a68984e542c218467d3354ce079,ac0df616713dcb9a53f04f106e973d81
1139503248172020,FALSE,2021-03-22 14:20:55,5b4d3e849ff258a849b4cd99080097b6,527a7c3ec3b7736b0ebfa0b9e688cc4d
1139503169042444,FALSE,2021-03-22 14:20:55,52537af58083acd49f69acaadfa6552c,4b4826feea5d1e05d9596eaa04fe154b
1139330627337223,FALSE,2021-03-22 14:20:55,36e84c9f6590a44b2f10df1ecfc3649a,a8ddbe83b3c803beff4f04d48f6f5312
388477550412326,FALSE,2021-03-22 14:20:55,2be7fdf344cc0e93a63089083b2c3a53,e549f53a2e1eb4b27b65b3a04c315f4e
648669515172057,FALSE,2021-03-22 14:20:55,76f8de0b00112335503a7d3734f52f79,00046eaa445242bb910688f9e1893b07
350290010811012,FALSE,2021-03-22 14:20:55,46006954dd091c5dab1b6159a5e1524c,9605959095f1e07ba7628a197088bd70
719802245514819,FALSE,2021-03-22 14:20:55,008e38cb1023225e4441f47ab5d01c70,a07d50fa47e3cfcad2a166929d680b45
Loading

0 comments on commit ebfa106

Please sign in to comment.