Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add reddit ads #83

Merged
merged 20 commits into from
Mar 20, 2023
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .buildkite/hooks/pre-command
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ export CI_SNOWFLAKE_DBT_USER=$(gcloud secrets versions access latest --secret="C
export CI_SNOWFLAKE_DBT_WAREHOUSE=$(gcloud secrets versions access latest --secret="CI_SNOWFLAKE_DBT_WAREHOUSE" --project="dbt-package-testing-363917")
export CI_DATABRICKS_DBT_HOST=$(gcloud secrets versions access latest --secret="CI_DATABRICKS_DBT_HOST" --project="dbt-package-testing-363917")
export CI_DATABRICKS_DBT_HTTP_PATH=$(gcloud secrets versions access latest --secret="CI_DATABRICKS_DBT_HTTP_PATH" --project="dbt-package-testing-363917")
export CI_DATABRICKS_DBT_TOKEN=$(gcloud secrets versions access latest --secret="CI_DATABRICKS_DBT_TOKEN" --project="dbt-package-testing-363917")
export CI_DATABRICKS_DBT_TOKEN=$(gcloud secrets versions access latest --secret="CI_DATABRICKS_DBT_TOKEN" --project="dbt-package-testing-363917")
export CI_DATABRICKS_DBT_CATALOG=$(gcloud secrets versions access latest --secret="CI_DATABRICKS_DBT_CATALOG" --project="dbt-package-testing-363917")
1 change: 1 addition & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,6 @@ steps:
- "CI_DATABRICKS_DBT_HOST"
- "CI_DATABRICKS_DBT_HTTP_PATH"
- "CI_DATABRICKS_DBT_TOKEN"
- "CI_DATABRICKS_DBT_CATALOG"
commands: |
bash .buildkite/scripts/run_models.sh databricks
4 changes: 2 additions & 2 deletions .buildkite/scripts/run_models.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ echo `pwd`
cd integration_tests
dbt deps
dbt seed --target "$db" --full-refresh
dbt run --target "$db" --full-refresh --vars '{ad_reporting__linkedin_ads_enabled: false, ad_reporting__pinterest_ads_enabled: false, ad_reporting__tiktok_ads_enabled: false, ad_reporting__snapchat_ads_enabled: false, ad_reporting__apple_search_ads_enabled: false, ad_reporting__facebook_ads_enabled: false}'
dbt test --target "$db" --vars '{ad_reporting__linkedin_ads_enabled: false, ad_reporting__pinterest_ads_enabled: false, ad_reporting__tiktok_ads_enabled: false, ad_reporting__snapchat_ads_enabled: false, ad_reporting__apple_search_ads_enabled: false, ad_reporting__facebook_ads_enabled: false}'
dbt run --target "$db" --full-refresh --vars '{ad_reporting__linkedin_ads_enabled: false, ad_reporting__pinterest_ads_enabled: false, ad_reporting__tiktok_ads_enabled: false, ad_reporting__snapchat_ads_enabled: false, ad_reporting__apple_search_ads_enabled: false, ad_reporting__facebook_ads_enabled: false, ad_reporting__reddit_ads_enabled: false}'
fivetran-joemarkiewicz marked this conversation as resolved.
Show resolved Hide resolved
dbt test --target "$db" --vars '{ad_reporting__linkedin_ads_enabled: false, ad_reporting__pinterest_ads_enabled: false, ad_reporting__tiktok_ads_enabled: false, ad_reporting__snapchat_ads_enabled: false, ad_reporting__apple_search_ads_enabled: false, ad_reporting__facebook_ads_enabled: false, ad_reporting__reddit_ads_enabled: false}'
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# dbt_ad_reporting v1.3.0

## Introducing Reddit Ads
fivetran-joemarkiewicz marked this conversation as resolved.
Show resolved Hide resolved
- We have added Reddit Ads as another platform in our Ad Reporting package ecosystem. ([PR #83](https://github.com/fivetran/dbt_ad_reporting/pull/83))

# dbt_ad_reporting v1.2.1

## Updates
Expand Down
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
- [Snapchat Ads](https://github.com/fivetran/dbt_snapchat_ads)
- [TikTok Ads](https://github.com/fivetran/dbt_tiktok_ads)
- [Twitter Ads](https://github.com/fivetran/dbt_twitter)
- [Reddit Ads](https://github.com/fivetran/dbt_reddit_ads)
> NOTE: You do _not_ need to have all of these connector types to use this package, though you should have at least two.
- Generates a comprehensive data dictionary of your source and modeled Ad Reporting data via the [dbt docs site](https://fivetran.github.io/dbt_ad_reporting/)

Expand Down Expand Up @@ -54,6 +55,7 @@ Refer to the table below for a detailed view of final models materialized by def
- [Snapchat Ads](https://fivetran.com/docs/applications/snapchat-ads)
- [TikTok Ads](https://fivetran.com/docs/applications/tiktok-ads)
- [Twitter Ads](https://fivetran.com/docs/applications/twitter-ads)
- [Reddit Ads](https://fivetran.com/docs/applications/reddit-ads)
> While you need only one of the above connectors to utilize this package, we recommend having at least two to gain the rollup benefit of this package.

- **Database support**: This package has been tested on **BigQuery**, **Snowflake**, **Redshift**, **Postgres** and **Databricks**. Ensure you are using one of these supported databases.
Expand Down Expand Up @@ -110,7 +112,10 @@ vars:
snapchat_database: your_database_name

tiktok_ads_schema: tiktok_ads
tiktok_ads_database: your_database_name
tiktok_ads_database: your_database_name

reddit_ads_schema: reddit_ads
reddit_ads_database: your_database_name
```

## Step 4: Enabling/Disabling Models
Expand All @@ -131,6 +136,7 @@ vars:
ad_reporting__facebook_ads_enabled: False # by default this is assumed to be True
ad_reporting__snapchat_ads_enabled: False # by default this is assumed to be True
ad_reporting__tiktok_ads_enabled: False # by default this is assumed to be True
ad_reporting__reddit_ads_enabled: False # by default this is assumed to be True
```
### Enable/Disable Specific Reports within Platforms
For **Apple Search Ads**, if you are not utilizing the search functionality, you may choose to update the respective variable below.
Expand Down Expand Up @@ -202,6 +208,11 @@ models:
+schema: tiktok_ads
tiktok_ads_source:
+schema: tiktok_ads_source

reddit_ads:
+schema: reddit_ads
reddit_ads_source:
+schema: reddit_ads_source
```

> Provide a blank `+schema: ` to write to the `target_schema` without any suffix.
Expand Down Expand Up @@ -353,6 +364,12 @@ packages:

- package: fivetran/tiktok_ads_source
version: [">=0.2.0", "<0.3.0"]

- package: fivetran/reddit_ads
version: [">=0.1.0", "<0.2.0"]

- package: fivetran/reddit_ads_source
version: [">=0.1.0", "<0.2.0"]
```
# 🙌 How is this package maintained and can I contribute?
## Package Maintenance
Expand Down
2 changes: 1 addition & 1 deletion dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 'ad_reporting'
version: '1.2.1'
version: '1.3.0'

config-version: 2

Expand Down
1 change: 0 additions & 1 deletion docs/catalog.json

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion docs/manifest.json

This file was deleted.

1 change: 0 additions & 1 deletion docs/run_results.json

This file was deleted.

4 changes: 2 additions & 2 deletions integration_tests/ci/sample.profiles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ integration_tests:
schema: ad_reporting_integration_tests_2
threads: 8
databricks:
catalog: null
catalog: "{{ env_var('CI_DATABRICKS_DBT_CATALOG') }}"
host: "{{ env_var('CI_DATABRICKS_DBT_HOST') }}"
http_path: "{{ env_var('CI_DATABRICKS_DBT_HTTP_PATH') }}"
schema: ad_reporting_integration_tests_2
schema: recharge_source_integration_tests_02
fivetran-joemarkiewicz marked this conversation as resolved.
Show resolved Hide resolved
threads: 2
token: "{{ env_var('CI_DATABRICKS_DBT_TOKEN') }}"
type: databricks
53 changes: 51 additions & 2 deletions integration_tests/dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 'ad_reporting_integration_tests'
version: '1.2.1'
version: '1.3.0'
profile: 'integration_tests'
config-version: 2

Expand Down Expand Up @@ -137,6 +137,18 @@ vars:
amazon_ads_targeting_keyword_report_identifier: "amazon_ads_targeting_keyword_report_data"
amazon_ads_search_term_ad_keyword_report_identifier: "amazon_ads_search_term_ad_keyword_report_data"

reddit_ads_source:
reddit_ads_schema: reddit_ads_integration_tests_1
reddit_ads_account_identifier: "reddit_ads_account_data"
reddit_ads_account_report_identifier: "reddit_ads_account_report_data"
reddit_ads_ad_identifier: "reddit_ads_ad_data"
reddit_ads_ad_report_identifier: "reddit_ads_ad_report_data"
reddit_ads_ad_group_identifier: "reddit_ads_ad_group_data"
reddit_ads_ad_group_report_identifier: "reddit_ads_ad_group_report_data"
reddit_ads_campaign_identifier: "reddit_ads_campaign_data"
reddit_ads_campaign_report_identifier: "reddit_ads_campaign_report_data"


seeds:
ad_reporting_integration_tests:
+quote_columns: "{{ true if target.type in ('redshift','postgres') else false }}"
Expand Down Expand Up @@ -529,4 +541,41 @@ seeds:
_fivetran_synced: "timestamp"
campaign_budget_amount: "float"
click_through_rate: "float"
keyword_bid: "float"
keyword_bid: "float"


### Reddit Ads Seeds

reddit_ads_account_data:
+column_types:
id: "{{ 'INT64' if target.type == 'bigquery' else 'bigint' }}"
reddit_ads_account_report_data:
+column_types:
account_id: "{{ 'INT64' if target.type == 'bigquery' else 'bigint' }}"
reddit_ads_ad_data:
+column_types:
id: "{{ 'INT64' if target.type == 'bigquery' else 'bigint' }}"
campaign_id: "{{ 'INT64' if target.type == 'bigquery' else 'bigint' }}"
ad_group_id: "{{ 'INT64' if target.type == 'bigquery' else 'bigint' }}"
reddit_ads_ad_report_data:
+column_types:
ad_id: "{{ 'INT64' if target.type == 'bigquery' else 'bigint' }}"
account_id: "{{ 'INT64' if target.type == 'bigquery' else 'bigint' }}"
reddit_ads_ad_group_data:
+column_types:
id: "{{ 'INT64' if target.type == 'bigquery' else 'bigint' }}"
campaign_id: "{{ 'INT64' if target.type == 'bigquery' else 'bigint' }}"
ad_id: "{{ 'INT64' if target.type == 'bigquery' else 'bigint' }}"
ad_group_id: "{{ 'INT64' if target.type == 'bigquery' else 'bigint' }}"
reddit_ads_ad_group_report_data:
+column_types:
account_id: "{{ 'INT64' if target.type == 'bigquery' else 'bigint' }}"
ad_group_id: "{{ 'INT64' if target.type == 'bigquery' else 'bigint' }}"
reddit_ads_campaign_data:
+column_types:
id: "{{ 'INT64' if target.type == 'bigquery' else 'bigint' }}"
account_id: "{{ 'INT64' if target.type == 'bigquery' else 'bigint' }}"
reddit_ads_campaign_report_data:
+column_types:
account_id: "{{ 'INT64' if target.type == 'bigquery' else 'bigint' }}"
campaign_id: "{{ 'INT64' if target.type == 'bigquery' else 'bigint' }}"
2 changes: 2 additions & 0 deletions integration_tests/seeds/reddit_ads_account_data.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
id,_fivetran_synced,attribution_type,click_attribution_window,created_at,currency,status,time_zone_id,view_attribution_window
1234,2023-01-09 22:21:17,ALL_CONVERSION,MONTH,2022-01-04 22:22:31,USD,,GMT,DAY
57 changes: 57 additions & 0 deletions integration_tests/seeds/reddit_ads_account_report_data.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
account_id,date,_fivetran_synced,app_install_metrics_add_payment_info,app_install_metrics_add_to_cart,app_install_metrics_app_launch,app_install_metrics_completed_tutorial,app_install_metrics_install,app_install_metrics_level_achieved,app_install_metrics_purchase,app_install_metrics_search,app_install_metrics_sign_up,app_install_metrics_spend,app_install_metrics_spend_credits,app_install_metrics_view_content,clicks,comment_downvotes,comment_upvotes,comments_page_views,conversion_roas,cpc,ctr,ecpm,gallery_item_caption,gallery_item_id,impressions,legacy_click_conversions_attribution_window_day,legacy_click_conversions_attribution_window_month,legacy_click_conversions_attribution_window_week,legacy_view_conversions_attribution_window_day,legacy_view_conversions_attribution_window_month,legacy_view_conversions_attribution_window_week,priority,region,spend,video_fully_viewable_impressions,video_plays_expanded,video_plays_with_sound,video_started,video_viewable_impressions,video_watched_100_percent,video_watched_10_seconds,video_watched_25_percent,video_watched_3_seconds,video_watched_50_percent,video_watched_5_seconds,video_watched_75_percent,video_watched_95_percent,viewable_impressions,viewer_comments
1234,2022-11-25,2023-01-09 22:21:58,0,0,0,0,0,0,0,0,0,0,0,0,307,,,,0,1360387.088,0.001970512911,2680660.321,,,155797,,,,,,,,,417638836,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-12-07,2023-01-09 22:21:58,0,0,0,0,0,0,0,0,0,0,0,0,216,,,,0,1706610.731,0.002207234825,3766890.64,,,97860,,,,,,,,,368627918,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-10-14,2023-01-09 22:22:01,0,0,0,0,0,0,0,0,0,0,0,0,96,,,,0,1634355.208,0.003319961267,5425995.988,,,28916,,,,,,,,,156898100,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-11-17,2023-01-09 22:21:58,0,0,0,0,0,0,0,0,0,0,0,0,316,,,,0,1380874.101,0.002338904268,3229732.329,,,135106,,,,,,,,,436356216,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-10-11,2023-01-09 22:22:03,0,0,0,0,0,0,0,0,0,0,0,0,103,,,,0,1587584.99,0.002828194075,4489998.462,,,36419,,,,,,,,,163521254,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-10-15,2023-01-09 22:22:01,0,0,0,0,0,0,0,0,0,0,0,0,25,,,,0,1940545.52,0.004615952733,8957466.396,,,5416,,,,,,,,,48513638,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-10-30,2023-01-09 22:22:01,0,0,0,0,0,0,0,0,0,0,0,0,137,,,,0,1412544.847,0.003233267252,4567134.995,,,42372,,,,,,,,,193518644,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-11-19,2023-01-09 22:21:58,0,0,0,0,0,0,0,0,0,0,0,0,105,,,,0,1372820.438,0.00293648796,4031270.688,,,35757,,,,,,,,,144146146,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-11-23,2023-01-09 22:21:58,0,0,0,0,0,0,0,0,0,0,0,0,302,,,,0,1387865.238,0.002622688864,3639938.706,,,115149,,,,,,,,,419135302,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-12-03,2023-01-09 22:21:58,0,0,0,0,0,0,0,0,0,0,0,0,45,,,,0,1786445.4,0.003219114386,5750772.087,,,13979,,,,,,,,,80390043,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-10-10,2023-01-09 22:22:03,0,0,0,0,0,0,0,0,0,0,0,0,131,,,,0,1398539,0.003365532833,4706828.923,,,38924,,,,,,,,,183208609,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-10-12,2023-01-09 22:22:03,0,0,0,0,0,0,0,0,0,0,0,0,101,,,,0,1608776.931,0.003452637336,5554523.297,,,29253,,,,,,,,,162486470,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-10-22,2023-01-09 22:22:01,0,0,0,0,0,0,0,0,0,0,0,0,39,,,,0,1761694.385,0.004488950276,7908158.494,,,8688,,,,,,,,,68706081,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-10-21,2023-01-09 22:22:01,0,0,0,0,0,0,0,0,0,0,0,0,110,,,,0,1524158.909,0.003287802254,5011133.096,,,33457,,,,,,,,,167657480,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-11-14,2023-01-09 22:21:58,0,0,0,0,0,0,0,0,0,0,0,0,9,,,,0,1305312.111,0.003911342894,5105523.251,,,2301,,,,,,,,,11747809,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-12-06,2023-01-09 22:21:58,0,0,0,0,0,0,0,0,0,0,0,0,213,,,,0,1635268.183,0.002597085899,4246931.939,,,82015,,,,,,,,,348312123,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-12-02,2023-01-09 22:21:58,0,0,0,0,0,0,0,0,0,0,0,0,204,,,,0,1698539.765,0.002225373623,3779885.59,,,91670,,,,,,,,,346502112,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-12-01,2023-01-09 22:21:58,0,0,0,0,0,0,0,0,0,0,0,0,28,,,,0,1286066.25,0.001792688392,2305516.038,,,15619,,,,,,,,,36009855,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-10-09,2023-01-09 22:22:03,0,0,0,0,0,0,0,0,0,0,0,0,132,,,,0,1513531.902,0.002561564883,3877010.169,,,51531,,,,,,,,,199786211,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-11-15,2023-01-09 22:21:58,0,0,0,0,0,0,0,0,0,0,0,0,329,,,,0,1276506.988,0.002292826728,2926809.34,,,143491,,,,,,,,,419970799,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-11-28,2023-01-09 22:21:58,0,0,0,0,0,0,0,0,0,0,0,0,40,,,,0,1468809.25,0.002381803025,3498414.315,,,16794,,,,,,,,,58752370,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-11-18,2023-01-09 22:21:58,0,0,0,0,0,0,0,0,0,0,0,0,308,,,,0,1383411.896,0.002531250257,3501761.717,,,121679,,,,,,,,,426090864,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-10-18,2023-01-09 22:22:01,0,0,0,0,0,0,0,0,0,0,0,0,118,,,,0,1373511.127,0.003281332555,4506946.776,,,35961,,,,,,,,,162074313,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-10-24,2023-01-09 22:22:01,0,0,0,0,0,0,0,0,0,0,0,0,121,,,,0,1505473.479,0.002611755056,3931927.972,,,46329,,,,,,,,,182162291,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-10-27,2023-01-09 22:22:01,0,0,0,0,0,0,0,0,0,0,0,0,114,,,,0,1551607.491,0.00401747956,6233551.381,,,28376,,,,,,,,,176883254,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-10-20,2023-01-09 22:22:01,0,0,0,0,0,0,0,0,0,0,0,0,112,,,,0,1433348.759,0.003240740741,4645111.719,,,34560,,,,,,,,,160535061,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-11-22,2023-01-09 22:21:58,0,0,0,0,0,0,0,0,0,0,0,0,315,,,,0,1346674.187,0.002210774543,2977193.011,,,142484,,,,,,,,,424202369,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-10-25,2023-01-09 22:22:01,0,0,0,0,0,0,0,0,0,0,0,0,145,,,,0,1268328.503,0.00293183978,3718535.961,,,49457,,,,,,,,,183907633,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-10-17,2023-01-09 22:22:01,0,0,0,0,0,0,0,0,0,0,0,0,126,,,,0,1425121.484,0.002644669731,3768975.652,,,47643,,,,,,,,,179565307,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-12-04,2023-01-09 22:21:58,0,0,0,0,0,0,0,0,0,0,0,0,258,,,,0,1437084.446,0.002597507199,3732837.193,,,99326,,,,,,,,,370767787,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-12-05,2023-01-09 22:21:58,0,0,0,0,0,0,0,0,0,0,0,0,232,,,,0,1517516.047,0.002401904959,3644929.32,,,96590,,,,,,,,,352063723,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-11-26,2023-01-09 22:21:58,0,0,0,0,0,0,0,0,0,0,0,0,289,,,,0,1427009.751,0.002275895199,3247724.64,,,126983,,,,,,,,,412405818,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-10-19,2023-01-09 22:22:01,0,0,0,0,0,0,0,0,0,0,0,0,117,,,,0,1471840.342,0.003910689217,5755910.154,,,29918,,,,,,,,,172205320,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-11-16,2023-01-09 22:21:58,0,0,0,0,0,0,0,0,0,0,0,0,296,,,,0,1441871.348,0.002325764124,3353452.652,,,127270,,,,,,,,,426793919,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-10-29,2023-01-09 22:22:01,0,0,0,0,0,0,0,0,0,0,0,0,35,,,,0,1495383.486,0.005213764338,7796577.089,,,6713,,,,,,,,,52338422,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-10-26,2023-01-09 22:22:01,0,0,0,0,0,0,0,0,0,0,0,0,122,,,,0,1594319.197,0.003371190141,5374753.157,,,36189,,,,,,,,,194506942,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-11-21,2023-01-09 22:21:58,0,0,0,0,0,0,0,0,0,0,0,0,312,,,,0,1376055.673,0.002397989378,3299766.888,,,130109,,,,,,,,,429329370,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-10-13,2023-01-09 22:22:01,0,0,0,0,0,0,0,0,0,0,0,0,122,,,,0,1509428.672,0.003150419626,4755333.712,,,38725,,,,,,,,,184150298,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-11-27,2023-01-09 22:21:58,0,0,0,0,0,0,0,0,0,0,0,0,319,,,,0,1360644.708,0.002546641866,3465074.779,,,125263,,,,,,,,,434045662,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-10-16,2023-01-09 22:22:01,0,0,0,0,0,0,0,0,0,0,0,0,129,,,,0,1352431.589,0.003240229077,4382188.159,,,39812,,,,,,,,,174463675,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-10-23,2023-01-09 22:22:01,0,0,0,0,0,0,0,0,0,0,0,0,106,,,,0,1616470.557,0.002863936021,4629468.254,,,37012,,,,,,,,,171345879,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-10-28,2023-01-09 22:22:01,0,0,0,0,0,0,0,0,0,0,0,0,125,,,,0,1457684.552,0.004246356626,6189848.456,,,29437,,,,,,,,,182210569,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-11-24,2023-01-09 22:21:58,0,0,0,0,0,0,0,0,0,0,0,0,287,,,,0,1457504.007,0.002346285593,3419720.653,,,122321,,,,,,,,,418303650,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-11-20,2023-01-09 22:21:58,0,0,0,0,0,0,0,0,0,0,0,0,332,,,,0,1268982.235,0.002218539506,2815287.221,,,149648,,,,,,,,,421302102,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-10-31,2023-01-09 22:22:01,0,0,0,0,0,0,0,0,0,0,0,0,116,,,,0,1448120.983,0.00258426716,3742331.499,,,44887,,,,,,,,,167982034,0,0,0,0,0,0,0,0,0,0,,0,0,,
1234,2022-12-17,2023-01-09 22:09:12,0,0,0,0,0,0,0,0,0,0,0,0,38,,,,0,2143373.342,0.002449242668,5249641.444,,,15515,,,,,,,,,81448187,18,0,0,289,62,8,12,47,46,21,,15,8,,
1234,2022-12-14,2023-01-09 22:09:12,0,0,0,0,0,0,0,0,0,0,0,0,209,,,,0,1296568.675,0.002398026505,3109206.047,,,87155,,,,,,,,,270982853,22,0,0,473,80,13,18,68,66,38,,21,15,,
1234,2022-12-13,2023-01-09 22:09:12,0,0,0,0,0,0,0,0,0,0,0,0,192,,,,0,1221596.943,0.002158273381,2636540.164,,,88960,,,,,,,,,234546613,26,0,0,511,93,11,14,76,74,36,,16,12,,
1234,2022-12-19,2023-01-09 22:09:12,0,0,0,0,0,0,0,0,0,0,0,0,134,,,,0,1994015.351,0.002905086069,5792786.216,,,46126,,,,,,,,,267198057,46,0,0,515,136,24,34,117,116,59,,39,25,,
1234,2022-12-20,2023-01-09 22:09:12,0,0,0,0,0,0,0,0,0,0,0,0,131,,,,0,2032703.313,0.002420010345,4919163.046,,,54132,,,,,,,,,266284134,46,0,0,672,148,18,24,126,121,58,,32,20,,
1234,2022-12-16,2023-01-09 22:09:12,0,0,0,0,0,0,0,0,0,0,0,0,124,,,,0,2180505.621,0.00230903877,5034872.016,,,53702,,,,,,,,,270382697,50,0,0,822,172,32,38,143,137,64,,42,34,,
1234,2022-12-15,2023-01-09 22:09:12,0,0,0,0,0,0,0,0,0,0,0,0,137,,,,0,1950930.08,0.002297925158,4483091.313,,,59619,,,,,,,,,267277421,76,1,0,1200,252,46,57,217,212,107,,69,51,,
1234,2022-12-12,2023-01-09 22:09:12,0,0,0,0,0,0,0,0,0,0,0,0,132,,,,0,1398132.818,0.002551612155,3567492.693,,,51732,,,,,,,,,184553532,56,1,1,866,181,29,39,154,152,84,,46,33,,
1234,2022-12-09,2023-01-09 22:21:58,0,0,0,0,0,0,0,0,0,0,0,0,130,,,,0,1345586.446,0.002042002419,2747690.778,,,63663,,,,,,,,,174926238,251,0,1,4772,928,153,195,775,758,360,,219,164,,
1234,2022-12-08,2023-01-09 22:21:58,0,0,0,0,0,0,0,0,0,0,0,0,9,,,,0,1228903.222,0.001740139211,2138462.684,,,5172,,,,,,,,,11060129,38,0,2,733,133,14,26,111,108,48,,30,17,,
1234,2022-12-10,2023-01-09 22:21:59,0,0,0,0,0,0,0,0,0,0,0,0,35,,,,0,1445580.8,0.002073336888,2997175.997,,,16881,,,,,,,,,50595328,85,0,2,1677,296,47,59,245,237,110,,69,50,,
Loading