diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4f6a2c7d..945915fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -162,7 +162,8 @@ jobs: results = json.load(f) # Tasks that are allowed to pass even for the "none" agent - ALLOWED_TO_PASS = {"analytics_engineering001"} + # (e.g. no-op tasks where the answer is already in place) + ALLOWED_TO_PASS = {"analytics_engineering001", "helixops_saas017"} failed_tasks = [] passed_tasks = [] diff --git a/ade_bench/harness.py b/ade_bench/harness.py index 48a8ef68..9099b4d1 100644 --- a/ade_bench/harness.py +++ b/ade_bench/harness.py @@ -1168,6 +1168,7 @@ def _extract_duckdb_csv( import duckdb con = duckdb.connect(temp_db_path) + con.execute("SET TimeZone = 'UTC';") # Collect all schema information all_schemas = [] diff --git a/docs/superpowers/plans/2026-03-18-helixops-saas-tasks.md b/docs/superpowers/plans/2026-03-18-helixops-saas-tasks.md new file mode 100644 index 00000000..59329391 --- /dev/null +++ b/docs/superpowers/plans/2026-03-18-helixops-saas-tasks.md @@ -0,0 +1,125 @@ +# helixops_saas Benchmark Tasks Implementation Plan + +> **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking. + +**Goal:** Create 25 ADE-bench benchmark tasks that test an AI agent's ability to make targeted dbt model changes against the helixops_saas shared project. + +**Architecture:** Each task lives in `tasks/helixops_saas0NN/`, contains a `task.yaml`, `setup.sh`, `solution.sh`, a `solutions/` directory with correct SQL, and a `tests/` directory with SQL validation queries. The shared project (`shared/projects/dbt/helixops_saas`) and database (`shared/databases/duckdb/helixops_saas.duckdb`) are referenced but not modified by individual tasks. setup.sh puts the project into a broken/incomplete state; the agent's job is to fix it; solution.sh is the answer key. + +**Tech Stack:** bash, dbt-core 1.10.11, dbt-duckdb 1.9.3, DuckDB 1.3.0. DuckDB-only for now (Snowflake deferred). No external dbt packages. + +--- + +## Task Classification + +Tasks fall into three categories based on the model changes required: + +**Type A — Remove-and-restore:** The field already exists in the correct model. `setup.sh` removes it with `sed`. The agent must identify what is missing and restore it. `solution.sh` copies back the full correct SQL. + +**Type B — Genuine addition:** The field does not currently exist. `setup.sh` runs a baseline dbt build. The agent must implement a new column from scratch. `solution.sh` applies the correct implementation. + +**Type C — Logic change:** The field exists but with wrong logic. `setup.sh` applies the broken logic. The agent must fix it. `solution.sh` restores correct logic. + +--- + +## Common Patterns + +### task.yaml template + +```yaml +task_id: helixops_saasNNN +status: ready +description: One-line description +prompts: + - key: base + prompt: |- + +author_name: joel +difficulty: easy +tags: + - dbt + - helixops_saas +variants: +- db_type: duckdb + db_name: helixops_saas + project_type: dbt + project_name: helixops_saas +- db_type: duckdb + db_name: helixops_saas + project_type: dbt-fusion + project_name: helixops_saas +solution_seeds: + - table_name: +``` + +### setup.sh template (Type A — remove a column) + +```bash +#!/bin/bash +# Remove target column from model, then build baseline +sed -i '/ column_expression_to_remove,/d' models/path/to/model.sql +dbt run --select model_name +``` + +> Note: `sed -i` works on Linux (inside Docker). No need for macOS fallback since tasks run in containers. + +### solution.sh template + +```bash +#!/bin/bash +# Restore correct model SQL from solutions/ and rebuild +SOLUTIONS_DIR="$(dirname "$(readlink -f "${BASH_SOURCE}")")/solutions" +cp "$SOLUTIONS_DIR/model_name.sql" models/path/to/model_name.sql +dbt run --select model_name +``` + +### SQL test template + +Tests return **0 rows** to pass, **≥1 row** to fail. + +```sql +-- tests/column_name_exists.sql +-- Fails if the column is missing or null for every row +select 1 +from {{ ref('target_model') }} +where column_name is null +having count(*) = count(1) +limit 1 +``` + +Or for simple presence test (fails if query errors because column doesn't exist): + +```sql +-- tests/column_name_not_null.sql +select 1 +from {{ ref('target_model') }} +where column_name is not null +limit 0 +``` + +For data-correctness tests using solution seeds, see `CONTRIBUTING.md` — run `ade run helixops_saasNNN --agent sage --db duckdb --seed` to auto-generate. + +--- + + +## Tasks + +| # | Task ID | Source model(s) | Target model | Type | Prompt | setup.sh sed pattern | solution notes | +|---|---------|----------------|--------------|------|--------|---------------------|----------------| +| 1 | helixops_saas001 | stg_accounts | dim_accounts | A | "Add billing_country to dim_accounts." | `/ a.billing_country,/d` | add missing column from parent model | +| 2 | helixops_saas002 | stg_accounts | dim_accounts + mart_account_360 | A | "Add the owning team to the account 360." | remove `a.owner_team` from dim_accounts and `a.owner_team` from mart_account_360 | multi-layer propagation — must add to dim_accounts first, then mart_account_360 | +| 3 | helixops_saas003 | stg_workspaces | int_workspace_daily_metrics + int_account_daily_usage | C+A | "Please filter sandbox usage out of daily usage reporting." | (1) strip CASE from stg_workspaces — replace with `trim(env_tier) as environment_tier` (raw values exposed); (2) remove `w.environment_tier` from int_workspace_daily_metrics | agent must propagate environment_tier through metrics and filter, handling raw values 'sandbox'/'sbx' | +| 4 | helixops_saas004 | stg_users | int_workspace_roster | C | "I need to be able to work out what departments users belong to across their workspace memberships. Please add a department column — you can infer it from job title if needed." | remove `u.department` from int_workspace_roster | agent must recognize department already exists in stg_users and add it directly rather than inferring from title | +| 5 | helixops_saas005 | stg_users | int_account_users | C | "Can you fix the failing model." | (1) remove `lower(trim(email_addr)) as email` from stg_users; (2) rename `u.email` → `u.email_address` in int_account_users; (3) remove `u.email` from int_workspace_roster (no hints) | solution adds `email_address` to stg_users; agent must not just rename column in intermediate | +| 6 | helixops_saas006 | int_subscription_history + int_account_billing_snapshot | mart_account_360 | B | "Please add net_mrr to the account 360, based on contracted price less discount, divided by 12 if billed annually." | add `ls.list_price_usd` to int_account_billing_snapshot (so b.list_price_usd, b.discount_pct, b.billing_cycle are all available in mart_account_360); run baseline dbt build | correct solution is `b.effective_monthly_value_usd as net_mrr` — not recalculating from inputs; tests validate column exists with correct values | +| 7 | helixops_saas007 | int_subscription_history | int_account_billing_snapshot + mart_account_360 + mart_account_health | B | "Add region and segment to int_account_billing_snapshot as a single geo_segment column, and carry it through to the account 360 and account health marts." | none (run baseline build) | add `ls.region || ' / ' || ls.segment as geo_segment` to int_account_billing_snapshot; add `b.geo_segment` to mart_account_360 and mart_account_health; tests confirm geo_segment is present in those three models and absent from fct_support_tickets and fct_monthly_revenue | +| 8 | helixops_saas008 | stg_accounts | dim_accounts + mart_account_360 + mart_account_health + fct_support_tickets | C | "stg_accounts has account_status instead of customer_status, please rename and propagate." | none (run baseline build) | rename in stg_accounts; update all downstream references through full DAG | +| 9 | helixops_saas009 | stg_accounts | dim_accounts | B | "Please create a v2 of dim_accounts with account_status renamed to customer_status — this will become the primary version in 6 months." | none (run baseline build) | create dim_accounts_v2.sql as a new model with customer_status; old dim_accounts remains unchanged; tests verify dim_accounts_v2 exists with customer_status column and dim_accounts still has account_status | +| 10 | helixops_saas010 | stg_workspaces | int_account_workspaces | B | "Please filter out archived workspaces after the staging layer." | none (run baseline build) | add WHERE workspace_status != 'archived' to int_account_workspaces | +| 11 | helixops_saas011 | stg_workspaces | int_account_workspaces + dim_accounts | C | "The Falcon Works sandbox isn't showing up in dim_accounts." | strip CASE from stg_workspaces environment_tier — replace with `lower(trim(env_tier)) as environment_tier` (exposes raw 'sbx' value); run baseline build | agent must trace 'sbx' back to staging normalization and fix the CASE to include 'sbx' → 'sandbox' | +| 12 | helixops_saas012 | int_monthly_revenue_prep | fct_monthly_revenue | refactor | "Please move the monthly revenue prep model into being a CTE for the main revenue model." | none (run baseline build) | inline int_monthly_revenue_prep SQL as a CTE in fct_monthly_revenue; delete int_monthly_revenue_prep.sql; SQL tests verify fct_monthly_revenue still has all expected columns; structural verification (model file deleted) requires a non-SQL test | +| 13 | helixops_saas013 | stg_invoice_line_items | int_invoice_finance + fct_monthly_revenue | C | "Helio Systems' onboarding fees are being treated as recurring revenue, please fix it." | run DuckDB UPDATE: `UPDATE raw_invoice_line_items SET recurring_hint = 'Y' WHERE line_id IN ('L7102', 'L7220', 'L7342')`; run dbt build | fix is_recurring_line CASE in stg_invoice_line_items to explicitly exclude line_type='onboarding_addon' regardless of recurring_hint | +| 14 | helixops_saas014 | stg_workspace_usage_daily | mart_account_360 | A | "Please add total API calls to the account 360." | remove api_calls from all 7 models: stg_workspace_usage_daily, int_workspace_daily_metrics, int_account_daily_usage, int_account_engagement, fct_daily_account_usage, mart_account_360, mart_account_health; run baseline build | agent must propagate through full DAG (stg → metrics → daily_usage → engagement → 360); must not jump directly from staging to mart | +| 15 | helixops_saas015 | int_support_sla | fct_support_tickets | B | two variants: (base) "We updated our support SLAs effective 2025-06-16 at 08:00 UTC. Please move priority and response_sla_minutes into a new seed with valid_from and valid_to timestamps, and update the models accordingly. New SLAs: urgent=20min, high=90min, medium=300min, standard=1500min." (low) same but says low=1500min instead of standard. | none (run baseline build) | create seed with priority/response_sla_minutes/valid_from/valid_to; join in int_support_sla on priority + opened_at between valid_from and valid_to; 'standard' variant is a trap — actual priority value in data is 'low' (staging normalizes to low); valid_from must be timestamp '2025-06-16 08:00:00' not just date | +| 16 | helixops_saas016 | int_support_sla | fct_support_tickets | B | "We have new SLA targets for enterprise accounts only, effective 2025-06-16 at 08:00 UTC. Please update the SLA model so enterprise accounts get: urgent=20min, high=45min, medium=120min, standard=900min. Other segments keep existing SLAs." | none (run baseline build) | seed must include segment column; join on priority + segment + opened_at between valid_from and valid_to; 'standard' is the trap again — enterprise segment value in data is 'enterprise' (lowercase); non-enterprise rows keep old CASE logic or fallback rows in seed | +| 17 | helixops_saas017 | stg_users | int_workspace_roster | already-done | "Add department to the workspace roster." | none (no setup changes — department is already in the model) | correct behavior is no changes; marked expected-pass for the none agent | diff --git a/shared/projects/dbt/helixops_saas/dbt_project.yml b/shared/projects/dbt/helixops_saas/dbt_project.yml new file mode 100644 index 00000000..0bec111d --- /dev/null +++ b/shared/projects/dbt/helixops_saas/dbt_project.yml @@ -0,0 +1,22 @@ +name: 'helixops_saas' +version: '1.0.0' +config-version: 2 + +profile: 'helixops_saas-duckdb' + +model-paths: ['models'] +macro-paths: ['macros'] + +target-path: target +clean-targets: + - target + - dbt_packages + +models: + helixops_saas: + staging: + +materialized: view + intermediate: + +materialized: view + marts: + +materialized: table diff --git a/shared/projects/dbt/helixops_saas/macros/clean_helpers.sql b/shared/projects/dbt/helixops_saas/macros/clean_helpers.sql new file mode 100644 index 00000000..7a1b0eed --- /dev/null +++ b/shared/projects/dbt/helixops_saas/macros/clean_helpers.sql @@ -0,0 +1,27 @@ +{% macro strip_numeric(col) -%} +regexp_replace(cast({{ col }} as varchar), '[^0-9\.-]', '', 'g') +{%- endmacro %} + +{% macro integer_from_text(col) -%} +try_cast(nullif({{ strip_numeric(col) }}, '') as integer) +{%- endmacro %} + +{% macro numeric_from_text(col) -%} +try_cast(nullif({{ strip_numeric(col) }}, '') as double) +{%- endmacro %} + +{% macro epoch_to_timestamp(col) -%} +case + when {{ col }} is null then null + when lower(trim(cast({{ col }} as varchar))) in ('', 'null', 'n/a', 'na') then null + else to_timestamp(try_cast(regexp_replace(trim(cast({{ col }} as varchar)), '\.[0-9]+$', '') as bigint))::timestamp +end +{%- endmacro %} + +{% macro bool_from_text(col) -%} +case + when lower(trim(cast({{ col }} as varchar))) in ('y', 'yes', '1', 'true', 't') then true + when lower(trim(cast({{ col }} as varchar))) in ('n', 'no', '0', 'false', 'f') then false + else null +end +{%- endmacro %} diff --git a/shared/projects/dbt/helixops_saas/models/intermediate/int_account_billing_snapshot.sql b/shared/projects/dbt/helixops_saas/models/intermediate/int_account_billing_snapshot.sql new file mode 100644 index 00000000..ae5de3ef --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/intermediate/int_account_billing_snapshot.sql @@ -0,0 +1,66 @@ +with sub_hist as ( + select * from {{ ref('int_subscription_history') }} +), +invoice_finance as ( + select * from {{ ref('int_invoice_finance') }} +), +sub_ranked as ( + select + s.*, + row_number() over ( + partition by account_id + order by case when subscription_status = 'active' then 0 else 1 end, start_date desc, subscription_id desc + ) as rn + from sub_hist s +), +latest_sub as ( + select * from sub_ranked where rn = 1 +), +inv_ranked as ( + select + f.*, + row_number() over (partition by account_id order by invoice_date desc, invoice_id desc) as rn + from invoice_finance f +), +latest_inv as ( + select * from inv_ranked where rn = 1 +), +acct_rollup as ( + select + account_id, + sum(case when invoice_status = 'past_due' then 1 else 0 end) as past_due_invoice_count, + sum(case when invoice_status in ('open', 'past_due') then 1 else 0 end) as open_invoice_count, + max(case when invoice_status = 'past_due' then 1 else 0 end) as has_past_due_invoice + from invoice_finance + group by 1 +) +select + coalesce(ls.account_id, li.account_id, ar.account_id) as account_id, + ls.subscription_id as latest_subscription_id, + ls.plan_id, + ls.plan_name, + ls.plan_family, + ls.billing_cycle, + ls.support_tier, + ls.subscription_status as latest_subscription_status, + ls.start_date as latest_subscription_start_date, + ls.end_date as latest_subscription_end_date, + ls.contracted_seats, + ls.discount_pct, + ls.effective_monthly_value_usd, + li.invoice_id as latest_invoice_id, + li.invoice_date as latest_invoice_date, + li.due_date as latest_invoice_due_date, + li.invoice_status as latest_invoice_status, + li.latest_payment_status, + li.latest_payment_method, + li.latest_payment_date, + li.total_usd as latest_invoice_total_usd, + li.amount_paid_usd as latest_invoice_amount_paid_usd, + li.outstanding_amount_usd as latest_outstanding_amount_usd, + coalesce(ar.past_due_invoice_count, 0) as past_due_invoice_count, + coalesce(ar.open_invoice_count, 0) as open_invoice_count, + case when coalesce(ar.has_past_due_invoice, 0) = 1 then true else false end as has_past_due_invoice +from latest_sub ls +full outer join latest_inv li on ls.account_id = li.account_id +left join acct_rollup ar on coalesce(ls.account_id, li.account_id) = ar.account_id diff --git a/shared/projects/dbt/helixops_saas/models/intermediate/int_account_daily_usage.sql b/shared/projects/dbt/helixops_saas/models/intermediate/int_account_daily_usage.sql new file mode 100644 index 00000000..47dcf372 --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/intermediate/int_account_daily_usage.sql @@ -0,0 +1,20 @@ +with daily as ( + select * from {{ ref('int_workspace_daily_metrics') }} +) +select + account_id, + max(account_name) as account_name, + max(industry) as industry, + max(segment) as segment, + max(region) as region, + max(billing_country) as billing_country, + usage_date, + count(*) as workspace_days_reporting, + sum(active_users) as active_users, + sum(projects_run) as projects_run, + sum(api_calls) as api_calls, + sum(alerts_sent) as alerts_sent, + max(storage_gb) as max_storage_gb, + avg(storage_gb) as avg_storage_gb +from daily +group by 1,7 diff --git a/shared/projects/dbt/helixops_saas/models/intermediate/int_account_engagement.sql b/shared/projects/dbt/helixops_saas/models/intermediate/int_account_engagement.sql new file mode 100644 index 00000000..eaade35e --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/intermediate/int_account_engagement.sql @@ -0,0 +1,53 @@ +with users as ( + select * from {{ ref('int_account_users') }} +), +workspaces as ( + select * from {{ ref('int_account_workspaces') }} +), +daily_usage as ( + select * from {{ ref('int_account_daily_usage') }} +), +user_rollup as ( + select + account_id, + count(*) as total_user_count, + sum(case when user_status = 'active' then 1 else 0 end) as active_user_count, + sum(case when user_status = 'inactive' then 1 else 0 end) as inactive_user_count, + sum(case when user_status = 'provisioned' then 1 else 0 end) as provisioned_user_count, + max(last_login_at) as latest_user_login_at + from users + group by 1 +), +usage_rollup as ( + select + account_id, + max(usage_date) as latest_usage_date, + avg(case when usage_date >= cast(now() as date) - interval 6 day then active_users end) as avg_active_users_7d, + avg(active_users) as avg_active_users_30d, + sum(projects_run) as total_projects_run_30d, + sum(api_calls) as total_api_calls_30d, + sum(alerts_sent) as total_alerts_30d, + max(max_storage_gb) as peak_storage_gb_30d + from daily_usage + group by 1 +) +select + coalesce(u.account_id, w.account_id, g.account_id) as account_id, + coalesce(u.total_user_count, 0) as total_user_count, + coalesce(u.active_user_count, 0) as active_user_count, + coalesce(u.inactive_user_count, 0) as inactive_user_count, + coalesce(u.provisioned_user_count, 0) as provisioned_user_count, + u.latest_user_login_at, + coalesce(w.workspace_count, 0) as workspace_count, + coalesce(w.active_workspace_count, 0) as active_workspace_count, + coalesce(w.sandbox_workspace_count, 0) as sandbox_workspace_count, + g.latest_usage_date, + coalesce(g.avg_active_users_7d, 0) as avg_active_users_7d, + coalesce(g.avg_active_users_30d, 0) as avg_active_users_30d, + coalesce(g.total_projects_run_30d, 0) as total_projects_run_30d, + coalesce(g.total_api_calls_30d, 0) as total_api_calls_30d, + coalesce(g.total_alerts_30d, 0) as total_alerts_30d, + coalesce(g.peak_storage_gb_30d, 0) as peak_storage_gb_30d +from user_rollup u +full outer join workspaces w on u.account_id = w.account_id +full outer join usage_rollup g on coalesce(u.account_id, w.account_id) = g.account_id diff --git a/shared/projects/dbt/helixops_saas/models/intermediate/int_account_users.sql b/shared/projects/dbt/helixops_saas/models/intermediate/int_account_users.sql new file mode 100644 index 00000000..f5a78f2b --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/intermediate/int_account_users.sql @@ -0,0 +1,28 @@ +with users as ( + select * from {{ ref('stg_users') }} +), +accounts as ( + select * from {{ ref('stg_accounts') }} +) +select + u.user_id, + u.account_id, + a.account_name, + a.industry, + a.region, + a.segment, + a.billing_country, + a.account_status, + a.owner_team, + u.email, + u.full_name, + u.title, + u.department, + u.created_at, + u.last_login_at, + u.user_status, + u.is_active_user, + u.is_test_user, + date_diff('day', cast(u.last_login_at as date), cast(now() as date)) as days_since_last_login +from users u +left join accounts a using (account_id) diff --git a/shared/projects/dbt/helixops_saas/models/intermediate/int_account_workspaces.sql b/shared/projects/dbt/helixops_saas/models/intermediate/int_account_workspaces.sql new file mode 100644 index 00000000..d505d544 --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/intermediate/int_account_workspaces.sql @@ -0,0 +1,15 @@ +with workspaces as ( + select * from {{ ref('stg_workspaces') }} +) +select + account_id, + count(*) as workspace_count, + sum(case when workspace_status = 'active' then 1 else 0 end) as active_workspace_count, + sum(case when environment_tier = 'prod' then 1 else 0 end) as prod_workspace_count, + sum(case when environment_tier = 'sandbox' then 1 else 0 end) as sandbox_workspace_count, + sum(case when is_primary then 1 else 0 end) as primary_workspace_count, + max(case when is_primary then workspace_name end) as primary_workspace_name, + min(created_at) as first_workspace_created_at, + max(created_at) as latest_workspace_created_at +from workspaces +group by 1 diff --git a/shared/projects/dbt/helixops_saas/models/intermediate/int_invoice_finance.sql b/shared/projects/dbt/helixops_saas/models/intermediate/int_invoice_finance.sql new file mode 100644 index 00000000..11615f1c --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/intermediate/int_invoice_finance.sql @@ -0,0 +1,71 @@ +with invoices as ( + select * from {{ ref('stg_invoices') }} +), +line_items as ( + select * from {{ ref('stg_invoice_line_items') }} +), +payments as ( + select * from {{ ref('stg_payments') }} +), +line_rollup as ( + select + invoice_id, + count(*) as line_item_count, + sum(case when is_recurring_line then line_amount_usd else 0 end) as recurring_revenue_usd, + sum(case when not is_recurring_line then line_amount_usd else 0 end) as one_time_revenue_usd, + sum(case when line_type = 'base_subscription' then line_amount_usd else 0 end) as base_subscription_revenue_usd + from line_items + group by 1 +), +payment_rollup as ( + select + invoice_id, + count(*) as payment_attempt_count, + sum(case when payment_status = 'paid' then 1 else 0 end) as successful_payment_count, + sum(case when payment_status = 'failed' then 1 else 0 end) as failed_payment_count, + sum(case when payment_status = 'paid' then amount_usd else 0 end) as amount_paid_usd, + sum(case when payment_status = 'paid' then processor_fee_usd else 0 end) as processor_fee_usd + from payments + group by 1 +), +latest_payment as ( + select * + from ( + select + p.*, + row_number() over (partition by invoice_id order by payment_date desc, payment_id desc) as rn + from payments p + ) ranked + where rn = 1 +) +select + i.invoice_id, + i.subscription_id, + i.account_id, + i.invoice_date, + i.invoice_month, + i.due_date, + i.service_period_start, + i.service_period_end, + i.invoice_status, + i.subtotal_usd, + i.tax_usd, + i.total_usd, + coalesce(l.line_item_count, 0) as line_item_count, + coalesce(l.recurring_revenue_usd, 0) as recurring_revenue_usd, + coalesce(l.one_time_revenue_usd, 0) as one_time_revenue_usd, + coalesce(l.base_subscription_revenue_usd, 0) as base_subscription_revenue_usd, + coalesce(p.payment_attempt_count, 0) as payment_attempt_count, + coalesce(p.successful_payment_count, 0) as successful_payment_count, + coalesce(p.failed_payment_count, 0) as failed_payment_count, + coalesce(p.amount_paid_usd, 0) as amount_paid_usd, + coalesce(p.processor_fee_usd, 0) as processor_fee_usd, + lp.payment_status as latest_payment_status, + lp.payment_method as latest_payment_method, + lp.payment_date as latest_payment_date, + greatest(i.total_usd - coalesce(p.amount_paid_usd, 0), 0) as outstanding_amount_usd, + case when greatest(i.total_usd - coalesce(p.amount_paid_usd, 0), 0) <= 0.01 then true else false end as is_fully_paid +from invoices i +left join line_rollup l using (invoice_id) +left join payment_rollup p using (invoice_id) +left join latest_payment lp using (invoice_id) diff --git a/shared/projects/dbt/helixops_saas/models/intermediate/int_monthly_revenue_prep.sql b/shared/projects/dbt/helixops_saas/models/intermediate/int_monthly_revenue_prep.sql new file mode 100644 index 00000000..3165623b --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/intermediate/int_monthly_revenue_prep.sql @@ -0,0 +1,27 @@ +with finance as ( + select * from {{ ref('int_invoice_finance') }} +), +accounts as ( + select * from {{ ref('stg_accounts') }} +) +select + f.account_id, + a.account_name, + a.segment, + a.region, + a.billing_country, + f.invoice_month, + count(*) as invoice_count, + sum(f.recurring_revenue_usd) as recurring_revenue_usd, + sum(f.one_time_revenue_usd) as one_time_revenue_usd, + sum(f.subtotal_usd) as subtotal_usd, + sum(f.tax_usd) as tax_usd, + sum(f.total_usd) as total_revenue_usd, + sum(f.amount_paid_usd) as collected_revenue_usd, + sum(f.outstanding_amount_usd) as outstanding_revenue_usd, + sum(case when f.invoice_status = 'open' then 1 else 0 end) as open_invoice_count, + sum(case when f.invoice_status = 'past_due' then 1 else 0 end) as past_due_invoice_count, + sum(case when f.is_fully_paid then 1 else 0 end) as fully_paid_invoice_count +from finance f +left join accounts a using (account_id) +group by 1,2,3,4,5,6 diff --git a/shared/projects/dbt/helixops_saas/models/intermediate/int_subscription_history.sql b/shared/projects/dbt/helixops_saas/models/intermediate/int_subscription_history.sql new file mode 100644 index 00000000..e39e0b97 --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/intermediate/int_subscription_history.sql @@ -0,0 +1,36 @@ +with subs as ( + select * from {{ ref('stg_subscriptions') }} +), +plans as ( + select * from {{ ref('stg_plans') }} +), +accounts as ( + select * from {{ ref('stg_accounts') }} +) +select + s.subscription_id, + s.account_id, + a.account_name, + a.segment, + a.region, + s.plan_id, + p.plan_name, + p.plan_family, + p.billing_cycle, + p.support_tier, + s.start_date, + s.end_date, + s.subscription_status, + s.contracted_seats, + s.auto_renew, + s.discount_pct, + p.list_price_usd, + case + when p.billing_cycle = 'annual' then round((p.list_price_usd * (1 - s.discount_pct / 100.0)) / 12.0, 2) + else round(p.list_price_usd * (1 - s.discount_pct / 100.0), 2) + end as effective_monthly_value_usd, + cast(date_trunc('month', s.start_date) as date) as subscription_start_month, + case when s.subscription_status = 'active' then true else false end as is_active_subscription +from subs s +left join plans p using (plan_id) +left join accounts a using (account_id) diff --git a/shared/projects/dbt/helixops_saas/models/intermediate/int_support_sla.sql b/shared/projects/dbt/helixops_saas/models/intermediate/int_support_sla.sql new file mode 100644 index 00000000..7c6374d3 --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/intermediate/int_support_sla.sql @@ -0,0 +1,51 @@ +with tickets as ( + select * from {{ ref('stg_support_tickets') }} +), +accounts as ( + select * from {{ ref('stg_accounts') }} +), +workspaces as ( + select * from {{ ref('stg_workspaces') }} +) +select + t.ticket_id, + t.account_id, + a.account_name, + a.segment, + a.region, + a.billing_country, + t.workspace_id, + w.workspace_name, + w.environment_tier, + t.opened_by_user_id, + t.opened_at, + t.first_response_at, + t.resolved_at, + t.priority, + t.category, + t.ticket_status, + t.csat_score, + t.first_response_minutes, + t.resolution_minutes, + case + when t.priority = 'urgent' then 30 + when t.priority = 'high' then 60 + when t.priority = 'medium' then 240 + else 1440 + end as response_sla_minutes, + case + when t.priority = 'urgent' then 30 + when t.priority = 'high' then 60 + when t.priority = 'medium' then 240 + else 1440 + end >= t.first_response_minutes as met_response_sla, + t.is_open_ticket, + case + when t.resolved_at is not null then date_diff('day', cast(t.opened_at as date), cast(t.resolved_at as date)) + else date_diff('day', cast(t.opened_at as date), cast(now() as date)) + end as ticket_age_days, + cast(date_trunc('month', cast(t.opened_at as date)) as date) as opened_month, + cast(date_trunc('month', cast(t.resolved_at as date)) as date) as resolved_month +from tickets t +left join accounts a using (account_id) +left join workspaces w on t.workspace_id = w.workspace_id diff --git a/shared/projects/dbt/helixops_saas/models/intermediate/int_workspace_daily_metrics.sql b/shared/projects/dbt/helixops_saas/models/intermediate/int_workspace_daily_metrics.sql new file mode 100644 index 00000000..e56cc42b --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/intermediate/int_workspace_daily_metrics.sql @@ -0,0 +1,34 @@ +with usage as ( + select * from {{ ref('stg_workspace_usage_daily') }} +), +workspaces as ( + select * from {{ ref('stg_workspaces') }} +), +accounts as ( + select * from {{ ref('stg_accounts') }} +) +select + u.usage_id, + u.workspace_id, + w.account_id, + a.account_name, + a.industry, + a.segment, + a.region, + a.billing_country, + w.workspace_name, + w.environment_tier, + w.workspace_status, + w.is_primary, + u.usage_date, + u.usage_week, + u.weekday_num, + u.is_weekend, + u.active_users, + u.projects_run, + u.api_calls, + u.storage_gb, + u.alerts_sent +from usage u +left join workspaces w using (workspace_id) +left join accounts a on w.account_id = a.account_id diff --git a/shared/projects/dbt/helixops_saas/models/intermediate/int_workspace_roster.sql b/shared/projects/dbt/helixops_saas/models/intermediate/int_workspace_roster.sql new file mode 100644 index 00000000..781d2948 --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/intermediate/int_workspace_roster.sql @@ -0,0 +1,40 @@ +with memberships as ( + select * from {{ ref('stg_workspace_memberships') }} +), +users as ( + select * from {{ ref('stg_users') }} +), +workspaces as ( + select * from {{ ref('stg_workspaces') }} +), +accounts as ( + select * from {{ ref('stg_accounts') }} +) +select + m.membership_id, + m.workspace_id, + w.workspace_name, + w.environment_tier, + w.workspace_status, + w.is_primary, + w.account_id, + a.account_name, + a.segment, + a.region, + a.billing_country, + m.user_id, + u.email, + u.full_name, + u.title, + u.department, + u.user_status, + u.is_active_user, + m.role, + m.invited_at, + m.joined_at, + m.membership_status, + m.is_current_membership +from memberships m +left join users u on m.user_id = u.user_id +left join workspaces w on m.workspace_id = w.workspace_id +left join accounts a on w.account_id = a.account_id diff --git a/shared/projects/dbt/helixops_saas/models/marts/dim_accounts.sql b/shared/projects/dbt/helixops_saas/models/marts/dim_accounts.sql new file mode 100644 index 00000000..450a5e9d --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/marts/dim_accounts.sql @@ -0,0 +1,40 @@ +with accounts as ( + select * from {{ ref('stg_accounts') }} +), +workspace_rollup as ( + select * from {{ ref('int_account_workspaces') }} +), +user_rollup as ( + select + account_id, + count(*) as user_count, + sum(case when user_status = 'active' then 1 else 0 end) as active_user_count, + sum(case when user_status = 'inactive' then 1 else 0 end) as inactive_user_count, + sum(case when user_status = 'provisioned' then 1 else 0 end) as provisioned_user_count + from {{ ref('int_account_users') }} + group by 1 +) +select + a.account_id, + a.account_name, + a.industry, + a.region, + a.segment, + a.billing_country, + a.created_at, + a.account_status, + a.is_churned, + a.employee_band, + a.owner_team, + coalesce(w.workspace_count, 0) as workspace_count, + coalesce(w.active_workspace_count, 0) as active_workspace_count, + coalesce(w.prod_workspace_count, 0) as prod_workspace_count, + coalesce(w.sandbox_workspace_count, 0) as sandbox_workspace_count, + w.primary_workspace_name, + coalesce(u.user_count, 0) as user_count, + coalesce(u.active_user_count, 0) as active_user_count, + coalesce(u.inactive_user_count, 0) as inactive_user_count, + coalesce(u.provisioned_user_count, 0) as provisioned_user_count +from accounts a +left join workspace_rollup w using (account_id) +left join user_rollup u using (account_id) diff --git a/shared/projects/dbt/helixops_saas/models/marts/fct_daily_account_usage.sql b/shared/projects/dbt/helixops_saas/models/marts/fct_daily_account_usage.sql new file mode 100644 index 00000000..46709ad1 --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/marts/fct_daily_account_usage.sql @@ -0,0 +1,22 @@ +with usage as ( + select * from {{ ref('int_account_daily_usage') }} +), +accounts as ( + select account_id, account_name, segment, region, industry from {{ ref('dim_accounts') }} +) +select + u.account_id, + a.account_name, + a.segment, + a.region, + a.industry, + u.usage_date, + u.workspace_days_reporting, + u.active_users, + u.projects_run, + u.api_calls, + u.alerts_sent, + u.max_storage_gb, + u.avg_storage_gb +from usage u +left join accounts a using (account_id) diff --git a/shared/projects/dbt/helixops_saas/models/marts/fct_monthly_revenue.sql b/shared/projects/dbt/helixops_saas/models/marts/fct_monthly_revenue.sql new file mode 100644 index 00000000..a4855577 --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/marts/fct_monthly_revenue.sql @@ -0,0 +1,28 @@ +with revenue as ( + select * from {{ ref('int_monthly_revenue_prep') }} +), +billing as ( + select account_id, plan_name, latest_subscription_status, has_past_due_invoice from {{ ref('int_account_billing_snapshot') }} +) +select + r.account_id, + r.account_name, + r.segment, + r.region, + r.billing_country, + r.invoice_month, + b.plan_name, + b.latest_subscription_status, + r.invoice_count, + r.recurring_revenue_usd, + r.one_time_revenue_usd, + r.subtotal_usd, + r.tax_usd, + r.total_revenue_usd, + r.collected_revenue_usd, + r.outstanding_revenue_usd, + r.open_invoice_count, + r.past_due_invoice_count, + b.has_past_due_invoice +from revenue r +left join billing b using (account_id) diff --git a/shared/projects/dbt/helixops_saas/models/marts/fct_support_tickets.sql b/shared/projects/dbt/helixops_saas/models/marts/fct_support_tickets.sql new file mode 100644 index 00000000..68285e0c --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/marts/fct_support_tickets.sql @@ -0,0 +1,37 @@ +with sla as ( + select * from {{ ref('int_support_sla') }} +), +billing as ( + select account_id, plan_name, plan_family, support_tier from {{ ref('int_account_billing_snapshot') }} +) +select + s.ticket_id, + s.account_id, + s.account_name, + s.segment, + s.region, + s.billing_country, + b.plan_name, + b.plan_family, + b.support_tier, + s.workspace_id, + s.workspace_name, + s.environment_tier, + s.opened_by_user_id, + s.opened_at, + s.first_response_at, + s.resolved_at, + s.priority, + s.category, + s.ticket_status, + s.csat_score, + s.first_response_minutes, + s.resolution_minutes, + s.response_sla_minutes, + s.met_response_sla, + s.is_open_ticket, + s.ticket_age_days, + s.opened_month, + s.resolved_month +from sla s +left join billing b using (account_id) diff --git a/shared/projects/dbt/helixops_saas/models/marts/mart_account_360.sql b/shared/projects/dbt/helixops_saas/models/marts/mart_account_360.sql new file mode 100644 index 00000000..6a7f14a2 --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/marts/mart_account_360.sql @@ -0,0 +1,92 @@ +with accounts as ( + select * from {{ ref('dim_accounts') }} +), +billing as ( + select * from {{ ref('int_account_billing_snapshot') }} +), +engagement as ( + select * from {{ ref('int_account_engagement') }} +), +support_rollup as ( + select + account_id, + count(*) as lifetime_ticket_count, + sum(case when is_open_ticket then 1 else 0 end) as open_ticket_count, + avg(csat_score) as avg_csat_score, + avg(first_response_minutes) as avg_first_response_minutes + from {{ ref('fct_support_tickets') }} + group by 1 +), +latest_revenue as ( + select * + from ( + select + r.*, + row_number() over (partition by account_id order by invoice_month desc) as rn + from {{ ref('fct_monthly_revenue') }} r + ) ranked + where rn = 1 +), +latest_usage as ( + select * + from ( + select + u.*, + row_number() over (partition by account_id order by usage_date desc) as rn + from {{ ref('fct_daily_account_usage') }} u + ) ranked + where rn = 1 +) +select + a.account_id, + a.account_name, + a.industry, + a.region, + a.segment, + a.billing_country, + a.account_status, + a.is_churned, + a.employee_band, + a.owner_team, + a.workspace_count, + a.active_workspace_count, + a.sandbox_workspace_count, + a.primary_workspace_name, + a.user_count, + a.active_user_count, + b.plan_name, + b.plan_family, + b.billing_cycle, + b.support_tier, + b.contracted_seats, + b.discount_pct, + b.latest_invoice_status, + b.latest_payment_status, + b.latest_invoice_date, + b.latest_payment_date, + b.latest_outstanding_amount_usd, + b.has_past_due_invoice, + lr.invoice_month as latest_revenue_month, + lr.recurring_revenue_usd as latest_recurring_revenue_usd, + lr.one_time_revenue_usd as latest_one_time_revenue_usd, + lr.total_revenue_usd as latest_total_revenue_usd, + lr.collected_revenue_usd as latest_collected_revenue_usd, + lu.usage_date as latest_usage_date, + lu.active_users as latest_daily_active_users, + lu.projects_run as latest_daily_projects_run, + lu.api_calls as latest_daily_api_calls, + e.avg_active_users_7d, + e.avg_active_users_30d, + e.total_projects_run_30d, + e.total_api_calls_30d, + e.peak_storage_gb_30d, + s.lifetime_ticket_count, + s.open_ticket_count, + s.avg_csat_score, + s.avg_first_response_minutes +from accounts a +left join billing b using (account_id) +left join latest_revenue lr using (account_id) +left join latest_usage lu using (account_id) +left join engagement e using (account_id) +left join support_rollup s using (account_id) diff --git a/shared/projects/dbt/helixops_saas/models/marts/mart_account_health.sql b/shared/projects/dbt/helixops_saas/models/marts/mart_account_health.sql new file mode 100644 index 00000000..593b0eea --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/marts/mart_account_health.sql @@ -0,0 +1,64 @@ +with accounts as ( + select * from {{ ref('dim_accounts') }} +), +billing as ( + select * from {{ ref('int_account_billing_snapshot') }} +), +engagement as ( + select * from {{ ref('int_account_engagement') }} +), +support_rollup as ( + select + account_id, + sum(case when is_open_ticket then 1 else 0 end) as open_ticket_count, + sum(case when not met_response_sla then 1 else 0 end) as breached_sla_ticket_count, + avg(csat_score) as avg_csat_score, + avg(first_response_minutes) as avg_first_response_minutes + from {{ ref('int_support_sla') }} + group by 1 +), +latest_revenue as ( + select * + from ( + select + r.*, + row_number() over (partition by account_id order by invoice_month desc) as rn + from {{ ref('fct_monthly_revenue') }} r + ) ranked + where rn = 1 +) +select + a.account_id, + a.account_name, + a.segment, + a.region, + a.billing_country, + a.account_status, + b.plan_name, + b.latest_subscription_status, + b.latest_invoice_status, + b.latest_payment_status, + b.latest_outstanding_amount_usd, + b.has_past_due_invoice, + e.active_user_count, + e.active_workspace_count, + e.avg_active_users_7d, + e.total_projects_run_30d, + e.total_api_calls_30d, + s.open_ticket_count, + s.breached_sla_ticket_count, + s.avg_csat_score, + lr.recurring_revenue_usd as latest_month_recurring_revenue_usd, + lr.total_revenue_usd as latest_month_total_revenue_usd, + ( + 100 + - (case when b.has_past_due_invoice then 25 else 0 end) + - (case when coalesce(s.open_ticket_count, 0) >= 3 then 15 when coalesce(s.open_ticket_count, 0) > 0 then 5 else 0 end) + - (case when coalesce(e.avg_active_users_7d, 0) = 0 then 20 when coalesce(e.avg_active_users_7d, 0) < 3 then 10 else 0 end) + - (case when a.account_status = 'churned' then 40 else 0 end) + ) as account_health_score +from accounts a +left join billing b using (account_id) +left join engagement e using (account_id) +left join support_rollup s using (account_id) +left join latest_revenue lr using (account_id) diff --git a/shared/projects/dbt/helixops_saas/models/sources.yml b/shared/projects/dbt/helixops_saas/models/sources.yml new file mode 100644 index 00000000..800aeaf0 --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/sources.yml @@ -0,0 +1,17 @@ +version: 2 + +sources: + - name: helixops_saas + schema: main + tables: + - name: raw_accounts + - name: raw_workspaces + - name: raw_users + - name: raw_workspace_memberships + - name: raw_plans + - name: raw_subscriptions + - name: raw_invoices + - name: raw_invoice_line_items + - name: raw_payments + - name: raw_workspace_usage_daily + - name: raw_support_tickets diff --git a/shared/projects/dbt/helixops_saas/models/staging/stg_accounts.sql b/shared/projects/dbt/helixops_saas/models/staging/stg_accounts.sql new file mode 100644 index 00000000..63920297 --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/staging/stg_accounts.sql @@ -0,0 +1,30 @@ +with src as ( + select * from {{ source('helixops_saas', 'raw_accounts') }} +) +select + trim(acct_id) as account_id, + trim(acct_nm) as account_name, + lower(trim(indstry_cd)) as industry, + upper(trim(geo_region)) as region, + case lower(trim(segment_lbl)) + when 'enterprise' then 'enterprise' + when 'mid-market' then 'mid_market' + else 'smb' + end as segment, + upper(trim(bill_ctry)) as billing_country, + {{ epoch_to_timestamp('created_ts_epoch') }} as created_at, + case + when lower(trim(acct_stat)) in ('cust_active', 'active', '1', 'current') then 'active' + when lower(trim(acct_stat)) in ('churned', 'closed_lost', 'cancelled', 'closed') then 'churned' + else 'active' + end as account_status, + trim(employee_band_txt) as employee_band, + trim(owner_team_txt) as owner_team, + {{ bool_from_text('is_deleted_flag') }} as is_deleted, + trim(src_batch_id) as source_batch_id, + case + when lower(trim(acct_stat)) in ('churned', 'closed_lost', 'cancelled', 'closed') then true + else false + end as is_churned +from src +where coalesce({{ bool_from_text('is_deleted_flag') }}, false) = false diff --git a/shared/projects/dbt/helixops_saas/models/staging/stg_invoice_line_items.sql b/shared/projects/dbt/helixops_saas/models/staging/stg_invoice_line_items.sql new file mode 100644 index 00000000..a6210741 --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/staging/stg_invoice_line_items.sql @@ -0,0 +1,18 @@ +with src as ( + select * from {{ source('helixops_saas', 'raw_invoice_line_items') }} +) +select + trim(line_id) as line_item_id, + trim(inv_id_fk) as invoice_id, + lower(trim(li_typ_cd)) as line_type, + trim(li_desc_txt) as description, + coalesce({{ integer_from_text('qty_txt') }}, 0) as quantity, + coalesce({{ numeric_from_text('unit_px_usd_txt') }}, 0) as unit_price_usd, + coalesce({{ numeric_from_text('li_amt_usd_txt') }}, 0) as line_amount_usd, + lower(trim(product_family_guess)) as product_family, + coalesce({{ bool_from_text('recurring_hint') }}, false) as is_recurring_hint, + case + when lower(trim(li_typ_cd)) = 'base_subscription' then true + else coalesce({{ bool_from_text('recurring_hint') }}, false) + end as is_recurring_line +from src diff --git a/shared/projects/dbt/helixops_saas/models/staging/stg_invoices.sql b/shared/projects/dbt/helixops_saas/models/staging/stg_invoices.sql new file mode 100644 index 00000000..2d46e037 --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/staging/stg_invoices.sql @@ -0,0 +1,24 @@ +with src as ( + select * from {{ source('helixops_saas', 'raw_invoices') }} +) +select + trim(inv_id) as invoice_id, + trim(sub_id_fk) as subscription_id, + trim(acct_id_fk) as account_id, + cast(nullif(trim(inv_dt_txt), '') as date) as invoice_date, + cast(nullif(trim(due_dt_txt), '') as date) as due_date, + cast(nullif(trim(svc_prd_start_txt), '') as date) as service_period_start, + cast(nullif(trim(svc_prd_end_txt), '') as date) as service_period_end, + case + when lower(trim(inv_stat_cd)) in ('paid', 'settled') then 'paid' + when lower(trim(inv_stat_cd)) in ('past_due') then 'past_due' + else 'open' + end as invoice_status, + coalesce({{ numeric_from_text('subtotal_usd_txt') }}, 0) as subtotal_usd, + coalesce({{ numeric_from_text('tax_usd_txt') }}, 0) as tax_usd, + coalesce({{ numeric_from_text('total_usd_txt') }}, 0) as total_usd, + upper(trim(curr_cd)) as currency_code, + cast(date_trunc('month', cast(nullif(trim(inv_dt_txt), '') as date)) as date) as invoice_month, + case when lower(trim(inv_stat_cd)) in ('paid', 'settled') then true else false end as is_paid_invoice, + case when lower(trim(inv_stat_cd)) in ('open', 'past_due') then true else false end as is_open_invoice +from src diff --git a/shared/projects/dbt/helixops_saas/models/staging/stg_payments.sql b/shared/projects/dbt/helixops_saas/models/staging/stg_payments.sql new file mode 100644 index 00000000..79ef60ed --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/staging/stg_payments.sql @@ -0,0 +1,21 @@ +with src as ( + select * from {{ source('helixops_saas', 'raw_payments') }} +) +select + trim(pmt_id) as payment_id, + trim(inv_id_fk) as invoice_id, + cast(nullif(trim(pmt_dt_txt), '') as date) as payment_date, + lower(trim(pmt_method_cd)) as payment_method, + case + when lower(trim(pmt_stat_cd)) in ('paid', 'succeeded', 'settled') then 'paid' + when lower(trim(pmt_stat_cd)) in ('failed', 'declined', 'error') then 'failed' + else 'pending' + end as payment_status, + coalesce({{ numeric_from_text('amt_usd_txt') }}, 0) as amount_usd, + coalesce({{ numeric_from_text('processor_fee_usd_txt') }}, 0) as processor_fee_usd, + trim(gateway_msg_txt) as gateway_message, + case + when lower(trim(pmt_stat_cd)) in ('paid', 'succeeded', 'settled') then true + else false + end as is_successful_payment +from src diff --git a/shared/projects/dbt/helixops_saas/models/staging/stg_plans.sql b/shared/projects/dbt/helixops_saas/models/staging/stg_plans.sql new file mode 100644 index 00000000..8e671021 --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/staging/stg_plans.sql @@ -0,0 +1,20 @@ +with src as ( + select * from {{ source('helixops_saas', 'raw_plans') }} +) +select + trim(plan_sku) as plan_id, + trim(plan_nm) as plan_name, + case when lower(trim(bill_cadence_txt)) like 'annual%' then 'annual' else 'monthly' end as billing_cycle, + {{ numeric_from_text('list_px_usd_txt') }} as list_price_usd, + {{ integer_from_text('incl_seats_txt') }} as included_seats, + {{ integer_from_text('ws_cap_txt') }} as max_workspaces, + lower(trim(support_lvl_txt)) as support_tier, + {{ integer_from_text('plan_rank_txt') }} as plan_rank, + case + when lower(trim(plan_nm)) like 'starter%' then 'starter' + when lower(trim(plan_nm)) like 'growth%' then 'growth' + else 'enterprise' + end as plan_family, + case when lower(trim(bill_cadence_txt)) like 'annual%' then true else false end as is_annual +from src +where coalesce({{ bool_from_text('deprecated_flag') }}, false) = false diff --git a/shared/projects/dbt/helixops_saas/models/staging/stg_subscriptions.sql b/shared/projects/dbt/helixops_saas/models/staging/stg_subscriptions.sql new file mode 100644 index 00000000..1ca809df --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/staging/stg_subscriptions.sql @@ -0,0 +1,20 @@ +with src as ( + select * from {{ source('helixops_saas', 'raw_subscriptions') }} +) +select + trim(sub_id) as subscription_id, + trim(acct_id_fk) as account_id, + trim(plan_sku_fk) as plan_id, + cast(nullif(trim(sub_start_dt_txt), '') as date) as start_date, + cast(nullif(trim(sub_end_dt_txt), '') as date) as end_date, + case + when lower(trim(sub_stat_cd)) in ('active', 'current') then 'active' + when lower(trim(sub_stat_cd)) in ('upgraded') then 'upgraded' + else 'canceled' + end as subscription_status, + {{ integer_from_text('seats_committed_txt') }} as contracted_seats, + coalesce({{ bool_from_text('auto_rnw_ind') }}, false) as auto_renew, + coalesce({{ numeric_from_text('disc_pct_txt') }}, 0) as discount_pct, + nullif(trim(cancel_reason_txt), '') as cancel_reason, + case when lower(trim(sub_stat_cd)) in ('active', 'current') then true else false end as is_current_subscription +from src diff --git a/shared/projects/dbt/helixops_saas/models/staging/stg_support_tickets.sql b/shared/projects/dbt/helixops_saas/models/staging/stg_support_tickets.sql new file mode 100644 index 00000000..6a61fd86 --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/staging/stg_support_tickets.sql @@ -0,0 +1,31 @@ +with src as ( + select * from {{ source('helixops_saas', 'raw_support_tickets') }} +) +select + trim(tkt_id) as ticket_id, + trim(acct_id_fk) as account_id, + nullif(trim(ws_id_fk), '') as workspace_id, + trim(opened_by_usr_id) as opened_by_user_id, + {{ epoch_to_timestamp('opened_ts_epoch') }} as opened_at, + {{ epoch_to_timestamp('first_rsp_ts_epoch') }} as first_response_at, + {{ epoch_to_timestamp('resolved_ts_epoch') }} as resolved_at, + case + when lower(trim(prio_cd)) in ('urgent', 'sev1') then 'urgent' + when lower(trim(prio_cd)) in ('high', 'sev2') then 'high' + when lower(trim(prio_cd)) in ('med', 'medium') then 'medium' + else 'low' + end as priority, + lower(trim(cat_cd)) as category, + case + when lower(trim(tkt_stat_cd)) in ('resolved', 'closed', 'done') then 'resolved' + when lower(trim(tkt_stat_cd)) in ('working', 'pending', 'in_progress') then 'in_progress' + else 'open' + end as ticket_status, + {{ integer_from_text('csat_txt') }} as csat_score, + date_diff('minute', {{ epoch_to_timestamp('opened_ts_epoch') }}, {{ epoch_to_timestamp('first_rsp_ts_epoch') }}) as first_response_minutes, + case + when {{ epoch_to_timestamp('resolved_ts_epoch') }} is not null then date_diff('minute', {{ epoch_to_timestamp('opened_ts_epoch') }}, {{ epoch_to_timestamp('resolved_ts_epoch') }}) + else null + end as resolution_minutes, + case when {{ epoch_to_timestamp('resolved_ts_epoch') }} is null then true else false end as is_open_ticket +from src diff --git a/shared/projects/dbt/helixops_saas/models/staging/stg_users.sql b/shared/projects/dbt/helixops_saas/models/staging/stg_users.sql new file mode 100644 index 00000000..8b71f60f --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/staging/stg_users.sql @@ -0,0 +1,24 @@ +with src as ( + select * from {{ source('helixops_saas', 'raw_users') }} +) +select + trim(usr_id) as user_id, + trim(acct_id_fk) as account_id, + lower(trim(email_addr)) as email, + trim(full_nm) as full_name, + trim(title_txt) as title, + lower(trim(dept_txt)) as department, + {{ epoch_to_timestamp('created_unix') }} as created_at, + {{ epoch_to_timestamp('last_seen_unix') }} as last_login_at, + case + when lower(trim(user_stat_cd)) in ('active', 'enabled', 'actv') then 'active' + when lower(trim(user_stat_cd)) in ('disabled', 'inactive', 'termd') then 'inactive' + else 'provisioned' + end as user_status, + coalesce({{ bool_from_text('test_user_ind') }}, false) as is_test_user, + case + when lower(trim(user_stat_cd)) in ('active', 'enabled', 'actv') then true + else false + end as is_active_user, + trim(legacy_user_num) as legacy_user_num +from src diff --git a/shared/projects/dbt/helixops_saas/models/staging/stg_workspace_memberships.sql b/shared/projects/dbt/helixops_saas/models/staging/stg_workspace_memberships.sql new file mode 100644 index 00000000..35fce8fa --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/staging/stg_workspace_memberships.sql @@ -0,0 +1,20 @@ +with src as ( + select * from {{ source('helixops_saas', 'raw_workspace_memberships') }} +) +select + trim(mship_id) as membership_id, + trim(ws_id_fk) as workspace_id, + trim(usr_id_fk) as user_id, + lower(trim(role_cd_dup)) as role, + {{ epoch_to_timestamp('invited_unix') }} as invited_at, + {{ epoch_to_timestamp('joined_unix') }} as joined_at, + case + when lower(trim(mship_stat_cd)) in ('removed', 'deleted') then 'removed' + when lower(trim(mship_stat_cd)) in ('pending', 'invited') then 'pending' + else 'active' + end as membership_status, + case + when lower(trim(mship_stat_cd)) in ('a', 'active', 'current') then true + else false + end as is_current_membership +from src diff --git a/shared/projects/dbt/helixops_saas/models/staging/stg_workspace_usage_daily.sql b/shared/projects/dbt/helixops_saas/models/staging/stg_workspace_usage_daily.sql new file mode 100644 index 00000000..51613f4a --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/staging/stg_workspace_usage_daily.sql @@ -0,0 +1,16 @@ +with src as ( + select * from {{ source('helixops_saas', 'raw_workspace_usage_daily') }} +) +select + trim(usage_id) as usage_id, + trim(ws_id_fk) as workspace_id, + cast(nullif(trim(usage_dt_txt), '') as date) as usage_date, + coalesce({{ integer_from_text('active_usr_cnt_txt') }}, 0) as active_users, + coalesce({{ integer_from_text('proj_runs_txt') }}, 0) as projects_run, + coalesce({{ integer_from_text('api_call_ct_txt') }}, 0) as api_calls, + coalesce({{ numeric_from_text('storage_gb_txt') }}, 0) as storage_gb, + coalesce({{ integer_from_text('alerts_sent_txt') }}, 0) as alerts_sent, + coalesce({{ bool_from_text('is_weekend_guess') }}, false) as is_weekend, + cast(date_trunc('week', cast(nullif(trim(usage_dt_txt), '') as date)) as date) as usage_week, + extract('dow' from cast(nullif(trim(usage_dt_txt), '') as date)) as weekday_num +from src diff --git a/shared/projects/dbt/helixops_saas/models/staging/stg_workspaces.sql b/shared/projects/dbt/helixops_saas/models/staging/stg_workspaces.sql new file mode 100644 index 00000000..de422df3 --- /dev/null +++ b/shared/projects/dbt/helixops_saas/models/staging/stg_workspaces.sql @@ -0,0 +1,25 @@ +with src as ( + select * from {{ source('helixops_saas', 'raw_workspaces') }} +) +select + trim(ws_id) as workspace_id, + trim(acct_id_fk) as account_id, + trim(ws_nm) as workspace_name, + {{ epoch_to_timestamp('crt_ts_epoch') }} as created_at, + case + when lower(trim(ws_stat_cd)) in ('arch', 'archived', 'disabled') then 'archived' + else 'active' + end as workspace_status, + {{ epoch_to_timestamp('deact_ts_epoch') }} as deactivated_at, + case + when lower(trim(env_tier)) in ('sandbox', 'sbx') then 'sandbox' + else 'prod' + end as environment_tier, + coalesce({{ bool_from_text('primary_ws_yn') }}, false) as is_primary, + case + when lower(trim(ws_stat_cd)) in ('arch', 'archived', 'disabled') then false + else true + end as is_active_workspace, + trim(load_epoch) as raw_load_epoch +from src +where coalesce({{ bool_from_text('soft_delete_ind') }}, false) = false diff --git a/shared/projects/dbt/helixops_saas/profiles.yml b/shared/projects/dbt/helixops_saas/profiles.yml new file mode 100644 index 00000000..c90f0d23 --- /dev/null +++ b/shared/projects/dbt/helixops_saas/profiles.yml @@ -0,0 +1,7 @@ +helixops_saas-duckdb: + target: dev + outputs: + dev: + type: duckdb + path: "./helixops_saas.duckdb" + schema: main diff --git a/tasks/helixops_saas001/macros/ade_bench_equality_test.sql b/tasks/helixops_saas001/macros/ade_bench_equality_test.sql new file mode 100644 index 00000000..510c6037 --- /dev/null +++ b/tasks/helixops_saas001/macros/ade_bench_equality_test.sql @@ -0,0 +1,78 @@ +{% macro ade_bench_equality_test(table_name, answer_keys, cols_to_exclude=[]) %} + {% if not execute %} + select 1 where 1=0 + {% else %} + {% set ns = namespace(matched=false) %} + {% set actual_rel = load_relation(ref(table_name)) %} + + {% if actual_rel is not none %} + {% set actual_columns = adapter.get_columns_in_relation(actual_rel) %} + {% set exclude_lower = cols_to_exclude | map('lower') | list %} + + {%- set actual_col_names = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do actual_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set actual_set = actual_col_names | sort %} + + {% for answer_key in answer_keys %} + {% if not ns.matched %} + {% set seed_rel = load_relation(ref(answer_key)) %} + {% if seed_rel is not none %} + {% set seed_columns = adapter.get_columns_in_relation(seed_rel) %} + + {%- set seed_col_names = [] -%} + {%- for col in seed_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do seed_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set seed_set = seed_col_names | sort %} + + {% if actual_set == seed_set %} + {%- set compare_cols = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do compare_cols.append(col.quoted) -%} + {%- endif -%} + {%- endfor -%} + {% set compare_cols_csv = compare_cols | join(', ') %} + + {% set query %} + with a_minus_b as ( + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + except + select {{ compare_cols_csv }} from {{ ref(table_name) }} + ), + b_minus_a as ( + select {{ compare_cols_csv }} from {{ ref(table_name) }} + except + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + ), + unioned as ( + select * from a_minus_b + union all + select * from b_minus_a + ) + select count(*) as diff_count from unioned + {% endset %} + + {% set result = run_query(query) %} + {% if result.rows[0][0] == 0 %} + {% set ns.matched = true %} + {% endif %} + {% endif %} + {% endif %} + {% endif %} + {% endfor %} + {% endif %} + + {% if ns.matched %} + select 1 where 1=0 + {% else %} + select 1 + {% endif %} + {% endif %} +{% endmacro %} diff --git a/tasks/helixops_saas001/seeds/_no-op.txt b/tasks/helixops_saas001/seeds/_no-op.txt new file mode 100644 index 00000000..bf74e78d --- /dev/null +++ b/tasks/helixops_saas001/seeds/_no-op.txt @@ -0,0 +1,26 @@ + + +seeds: + helixops_saas: + solution__dim_accounts: + +column_types: + account_id: varchar + account_name: varchar + industry: varchar + region: varchar + segment: varchar + billing_country: varchar + created_at: timestamp + account_status: varchar + is_churned: boolean + employee_band: varchar + owner_team: varchar + workspace_count: bigint + active_workspace_count: bigint + prod_workspace_count: bigint + sandbox_workspace_count: bigint + primary_workspace_name: varchar + user_count: bigint + active_user_count: bigint + inactive_user_count: bigint + provisioned_user_count: bigint diff --git a/tasks/helixops_saas001/seeds/solution__dim_accounts.csv b/tasks/helixops_saas001/seeds/solution__dim_accounts.csv new file mode 100644 index 00000000..18f8669c --- /dev/null +++ b/tasks/helixops_saas001/seeds/solution__dim_accounts.csv @@ -0,0 +1,91 @@ +account_id,account_name,industry,region,segment,billing_country,created_at,account_status,is_churned,employee_band,owner_team,workspace_count,active_workspace_count,prod_workspace_count,sandbox_workspace_count,primary_workspace_name,user_count,active_user_count,inactive_user_count,provisioned_user_count +A1001,Helio Systems,healthcare,EMEA,mid_market,NL,2024-08-12 13:43:48,active,false,201-500,CSM-EMEA,3,3,3,0,helio-core,9,7,2,0 +A1002,Summit Foods,media,NA,mid_market,US,2025-01-10 22:12:29,active,false,501-1000,CSM-East,3,3,2,1,summit-core,12,11,1,0 +A1003,Nova Ventures,manufacturing,NA,enterprise,US,2024-12-11 03:21:52,active,false,1000+,CSM-East,3,2,2,1,nova-core,16,15,1,0 +A1004,Silver Solutions,manufacturing,NA,enterprise,US,2024-09-07 13:27:43,churned,true,5000+,CSM-East,2,0,1,1,silver-core,14,6,8,0 +A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,2024-08-31 14:28:15,active,false,5000+,CSM-EMEA,3,3,3,0,pacific-core,15,12,3,0 +A1006,Helio Works,education,EMEA,mid_market,UK,2024-11-21 09:17:28,active,false,201-500,CSM-EMEA,2,2,2,0,helio-core,7,5,2,0 +A1007,Silver Systems,energy,EMEA,smb,FR,2024-12-22 18:20:12,active,false,51-200,CSM-EMEA,1,1,1,0,silver-core,4,3,1,0 +A1008,Pacific Works,software,EMEA,mid_market,UK,2024-10-06 11:07:40,active,false,201-500,CSM-EMEA,3,3,3,0,pacific-core,11,11,0,0 +A1009,Summit Group,financial_services,NA,mid_market,US,2024-08-22 17:22:46,active,false,501-1000,CSM-East,2,2,2,0,summit-core,13,11,2,0 +A1010,Orchid Foods,education,NA,smb,CA,2025-02-10 21:10:21,active,false,11-50,CSM-East,1,1,1,0,orchid-core,8,7,1,0 +A1011,Vertex Energy,software,NA,smb,CA,2025-01-14 09:17:33,active,false,51-200,CSM-East,1,1,1,0,vertex-core,6,6,0,0 +A1012,Cedar Ventures,retail,APAC,smb,JP,2024-08-19 07:09:23,active,false,11-50,CSM-APAC,2,2,1,1,cedar-core,7,6,1,0 +A1013,River Foods,manufacturing,NA,mid_market,US,2024-12-27 04:56:58,active,false,501-1000,CSM-East,3,3,3,0,river-core,7,5,2,0 +A1014,Evergreen Global,retail,APAC,enterprise,SG,2024-09-21 19:29:43,churned,true,1000+,CSM-APAC,1,0,1,0,evergreen-core,18,4,14,0 +A1015,Delta Network,logistics,NA,smb,US,2024-09-04 16:34:41,churned,true,51-200,CSM-East,2,0,1,1,delta-core,3,0,3,0 +A1016,BluePeak Capital,energy,EMEA,enterprise,DE,2024-12-24 05:07:46,active,false,1000+,CSM-EMEA,4,4,4,0,bluepeak-core,19,19,0,0 +A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,2024-11-28 10:14:21,active,false,201-500,CSM-EMEA,2,2,2,0,summit-core,9,8,1,0 +A1018,Harbor Manufacturing,media,EMEA,smb,UK,2024-09-18 20:10:22,churned,true,11-50,CSM-EMEA,2,0,2,0,harbor-core,3,2,1,0 +A1019,Sierra Systems,education,APAC,smb,JP,2025-02-26 10:36:13,active,false,51-200,CSM-APAC,2,2,1,1,sierra-core,4,3,1,0 +A1020,Pioneer Network,travel,EMEA,smb,FR,2025-02-18 00:09:23,active,false,11-50,CSM-EMEA,1,1,1,0,pioneer-core,4,3,1,0 +A1021,Apex Logistics,software,NA,smb,US,2024-10-25 12:34:29,active,false,11-50,CSM-East,1,1,1,0,apex-core,7,7,0,0 +A1022,Summit Collective,retail,APAC,smb,NZ,2025-02-16 16:16:56,active,false,51-200,CSM-APAC,2,2,1,1,summit-core,5,3,2,0 +A1023,Atlas Systems,education,NA,smb,CA,2025-01-31 16:25:38,active,false,11-50,CSM-East,1,1,1,0,atlas-core,8,8,0,0 +A1024,Sierra Group,manufacturing,NA,smb,CA,2025-01-29 08:59:07,active,false,11-50,CSM-East,2,2,2,0,sierra-core,4,4,0,0 +A1025,Bright Capital,education,EMEA,smb,UK,2024-10-14 09:44:56,active,false,51-200,CSM-EMEA,1,1,1,0,bright-core,6,5,1,0 +A1026,Pioneer Capital,education,NA,smb,CA,2024-08-30 06:38:17,active,false,11-50,CSM-East,1,1,1,0,pioneer-core,8,8,0,0 +A1027,BluePeak Health,retail,APAC,smb,SG,2024-10-31 19:12:59,active,false,51-200,CSM-APAC,2,2,2,0,bluepeak-core,5,5,0,0 +A1028,Apex Energy,energy,APAC,mid_market,SG,2024-12-26 04:17:07,active,false,501-1000,CSM-APAC,2,2,1,1,apex-core,11,10,1,0 +A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,2024-08-31 01:24:19,churned,true,1000+,CSM-APAC,1,0,1,0,bright-core,17,3,13,1 +A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,2024-08-23 04:49:08,active,false,5000+,CSM-EMEA,4,4,4,0,northwind-core,12,11,1,0 +A1031,Helio Holdings,healthcare,APAC,mid_market,AU,2025-02-14 05:18:16,active,false,201-500,CSM-APAC,3,3,3,0,helio-core,10,10,0,0 +A1032,Vertex Works,manufacturing,EMEA,mid_market,DE,2024-09-16 13:25:27,churned,true,201-500,CSM-EMEA,2,0,2,0,vertex-core,6,4,2,0 +A1033,Lighthouse Global,logistics,NA,mid_market,CA,2024-10-19 07:50:01,active,false,201-500,CSM-East,2,2,2,0,lighthouse-core,12,12,0,0 +A1034,Helio Partners,travel,NA,smb,CA,2024-12-01 18:59:06,active,false,51-200,CSM-East,2,2,1,1,helio-core,7,7,0,0 +A1035,Bright Retail,retail,EMEA,mid_market,UK,2025-02-25 19:06:57,active,false,501-1000,CSM-EMEA,3,3,2,1,bright-core,13,11,1,1 +A1036,Granite Holdings,education,NA,smb,US,2024-12-22 12:14:31,churned,true,51-200,CSM-East,2,0,1,1,granite-core,3,0,3,0 +A1037,Lighthouse Network,media,EMEA,enterprise,UK,2024-11-25 06:24:43,active,false,1000+,CSM-EMEA,4,4,2,2,lighthouse-core,18,15,3,0 +A1038,River Systems,logistics,APAC,smb,AU,2024-11-18 10:09:31,active,false,51-200,CSM-APAC,2,2,2,0,river-core,5,4,1,0 +A1039,Nova Group,media,EMEA,smb,FR,2025-02-06 17:26:48,active,false,11-50,CSM-EMEA,1,1,1,0,nova-core,7,7,0,0 +A1040,Harbor Collective,healthcare,APAC,mid_market,SG,2024-12-08 12:58:20,active,false,201-500,CSM-APAC,3,3,2,1,harbor-core,12,10,2,0 +A1041,Cedar Logistics,media,EMEA,mid_market,NL,2024-08-04 18:07:41,active,false,201-500,CSM-EMEA,3,3,2,1,cedar-core,12,10,2,0 +A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,2024-09-19 11:52:42,active,false,501-1000,CSM-APAC,3,3,2,1,northwind-core,11,10,1,0 +A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,2024-10-21 14:03:18,active,false,1000+,CSM-APAC,4,4,3,1,lighthouse-core,18,16,2,0 +A1044,Summit Holdings,software,EMEA,smb,NL,2024-09-30 00:32:29,active,false,11-50,CSM-EMEA,1,1,1,0,summit-core,5,5,0,0 +A1045,Nova Holdings,manufacturing,NA,enterprise,CA,2024-11-05 09:05:10,active,false,1000+,CSM-East,4,4,4,0,nova-core,14,14,0,0 +A1046,Pioneer Solutions,education,NA,smb,CA,2024-10-17 12:09:12,active,false,51-200,CSM-East,1,1,1,0,pioneer-core,5,4,1,0 +A1047,Orchid Global,healthcare,APAC,enterprise,AU,2024-10-15 00:06:00,active,false,5000+,CSM-APAC,3,3,2,1,orchid-core,19,19,0,0 +A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,2025-02-14 20:00:18,active,false,5000+,CSM-APAC,3,3,3,0,orchid-core,17,14,3,0 +A1049,Northwind Network,energy,NA,enterprise,CA,2024-11-12 02:19:33,active,false,5000+,CSM-East,3,3,3,0,northwind-core,20,18,2,0 +A1050,Cedar Energy,software,APAC,smb,JP,2025-02-15 14:48:30,active,false,11-50,CSM-APAC,2,2,1,1,cedar-core,4,4,0,0 +A1051,Lighthouse Systems,media,EMEA,smb,UK,2025-02-26 02:44:10,active,false,51-200,CSM-EMEA,1,1,1,0,lighthouse-core,7,4,3,0 +A1052,Sierra Labs,software,APAC,mid_market,NZ,2024-11-30 21:54:21,active,false,501-1000,CSM-APAC,2,2,2,0,sierra-core,10,9,1,0 +A1053,Bright Health,media,NA,mid_market,CA,2024-09-19 10:24:29,active,false,501-1000,CSM-East,3,3,3,0,bright-core,10,9,1,0 +A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,2024-08-01 03:47:01,active,false,201-500,CSM-APAC,3,3,3,0,granite-core,12,8,4,0 +A1055,Pioneer Systems,travel,EMEA,mid_market,FR,2025-01-19 13:44:38,active,false,501-1000,CSM-EMEA,2,2,1,1,pioneer-core,13,12,1,0 +A1056,Delta Global,retail,APAC,mid_market,AU,2024-11-19 05:04:51,active,false,201-500,CSM-APAC,3,3,3,0,delta-core,11,10,1,0 +A1057,Harbor Partners,education,APAC,enterprise,NZ,2024-10-17 08:01:31,active,false,1000+,CSM-APAC,4,4,3,1,harbor-core,13,12,1,0 +A1058,Evergreen Analytics,travel,EMEA,smb,UK,2025-01-08 22:52:12,active,false,11-50,CSM-EMEA,2,2,2,0,evergreen-core,7,5,2,0 +A1059,Evergreen Partners,education,NA,mid_market,CA,2024-09-27 07:27:52,active,false,201-500,CSM-East,2,2,1,1,evergreen-core,11,10,1,0 +A1060,Cedar Foods,healthcare,NA,mid_market,CA,2024-11-05 18:41:46,active,false,201-500,CSM-East,2,2,1,1,cedar-core,13,11,2,0 +A1061,Atlas Capital,travel,EMEA,enterprise,FR,2025-02-13 00:52:24,active,false,5000+,CSM-EMEA,3,3,2,1,atlas-core,17,16,0,1 +A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,2024-11-09 15:50:25,active,false,1000+,CSM-EMEA,3,3,3,0,delta-core,14,14,0,0 +A1063,Maple Global,education,NA,smb,CA,2024-11-14 12:34:06,active,false,11-50,CSM-East,1,1,1,0,maple-core,4,3,1,0 +A1064,Atlas Health,education,NA,smb,US,2024-08-25 22:39:22,active,false,51-200,CSM-East,1,1,1,0,atlas-core,4,4,0,0 +A1065,Vertex Partners,manufacturing,NA,mid_market,US,2024-12-30 06:11:13,active,false,501-1000,CSM-East,2,2,2,0,vertex-core,11,9,2,0 +A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,2025-01-10 17:33:41,active,false,201-500,CSM-APAC,2,2,2,0,pacific-core,12,10,2,0 +A1067,Maple Energy,healthcare,NA,mid_market,CA,2024-12-30 00:24:42,active,false,201-500,CSM-East,2,2,1,1,maple-core,7,6,1,0 +A1068,Helio Health,manufacturing,APAC,enterprise,SG,2024-08-11 12:36:33,active,false,1000+,CSM-APAC,4,4,3,1,helio-core,16,15,1,0 +A1069,Bright Foods,manufacturing,NA,enterprise,CA,2024-12-06 03:08:52,active,false,5000+,CSM-East,3,3,3,0,bright-core,13,11,2,0 +A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,2024-11-06 23:20:27,active,false,11-50,CSM-APAC,1,1,1,0,helio-core,8,6,2,0 +A1071,Evergreen Group,education,NA,mid_market,CA,2024-08-27 15:34:10,active,false,201-500,CSM-East,3,3,2,1,evergreen-core,13,12,0,1 +A1072,Summit Ventures,software,NA,enterprise,US,2024-09-29 04:18:23,active,false,5000+,CSM-East,3,3,2,1,summit-core,18,15,3,0 +A1073,Silver Holdings,travel,EMEA,mid_market,DE,2024-11-08 12:21:51,active,false,201-500,CSM-EMEA,2,2,2,0,silver-core,13,10,3,0 +A1074,Granite Analytics,retail,NA,mid_market,CA,2024-08-10 23:20:24,active,false,501-1000,CSM-East,3,3,3,0,granite-core,12,11,1,0 +A1075,Cedar Labs,software,EMEA,smb,UK,2024-11-03 07:31:13,active,false,11-50,CSM-EMEA,1,1,1,0,cedar-core,8,8,0,0 +A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,2025-02-23 21:32:44,active,false,201-500,CSM-EMEA,2,2,2,0,atlas-core,13,13,0,0 +A1077,Evergreen Foods,travel,NA,mid_market,CA,2024-09-10 23:41:36,active,false,201-500,CSM-East,3,3,3,0,evergreen-core,12,7,4,1 +A1078,Beacon Foods,software,EMEA,mid_market,FR,2025-02-26 00:08:06,active,false,501-1000,CSM-EMEA,3,3,3,0,beacon-core,12,10,2,0 +A1079,Nova Foods,education,EMEA,enterprise,FR,2024-09-03 15:45:24,active,false,1000+,CSM-EMEA,4,4,4,0,nova-core,20,14,6,0 +A1080,Beacon Global,financial_services,EMEA,mid_market,NL,2024-08-12 03:30:12,active,false,201-500,CSM-EMEA,2,2,2,0,beacon-core,10,10,0,0 +A1081,River Collective,financial_services,NA,mid_market,CA,2024-11-17 14:36:21,active,false,201-500,CSM-East,3,3,2,1,river-core,9,7,1,1 +A1082,Summit Manufacturing,manufacturing,NA,mid_market,US,2024-11-16 19:18:31,churned,true,501-1000,CSM-East,1,0,1,0,summit-core,7,2,5,0 +A1083,Falcon Works,education,NA,mid_market,CA,2025-01-05 01:17:30,active,false,501-1000,CSM-East,2,2,1,1,falcon-core,7,5,2,0 +A1084,Silver Foods,manufacturing,NA,mid_market,CA,2024-12-07 11:11:54,active,false,501-1000,CSM-East,2,2,2,0,silver-core,11,9,2,0 +A1085,Sierra Capital,financial_services,NA,smb,US,2024-09-16 10:19:51,active,false,11-50,CSM-East,1,1,1,0,sierra-core,4,4,0,0 +A1086,River Labs,software,EMEA,smb,FR,2025-02-20 17:58:12,active,false,11-50,CSM-EMEA,1,1,1,0,river-core,5,4,1,0 +A1087,Apex Capital,energy,NA,enterprise,CA,2024-11-26 09:20:17,churned,true,1000+,CSM-East,1,0,1,0,apex-core,9,4,4,1 +A1088,Cedar Partners,energy,APAC,smb,NZ,2025-02-07 15:19:15,active,false,51-200,CSM-APAC,1,1,1,0,cedar-core,6,5,1,0 +A1089,Beacon Network,healthcare,NA,mid_market,US,2024-11-07 01:16:08,active,false,201-500,CSM-East,2,2,2,0,beacon-core,12,10,1,1 +A1090,Vertex Labs,energy,NA,smb,US,2024-09-27 22:37:20,active,false,11-50,CSM-East,1,1,1,0,vertex-core,4,4,0,0 diff --git a/tasks/helixops_saas001/setup.sh b/tasks/helixops_saas001/setup.sh new file mode 100755 index 00000000..e3046744 --- /dev/null +++ b/tasks/helixops_saas001/setup.sh @@ -0,0 +1,3 @@ +#!/bin/bash +patch -p1 < /app/setup/changes.patch +dbt run || true diff --git a/tasks/helixops_saas001/setup/changes.patch b/tasks/helixops_saas001/setup/changes.patch new file mode 100644 index 00000000..1c79d63e --- /dev/null +++ b/tasks/helixops_saas001/setup/changes.patch @@ -0,0 +1,10 @@ +--- a/models/marts/dim_accounts.sql ++++ b/models/marts/dim_accounts.sql +@@ -20,7 +20,6 @@ + a.industry, + a.region, + a.segment, +- a.billing_country, + a.created_at, + a.account_status, + a.is_churned, diff --git a/tasks/helixops_saas001/solution.sh b/tasks/helixops_saas001/solution.sh new file mode 100755 index 00000000..8e35a432 --- /dev/null +++ b/tasks/helixops_saas001/solution.sh @@ -0,0 +1,3 @@ +#!/bin/bash +patch -p1 < /sage/solutions/changes.patch +dbt run --select dim_accounts diff --git a/tasks/helixops_saas001/solutions/changes.patch b/tasks/helixops_saas001/solutions/changes.patch new file mode 100644 index 00000000..ccb73cd9 --- /dev/null +++ b/tasks/helixops_saas001/solutions/changes.patch @@ -0,0 +1,10 @@ +--- a/models/marts/dim_accounts.sql ++++ b/models/marts/dim_accounts.sql +@@ -20,6 +20,7 @@ + a.industry, + a.region, + a.segment, ++ a.billing_country, + a.created_at, + a.account_status, + a.is_churned, diff --git a/tasks/helixops_saas001/task.yaml b/tasks/helixops_saas001/task.yaml new file mode 100644 index 00000000..2d32dd8d --- /dev/null +++ b/tasks/helixops_saas001/task.yaml @@ -0,0 +1,26 @@ +task_id: helixops_saas001 +status: ready +description: Add a missing column to dim_accounts that already exists in the parent stg_accounts model +prompts: + - key: base + prompt: |- + Add billing_country to dim_accounts. +author_name: joel +author_email: joel@example.com +difficulty: easy +tags: + - dbt + - helixops_saas +test_setup: |- + dbt run --select dim_accounts +variants: +- db_type: duckdb + db_name: helixops_saas + project_type: dbt + project_name: helixops_saas +- db_type: duckdb + db_name: helixops_saas + project_type: dbt-fusion + project_name: helixops_saas +solution_seeds: + - table_name: dim_accounts diff --git a/tasks/helixops_saas001/tests/AUTO_dim_accounts_equality.sql b/tasks/helixops_saas001/tests/AUTO_dim_accounts_equality.sql new file mode 100644 index 00000000..8c53b92b --- /dev/null +++ b/tasks/helixops_saas001/tests/AUTO_dim_accounts_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'dim_accounts' %} +{% set answer_keys = ['solution__dim_accounts'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__dim_accounts') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas001/tests/AUTO_dim_accounts_existence.sql b/tasks/helixops_saas001/tests/AUTO_dim_accounts_existence.sql new file mode 100644 index 00000000..359cdd6c --- /dev/null +++ b/tasks/helixops_saas001/tests/AUTO_dim_accounts_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'dim_accounts' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas002/macros/ade_bench_equality_test.sql b/tasks/helixops_saas002/macros/ade_bench_equality_test.sql new file mode 100644 index 00000000..510c6037 --- /dev/null +++ b/tasks/helixops_saas002/macros/ade_bench_equality_test.sql @@ -0,0 +1,78 @@ +{% macro ade_bench_equality_test(table_name, answer_keys, cols_to_exclude=[]) %} + {% if not execute %} + select 1 where 1=0 + {% else %} + {% set ns = namespace(matched=false) %} + {% set actual_rel = load_relation(ref(table_name)) %} + + {% if actual_rel is not none %} + {% set actual_columns = adapter.get_columns_in_relation(actual_rel) %} + {% set exclude_lower = cols_to_exclude | map('lower') | list %} + + {%- set actual_col_names = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do actual_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set actual_set = actual_col_names | sort %} + + {% for answer_key in answer_keys %} + {% if not ns.matched %} + {% set seed_rel = load_relation(ref(answer_key)) %} + {% if seed_rel is not none %} + {% set seed_columns = adapter.get_columns_in_relation(seed_rel) %} + + {%- set seed_col_names = [] -%} + {%- for col in seed_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do seed_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set seed_set = seed_col_names | sort %} + + {% if actual_set == seed_set %} + {%- set compare_cols = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do compare_cols.append(col.quoted) -%} + {%- endif -%} + {%- endfor -%} + {% set compare_cols_csv = compare_cols | join(', ') %} + + {% set query %} + with a_minus_b as ( + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + except + select {{ compare_cols_csv }} from {{ ref(table_name) }} + ), + b_minus_a as ( + select {{ compare_cols_csv }} from {{ ref(table_name) }} + except + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + ), + unioned as ( + select * from a_minus_b + union all + select * from b_minus_a + ) + select count(*) as diff_count from unioned + {% endset %} + + {% set result = run_query(query) %} + {% if result.rows[0][0] == 0 %} + {% set ns.matched = true %} + {% endif %} + {% endif %} + {% endif %} + {% endif %} + {% endfor %} + {% endif %} + + {% if ns.matched %} + select 1 where 1=0 + {% else %} + select 1 + {% endif %} + {% endif %} +{% endmacro %} diff --git a/tasks/helixops_saas002/seeds/_no-op.txt b/tasks/helixops_saas002/seeds/_no-op.txt new file mode 100644 index 00000000..ce0b72b8 --- /dev/null +++ b/tasks/helixops_saas002/seeds/_no-op.txt @@ -0,0 +1,52 @@ + + +seeds: + helixops_saas: + solution__mart_account_360: + +column_types: + account_id: varchar + account_name: varchar + industry: varchar + region: varchar + segment: varchar + billing_country: varchar + account_status: varchar + is_churned: boolean + employee_band: varchar + owner_team: varchar + workspace_count: bigint + active_workspace_count: bigint + sandbox_workspace_count: bigint + primary_workspace_name: varchar + user_count: bigint + active_user_count: bigint + plan_name: varchar + plan_family: varchar + billing_cycle: varchar + support_tier: varchar + contracted_seats: integer + discount_pct: double + latest_invoice_status: varchar + latest_payment_status: varchar + latest_invoice_date: date + latest_payment_date: date + latest_outstanding_amount_usd: double + has_past_due_invoice: boolean + latest_revenue_month: date + latest_recurring_revenue_usd: double + latest_one_time_revenue_usd: double + latest_total_revenue_usd: double + latest_collected_revenue_usd: double + latest_usage_date: date + latest_daily_active_users: bigint + latest_daily_projects_run: bigint + latest_daily_api_calls: bigint + avg_active_users_7d: double + avg_active_users_30d: double + total_projects_run_30d: bigint + total_api_calls_30d: bigint + peak_storage_gb_30d: double + lifetime_ticket_count: bigint + open_ticket_count: bigint + avg_csat_score: double + avg_first_response_minutes: double diff --git a/tasks/helixops_saas002/seeds/solution__mart_account_360.csv b/tasks/helixops_saas002/seeds/solution__mart_account_360.csv new file mode 100644 index 00000000..7813580e --- /dev/null +++ b/tasks/helixops_saas002/seeds/solution__mart_account_360.csv @@ -0,0 +1,91 @@ +account_id,account_name,industry,region,segment,billing_country,account_status,is_churned,employee_band,owner_team,workspace_count,active_workspace_count,sandbox_workspace_count,primary_workspace_name,user_count,active_user_count,plan_name,plan_family,billing_cycle,support_tier,contracted_seats,discount_pct,latest_invoice_status,latest_payment_status,latest_invoice_date,latest_payment_date,latest_outstanding_amount_usd,has_past_due_invoice,latest_revenue_month,latest_recurring_revenue_usd,latest_one_time_revenue_usd,latest_total_revenue_usd,latest_collected_revenue_usd,latest_usage_date,latest_daily_active_users,latest_daily_projects_run,latest_daily_api_calls,avg_active_users_7d,avg_active_users_30d,total_projects_run_30d,total_api_calls_30d,peak_storage_gb_30d,lifetime_ticket_count,open_ticket_count,avg_csat_score,avg_first_response_minutes +A1063,Maple Global,education,NA,smb,CA,active,false,11-50,CSM-East,1,1,0,maple-core,4,3,Starter Monthly,starter,monthly,standard,5,20.0,open,,2025-06-01,,400.0,false,2025-06-01,400.0,0.0,400.0,0.0,2025-06-30,2,10,576,0.0,1.8666666666666667,266,15675,23.7,2,1,4.0,157.5 +A1009,Summit Group,financial_services,NA,mid_market,US,active,false,501-1000,CSM-East,2,2,0,summit-core,13,11,Enterprise Monthly,enterprise,monthly,premium,13,10.0,paid,paid,2025-06-01,2025-06-10,0.0,false,2025-06-01,2340.0,0.0,2340.0,2340.0,2025-06-30,6,32,2031,0.0,7.333333333333333,1001,61468,27.7,3,0,4.0,27.666666666666668 +A1021,Apex Logistics,software,NA,smb,US,active,false,11-50,CSM-East,1,1,0,apex-core,7,7,Starter Monthly,starter,monthly,standard,8,0.0,paid,paid,2025-06-01,2025-06-09,0.0,false,2025-06-01,500.0,0.0,500.0,500.0,2025-06-30,5,18,897,0.0,4.166666666666667,469,27805,25.9,2,0,4.0,94.0 +A1072,Summit Ventures,software,NA,enterprise,US,active,false,5000+,CSM-East,3,3,1,summit-core,18,15,Enterprise Annual,enterprise,annual,premium,20,10.0,paid,paid,2025-01-01,2025-01-07,0.0,false,2025-01-01,24300.0,2500.0,26800.0,26800.0,2025-06-30,13,71,3915,0.0,9.5,1733,94474,70.8,4,0,3.75,204.25 +A1077,Evergreen Foods,travel,NA,mid_market,CA,active,false,201-500,CSM-East,3,3,0,evergreen-core,12,7,Growth Monthly,growth,monthly,priority,15,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,6,38,2104,0.0,5.233333333333333,1003,58101,36.6,4,0,4.0,45.0 +A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,false,1000+,CSM-East,3,2,1,nova-core,16,15,Enterprise Annual,enterprise,annual,premium,18,5.0,paid,paid,2025-01-01,2025-01-11,0.0,false,2025-01-01,25650.0,2000.0,27650.0,27650.0,2025-06-30,9,48,2413,0.0,7.9,1299,77795,64.1,5,0,4.8,158.0 +A1027,BluePeak Health,retail,APAC,smb,SG,active,false,51-200,CSM-APAC,2,2,0,bluepeak-core,5,5,Starter Monthly,starter,monthly,standard,6,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,2025-06-01,500.0,0.0,545.0,545.0,2025-06-30,3,16,1181,0.0,3.6,520,32095,22.8,1,0,4.0,8.0 +A1034,Helio Partners,travel,NA,smb,CA,active,false,51-200,CSM-East,2,2,1,helio-core,7,7,Starter Monthly,starter,monthly,standard,8,0.0,paid,paid,2025-06-01,2025-06-13,0.0,false,2025-06-01,500.0,0.0,500.0,500.0,2025-06-30,6,26,1171,0.0,3.5,507,26564,20.8,3,0,4.0,376.3333333333333 +A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,false,201-500,CSM-APAC,3,3,1,harbor-core,12,10,Enterprise Monthly,enterprise,monthly,premium,15,0.0,paid,paid,2025-06-01,2025-06-08,0.0,false,2025-06-01,2600.0,0.0,2834.0,2834.0,2025-06-30,5,33,1669,0.0,5.766666666666667,1066,56746,40.9,4,1,2.6666666666666665,29.0 +A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,false,201-500,CSM-EMEA,3,3,1,cedar-core,12,10,Growth Monthly,growth,monthly,priority,15,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,7,42,2050,0.0,6.766666666666667,1147,61506,35.5,5,0,4.4,178.8 +A1049,Northwind Network,energy,NA,enterprise,CA,active,false,5000+,CSM-East,3,3,0,northwind-core,20,18,Enterprise Annual,enterprise,annual,premium,25,10.0,paid,paid,2025-01-01,2025-01-07,0.0,false,2025-01-01,24300.0,1500.0,25800.0,25800.0,2025-06-30,15,84,5189,0.0,13.066666666666666,2058,127637,71.0,7,1,4.0,202.85714285714286 +A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,false,501-1000,CSM-East,2,2,0,vertex-core,11,9,Growth Monthly,growth,monthly,priority,13,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,7,36,2022,0.0,6.566666666666666,937,57316,25.6,2,0,4.0,266.0 +A1088,Cedar Partners,energy,APAC,smb,NZ,active,false,51-200,CSM-APAC,1,1,0,cedar-core,6,5,Starter Monthly,starter,monthly,standard,8,0.0,paid,paid,2025-06-01,2025-06-09,0.0,false,2025-06-01,500.0,0.0,550.0,550.0,2025-06-30,2,11,796,0.0,3.2,388,23706,21.1,2,1,5.0,635.5 +A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,false,1000+,CSM-EMEA,4,4,0,bluepeak-core,19,19,Enterprise Annual,enterprise,annual,premium,24,10.0,paid,paid,2025-01-01,2025-01-12,0.0,false,2025-01-01,24300.0,2000.0,31560.0,31560.0,2025-06-30,13,87,4443,0.0,12.733333333333333,2320,136008,66.4,6,1,4.0,146.83333333333334 +A1053,Bright Health,media,NA,mid_market,CA,active,false,501-1000,CSM-East,3,3,0,bright-core,10,9,Growth Monthly,growth,monthly,priority,12,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,7,45,2733,0.0,6.133333333333334,1076,62016,44.5,3,0,5.0,250.66666666666666 +A1081,River Collective,financial_services,NA,mid_market,CA,active,false,201-500,CSM-East,3,3,1,river-core,9,7,Enterprise Monthly,enterprise,monthly,premium,10,0.0,paid,paid,2025-06-01,2025-06-13,0.0,false,2025-06-01,2600.0,0.0,2600.0,2600.0,2025-06-30,5,35,1604,0.0,5.233333333333333,1010,54352,29.7,4,1,4.0,199.25 +A1002,Summit Foods,media,NA,mid_market,US,active,false,501-1000,CSM-East,3,3,1,summit-core,12,11,Growth Monthly,growth,monthly,priority,13,0.0,open,,2025-06-01,,1500.0,false,2025-06-01,1500.0,0.0,1500.0,0.0,2025-06-30,8,43,1941,0.0,6.666666666666667,1104,59889,36.3,3,0,4.666666666666667,593.0 +A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,false,5000+,CSM-EMEA,3,3,0,pacific-core,15,12,Enterprise Annual,enterprise,annual,premium,17,5.0,paid,paid,2025-01-01,2025-01-14,0.0,false,2025-01-01,25650.0,2000.0,33180.0,33180.0,2025-06-30,11,66,3887,0.0,8.1,1630,93530,60.3,7,1,3.8333333333333335,171.0 +A1011,Vertex Energy,software,NA,smb,CA,active,false,51-200,CSM-East,1,1,0,vertex-core,6,6,Growth Monthly,growth,monthly,priority,6,0.0,paid,paid,2025-06-01,2025-06-09,0.0,false,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,3,14,981,0.0,3.9,437,27390,27.8,3,1,5.0,468.3333333333333 +A1052,Sierra Labs,software,APAC,mid_market,NZ,active,false,501-1000,CSM-APAC,2,2,0,sierra-core,10,9,Growth Monthly,growth,monthly,priority,10,5.0,paid,paid,2025-06-01,2025-06-10,0.0,false,2025-06-01,1425.0,0.0,1567.5,1567.5,2025-06-30,8,35,1861,0.0,7.333333333333333,977,56984,36.7,5,1,4.75,268.6 +A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,false,1000+,CSM-EMEA,3,3,0,delta-core,14,14,Enterprise Monthly,enterprise,monthly,premium,18,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,2025-06-01,2600.0,0.0,3120.0,3120.0,2025-06-30,8,54,3149,0.0,9.533333333333333,1748,102875,60.9,3,0,4.666666666666667,25.333333333333332 +A1008,Pacific Works,software,EMEA,mid_market,UK,active,false,201-500,CSM-EMEA,3,3,0,pacific-core,11,11,Enterprise Monthly,enterprise,monthly,premium,12,5.0,paid,paid,2025-06-01,2025-06-09,0.0,false,2025-06-01,2470.0,0.0,2964.0,2964.0,2025-06-30,8,46,2869,0.0,8.066666666666666,1255,75716,25.8,3,0,3.6666666666666665,440.6666666666667 +A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,false,501-1000,CSM-EMEA,2,2,1,pioneer-core,13,12,Growth Monthly,growth,monthly,priority,13,0.0,past_due,failed,2025-06-01,2025-06-20,1800.0,true,2025-06-01,1500.0,0.0,1800.0,0.0,2025-06-30,5,29,1453,0.0,4.933333333333334,797,38707,33.5,3,0,4.333333333333333,158.0 +A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,false,5000+,CSM-East,3,3,0,bright-core,13,11,Enterprise Annual,enterprise,annual,premium,13,10.0,paid,paid,2025-01-01,2025-01-12,0.0,false,2025-01-01,24300.0,0.0,24300.0,24300.0,2025-06-30,10,69,4556,0.0,8.666666666666666,1634,96476,69.2,3,0,4.333333333333333,91.33333333333333 +A1078,Beacon Foods,software,EMEA,mid_market,FR,active,false,501-1000,CSM-EMEA,3,3,0,beacon-core,12,10,Growth Monthly,growth,monthly,priority,13,5.0,paid,paid,2025-06-01,2025-06-13,0.0,false,2025-06-01,1425.0,0.0,1710.0,1710.0,2025-06-30,7,43,2894,0.0,6.433333333333334,1081,63211,36.9,4,1,4.0,406.25 +A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,false,501-1000,CSM-East,2,2,0,silver-core,11,9,Enterprise Monthly,enterprise,monthly,premium,12,0.0,paid,paid,2025-06-01,2025-06-06,0.0,false,2025-06-01,2600.0,0.0,2600.0,2600.0,2025-06-30,8,41,1914,0.0,6.733333333333333,970,59696,45.6,4,1,3.0,175.75 +A1085,Sierra Capital,financial_services,NA,smb,US,active,false,11-50,CSM-East,1,1,0,sierra-core,4,4,Starter Monthly,starter,monthly,standard,5,0.0,paid,paid,2025-06-01,2025-06-13,0.0,false,2025-06-01,500.0,0.0,500.0,500.0,2025-06-30,4,16,993,0.0,2.566666666666667,335,20055,22.4,2,0,4.0,217.5 +A1089,Beacon Network,healthcare,NA,mid_market,US,active,false,201-500,CSM-East,2,2,0,beacon-core,12,10,Growth Monthly,growth,monthly,priority,15,0.0,paid,paid,2025-06-01,2025-06-09,0.0,false,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,9,41,2330,0.0,7.566666666666666,1041,63704,36.8,2,0,5.0,496.0 +A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,active,false,201-500,CSM-EMEA,2,2,0,summit-core,9,8,Growth Monthly,growth,monthly,priority,11,10.0,paid,paid,2025-06-01,2025-06-11,0.0,false,2025-06-01,1350.0,0.0,1620.0,1620.0,2025-06-30,7,35,1779,0.0,4.566666666666666,767,44175,35.2,4,0,4.5,203.75 +A1023,Atlas Systems,education,NA,smb,CA,active,false,11-50,CSM-East,1,1,0,atlas-core,8,8,Starter Monthly,starter,monthly,standard,10,20.0,past_due,failed,2025-06-01,2025-06-18,400.0,true,2025-06-01,400.0,0.0,400.0,0.0,2025-06-30,6,18,1272,0.0,5.0,532,31779,17.9,3,1,4.5,194.33333333333334 +A1044,Summit Holdings,software,EMEA,smb,NL,active,false,11-50,CSM-EMEA,1,1,0,summit-core,5,5,Growth Monthly,growth,monthly,priority,6,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,2,9,669,0.0,3.3333333333333335,391,24890,16.7,3,0,4.333333333333333,73.0 +A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,false,201-500,CSM-EMEA,2,2,0,silver-core,13,10,Enterprise Monthly,enterprise,monthly,premium,13,0.0,paid,paid,2025-06-01,2025-06-10,0.0,false,2025-06-01,2600.0,0.0,3120.0,3120.0,2025-06-30,9,39,1871,0.0,8.133333333333333,1075,63469,22.9,4,1,3.3333333333333335,101.25 +A1080,Beacon Global,financial_services,EMEA,mid_market,NL,active,false,201-500,CSM-EMEA,2,2,0,beacon-core,10,10,Growth Monthly,growth,monthly,priority,11,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,6,33,1980,0.0,7.133333333333334,959,58564,45.2,5,2,4.0,358.8 +A1086,River Labs,software,EMEA,smb,FR,active,false,11-50,CSM-EMEA,1,1,0,river-core,5,4,Starter Monthly,starter,monthly,standard,6,0.0,paid,paid,2025-06-01,2025-06-07,0.0,false,2025-06-01,500.0,0.0,600.0,600.0,2025-06-30,3,13,841,0.0,2.5,314,18915,28.2,2,1,3.0,88.5 +A1007,Silver Systems,energy,EMEA,smb,FR,active,false,51-200,CSM-EMEA,1,1,0,silver-core,4,3,Starter Monthly,starter,monthly,standard,5,0.0,open,,2025-06-01,,600.0,false,2025-06-01,500.0,0.0,600.0,0.0,2025-06-30,2,10,676,0.0,1.6,242,14726,25.9,3,0,4.666666666666667,420.3333333333333 +A1012,Cedar Ventures,retail,APAC,smb,JP,active,false,11-50,CSM-APAC,2,2,1,cedar-core,7,6,Starter Monthly,starter,monthly,standard,8,0.0,paid,failed,2025-06-01,2025-06-15,0.0,false,2025-06-01,500.0,0.0,550.0,550.0,2025-06-30,6,27,1505,0.0,3.8333333333333335,530,29420,26.5,3,0,4.333333333333333,78.0 +A1013,River Foods,manufacturing,NA,mid_market,US,active,false,501-1000,CSM-East,3,3,0,river-core,7,5,Growth Monthly,growth,monthly,priority,7,5.0,paid,paid,2025-06-01,2025-06-14,0.0,false,2025-06-01,1425.0,0.0,1425.0,1425.0,2025-06-30,6,40,2273,0.0,4.433333333333334,930,51065,28.6,3,0,5.0,274.0 +A1031,Helio Holdings,healthcare,APAC,mid_market,AU,active,false,201-500,CSM-APAC,3,3,0,helio-core,10,10,Growth Monthly,growth,monthly,priority,13,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,2025-06-01,1500.0,0.0,1650.0,1650.0,2025-06-30,8,46,2999,0.0,6.566666666666666,1115,63242,41.6,4,1,3.0,220.0 +A1056,Delta Global,retail,APAC,mid_market,AU,active,false,201-500,CSM-APAC,3,3,0,delta-core,11,10,Growth Monthly,growth,monthly,priority,11,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,2025-06-01,1500.0,0.0,1650.0,1650.0,2025-06-30,9,50,3199,0.0,6.6,1111,67843,45.1,4,0,3.75,162.5 +A1057,Harbor Partners,education,APAC,enterprise,NZ,active,false,1000+,CSM-APAC,4,4,1,harbor-core,13,12,Enterprise Annual,enterprise,annual,premium,13,20.0,paid,paid,2025-01-01,2025-01-09,0.0,false,2025-01-01,21600.0,0.0,23760.0,23760.0,2025-06-30,7,68,3920,0.0,7.533333333333333,1853,101155,57.9,7,2,3.4,207.71428571428572 +A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,false,201-500,CSM-EMEA,2,2,0,atlas-core,13,13,Growth Monthly,growth,monthly,priority,16,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,10,47,2790,0.0,9.333333333333334,1181,72164,43.5,3,1,5.0,169.33333333333334 +A1024,Sierra Group,manufacturing,NA,smb,CA,active,false,11-50,CSM-East,2,2,0,sierra-core,4,4,Starter Monthly,starter,monthly,standard,5,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,2025-06-01,500.0,0.0,500.0,500.0,2025-06-30,3,17,985,0.0,3.2333333333333334,490,28759,20.5,1,0,5.0,129.0 +A1035,Bright Retail,retail,EMEA,mid_market,UK,active,false,501-1000,CSM-EMEA,3,3,1,bright-core,13,11,Enterprise Monthly,enterprise,monthly,premium,15,0.0,paid,paid,2025-06-01,2025-06-05,0.0,false,2025-06-01,2600.0,0.0,3120.0,3120.0,2025-06-30,7,42,2322,0.0,6.466666666666667,1115,59544,42.0,5,0,4.4,107.8 +A1058,Evergreen Analytics,travel,EMEA,smb,UK,active,false,11-50,CSM-EMEA,2,2,0,evergreen-core,7,5,Starter Monthly,starter,monthly,standard,9,0.0,paid,paid,2025-06-01,2025-06-10,0.0,false,2025-06-01,500.0,0.0,600.0,600.0,2025-06-30,6,26,1225,0.0,4.4,594,36026,25.5,3,0,4.333333333333333,235.33333333333334 +A1001,Helio Systems,healthcare,EMEA,mid_market,NL,active,false,201-500,CSM-EMEA,3,3,0,helio-core,9,7,Growth Monthly,growth,monthly,priority,10,0.0,paid,paid,2025-06-01,2025-06-06,0.0,false,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,4,33,1777,0.0,4.566666666666666,947,54717,32.6,4,0,4.5,243.25 +A1028,Apex Energy,energy,APAC,mid_market,SG,active,false,501-1000,CSM-APAC,2,2,1,apex-core,11,10,Enterprise Monthly,enterprise,monthly,premium,14,0.0,open,,2025-06-01,,2834.0,false,2025-06-01,2600.0,0.0,2834.0,0.0,2025-06-30,5,28,1260,0.0,4.866666666666666,792,40215,34.1,3,0,4.666666666666667,685.6666666666666 +A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,false,201-500,CSM-APAC,3,3,0,granite-core,12,8,Enterprise Monthly,enterprise,monthly,premium,14,5.0,paid,paid,2025-06-01,2025-06-08,0.0,false,2025-06-01,2470.0,0.0,2717.0,2717.0,2025-06-30,9,49,2885,0.0,7.666666666666667,1221,71204,45.6,5,1,3.5,344.6 +A1059,Evergreen Partners,education,NA,mid_market,CA,active,false,201-500,CSM-East,2,2,1,evergreen-core,11,10,Enterprise Monthly,enterprise,monthly,premium,11,20.0,paid,paid,2025-06-01,2025-06-05,0.0,false,2025-06-01,2080.0,0.0,2080.0,2080.0,2025-06-30,5,32,1617,0.0,4.466666666666667,749,39880,42.7,5,0,4.6,199.4 +A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,false,201-500,CSM-APAC,2,2,0,pacific-core,12,10,Enterprise Monthly,enterprise,monthly,premium,15,0.0,open,,2025-06-01,,2860.0,false,2025-06-01,2600.0,0.0,2860.0,0.0,2025-06-30,6,35,1947,0.0,7.033333333333333,983,58910,41.8,3,0,3.6666666666666665,308.3333333333333 +A1067,Maple Energy,healthcare,NA,mid_market,CA,active,false,201-500,CSM-East,2,2,1,maple-core,7,6,Growth Monthly,growth,monthly,priority,8,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,4,28,1660,0.0,2.933333333333333,641,32283,32.9,5,1,4.25,199.4 +A1071,Evergreen Group,education,NA,mid_market,CA,active,false,201-500,CSM-East,3,3,1,evergreen-core,13,12,Enterprise Monthly,enterprise,monthly,premium,16,20.0,open,,2025-06-01,,2080.0,false,2025-06-01,2080.0,0.0,2080.0,0.0,2025-06-30,11,55,2716,0.0,7.0,1161,64088,38.1,2,0,3.5,66.0 +A1079,Nova Foods,education,EMEA,enterprise,FR,active,false,1000+,CSM-EMEA,4,4,0,nova-core,20,14,Enterprise Annual,enterprise,annual,premium,22,20.0,paid,paid,2025-01-01,2025-01-13,0.0,false,2025-01-01,21600.0,0.0,25920.0,25920.0,2025-06-30,12,79,5339,0.0,10.866666666666667,2169,127089,68.5,7,0,3.4285714285714284,85.14285714285714 +A1006,Helio Works,education,EMEA,mid_market,UK,active,false,201-500,CSM-EMEA,2,2,0,helio-core,7,5,Growth Monthly,growth,monthly,priority,8,20.0,paid,paid,2025-06-01,2025-06-07,0.0,false,2025-06-01,1200.0,0.0,1440.0,1440.0,2025-06-30,3,24,1300,0.0,3.9,700,41229,32.3,3,0,4.0,91.33333333333333 +A1025,Bright Capital,education,EMEA,smb,UK,active,false,51-200,CSM-EMEA,1,1,0,bright-core,6,5,Starter Monthly,starter,monthly,standard,8,20.0,paid,paid,2025-06-01,2025-06-09,0.0,false,2025-06-01,400.0,0.0,480.0,480.0,2025-06-30,3,13,669,0.0,3.1,370,23365,27.0,2,0,5.0,83.0 +A1038,River Systems,logistics,APAC,smb,AU,active,false,51-200,CSM-APAC,2,2,0,river-core,5,4,Starter Monthly,starter,monthly,standard,6,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,2025-06-01,500.0,0.0,550.0,550.0,2025-06-30,3,16,1047,0.0,2.8,446,27242,26.1,2,1,4.0,327.5 +A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,false,5000+,CSM-APAC,3,3,1,orchid-core,19,19,Enterprise Annual,enterprise,annual,premium,20,5.0,paid,paid,2025-01-01,2025-01-07,0.0,false,2025-01-01,25650.0,0.0,28215.0,28215.0,2025-06-30,14,65,3643,0.0,12.3,1975,108624,70.2,7,1,4.5,154.28571428571428 +A1074,Granite Analytics,retail,NA,mid_market,CA,active,false,501-1000,CSM-East,3,3,0,granite-core,12,11,Growth Monthly,growth,monthly,priority,14,10.0,paid,paid,2025-06-01,2025-06-09,0.0,false,2025-06-01,1350.0,0.0,1350.0,1350.0,2025-06-30,8,49,2600,0.0,8.266666666666667,1288,77923,35.1,5,1,3.75,470.8 +A1026,Pioneer Capital,education,NA,smb,CA,active,false,11-50,CSM-East,1,1,0,pioneer-core,8,8,Starter Monthly,starter,monthly,standard,9,20.0,paid,paid,2025-06-01,2025-06-13,0.0,false,2025-06-01,400.0,0.0,400.0,400.0,2025-06-30,6,22,1587,0.0,4.7,507,30416,15.5,1,0,5.0,42.0 +A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,false,1000+,CSM-EMEA,4,4,2,lighthouse-core,18,15,Enterprise Monthly,enterprise,monthly,premium,22,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,2025-06-01,2600.0,0.0,3120.0,3120.0,2025-06-30,7,66,3748,0.0,7.766666666666667,1892,93362,66.6,4,1,4.333333333333333,60.0 +A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,false,501-1000,CSM-APAC,3,3,1,northwind-core,11,10,Growth Monthly,growth,monthly,priority,13,0.0,paid,paid,2025-06-01,2025-06-08,0.0,false,2025-06-01,1500.0,0.0,1650.0,1650.0,2025-06-30,6,37,1967,0.0,6.733333333333333,1136,60586,35.9,5,0,4.2,236.8 +A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,false,5000+,CSM-EMEA,3,3,1,atlas-core,17,16,Enterprise Monthly,enterprise,monthly,premium,20,5.0,paid,paid,2025-06-01,2025-06-08,0.0,false,2025-06-01,2470.0,0.0,2964.0,2964.0,2025-06-30,10,66,3571,0.0,8.866666666666667,1687,91764,48.1,4,1,5.0,58.0 +A1064,Atlas Health,education,NA,smb,US,active,false,51-200,CSM-East,1,1,0,atlas-core,4,4,Starter Monthly,starter,monthly,standard,5,20.0,paid,paid,2025-06-01,2025-06-13,0.0,false,2025-06-01,400.0,0.0,400.0,400.0,2025-06-30,2,9,421,0.0,2.4,306,18016,27.4,2,0,5.0,699.0 +A1010,Orchid Foods,education,NA,smb,CA,active,false,11-50,CSM-East,1,1,0,orchid-core,8,7,Starter Monthly,starter,monthly,standard,10,20.0,paid,paid,2025-06-01,2025-06-07,0.0,false,2025-06-01,400.0,0.0,400.0,400.0,2025-06-30,4,13,595,0.0,4.3,478,29531,28.3,2,0,3.0,36.0 +A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,false,201-500,CSM-East,2,2,0,lighthouse-core,12,12,Growth Monthly,growth,monthly,priority,13,0.0,paid,paid,2025-06-01,2025-06-05,0.0,false,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,11,56,3786,0.0,8.966666666666667,1158,69619,38.4,2,0,4.5,555.0 +A1046,Pioneer Solutions,education,NA,smb,CA,active,false,51-200,CSM-East,1,1,0,pioneer-core,5,4,Growth Monthly,growth,monthly,priority,5,20.0,paid,paid,2025-06-01,2025-06-07,0.0,false,2025-06-01,1200.0,0.0,1200.0,1200.0,2025-06-30,3,15,877,0.0,2.533333333333333,349,21104,17.4,3,1,5.0,251.0 +A1051,Lighthouse Systems,media,EMEA,smb,UK,active,false,51-200,CSM-EMEA,1,1,0,lighthouse-core,7,4,Growth Monthly,growth,monthly,priority,7,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,1,7,416,0.0,2.5,327,19800,27.7,3,0,3.6666666666666665,425.0 +A1022,Summit Collective,retail,APAC,smb,NZ,active,false,51-200,CSM-APAC,2,2,1,summit-core,5,3,Growth Monthly,growth,monthly,priority,6,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,2025-06-01,1500.0,0.0,1650.0,1650.0,2025-06-30,3,17,909,0.0,1.9666666666666666,374,17727,18.4,1,0,5.0,140.0 +A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,false,1000+,CSM-APAC,4,4,1,helio-core,16,15,Enterprise Monthly,enterprise,monthly,premium,19,0.0,open,,2025-06-01,,2834.0,false,2025-06-01,2600.0,0.0,2834.0,0.0,2025-06-30,10,78,4884,0.0,8.033333333333333,1892,98846,60.8,7,0,4.571428571428571,72.14285714285714 +A1083,Falcon Works,education,NA,mid_market,CA,active,false,501-1000,CSM-East,2,2,1,falcon-core,7,5,Growth Monthly,growth,monthly,priority,9,20.0,paid,failed,2025-06-01,2025-06-15,0.0,false,2025-06-01,1200.0,0.0,1200.0,1200.0,2025-06-30,5,31,1797,0.0,2.8,618,30719,35.6,4,0,3.75,284.75 +A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,false,5000+,CSM-EMEA,4,4,0,northwind-core,12,11,Enterprise Monthly,enterprise,monthly,premium,14,5.0,paid,paid,2025-06-01,2025-06-14,0.0,false,2025-06-01,2470.0,0.0,2964.0,2964.0,2025-06-30,7,67,3741,0.0,7.466666666666667,1853,112662,48.3,4,0,4.25,214.0 +A1039,Nova Group,media,EMEA,smb,FR,active,false,11-50,CSM-EMEA,1,1,0,nova-core,7,7,Starter Monthly,starter,monthly,standard,8,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,2025-06-01,500.0,0.0,600.0,600.0,2025-06-30,6,20,1351,0.0,4.233333333333333,457,27512,23.0,3,0,5.0,127.0 +A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,false,1000+,CSM-APAC,4,4,1,lighthouse-core,18,16,Enterprise Monthly,enterprise,monthly,premium,21,0.0,paid,paid,2025-06-01,2025-06-08,0.0,false,2025-06-01,2600.0,0.0,2834.0,2834.0,2025-06-30,12,86,4604,0.0,10.3,2105,114513,54.4,3,1,4.0,313.6666666666667 +A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,false,1000+,CSM-East,4,4,0,nova-core,14,14,Enterprise Annual,enterprise,annual,premium,17,5.0,paid,paid,2025-01-01,2025-01-10,0.0,false,2025-01-01,25650.0,0.0,25650.0,25650.0,2025-06-30,13,81,5167,0.0,10.6,2148,126398,70.5,5,0,4.2,179.4 +A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,false,5000+,CSM-APAC,3,3,0,orchid-core,17,14,Enterprise Annual,enterprise,annual,premium,18,10.0,paid,paid,2025-03-01,2025-03-07,0.0,false,2025-03-01,24300.0,0.0,26730.0,26730.0,2025-06-30,12,76,4053,0.0,11.433333333333334,1910,112002,57.2,4,3,4.0,200.5 +A1090,Vertex Labs,energy,NA,smb,US,active,false,11-50,CSM-East,1,1,0,vertex-core,4,4,Starter Monthly,starter,monthly,standard,5,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,2025-06-01,500.0,0.0,500.0,500.0,2025-06-30,2,10,707,0.0,2.3,294,16801,23.7,2,1,4.0,96.5 +A1019,Sierra Systems,education,APAC,smb,JP,active,false,51-200,CSM-APAC,2,2,1,sierra-core,4,3,Starter Monthly,starter,monthly,standard,5,20.0,paid,paid,2025-06-01,2025-06-11,0.0,false,2025-06-01,400.0,0.0,440.0,440.0,2025-06-30,1,10,451,0.0,1.4666666666666666,340,16856,19.2,1,1,,144.0 +A1020,Pioneer Network,travel,EMEA,smb,FR,active,false,11-50,CSM-EMEA,1,1,0,pioneer-core,4,3,Growth Monthly,growth,monthly,priority,5,0.0,paid,paid,2025-06-01,2025-06-08,0.0,false,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,3,13,677,0.0,1.7,255,14423,23.0,1,0,5.0,47.0 +A1050,Cedar Energy,software,APAC,smb,JP,active,false,11-50,CSM-APAC,2,2,1,cedar-core,4,4,Starter Monthly,starter,monthly,standard,5,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,2025-06-01,500.0,0.0,550.0,550.0,2025-06-30,1,10,518,0.0,2.066666666666667,387,19633,21.0,1,1,,175.0 +A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,false,201-500,CSM-East,2,2,1,cedar-core,13,11,Growth Monthly,growth,monthly,priority,15,0.0,past_due,failed,2025-06-01,2025-06-22,1500.0,true,2025-06-01,1500.0,0.0,1500.0,0.0,2025-06-30,5,28,1881,0.0,6.2,891,49873,31.1,2,0,4.0,194.5 +A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,active,false,11-50,CSM-APAC,1,1,0,helio-core,8,6,Starter Monthly,starter,monthly,standard,10,0.0,paid,paid,2025-06-01,2025-06-10,0.0,false,2025-06-01,500.0,0.0,550.0,550.0,2025-06-30,4,15,834,0.0,3.7333333333333334,424,24980,17.3,2,0,4.0,111.0 +A1075,Cedar Labs,software,EMEA,smb,UK,active,false,11-50,CSM-EMEA,1,1,0,cedar-core,8,8,Starter Monthly,starter,monthly,standard,10,0.0,paid,paid,2025-06-01,2025-06-10,0.0,false,2025-06-01,500.0,0.0,600.0,600.0,2025-06-30,6,19,1340,0.0,4.9,520,31589,28.4,1,0,4.0,738.0 +A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,true,5000+,CSM-East,2,0,1,silver-core,14,6,Starter Monthly,starter,monthly,standard,14,0.0,paid,paid,2025-05-01,2025-05-08,0.0,false,2025-05-01,500.0,0.0,500.0,500.0,,,,,0.0,0.0,0,0,0.0,7,1,3.5,210.0 +A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,true,1000+,CSM-APAC,1,0,0,bright-core,17,3,Starter Monthly,starter,monthly,standard,17,5.0,paid,paid,2025-04-01,2025-04-13,0.0,false,2025-04-01,475.0,0.0,522.5,522.5,,,,,0.0,0.0,0,0,0.0,5,3,3.5,109.6 +A1015,Delta Network,logistics,NA,smb,US,churned,true,51-200,CSM-East,2,0,1,delta-core,3,0,Growth Monthly,growth,monthly,priority,5,0.0,paid,paid,2025-04-01,2025-04-12,0.0,false,2025-04-01,1500.0,0.0,1500.0,1500.0,,,,,0.0,0.0,0,0,0.0,4,0,4.25,95.25 +A1018,Harbor Manufacturing,media,EMEA,smb,UK,churned,true,11-50,CSM-EMEA,2,0,0,harbor-core,3,2,Starter Monthly,starter,monthly,standard,5,0.0,paid,paid,2025-04-01,2025-04-06,0.0,false,2025-04-01,500.0,0.0,600.0,600.0,,,,,0.0,0.0,0,0,0.0,3,0,3.0,454.3333333333333 +A1036,Granite Holdings,education,NA,smb,US,churned,true,51-200,CSM-East,2,0,1,granite-core,3,0,Growth Monthly,growth,monthly,priority,5,20.0,paid,paid,2025-04-01,2025-04-12,0.0,false,2025-04-01,1200.0,0.0,1200.0,1200.0,,,,,0.0,0.0,0,0,0.0,3,0,4.666666666666667,172.66666666666666 +A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,true,1000+,CSM-APAC,1,0,0,evergreen-core,18,4,Growth Monthly,growth,monthly,priority,23,0.0,paid,paid,2025-04-01,2025-04-14,0.0,false,2025-04-01,1500.0,0.0,1635.0,1635.0,,,,,0.0,0.0,0,0,0.0,6,1,3.2,64.83333333333333 +A1032,Vertex Works,manufacturing,EMEA,mid_market,DE,churned,true,201-500,CSM-EMEA,2,0,0,vertex-core,6,4,Growth Monthly,growth,monthly,priority,7,0.0,paid,paid,2025-04-01,2025-04-09,0.0,false,2025-04-01,1500.0,0.0,1800.0,1800.0,,,,,0.0,0.0,0,0,0.0,3,0,2.0,137.33333333333334 +A1082,Summit Manufacturing,manufacturing,NA,mid_market,US,churned,true,501-1000,CSM-East,1,0,0,summit-core,7,2,Starter Monthly,starter,monthly,standard,9,0.0,paid,failed,2025-04-01,2025-04-15,0.0,false,2025-04-01,500.0,0.0,500.0,500.0,,,,,0.0,0.0,0,0,0.0,6,2,2.25,270.0 +A1087,Apex Capital,energy,NA,enterprise,CA,churned,true,1000+,CSM-East,1,0,0,apex-core,9,4,Growth Monthly,growth,monthly,priority,12,0.0,paid,paid,2025-04-01,2025-04-14,0.0,false,2025-04-01,1500.0,0.0,1500.0,1500.0,,,,,0.0,0.0,0,0,0.0,7,1,4.333333333333333,174.85714285714286 diff --git a/tasks/helixops_saas002/setup.sh b/tasks/helixops_saas002/setup.sh new file mode 100755 index 00000000..e3046744 --- /dev/null +++ b/tasks/helixops_saas002/setup.sh @@ -0,0 +1,3 @@ +#!/bin/bash +patch -p1 < /app/setup/changes.patch +dbt run || true diff --git a/tasks/helixops_saas002/setup/changes.patch b/tasks/helixops_saas002/setup/changes.patch new file mode 100644 index 00000000..d90a2be0 --- /dev/null +++ b/tasks/helixops_saas002/setup/changes.patch @@ -0,0 +1,20 @@ +--- a/models/marts/dim_accounts.sql ++++ b/models/marts/dim_accounts.sql +@@ -25,7 +25,6 @@ + a.account_status, + a.is_churned, + a.employee_band, +- a.owner_team, + coalesce(w.workspace_count, 0) as workspace_count, + coalesce(w.active_workspace_count, 0) as active_workspace_count, + coalesce(w.prod_workspace_count, 0) as prod_workspace_count, +--- a/models/marts/mart_account_360.sql ++++ b/models/marts/mart_account_360.sql +@@ -47,7 +47,6 @@ + a.account_status, + a.is_churned, + a.employee_band, +- a.owner_team, + a.workspace_count, + a.active_workspace_count, + a.sandbox_workspace_count, diff --git a/tasks/helixops_saas002/solution.sh b/tasks/helixops_saas002/solution.sh new file mode 100755 index 00000000..a81d0f9b --- /dev/null +++ b/tasks/helixops_saas002/solution.sh @@ -0,0 +1,3 @@ +#!/bin/bash +patch -p1 < /sage/solutions/changes.patch +dbt run --select dim_accounts mart_account_360 diff --git a/tasks/helixops_saas002/solutions/changes.patch b/tasks/helixops_saas002/solutions/changes.patch new file mode 100644 index 00000000..f51643b9 --- /dev/null +++ b/tasks/helixops_saas002/solutions/changes.patch @@ -0,0 +1,20 @@ +--- a/models/marts/dim_accounts.sql ++++ b/models/marts/dim_accounts.sql +@@ -25,6 +25,7 @@ + a.account_status, + a.is_churned, + a.employee_band, ++ a.owner_team, + coalesce(w.workspace_count, 0) as workspace_count, + coalesce(w.active_workspace_count, 0) as active_workspace_count, + coalesce(w.prod_workspace_count, 0) as prod_workspace_count, +--- a/models/marts/mart_account_360.sql ++++ b/models/marts/mart_account_360.sql +@@ -47,6 +47,7 @@ + a.account_status, + a.is_churned, + a.employee_band, ++ a.owner_team, + a.workspace_count, + a.active_workspace_count, + a.sandbox_workspace_count, diff --git a/tasks/helixops_saas002/task.yaml b/tasks/helixops_saas002/task.yaml new file mode 100644 index 00000000..e0b519b2 --- /dev/null +++ b/tasks/helixops_saas002/task.yaml @@ -0,0 +1,26 @@ +task_id: helixops_saas002 +status: ready +description: Add owner_team to mart_account_360 — absent from direct parent dim_accounts and must be sourced from grandparent stg_accounts +prompts: + - key: base + prompt: |- + Add the owning team to the account 360. +author_name: joel +author_email: joel@example.com +difficulty: easy +tags: + - dbt + - helixops_saas +test_setup: |- + dbt run --select dim_accounts mart_account_360 +variants: +- db_type: duckdb + db_name: helixops_saas + project_type: dbt + project_name: helixops_saas +- db_type: duckdb + db_name: helixops_saas + project_type: dbt-fusion + project_name: helixops_saas +solution_seeds: + - table_name: mart_account_360 diff --git a/tasks/helixops_saas002/tests/AUTO_mart_account_360_equality.sql b/tasks/helixops_saas002/tests/AUTO_mart_account_360_equality.sql new file mode 100644 index 00000000..b21e2fc5 --- /dev/null +++ b/tasks/helixops_saas002/tests/AUTO_mart_account_360_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'mart_account_360' %} +{% set answer_keys = ['solution__mart_account_360'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__mart_account_360') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas002/tests/AUTO_mart_account_360_existence.sql b/tasks/helixops_saas002/tests/AUTO_mart_account_360_existence.sql new file mode 100644 index 00000000..708adf72 --- /dev/null +++ b/tasks/helixops_saas002/tests/AUTO_mart_account_360_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'mart_account_360' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas003/macros/ade_bench_equality_test.sql b/tasks/helixops_saas003/macros/ade_bench_equality_test.sql new file mode 100644 index 00000000..510c6037 --- /dev/null +++ b/tasks/helixops_saas003/macros/ade_bench_equality_test.sql @@ -0,0 +1,78 @@ +{% macro ade_bench_equality_test(table_name, answer_keys, cols_to_exclude=[]) %} + {% if not execute %} + select 1 where 1=0 + {% else %} + {% set ns = namespace(matched=false) %} + {% set actual_rel = load_relation(ref(table_name)) %} + + {% if actual_rel is not none %} + {% set actual_columns = adapter.get_columns_in_relation(actual_rel) %} + {% set exclude_lower = cols_to_exclude | map('lower') | list %} + + {%- set actual_col_names = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do actual_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set actual_set = actual_col_names | sort %} + + {% for answer_key in answer_keys %} + {% if not ns.matched %} + {% set seed_rel = load_relation(ref(answer_key)) %} + {% if seed_rel is not none %} + {% set seed_columns = adapter.get_columns_in_relation(seed_rel) %} + + {%- set seed_col_names = [] -%} + {%- for col in seed_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do seed_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set seed_set = seed_col_names | sort %} + + {% if actual_set == seed_set %} + {%- set compare_cols = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do compare_cols.append(col.quoted) -%} + {%- endif -%} + {%- endfor -%} + {% set compare_cols_csv = compare_cols | join(', ') %} + + {% set query %} + with a_minus_b as ( + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + except + select {{ compare_cols_csv }} from {{ ref(table_name) }} + ), + b_minus_a as ( + select {{ compare_cols_csv }} from {{ ref(table_name) }} + except + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + ), + unioned as ( + select * from a_minus_b + union all + select * from b_minus_a + ) + select count(*) as diff_count from unioned + {% endset %} + + {% set result = run_query(query) %} + {% if result.rows[0][0] == 0 %} + {% set ns.matched = true %} + {% endif %} + {% endif %} + {% endif %} + {% endif %} + {% endfor %} + {% endif %} + + {% if ns.matched %} + select 1 where 1=0 + {% else %} + select 1 + {% endif %} + {% endif %} +{% endmacro %} diff --git a/tasks/helixops_saas003/seeds/_no-op.txt b/tasks/helixops_saas003/seeds/_no-op.txt new file mode 100644 index 00000000..4ffd5cee --- /dev/null +++ b/tasks/helixops_saas003/seeds/_no-op.txt @@ -0,0 +1,20 @@ + + +seeds: + helixops_saas: + solution__int_account_daily_usage: + +column_types: + account_id: varchar + account_name: varchar + industry: varchar + segment: varchar + region: varchar + billing_country: varchar + usage_date: date + workspace_days_reporting: bigint + active_users: bigint + projects_run: bigint + api_calls: bigint + alerts_sent: bigint + max_storage_gb: double + avg_storage_gb: double diff --git a/tasks/helixops_saas003/seeds/solution__int_account_daily_usage.csv b/tasks/helixops_saas003/seeds/solution__int_account_daily_usage.csv new file mode 100644 index 00000000..e55ad536 --- /dev/null +++ b/tasks/helixops_saas003/seeds/solution__int_account_daily_usage.csv @@ -0,0 +1,2431 @@ +account_id,account_name,industry,segment,region,billing_country,usage_date,workspace_days_reporting,active_users,projects_run,api_calls,alerts_sent,max_storage_gb,avg_storage_gb +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-04,3,6,42,2087,8,27.9,24.599999999999998 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-09,3,4,31,1576,7,28.7,25.599999999999998 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-05,2,6,30,1859,4,30.7,30.549999999999997 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-28,2,6,18,1217,5,35.8,35.15 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-29,2,5,16,1131,3,36.3,34.55 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-30,2,7,33,1514,5,33.8,33.75 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-03,2,6,48,3233,12,60.0,50.3 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-06,3,7,53,2880,11,56.0,48.06666666666666 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-15,3,6,27,1605,6,56.6,49.43333333333334 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-24,2,6,32,1714,8,29.5,26.85 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-10,1,1,7,305,1,21.7,21.7 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-20,1,1,8,578,2,24.5,24.5 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-07,3,6,21,1397,3,21.6,20.2 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-12,2,10,50,3355,8,23.5,21.55 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-10,1,6,28,1856,5,23.6,23.6 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-20,1,4,18,1321,2,26.0,26.0 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-17,1,3,17,990,3,24.2,24.2 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-01,1,1,4,253,1,21.8,21.8 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-08,1,2,5,287,1,23.7,23.7 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-14,1,2,5,342,1,24.9,24.9 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-03,3,5,39,2160,9,23.4,20.8 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-16,4,13,88,5751,17,63.6,50.825 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-21,4,7,36,2227,7,65.5,52.25 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-25,4,16,100,5560,19,66.3,52.175 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-03,2,4,27,1733,5,29.9,29.549999999999997 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-06,1,1,7,351,2,14.0,14.0 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-15,1,1,4,281,1,16.7,16.7 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-12,1,3,13,873,3,21.0,21.0 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-01,1,2,5,376,1,13.7,13.7 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-08,1,2,6,278,1,15.1,15.1 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-14,1,1,4,249,1,15.7,15.7 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-18,1,7,23,1457,6,13.0,13.0 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-22,1,3,8,377,2,14.4,14.4 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-26,1,6,21,1004,5,15.9,15.9 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-27,1,6,26,1161,3,16.6,16.6 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-01,2,4,12,726,2,16.1,15.100000000000001 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-08,2,3,9,606,2,17.1,16.75 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-14,2,4,11,679,2,18.5,18.0 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-18,1,5,21,1149,5,24.2,24.2 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-22,1,1,4,242,1,25.1,25.1 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-26,1,4,15,967,2,25.9,25.9 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-27,1,4,16,1161,2,25.8,25.8 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-17,1,4,20,1459,3,13.6,13.6 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-05,2,5,24,1571,6,17.6,15.9 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-28,2,3,9,569,2,20.7,17.9 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-29,2,2,8,578,2,21.5,19.15 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-30,2,3,16,1181,3,20.5,19.05 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-11,4,8,77,5190,11,44.9,39.45 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-19,4,11,81,5367,15,44.5,40.75 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-13,3,8,46,2454,9,37.3,30.833333333333332 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-23,3,8,44,2361,9,41.0,32.733333333333334 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-01,2,5,14,819,3,33.1,26.700000000000003 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-08,2,7,18,1289,5,34.5,27.7 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-14,2,8,22,1662,4,35.6,29.35 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-11,1,4,15,935,3,17.3,17.3 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-19,1,3,16,732,3,17.2,17.2 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-17,2,6,37,2256,7,38.3,32.45 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-16,2,5,36,2509,6,63.9,58.599999999999994 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-21,2,5,21,1247,5,64.9,60.1 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-25,2,7,49,2462,12,65.2,60.150000000000006 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-13,2,3,19,1160,3,23.3,22.8 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-23,2,3,17,1189,3,24.9,24.25 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-11,1,6,20,1169,5,20.1,20.1 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-19,1,5,24,1306,5,21.3,21.3 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-13,2,3,24,1317,5,37.8,37.7 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-23,2,5,30,2064,6,39.9,38.75 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-17,2,8,47,2921,10,33.0,26.35 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-16,2,4,24,1328,5,32.1,29.55 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-21,2,4,14,810,2,33.7,31.200000000000003 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-25,2,6,34,2391,9,33.4,30.5 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-16,3,12,75,3646,16,50.3,48.9 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-21,3,5,27,1681,6,52.6,49.699999999999996 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-25,3,11,70,4367,15,53.8,50.86666666666667 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-04,1,4,18,1315,4,11.4,11.4 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-09,1,4,13,664,3,12.2,12.2 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-04,4,14,97,5532,22,65.3,51.025 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-09,4,15,89,5106,19,65.5,51.425000000000004 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-05,1,1,8,439,2,12.6,12.6 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-28,1,2,6,416,1,17.4,17.4 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-29,1,2,6,285,1,15.5,15.5 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-30,1,3,15,877,3,17.3,17.3 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-12,2,13,65,4422,15,67.1,66.15 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-11,3,13,82,5363,18,53.7,41.13333333333333 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-19,3,10,62,3968,14,53.8,42.199999999999996 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-12,3,15,84,4589,17,67.0,58.300000000000004 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-05,1,2,10,736,2,16.1,16.1 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-28,1,1,4,305,1,17.9,17.9 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-29,1,1,3,148,0,20.5,20.5 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-30,1,1,6,393,1,20.9,20.9 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-17,1,2,12,551,3,24.8,24.8 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-06,2,10,37,2454,9,32.5,27.4 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-15,2,3,13,739,3,33.8,29.049999999999997 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-11,3,7,45,2424,8,39.8,37.266666666666666 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-19,3,7,46,2322,11,40.5,38.5 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-10,3,7,48,2864,10,40.9,37.13333333333333 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-20,3,8,47,2927,10,43.7,39.6 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-24,1,4,19,1099,5,33.3,33.3 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-07,3,4,17,804,3,40.7,38.13333333333333 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-24,3,8,67,4139,16,54.5,43.333333333333336 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-07,2,3,10,741,2,20.9,19.15 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-04,1,5,20,1471,4,38.2,38.2 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-09,1,3,14,1037,2,38.4,38.4 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-17,1,7,30,1840,5,28.9,28.9 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-18,2,6,47,2796,10,46.1,44.3 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-22,2,5,20,1180,4,47.4,45.25 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-26,2,8,44,3265,8,48.0,45.9 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-27,2,10,55,3605,15,48.1,46.35 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-13,3,13,74,5420,14,57.1,47.13333333333333 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-23,3,8,57,3833,11,58.7,48.800000000000004 +A1063,Maple Global,education,smb,NA,CA,2025-06-16,1,1,7,355,1,21.9,21.9 +A1063,Maple Global,education,smb,NA,CA,2025-06-21,1,1,4,258,1,22.9,22.9 +A1063,Maple Global,education,smb,NA,CA,2025-06-25,1,2,12,715,2,22.9,22.9 +A1064,Atlas Health,education,smb,NA,US,2025-06-05,1,1,7,361,2,23.3,23.3 +A1064,Atlas Health,education,smb,NA,US,2025-06-28,1,3,6,468,1,26.6,26.6 +A1064,Atlas Health,education,smb,NA,US,2025-06-29,1,3,7,371,1,26.8,26.8 +A1064,Atlas Health,education,smb,NA,US,2025-06-30,1,2,9,421,2,26.6,26.6 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-03,2,8,42,2884,7,21.7,20.5 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-16,2,10,42,2801,9,38.0,37.9 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-21,2,6,19,1246,5,40.5,39.85 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-25,2,8,41,2442,10,39.3,38.45 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-18,1,2,16,938,4,32.3,32.3 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-22,1,1,6,419,1,31.5,31.5 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-26,1,3,16,998,3,32.8,32.8 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-27,1,3,16,763,4,32.0,32.0 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-11,3,8,61,3732,12,56.9,41.73333333333333 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-19,3,8,61,4135,11,59.7,44.03333333333334 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-10,3,8,66,4374,12,65.4,57.46666666666667 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-20,3,11,61,3060,13,66.0,58.46666666666666 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-13,1,5,15,1009,2,15.2,15.2 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-23,1,5,17,1129,3,16.8,16.8 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-06,2,7,32,1975,5,34.4,27.15 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-15,2,7,20,1311,4,35.8,28.5 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-06,2,7,44,2177,10,67.0,47.9 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-15,2,5,21,1563,4,68.7,49.5 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-18,2,9,52,3423,9,20.2,19.4 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-22,2,5,15,936,3,20.4,19.95 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-26,2,8,43,2271,7,19.9,19.799999999999997 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-27,2,8,39,2376,6,22.8,21.15 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-06,3,9,52,2774,11,30.7,29.166666666666668 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-15,3,6,21,1100,5,31.9,30.833333333333332 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-12,1,6,22,1245,4,24.8,24.8 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-24,2,9,42,2870,8,42.6,33.35 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-05,3,4,33,1783,6,33.0,28.3 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-28,3,6,20,1138,3,35.4,31.399999999999995 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-29,3,3,15,777,3,36.4,31.3 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-30,3,6,38,2104,7,36.0,30.5 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-13,3,7,43,2072,9,32.5,26.933333333333337 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-23,3,5,34,2172,5,35.3,29.166666666666668 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-02,4,15,88,4868,20,64.3,52.35 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-06,2,7,31,2200,5,27.0,24.35 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-15,2,3,12,711,3,28.8,25.950000000000003 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-05,1,3,18,1116,3,31.5,31.5 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-28,1,1,5,368,1,33.9,33.9 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-29,1,1,5,361,1,35.5,35.5 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-30,1,3,18,1212,2,34.5,34.5 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-10,2,9,48,3052,12,42.1,38.6 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-20,2,9,41,2724,9,43.3,40.8 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-17,1,3,13,819,3,19.1,19.1 +A1086,River Labs,software,smb,EMEA,FR,2025-06-01,1,1,4,265,1,22.2,22.2 +A1086,River Labs,software,smb,EMEA,FR,2025-06-08,1,2,5,398,1,22.7,22.7 +A1086,River Labs,software,smb,EMEA,FR,2025-06-14,1,2,6,338,1,23.7,23.7 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-16,1,5,22,1609,5,17.1,17.1 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-21,1,3,6,414,1,17.4,17.4 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-25,1,3,13,931,2,19.2,19.2 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-24,2,8,46,2595,7,34.5,30.35 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-11,1,4,17,1090,5,20.9,20.9 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-19,1,2,9,400,2,21.7,21.7 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-17,3,4,35,1993,5,29.9,26.566666666666663 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-06,2,4,27,1473,4,32.4,30.95 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-15,2,3,12,749,2,33.0,32.05 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-02,2,11,61,3116,16,59.2,50.1 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-05,3,8,63,2931,11,55.9,48.1 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-28,3,8,32,1911,6,60.3,52.03333333333333 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-29,3,5,26,1365,6,59.6,51.866666666666674 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-30,3,11,66,3887,11,58.4,51.699999999999996 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-13,2,6,30,2218,8,27.3,24.65 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-23,2,4,26,1444,4,30.0,25.5 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-01,1,1,4,240,1,20.0,20.0 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-08,1,1,4,279,1,21.0,21.0 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-14,1,1,4,184,1,21.6,21.6 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-16,3,9,51,3538,10,22.2,20.133333333333336 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-21,3,4,19,1248,5,22.7,21.433333333333334 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-25,3,11,59,3345,11,22.9,22.166666666666668 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-11,2,6,37,2199,5,24.8,22.3 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-19,2,9,44,2592,9,25.8,23.65 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-01,1,4,9,568,2,22.6,22.6 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-08,1,4,10,802,1,24.6,24.6 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-14,1,2,5,359,1,25.4,25.4 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-04,1,6,30,1618,7,23.2,23.2 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-09,1,5,16,1149,4,23.7,23.7 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-10,1,3,14,990,2,23.6,23.6 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-20,1,4,15,1007,4,25.3,25.3 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-02,3,5,35,2256,6,22.7,20.5 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-07,4,7,36,2352,6,63.1,49.724999999999994 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-02,2,4,24,1385,6,29.8,29.8 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-05,1,1,7,341,1,13.6,13.6 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-28,1,1,4,255,1,17.2,17.2 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-29,1,1,4,271,1,16.3,16.3 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-30,1,1,6,281,1,19.2,19.2 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-11,1,1,8,564,1,20.4,20.4 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-19,1,2,12,757,3,20.4,20.4 +A1021,Apex Logistics,software,smb,NA,US,2025-06-18,1,6,27,1770,4,22.2,22.2 +A1021,Apex Logistics,software,smb,NA,US,2025-06-22,1,4,11,587,2,24.1,24.1 +A1021,Apex Logistics,software,smb,NA,US,2025-06-26,1,4,15,668,4,25.1,25.1 +A1021,Apex Logistics,software,smb,NA,US,2025-06-27,1,5,16,832,4,23.4,23.4 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-10,1,1,9,374,2,14.8,14.8 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-20,1,2,10,484,2,16.0,16.0 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-10,2,5,26,1518,4,16.5,16.35 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-20,2,5,25,1410,7,18.0,17.35 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-04,1,6,21,1217,3,11.8,11.8 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-09,1,6,23,1537,5,12.4,12.4 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-06,2,3,17,1067,3,18.0,15.6 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-15,2,2,8,523,2,19.1,17.3 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-18,1,5,27,1631,7,30.8,30.8 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-22,1,1,5,315,1,31.0,31.0 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-26,1,6,21,1438,5,30.6,30.6 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-27,1,5,25,1872,7,31.5,31.5 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-12,4,6,69,4193,14,45.4,40.225 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-24,3,7,48,2495,12,40.4,32.9 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-10,2,12,61,3335,9,35.1,28.35 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-20,2,9,42,2275,6,35.9,29.45 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-12,1,1,8,343,2,15.9,15.9 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-04,2,5,28,1826,5,36.6,31.15 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-09,2,6,32,1952,8,37.1,31.6 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-07,2,4,19,909,4,63.0,57.5 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-24,2,2,16,977,2,24.4,24.1 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-12,1,4,16,949,2,19.0,19.0 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-24,2,3,27,1689,6,38.9,38.75 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-04,2,10,47,3014,9,30.8,24.8 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-09,2,8,41,2768,7,31.5,25.7 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-07,2,4,14,800,3,32.2,29.150000000000002 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-07,3,5,27,1588,4,49.9,47.633333333333326 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-17,1,4,17,1248,5,14.5,14.5 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-17,4,11,94,5536,19,67.4,52.975 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-06,1,4,19,1056,4,13.6,13.6 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-15,1,1,4,210,1,14.3,14.3 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-11,2,11,59,3822,14,66.4,64.9 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-19,2,13,64,3976,15,66.8,66.19999999999999 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-12,3,14,76,4509,14,54.4,41.733333333333334 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-11,3,15,82,4417,13,67.4,58.13333333333333 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-19,3,12,76,5315,20,69.1,59.06666666666666 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-06,1,2,9,646,1,16.0,16.0 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-15,1,1,4,258,1,18.1,18.1 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-04,1,3,17,1134,2,22.7,22.7 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-09,1,1,7,460,1,24.1,24.1 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-05,2,8,38,2005,6,32.0,27.25 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-28,2,6,19,1382,4,35.4,30.799999999999997 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-29,2,5,15,1104,3,36.7,31.400000000000002 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-30,2,8,35,1861,8,35.1,30.450000000000003 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-12,3,6,38,1911,6,39.9,37.6 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-01,3,5,20,1357,4,40.1,36.26666666666666 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-08,3,4,18,1177,3,41.8,37.46666666666666 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-14,3,7,22,1321,5,41.4,37.56666666666666 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-13,1,4,21,1548,5,30.3,30.3 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-23,1,4,18,796,5,30.7,30.7 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-16,3,11,47,3456,12,40.6,38.93333333333334 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-21,3,3,17,1047,4,43.0,39.666666666666664 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-25,3,9,55,3437,11,42.2,40.0 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-13,3,8,59,3785,12,54.3,41.96666666666666 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-23,3,7,52,2998,10,54.7,43.633333333333326 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-16,2,3,17,992,3,23.4,21.299999999999997 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-21,2,3,9,540,2,23.9,21.6 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-25,2,4,20,1220,4,25.1,21.55 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-17,1,4,23,1233,5,41.1,41.1 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-04,1,6,31,1818,8,26.4,26.4 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-09,1,7,22,1683,4,27.8,27.8 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-24,3,10,73,4603,13,60.1,49.333333333333336 +A1063,Maple Global,education,smb,NA,CA,2025-06-07,1,1,4,197,1,19.7,19.7 +A1064,Atlas Health,education,smb,NA,US,2025-06-06,1,3,13,987,4,23.1,23.1 +A1064,Atlas Health,education,smb,NA,US,2025-06-15,1,1,4,183,1,24.9,24.9 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-02,2,8,38,2674,10,21.7,20.6 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-07,2,6,16,1021,3,37.4,37.2 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-12,3,7,56,3360,11,57.7,41.86666666666667 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-01,3,6,29,1445,7,64.1,56.1 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-08,3,7,29,1656,7,65.8,56.93333333333334 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-14,3,5,27,1455,6,64.5,56.73333333333333 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-24,1,4,15,778,3,16.4,16.4 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-05,2,6,31,2240,4,33.7,26.700000000000003 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-28,2,5,17,880,3,38.1,31.0 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-29,2,3,13,777,3,36.2,29.55 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-30,2,8,37,2162,9,36.4,28.95 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-05,2,10,57,4133,13,66.7,48.1 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-28,2,5,22,1105,4,70.7,51.05 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-29,2,5,20,1208,4,69.6,50.949999999999996 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-30,2,10,53,3348,9,70.8,52.25 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-05,3,10,54,3338,11,30.6,28.933333333333337 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-28,3,8,26,1725,6,33.8,32.53333333333333 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-29,3,5,20,1092,4,34.5,32.13333333333333 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-30,3,8,49,2600,7,32.7,32.03333333333334 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-11,1,6,24,1296,4,24.6,24.6 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-19,1,4,15,710,3,25.7,25.7 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-13,2,13,56,3017,7,40.2,31.3 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-23,2,12,50,3546,13,43.5,33.9 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-06,3,6,40,2461,6,32.5,28.03333333333333 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-15,3,3,15,1001,3,33.4,29.2 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-24,3,8,54,3296,9,36.2,29.633333333333336 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-03,4,12,96,5764,17,63.5,52.05 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-18,2,9,49,3539,12,42.7,31.400000000000002 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-22,2,5,15,961,3,44.8,33.349999999999994 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-26,2,9,45,2496,7,45.2,33.45 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-27,2,9,40,2052,7,44.1,33.35 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-05,2,6,35,2083,5,26.5,24.2 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-28,2,6,18,976,4,28.0,26.0 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-29,2,5,17,838,3,29.4,27.9 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-30,2,4,26,1340,4,29.4,28.0 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-06,1,1,10,618,3,31.1,31.1 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-15,1,1,5,282,1,33.5,33.5 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-01,2,4,15,808,3,40.0,37.25 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-08,2,6,18,910,5,41.8,38.75 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-14,2,4,13,876,4,43.6,39.8 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-04,1,3,14,965,3,16.8,16.8 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-09,1,2,9,433,1,18.1,18.1 +A1086,River Labs,software,smb,EMEA,FR,2025-06-10,1,3,14,640,3,23.2,23.2 +A1086,River Labs,software,smb,EMEA,FR,2025-06-20,1,3,16,689,2,23.5,23.5 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-07,1,3,7,474,1,16.4,16.4 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-13,2,7,37,1920,8,33.9,28.799999999999997 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-23,2,7,36,2532,7,34.0,30.05 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-12,1,4,14,767,4,21.0,21.0 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-05,3,5,38,2772,7,27.5,24.666666666666668 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-28,3,3,16,1079,3,31.3,27.766666666666666 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-29,3,3,17,935,3,32.6,28.400000000000002 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-30,3,4,33,1777,6,32.5,28.866666666666664 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-04,2,7,42,2480,5,31.2,30.15 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-09,2,7,33,2160,5,32.0,31.05 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-17,3,9,66,4132,14,57.6,49.800000000000004 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-16,2,4,28,1513,5,28.6,25.0 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-21,2,3,14,710,3,27.9,24.549999999999997 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-25,2,3,24,1266,5,28.8,25.25 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-12,1,1,8,459,1,21.3,21.3 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-13,3,9,45,2659,11,22.2,20.833333333333332 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-23,3,7,41,2495,8,23.4,22.3 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-10,2,6,30,1886,6,24.1,22.200000000000003 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-20,2,7,36,1880,7,25.1,23.35 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-12,1,5,20,1468,3,24.3,24.3 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-06,1,5,18,1038,3,23.6,23.6 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-15,1,3,8,572,2,25.6,25.6 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-11,1,4,19,1396,4,24.5,24.5 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-19,1,4,17,758,4,25.5,25.5 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-24,4,13,91,5372,15,64.4,52.45 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-17,1,1,7,385,2,15.0,15.0 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-10,1,3,15,692,3,20.1,20.1 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-20,1,2,10,705,2,20.3,20.3 +A1021,Apex Logistics,software,smb,NA,US,2025-06-03,1,3,12,868,3,20.2,20.2 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-11,1,1,9,380,1,13.8,13.8 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-19,1,2,9,637,2,16.2,16.2 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-02,1,6,21,1058,4,11.7,11.7 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-11,2,4,22,1129,6,17.1,16.65 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-19,2,3,18,1025,4,18.0,17.7 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-02,1,4,16,1217,3,21.7,21.7 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-06,1,5,20,1530,5,11.5,11.5 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-15,1,2,5,398,1,13.3,13.3 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-04,2,4,25,1285,4,18.3,15.850000000000001 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-09,2,4,19,1136,4,18.7,16.15 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-03,1,4,25,1545,5,29.3,29.3 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-01,4,7,38,2215,6,43.3,38.125 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-08,4,9,38,2191,7,44.3,39.02499999999999 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-14,4,6,34,2222,6,44.6,39.8 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-07,3,5,19,1203,3,37.1,30.133333333333336 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-11,2,10,46,2656,9,35.3,28.15 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-19,2,12,53,3498,12,35.7,29.75 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-01,1,3,6,375,1,15.5,15.5 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-08,1,1,3,209,1,16.1,16.1 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-14,1,3,6,492,1,17.0,17.0 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-06,2,4,27,1914,6,37.1,31.1 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-15,2,4,16,932,4,39.4,33.2 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-24,2,8,48,2418,12,63.7,58.900000000000006 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-07,2,2,7,378,2,22.2,21.95 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-01,1,3,8,444,2,17.8,17.8 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-08,1,2,6,327,2,19.3,19.3 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-14,1,4,8,415,2,20.6,20.6 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-07,2,4,15,765,3,37.2,37.0 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-06,2,8,38,1777,5,31.5,25.55 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-15,2,4,13,734,3,32.7,27.1 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-24,2,5,35,1792,6,34.7,31.950000000000003 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-24,3,9,64,3896,11,51.6,48.96666666666667 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-05,1,2,12,693,2,11.9,11.9 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-28,1,3,8,531,1,15.9,15.9 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-29,1,2,5,346,1,14.3,14.3 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-30,1,2,9,669,1,16.3,16.3 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-05,4,12,80,4143,15,64.4,50.925 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-28,4,8,38,2122,6,69.2,53.949999999999996 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-29,4,7,36,2012,7,70.5,55.349999999999994 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-30,4,13,81,5167,22,68.8,55.1 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-04,1,3,16,1098,2,12.2,12.2 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-09,1,2,11,631,2,14.0,14.0 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-10,2,12,69,4382,12,65.7,65.0 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-20,2,12,55,3147,9,68.0,66.65 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-01,3,8,34,1912,9,51.6,39.56666666666667 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-08,3,10,37,2383,6,52.5,40.833333333333336 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-14,3,4,25,1683,5,53.6,40.833333333333336 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-10,3,15,87,5109,19,68.0,58.23333333333333 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-20,3,15,77,4330,17,67.3,59.43333333333333 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-04,1,2,11,726,1,16.6,16.6 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-09,1,1,7,321,1,16.5,16.5 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-06,1,2,11,615,3,23.0,23.0 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-15,1,1,4,209,1,24.3,24.3 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-17,2,8,43,2185,10,34.4,29.049999999999997 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-01,3,5,19,1085,6,39.0,36.5 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-08,3,3,15,941,3,39.6,37.4 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-14,3,3,15,873,3,40.7,37.9 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-12,3,8,46,2971,7,41.2,37.7 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-16,1,2,13,915,2,30.3,30.3 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-21,1,2,7,483,2,31.4,31.4 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-25,1,1,12,677,2,31.8,31.8 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-13,3,7,40,2351,9,41.2,38.76666666666667 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-23,3,9,43,3021,9,43.0,40.233333333333334 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-16,3,9,57,3440,12,54.9,42.46666666666667 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-21,3,3,22,1152,6,55.5,43.300000000000004 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-25,3,8,66,3182,10,56.6,44.4 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-13,2,6,30,2209,6,22.7,20.2 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-23,2,4,20,883,4,24.1,21.75 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-05,1,4,22,1309,5,37.4,37.4 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-28,1,1,5,263,1,42.7,42.7 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-29,1,3,8,540,2,40.6,40.6 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-30,1,2,14,861,2,42.1,42.1 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-06,1,6,25,1812,5,26.9,26.9 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-15,1,3,9,539,2,28.9,28.9 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-02,2,9,49,2232,9,42.9,41.849999999999994 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-07,3,8,29,1715,7,57.1,46.6 +A1063,Maple Global,education,smb,NA,CA,2025-06-24,1,1,8,458,1,22.7,22.7 +A1064,Atlas Health,education,smb,NA,US,2025-06-04,1,2,10,535,2,22.7,22.7 +A1064,Atlas Health,education,smb,NA,US,2025-06-09,1,3,11,633,3,24.4,24.4 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-24,2,9,44,3086,9,41.7,40.45 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-02,1,2,14,778,2,28.8,28.8 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-01,3,5,28,1574,7,56.6,41.06666666666666 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-08,3,6,29,1704,5,57.3,41.8 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-14,3,3,24,1303,5,57.7,42.866666666666674 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-12,3,13,78,5159,14,64.8,57.46666666666667 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-07,1,2,6,429,1,14.9,14.9 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-17,2,5,34,1926,8,35.3,28.7 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-17,2,11,69,4523,15,68.5,49.7 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-02,2,9,43,2274,9,18.2,17.6 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-17,3,9,50,3337,9,31.6,30.73333333333333 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-10,1,6,24,1683,4,23.0,23.0 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-20,1,7,30,1431,6,25.0,25.0 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-16,2,9,41,2366,8,40.5,31.95 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-21,2,8,22,1391,3,42.0,32.9 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-25,2,10,53,3011,10,42.5,33.6 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-04,3,5,41,2309,7,33.0,28.166666666666668 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-09,3,6,35,2012,7,32.7,28.400000000000002 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-07,3,5,18,1020,3,33.4,26.766666666666666 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-18,4,12,85,5356,15,67.0,55.225 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-22,4,7,37,2088,8,67.2,55.150000000000006 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-26,4,11,81,4135,18,68.0,55.8 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-27,4,13,81,3941,19,67.0,55.599999999999994 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-03,2,11,50,2685,11,40.7,29.650000000000002 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-17,2,5,36,1780,10,29.4,26.45 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-04,1,1,12,735,2,31.2,31.2 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-09,1,3,15,825,3,32.0,32.0 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-12,2,6,31,1882,5,42.0,39.5 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-06,1,3,12,705,3,17.7,17.7 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-15,1,1,4,282,1,18.9,18.9 +A1086,River Labs,software,smb,EMEA,FR,2025-06-11,1,1,7,447,2,23.2,23.2 +A1086,River Labs,software,smb,EMEA,FR,2025-06-19,1,3,11,588,3,24.6,24.6 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-24,1,3,15,767,4,16.9,16.9 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-16,2,10,46,2916,10,33.2,28.400000000000002 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-21,2,6,17,998,4,34.1,30.6 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-25,2,8,42,2775,8,36.8,31.95 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-01,1,2,6,433,1,19.1,19.1 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-08,1,2,5,268,1,20.2,20.2 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-14,1,3,7,467,1,20.8,20.8 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-10,3,5,41,2008,7,28.7,25.2 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-20,3,5,34,2014,7,29.4,26.96666666666667 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-12,2,6,33,2254,7,32.8,31.65 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-07,2,6,22,1478,4,60.7,51.6 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-11,3,11,77,4653,14,55.8,48.6 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-19,3,8,59,3438,13,57.0,50.0 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-18,2,5,29,1371,5,28.7,25.6 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-22,2,3,13,766,2,28.7,25.799999999999997 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-26,2,5,28,1720,7,29.8,26.0 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-27,2,4,26,1472,5,31.6,28.1 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-04,1,3,15,1111,4,20.5,20.5 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-09,1,3,12,861,2,21.6,21.6 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-03,3,10,53,2496,9,20.8,19.633333333333333 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-05,2,7,37,2041,6,23.7,21.25 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-28,2,7,19,1320,4,27.3,24.55 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-29,2,5,16,962,4,27.7,26.049999999999997 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-30,2,6,32,2031,7,26.6,23.9 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-04,1,6,20,1056,4,24.3,24.3 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-09,1,6,25,1837,3,24.7,24.7 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-01,1,4,7,414,1,23.2,23.2 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-08,1,2,5,399,1,24.2,24.2 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-14,1,3,7,560,1,24.1,24.1 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-17,1,5,23,1272,6,23.6,23.6 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-07,3,6,20,1109,4,24.5,21.566666666666666 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-02,4,11,74,4472,16,62.3,49.1 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-07,2,5,18,1138,5,30.1,29.700000000000003 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-11,1,1,8,581,2,14.6,14.6 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-19,1,1,7,484,1,17.1,17.1 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-05,1,1,8,343,2,19.4,19.4 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-28,1,1,3,149,0,21.4,21.4 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-29,1,1,4,177,1,20.5,20.5 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-30,1,3,13,677,2,23.0,23.0 +A1021,Apex Logistics,software,smb,NA,US,2025-06-13,1,6,26,1450,5,22.2,22.2 +A1021,Apex Logistics,software,smb,NA,US,2025-06-23,1,5,18,877,4,24.6,24.6 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-17,1,1,7,467,1,15.3,15.3 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-24,1,5,19,1114,2,15.3,15.3 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-17,2,4,20,1147,4,18.4,17.2 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-24,1,4,19,1272,3,25.1,25.1 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-01,1,3,6,348,1,10.3,10.3 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-08,1,3,6,483,1,11.7,11.7 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-14,1,4,9,585,3,13.5,13.5 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-12,2,3,17,1091,4,18.2,15.649999999999999 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-13,1,3,15,678,4,30.1,30.1 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-23,1,4,18,1238,5,32.0,32.0 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-06,4,10,80,4841,14,44.4,38.875 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-15,4,8,37,2381,8,44.8,39.8 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-17,2,12,58,3124,11,36.6,29.85 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-06,1,1,7,459,1,15.8,15.8 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-15,1,3,8,525,2,17.9,17.9 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-01,2,4,15,780,3,36.9,30.65 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-08,2,4,13,800,3,37.6,32.1 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-14,2,4,14,846,4,39.3,32.95 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-02,2,9,46,2770,10,61.9,56.849999999999994 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-06,1,5,17,1202,3,19.2,19.2 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-15,1,2,5,297,1,21.0,21.0 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-01,2,3,12,723,2,30.2,24.15 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-08,2,5,16,907,3,32.1,25.75 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-14,2,4,16,1136,2,32.1,26.3 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-02,2,6,36,1979,9,30.4,28.15 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-02,3,11,68,4052,13,49.2,46.56666666666666 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-10,1,4,16,1107,4,13.3,13.3 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-20,1,3,15,1058,2,13.9,13.9 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-10,4,13,93,5245,21,66.4,52.125 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-20,4,15,94,4885,17,67.5,53.0 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-12,1,4,15,1070,2,14.1,14.1 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-05,2,14,67,4859,18,65.4,64.4 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-28,2,8,27,1687,5,68.9,67.80000000000001 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-29,2,7,23,1187,5,67.9,67.35 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-30,2,13,52,3109,12,70.2,68.55000000000001 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-06,3,12,74,3723,14,53.2,40.53333333333334 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-15,3,6,29,1505,5,53.2,41.1 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-05,3,16,89,5829,20,67.3,57.63333333333333 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-28,3,10,35,2225,6,70.0,61.36666666666667 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-29,3,10,38,2653,8,70.0,61.5 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-30,3,15,84,5189,14,68.8,60.06666666666666 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-12,1,2,11,635,3,17.4,17.4 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-01,1,3,8,506,1,23.4,23.4 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-08,1,1,4,305,1,23.5,23.5 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-14,1,1,4,229,1,25.9,25.9 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-11,2,7,37,2260,5,33.6,28.9 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-19,2,10,45,2532,8,34.9,29.15 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-06,3,5,34,1728,5,39.6,36.63333333333333 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-15,3,5,20,1211,4,41.6,38.53333333333333 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-04,3,8,55,3206,8,40.3,36.53333333333334 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-09,3,6,41,2645,10,41.5,37.06666666666667 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-18,1,4,24,1705,5,30.4,30.4 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-22,1,3,9,626,2,31.8,31.8 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-26,1,3,15,1004,2,33.4,33.4 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-27,1,4,19,936,4,30.5,30.5 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-03,3,7,46,3289,7,39.7,37.26666666666667 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-18,3,8,63,3145,10,54.8,42.93333333333334 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-22,3,6,30,2118,6,55.2,43.199999999999996 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-26,3,9,64,3817,10,57.2,44.800000000000004 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-27,3,5,47,3264,10,56.7,44.6 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-03,2,6,30,1690,6,21.6,19.05 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-10,1,4,19,1217,3,38.9,38.9 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-20,1,4,17,1213,5,39.7,39.7 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-01,1,4,9,625,3,26.9,26.9 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-08,1,3,10,769,1,27.9,27.9 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-14,1,3,9,504,2,28.5,28.5 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-24,2,9,54,3498,11,46.5,44.6 +A1063,Maple Global,education,smb,NA,CA,2025-06-02,1,3,12,766,2,19.4,19.4 +A1064,Atlas Health,education,smb,NA,US,2025-06-12,1,2,12,674,2,24.5,24.5 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-07,2,2,10,549,2,22.3,21.25 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-02,2,8,35,1949,9,36.5,35.9 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-24,1,1,12,689,3,32.9,32.9 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-06,3,7,54,3431,12,57.1,41.46666666666667 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-15,3,6,29,1678,7,58.7,42.833333333333336 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-04,3,7,63,3386,11,64.6,56.43333333333334 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-09,3,9,62,3780,11,65.3,57.06666666666666 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-11,2,5,34,2323,7,35.3,27.349999999999998 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-19,2,6,31,2138,7,36.4,29.2 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-11,2,10,59,3580,12,67.6,48.9 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-19,2,11,59,3860,14,69.5,50.1 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-24,2,9,45,2524,10,20.8,20.5 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-11,3,7,47,2542,8,31.0,30.0 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-19,3,12,68,4309,14,32.6,31.433333333333334 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-05,1,4,15,989,3,23.8,23.8 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-28,1,4,9,544,3,25.1,25.1 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-29,1,3,8,470,2,25.9,25.9 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-30,1,6,19,1340,4,26.7,26.7 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-18,2,10,41,2323,9,41.0,32.05 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-22,2,7,18,1130,4,41.8,32.9 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-26,2,12,56,3209,14,42.8,33.55 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-27,2,8,39,2195,6,40.8,32.95 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-12,3,6,43,2519,9,33.4,28.5 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-16,4,12,86,5975,21,66.8,54.400000000000006 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-21,4,7,35,1869,8,66.4,54.825 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-25,4,11,89,4491,18,67.3,55.27499999999999 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-13,2,8,35,2079,6,42.2,31.150000000000002 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-23,2,8,36,2590,6,43.3,31.9 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-11,2,5,29,1623,4,27.1,24.85 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-19,2,6,36,2532,7,28.6,26.450000000000003 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-12,1,2,12,801,2,32.2,32.2 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-04,2,9,50,3461,11,40.6,37.95 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-09,2,7,32,2299,7,41.4,38.75 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-01,1,1,4,199,1,16.2,16.2 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-08,1,1,4,291,1,18.2,18.2 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-14,1,1,4,277,1,18.8,18.8 +A1086,River Labs,software,smb,EMEA,FR,2025-06-17,1,1,8,360,2,25.1,25.1 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-02,1,5,20,1457,4,15.3,15.3 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-18,2,8,48,2954,8,33.1,29.4 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-22,2,4,15,933,2,35.5,30.6 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-26,2,10,46,2618,11,36.0,31.45 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-27,2,8,43,2314,10,36.2,31.3 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-06,1,4,14,696,4,20.7,20.7 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-15,1,3,6,315,1,21.7,21.7 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-16,3,4,31,1920,6,29.5,26.166666666666668 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-21,3,4,19,1032,4,29.8,26.666666666666668 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-25,3,4,35,1697,5,31.7,28.433333333333334 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-24,2,6,34,2035,6,33.6,33.1 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-01,2,4,20,1325,4,58.8,49.599999999999994 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-08,2,5,22,1463,3,60.4,51.15 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-14,2,7,26,1638,5,60.5,51.1 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-13,3,10,65,4178,14,56.9,49.666666666666664 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-23,3,8,55,3550,14,57.4,50.4 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-05,2,6,29,1916,4,26.4,23.35 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-28,2,2,12,675,2,29.5,27.0 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-29,2,3,12,597,2,29.9,27.35 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-30,2,3,24,1300,4,32.3,28.299999999999997 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-02,1,2,10,521,2,20.7,20.7 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-17,3,9,55,3206,11,22.5,21.666666666666668 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-18,2,10,56,3851,10,25.4,23.45 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-22,2,5,17,1091,3,24.9,22.549999999999997 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-26,2,8,38,2676,10,27.6,24.3 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-27,2,10,43,3013,7,25.7,23.799999999999997 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-02,1,4,17,1152,5,22.6,22.6 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-07,1,3,6,299,1,23.5,23.5 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-03,1,3,13,601,2,23.1,23.1 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-01,3,3,16,897,3,23.6,20.666666666666668 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-08,3,5,18,1222,3,23.9,21.366666666666664 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-14,3,5,20,1033,5,24.9,22.933333333333334 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-04,4,14,95,5805,22,62.6,49.475 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-09,4,18,104,6199,18,63.2,49.85 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-01,2,3,13,822,2,30.1,29.25 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-08,2,2,10,477,2,30.8,30.6 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-14,2,3,11,504,3,31.1,30.6 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-13,1,1,7,459,2,15.9,15.9 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-23,1,1,7,342,2,17.1,17.1 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-18,1,2,12,692,2,20.8,20.8 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-22,1,1,4,237,1,21.7,21.7 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-26,1,2,10,654,1,20.6,20.6 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-27,1,2,12,875,3,23.0,23.0 +A1021,Apex Logistics,software,smb,NA,US,2025-06-11,1,4,16,903,4,21.9,21.9 +A1021,Apex Logistics,software,smb,NA,US,2025-06-19,1,4,19,1249,4,22.4,22.4 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-03,1,1,7,309,2,13.3,13.3 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-12,1,4,20,1443,4,13.5,13.5 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-03,2,3,19,1067,3,16.6,15.5 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-12,1,4,16,710,2,23.5,23.5 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-07,1,4,8,417,2,12.0,12.0 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-24,2,5,28,1652,5,21.1,19.25 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-11,1,4,21,1457,3,30.5,30.5 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-19,1,5,21,966,4,30.4,30.4 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-06,3,7,41,2196,9,37.0,29.933333333333334 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-15,3,5,20,1115,5,37.3,30.666666666666668 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-03,2,12,53,3667,10,34.2,27.150000000000002 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-07,2,3,13,690,3,37.0,31.6 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-04,2,6,49,2758,11,63.1,57.650000000000006 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-09,2,8,47,3054,9,63.7,58.25 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-06,2,4,18,1205,5,22.2,22.1 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-15,2,3,10,498,3,23.9,23.4 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-06,2,7,35,2172,6,37.4,36.599999999999994 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-15,2,3,12,745,2,37.9,37.2 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-07,2,5,15,916,3,31.2,25.4 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-04,2,8,46,2584,7,31.5,28.8 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-09,2,7,34,2071,9,31.4,28.95 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-04,3,12,83,5446,21,49.8,47.4 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-09,3,12,74,4687,16,50.3,48.1 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-16,1,3,12,813,3,13.1,13.1 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-21,1,3,7,487,2,15.2,15.2 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-25,1,3,16,850,2,16.7,16.7 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-16,4,11,81,5232,14,65.1,52.099999999999994 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-21,4,7,35,2381,7,66.2,53.075 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-25,4,12,93,6087,15,67.0,53.275000000000006 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-24,1,2,10,673,3,13.9,13.9 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-18,2,10,54,3815,12,68.2,66.55000000000001 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-22,2,7,22,1513,4,67.6,66.3 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-26,2,11,58,3415,14,69.8,68.5 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-27,2,12,60,3860,9,67.7,67.30000000000001 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-18,3,15,99,5957,21,69.7,60.166666666666664 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-22,3,9,33,2191,6,69.6,59.53333333333333 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-26,3,12,75,4521,13,71.0,60.9 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-27,3,15,78,4394,16,69.9,61.13333333333333 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-24,1,1,7,312,1,20.4,20.4 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-07,1,2,6,345,1,23.3,23.3 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-13,2,8,35,1966,7,33.6,28.9 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-23,2,7,36,2041,9,35.5,30.4 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-02,3,8,47,2485,9,40.4,36.36666666666667 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-05,1,2,13,577,3,28.5,28.5 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-28,1,2,7,315,2,32.2,32.2 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-29,1,1,5,239,1,33.5,33.5 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-30,1,2,13,700,2,31.0,31.0 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-17,3,9,50,3170,11,41.7,38.93333333333334 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-05,3,8,62,3977,14,52.5,40.93333333333334 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-28,3,6,29,1547,6,56.8,44.666666666666664 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-29,3,6,27,1681,5,57.9,45.76666666666667 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-30,3,6,53,3242,11,57.8,45.1 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-17,2,4,23,1343,4,23.6,20.9 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-16,1,3,16,999,3,38.4,38.4 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-21,1,3,10,678,2,40.4,40.4 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-25,1,4,22,1464,5,40.6,40.6 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-07,1,5,14,1017,4,27.2,27.2 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-12,2,10,56,3283,10,44.8,43.3 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-06,3,13,78,4611,15,56.9,46.23333333333333 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-15,3,9,33,2195,7,58.3,47.86666666666667 +A1063,Maple Global,education,smb,NA,CA,2025-06-04,1,1,8,370,2,19.7,19.7 +A1063,Maple Global,education,smb,NA,CA,2025-06-09,1,1,7,505,1,19.9,19.9 +A1064,Atlas Health,education,smb,NA,US,2025-06-24,1,1,7,382,1,26.5,26.5 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-01,2,5,15,794,3,21.1,20.200000000000003 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-08,2,4,13,792,2,22.9,21.75 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-14,2,4,14,813,2,22.8,22.450000000000003 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-04,2,6,32,1560,6,37.2,36.25 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-09,2,9,39,2437,8,38.0,36.85 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-12,1,2,13,625,2,30.8,30.8 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-02,3,9,62,4160,14,63.9,56.300000000000004 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-06,1,5,20,1358,4,14.1,14.1 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-15,1,2,5,255,1,15.1,15.1 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-13,2,9,41,2662,10,35.3,27.9 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-23,2,6,35,1916,10,37.3,29.95 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-13,2,10,55,4026,12,67.2,48.900000000000006 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-23,2,9,55,3367,11,70.5,50.95 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-12,2,7,37,2110,9,20.0,19.55 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-13,3,8,43,3018,8,31.6,30.366666666666664 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-23,3,8,45,2796,9,31.4,31.03333333333333 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-18,1,5,22,1406,3,24.8,24.8 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-22,1,4,9,676,2,26.7,26.7 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-26,1,6,26,1445,3,26.7,26.7 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-27,1,4,15,980,4,28.4,28.4 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-05,2,12,47,3135,9,38.6,30.15 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-28,2,6,18,953,3,41.6,32.35 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-29,2,7,21,1268,4,42.1,33.6 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-30,2,10,47,2790,13,43.0,33.0 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-24,3,3,35,2289,7,35.2,30.400000000000002 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-06,3,8,43,2015,10,32.8,26.333333333333332 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-15,3,5,20,1254,4,34.1,27.566666666666666 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-10,4,13,94,5674,20,65.0,53.474999999999994 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-20,4,13,84,4795,15,67.1,54.8 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-11,2,7,34,1989,8,40.9,30.4 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-19,2,8,40,2315,9,43.0,32.1 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-13,2,4,24,1368,4,26.9,24.85 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-23,2,6,36,2199,5,28.7,26.9 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-24,1,3,17,910,5,33.5,33.5 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-02,2,9,36,2608,9,41.1,37.900000000000006 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-07,1,3,6,475,2,17.5,17.5 +A1086,River Labs,software,smb,EMEA,FR,2025-06-03,1,3,16,1117,2,22.9,22.9 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-04,1,5,18,1374,3,16.4,16.4 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-09,1,4,16,945,3,16.0,16.0 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-05,2,9,42,2531,9,31.9,27.5 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-28,2,7,22,1397,5,36.2,30.900000000000002 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-29,2,5,15,1000,3,36.5,32.15 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-30,2,9,41,2330,9,36.4,31.9 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-18,3,4,38,1968,8,31.0,27.5 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-22,3,3,16,817,4,30.9,27.333333333333332 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-26,3,5,35,2167,7,31.7,28.066666666666663 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-27,3,7,44,2761,9,30.6,27.200000000000003 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-02,2,8,32,2239,8,31.0,30.25 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-06,2,9,47,3083,7,59.4,50.0 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-15,2,5,20,1110,4,61.1,51.900000000000006 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-03,3,9,71,3676,13,56.1,48.26666666666667 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-10,2,3,25,1706,4,28.1,24.15 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-20,2,2,19,1047,4,30.5,26.25 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-24,1,2,11,799,2,22.7,22.7 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-11,3,9,52,3329,12,21.1,19.666666666666668 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-19,3,9,48,2930,8,22.3,20.7 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-16,2,10,43,2496,6,25.4,22.95 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-21,2,4,14,741,3,26.1,23.75 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-25,2,6,38,2341,7,26.3,23.6 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-24,1,5,23,1091,3,27.0,27.0 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-13,1,2,11,812,1,24.3,24.3 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-23,1,5,17,981,3,26.3,26.3 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-06,3,3,30,1435,7,24.5,21.5 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-15,3,3,17,1091,3,24.6,22.400000000000002 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-12,4,16,90,5562,17,63.5,50.525 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-06,2,4,23,1120,5,30.1,29.9 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-15,2,4,14,882,2,30.8,30.8 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-03,1,1,8,563,2,14.3,14.3 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-16,1,3,13,886,3,20.6,20.6 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-21,1,1,4,200,1,19.9,19.9 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-25,1,3,14,768,3,21.3,21.3 +A1021,Apex Logistics,software,smb,NA,US,2025-06-17,1,5,24,1738,4,21.8,21.8 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-13,1,2,11,781,3,14.9,14.9 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-23,1,1,8,375,2,16.6,16.6 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-04,1,5,19,1141,4,11.8,11.8 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-09,1,5,22,1301,4,12.7,12.7 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-13,2,2,15,887,3,18.4,17.1 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-23,2,4,20,1032,6,19.7,19.299999999999997 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-04,1,2,11,782,2,22.0,22.0 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-09,1,5,16,885,3,22.3,22.3 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-02,2,5,19,1064,4,17.9,15.25 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-17,1,5,21,1066,3,30.2,30.2 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-07,4,5,33,1854,6,43.5,39.025 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-01,3,3,16,781,4,36.7,29.566666666666666 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-08,3,4,16,942,3,36.6,29.766666666666666 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-14,3,4,17,1124,3,38.0,31.0 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-13,2,9,43,2119,6,34.5,28.2 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-23,2,11,40,2727,8,37.2,29.85 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-07,1,2,5,335,1,16.5,16.5 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-12,2,6,39,2006,8,63.5,58.45 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-01,2,2,8,551,2,22.0,21.8 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-08,2,3,10,637,2,21.9,21.7 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-14,2,2,8,476,2,23.7,22.85 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-07,1,3,7,516,1,18.8,18.8 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-01,2,3,14,953,3,36.6,35.95 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-08,2,2,11,633,2,37.2,36.95 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-14,2,2,10,482,2,37.7,37.7 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-12,2,7,34,2182,7,32.6,30.05 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-12,3,11,69,4085,18,50.4,47.76666666666666 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-18,1,5,24,1722,4,15.0,15.0 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-22,1,2,6,329,1,14.2,14.2 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-26,1,5,17,1305,4,16.4,16.4 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-27,1,4,19,976,4,16.4,16.4 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-18,4,15,106,6207,26,67.0,52.75 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-22,4,7,35,1975,7,68.2,53.525 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-26,4,12,77,4118,15,68.2,54.6 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-27,4,9,68,3868,11,69.0,54.05 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-02,1,4,20,1188,2,12.1,12.1 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-16,2,12,67,3653,14,67.6,66.44999999999999 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-21,2,5,21,1193,3,67.2,66.4 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-25,2,10,63,2835,13,69.5,68.25 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-07,3,9,31,1979,6,53.7,41.06666666666667 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-16,3,15,78,4032,16,68.7,59.56666666666667 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-21,3,7,32,1841,6,69.2,60.133333333333326 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-25,3,15,88,5751,19,69.3,60.46666666666666 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-02,1,1,8,334,2,15.7,15.7 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-03,2,8,39,2407,7,32.1,27.05 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-07,3,3,16,875,4,39.9,37.199999999999996 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-24,3,11,64,3259,11,43.4,38.86666666666667 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-10,1,2,16,949,2,28.8,28.8 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-20,1,1,11,535,2,31.2,31.2 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-11,3,5,42,2479,8,41.5,39.166666666666664 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-19,3,4,33,1921,6,42.7,39.96666666666667 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-10,3,5,56,3121,9,54.4,42.13333333333333 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-20,3,7,55,2992,11,55.3,43.133333333333326 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-11,2,3,18,1236,3,22.3,19.85 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-19,2,6,29,1854,4,23.9,20.799999999999997 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-18,1,3,21,1373,6,38.7,38.7 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-22,1,3,10,578,2,41.3,41.3 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-26,1,3,17,1264,3,40.8,40.8 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-27,1,4,18,1123,3,41.1,41.1 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-04,2,11,69,4076,10,43.2,42.25 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-09,2,12,53,3399,10,44.6,42.900000000000006 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-01,3,7,32,1832,7,55.6,45.53333333333333 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-08,3,6,29,1927,6,57.2,46.86666666666667 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-14,3,6,30,1888,5,58.3,47.866666666666674 +A1063,Maple Global,education,smb,NA,CA,2025-06-12,1,1,7,317,2,20.9,20.9 +A1064,Atlas Health,education,smb,NA,US,2025-06-02,1,4,16,1218,3,22.7,22.7 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-06,2,7,38,2400,9,21.6,20.950000000000003 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-15,2,4,13,759,2,22.8,21.5 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-12,2,9,48,3394,9,38.1,37.5 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-04,1,3,19,1345,5,30.3,30.3 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-09,1,3,17,958,3,30.3,30.3 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-07,3,4,24,1243,6,56.9,41.800000000000004 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-24,3,8,63,3604,8,67.3,59.199999999999996 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-01,1,3,7,468,1,13.8,13.8 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-08,1,1,4,291,1,13.8,13.8 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-14,1,3,8,617,2,14.9,14.9 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-03,2,7,43,2550,10,33.4,26.299999999999997 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-03,2,9,58,2649,13,66.8,47.75 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-04,2,10,51,2479,12,18.4,18.25 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-09,2,9,42,2295,7,18.1,18.05 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-03,3,9,51,2898,10,30.3,28.933333333333337 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-16,1,5,17,1049,4,25.5,25.5 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-21,1,3,8,496,1,26.2,26.2 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-25,1,5,21,1491,4,26.2,26.2 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-10,2,9,43,2378,6,40.7,31.35 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-20,2,10,49,3316,12,41.0,32.25 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-02,3,7,45,2507,10,32.2,27.366666666666664 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-01,3,4,19,1074,4,32.1,25.599999999999998 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-08,3,4,18,1142,3,33.2,26.333333333333332 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-14,3,6,20,1171,4,34.2,27.666666666666668 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-05,4,14,93,5421,17,64.3,52.95 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-28,4,8,39,2658,6,68.5,55.425 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-29,4,12,46,3161,8,68.3,55.775000000000006 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-30,4,12,79,5339,14,67.3,56.025000000000006 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-17,2,6,39,2073,9,42.3,32.05 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-03,2,8,38,2431,10,25.7,23.75 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-02,1,3,17,1080,4,31.5,31.5 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-24,2,6,31,1714,7,42.9,40.2 +A1086,River Labs,software,smb,EMEA,FR,2025-06-13,1,1,7,457,1,22.9,22.9 +A1086,River Labs,software,smb,EMEA,FR,2025-06-23,1,2,8,424,2,25.3,25.3 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-12,1,4,19,935,3,17.1,17.1 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-10,2,8,38,2607,8,33.7,28.700000000000003 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-20,2,7,36,2271,8,34.0,29.05 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-07,1,3,6,302,2,20.5,20.5 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-03,3,5,43,2624,9,27.7,24.666666666666668 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-04,2,9,51,2980,10,60.1,50.25 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-09,2,12,52,2449,11,60.8,51.55 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-18,3,8,62,3419,13,58.3,50.73333333333333 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-22,3,6,27,1291,6,58.6,50.73333333333334 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-26,3,10,73,4622,11,60.3,51.93333333333334 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-27,3,10,67,4061,16,59.2,51.76666666666667 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-11,2,6,37,2348,8,28.7,24.6 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-19,2,5,30,1741,5,27.9,24.45 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-07,1,1,4,236,1,21.6,21.6 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-10,3,7,45,2692,7,21.3,20.0 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-20,3,12,56,3579,12,22.8,21.7 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-13,2,11,49,3192,9,23.1,21.450000000000003 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-23,2,8,40,2508,7,27.3,23.6 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-07,1,3,8,617,1,24.4,24.4 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-02,1,4,15,672,3,22.3,22.3 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-16,1,5,21,1585,6,23.9,23.9 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-21,1,2,6,418,2,26.5,26.5 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-25,1,2,12,509,3,25.5,25.5 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-04,3,5,40,1803,8,23.2,20.833333333333332 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-09,3,5,39,2284,8,24.1,21.833333333333332 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-01,4,10,43,2483,11,62.5,49.2 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-08,4,10,42,2055,8,63.0,50.025 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-14,4,8,39,2794,5,64.3,50.900000000000006 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-04,2,4,32,1935,7,29.9,29.45 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-09,2,5,29,1689,5,30.5,30.1 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-18,1,1,8,526,2,15.0,15.0 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-22,1,1,4,181,1,15.5,15.5 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-26,1,1,7,296,2,17.9,17.9 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-27,1,1,7,468,1,16.5,16.5 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-13,1,1,7,357,1,20.5,20.5 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-23,1,1,8,381,1,21.6,21.6 +A1021,Apex Logistics,software,smb,NA,US,2025-06-05,1,4,19,964,3,21.4,21.4 +A1021,Apex Logistics,software,smb,NA,US,2025-06-28,1,3,7,555,2,25.0,25.0 +A1021,Apex Logistics,software,smb,NA,US,2025-06-29,1,4,9,452,2,24.5,24.5 +A1021,Apex Logistics,software,smb,NA,US,2025-06-30,1,5,18,897,5,25.9,25.9 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-16,1,2,10,465,2,15.8,15.8 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-21,1,1,4,259,0,15.7,15.7 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-25,1,1,9,457,1,17.6,17.6 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-06,1,6,19,964,5,12.5,12.5 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-15,1,3,7,488,2,13.7,13.7 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-16,2,2,13,736,2,18.7,17.549999999999997 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-21,2,2,8,505,1,19.0,18.8 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-25,2,2,16,910,4,20.4,19.75 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-06,1,2,8,353,2,21.8,21.8 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-15,1,1,4,300,1,24.1,24.1 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-02,1,5,18,1126,2,11.3,11.3 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-05,1,4,23,1385,6,29.5,29.5 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-28,1,1,5,315,1,33.2,33.2 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-29,1,1,5,307,1,32.0,32.0 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-30,1,4,18,998,2,34.1,34.1 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-24,4,10,92,5372,20,46.7,41.55 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-12,3,7,45,2807,9,37.1,30.733333333333334 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-16,2,12,48,3162,7,36.0,29.25 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-21,2,4,14,878,2,36.7,30.150000000000002 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-25,2,9,50,2646,7,38.4,30.7 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-24,1,3,14,963,3,18.6,18.6 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-02,2,7,35,1886,7,37.3,31.299999999999997 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-01,2,4,20,1136,5,61.6,56.35 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-08,2,3,17,933,4,62.3,57.599999999999994 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-14,2,5,20,1192,3,63.3,58.25 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-12,2,3,17,1040,2,23.8,23.450000000000003 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-24,1,5,21,1327,5,22.7,22.7 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-12,2,4,28,1502,7,37.4,36.9 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-02,2,5,27,1571,5,30.4,24.799999999999997 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-01,2,5,17,895,2,30.5,27.85 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-08,2,6,17,1015,3,31.8,29.4 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-14,2,3,12,701,3,33.6,30.700000000000003 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-01,3,7,32,1938,6,49.3,46.76666666666667 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-08,3,5,27,1685,6,50.4,47.96666666666667 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-14,3,6,28,1768,6,51.2,48.56666666666667 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-03,1,3,12,806,3,12.2,12.2 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-03,4,12,96,5577,17,64.8,50.85 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-13,2,12,63,4695,12,66.6,65.4 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-23,2,14,66,3309,13,67.8,66.9 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-24,3,12,73,4145,13,56.3,43.93333333333333 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-13,3,15,81,5019,17,67.8,58.666666666666664 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-23,3,15,80,4976,17,69.1,59.5 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-02,1,4,14,853,3,23.3,23.3 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-18,2,9,43,3016,8,33.6,28.950000000000003 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-22,2,6,18,1171,4,34.6,30.200000000000003 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-26,2,11,49,3013,8,36.6,31.450000000000003 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-27,2,7,37,1702,6,34.3,29.349999999999998 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-24,3,5,40,2637,9,41.3,38.9 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-07,3,7,22,1274,5,40.0,36.63333333333333 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-11,1,3,16,864,3,30.6,30.6 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-19,1,2,14,905,4,29.9,29.9 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-10,3,9,51,2575,7,41.3,38.49999999999999 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-20,3,8,45,2795,7,41.2,39.06666666666667 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-11,3,8,60,4222,9,54.2,42.0 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-19,3,8,62,3473,13,55.0,43.56666666666666 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-10,2,4,20,919,5,22.6,20.3 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-20,2,6,24,1740,4,23.3,20.55 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-03,1,5,25,1433,6,37.1,37.1 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-02,1,7,33,1930,8,26.7,26.7 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-06,2,8,43,3160,9,43.7,42.400000000000006 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-15,2,7,26,1207,4,46.1,44.05 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-12,3,12,76,4216,13,57.5,47.53333333333333 +A1063,Maple Global,education,smb,NA,CA,2025-06-01,1,1,4,281,1,19.0,19.0 +A1063,Maple Global,education,smb,NA,CA,2025-06-08,1,1,4,224,1,19.9,19.9 +A1063,Maple Global,education,smb,NA,CA,2025-06-14,1,2,5,370,1,21.8,21.8 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-04,2,7,40,2733,7,21.4,20.5 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-09,2,7,33,2038,6,22.9,21.65 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-01,2,6,17,1097,4,37.3,36.25 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-08,2,3,13,895,2,38.3,37.15 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-14,2,4,14,782,2,38.8,38.05 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-06,1,3,18,800,4,30.2,30.2 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-15,1,3,9,499,1,31.6,31.6 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-24,3,7,60,3350,13,60.2,44.43333333333334 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-07,3,4,26,1522,5,64.3,56.699999999999996 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-12,1,5,18,1299,3,15.1,15.1 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-18,2,8,43,2718,11,35.2,28.1 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-22,2,3,13,778,3,35.2,28.700000000000003 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-26,2,6,32,1649,7,37.4,30.299999999999997 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-27,2,8,41,2242,7,37.7,29.900000000000002 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-18,2,11,59,3710,14,68.6,49.599999999999994 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-22,2,5,21,1191,5,67.8,48.95 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-26,2,11,63,4117,15,69.1,50.599999999999994 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-27,2,8,47,2600,11,68.7,50.75 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-06,2,9,36,2205,6,18.1,17.8 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-15,2,8,22,1305,4,19.5,19.45 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-18,3,9,56,2928,12,33.0,31.5 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-22,3,5,20,1201,4,31.8,31.0 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-26,3,8,47,2974,10,33.6,31.900000000000002 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-27,3,10,50,3017,12,35.1,32.93333333333333 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-13,1,6,19,1050,5,25.5,25.5 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-23,1,5,17,899,4,26.0,26.0 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-11,2,13,59,3792,9,40.3,31.25 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-19,2,12,58,3555,13,41.9,32.2 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-12,3,6,38,1969,9,32.8,27.3 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-17,4,12,91,5735,20,66.4,54.475 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-05,2,6,36,2175,7,41.2,30.150000000000002 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-28,2,7,18,1315,4,43.7,32.95 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-29,2,6,17,908,3,45.2,33.75 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-30,2,6,33,1980,8,44.9,33.1 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-18,2,7,37,1869,7,29.1,26.9 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-22,2,4,14,756,3,28.4,26.2 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-26,2,4,28,1785,7,27.6,25.950000000000003 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-27,2,4,26,1688,5,29.4,27.299999999999997 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-07,2,3,13,782,3,40.8,38.3 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-02,1,4,16,1159,4,16.8,16.8 +A1086,River Labs,software,smb,EMEA,FR,2025-06-16,1,2,12,649,2,23.6,23.6 +A1086,River Labs,software,smb,EMEA,FR,2025-06-21,1,2,5,338,1,23.5,23.5 +A1086,River Labs,software,smb,EMEA,FR,2025-06-25,1,3,17,972,2,27.3,27.3 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-01,1,1,4,255,1,15.9,15.9 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-08,1,2,5,333,1,16.2,16.2 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-14,1,2,5,265,1,17.2,17.2 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-11,2,7,35,2397,6,32.5,28.45 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-19,2,8,39,2114,10,35.2,29.8 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-24,1,2,13,962,2,21.6,21.6 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-01,3,4,18,1048,3,27.5,24.233333333333334 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-08,3,4,17,1206,3,29.5,25.566666666666663 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-14,3,3,16,944,3,30.6,26.133333333333336 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-11,2,9,40,2359,8,31.6,31.35 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-19,2,5,33,2036,7,32.9,32.849999999999994 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-16,2,10,53,3416,7,62.2,52.400000000000006 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-21,2,5,21,1466,4,62.8,52.9 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-25,2,8,56,3357,8,62.6,53.3 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-12,3,9,64,3738,15,57.2,49.666666666666664 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-17,1,1,7,296,2,22.4,22.4 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-02,3,9,48,2706,9,20.3,19.066666666666666 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-06,2,7,30,1789,5,22.7,20.5 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-15,2,5,15,972,2,24.9,22.5 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-17,1,4,15,681,3,24.2,24.2 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-10,1,3,13,867,3,23.7,23.7 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-20,1,5,23,1098,3,25.7,25.7 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-04,1,2,10,563,2,23.4,23.4 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-09,1,3,12,767,3,22.6,22.6 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-16,3,5,36,1946,7,24.9,21.933333333333337 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-21,3,4,18,1002,3,26.5,23.366666666666664 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-25,3,3,32,2025,5,25.6,23.46666666666667 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-03,4,17,117,5790,27,62.5,49.35 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-16,2,7,33,2308,7,31.5,31.2 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-21,2,3,12,655,2,31.9,31.2 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-25,2,5,35,2488,8,33.5,32.3 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-12,1,1,7,391,1,15.2,15.2 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-06,1,3,12,584,2,19.2,19.2 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-15,1,1,4,192,1,19.7,19.7 +A1021,Apex Logistics,software,smb,NA,US,2025-06-24,1,5,17,1267,3,24.7,24.7 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-04,1,1,7,405,1,13.0,13.0 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-09,1,1,7,309,1,13.7,13.7 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-13,1,6,20,1372,5,14.2,14.2 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-23,1,6,21,1468,3,15.0,15.0 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-04,2,4,25,1434,3,16.4,15.7 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-09,2,3,16,1046,3,17.3,16.3 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-13,1,3,12,857,3,23.1,23.1 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-23,1,4,18,888,5,23.7,23.7 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-10,1,6,25,1105,6,11.6,11.6 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-20,1,6,19,875,4,13.4,13.4 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-11,2,3,18,978,3,18.9,16.65 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-19,2,4,24,1579,5,20.5,17.7 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-24,1,6,23,1262,5,32.5,32.5 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-05,4,7,73,4319,15,43.5,38.55 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-28,4,6,36,2347,6,45.3,41.625 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-29,4,4,31,1658,5,46.3,40.875 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-30,4,7,67,3741,12,46.0,41.15 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-18,3,8,49,2340,9,38.5,31.899999999999995 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-22,3,8,23,1226,5,39.8,31.566666666666663 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-26,3,8,47,2491,11,40.6,32.833333333333336 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-27,3,6,36,2153,6,40.6,33.13333333333333 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-04,2,8,49,2827,10,34.0,27.3 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-09,2,10,48,2685,9,35.1,28.25 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-05,1,2,12,702,2,16.0,16.0 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-28,1,2,5,332,1,17.7,17.7 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-29,1,1,4,239,1,18.7,18.7 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-30,1,4,15,678,3,20.8,20.8 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-10,2,6,33,1865,6,38.5,32.35 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-20,2,5,29,1979,5,39.3,33.9 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-03,2,6,44,2238,9,62.6,57.3 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-18,2,3,19,1168,5,23.1,23.0 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-22,2,4,11,841,3,23.8,23.65 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-26,2,2,15,678,2,25.5,25.25 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-27,2,4,21,1045,3,25.2,24.549999999999997 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-05,1,4,18,1036,4,19.0,19.0 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-28,1,2,6,425,1,21.5,21.5 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-29,1,3,8,526,2,22.3,22.3 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-30,1,6,20,1351,3,22.5,22.5 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-18,2,4,32,1810,5,38.0,37.45 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-22,2,3,12,880,3,39.5,39.5 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-26,2,3,24,1587,5,40.9,39.55 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-27,2,6,32,1607,7,39.6,39.05 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-10,2,8,37,2202,8,31.8,25.9 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-20,2,8,42,2335,11,34.0,28.1 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-03,2,5,34,2078,6,30.6,27.950000000000003 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-03,3,10,75,4683,14,49.8,47.333333333333336 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-01,1,3,6,371,1,11.1,11.1 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-08,1,3,8,388,2,13.0,13.0 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-14,1,2,5,374,1,12.5,12.5 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-01,4,7,35,2037,6,64.9,50.775000000000006 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-08,4,6,36,2111,9,65.0,51.45 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-14,4,6,35,2058,6,66.7,52.349999999999994 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-11,1,2,10,694,2,14.5,14.5 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-19,1,3,14,730,2,14.9,14.9 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-06,2,13,64,3896,15,66.3,65.15 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-15,2,9,27,1464,7,66.4,65.80000000000001 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-05,3,14,81,4446,18,53.3,40.6 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-28,3,8,33,2035,7,55.3,43.23333333333333 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-29,3,8,34,2242,5,55.9,44.666666666666664 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-30,3,12,76,4053,15,56.9,43.96666666666667 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-06,3,15,89,5597,23,67.1,57.633333333333326 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-15,3,7,29,1637,5,67.0,58.36666666666667 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-11,1,2,13,927,3,17.1,17.1 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-19,1,1,7,358,2,18.7,18.7 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-10,1,3,12,825,2,25.2,25.2 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-20,1,4,16,1067,3,24.5,24.5 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-12,2,6,35,2355,8,33.6,28.5 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-05,3,5,37,2226,7,39.0,36.6 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-28,3,7,23,1411,4,42.6,39.766666666666666 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-29,3,6,20,1116,3,42.6,39.9 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-30,3,7,45,2733,8,44.5,40.9 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-17,3,8,51,2855,10,42.0,38.233333333333334 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-02,3,8,44,2709,8,40.2,37.46666666666667 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-02,2,4,21,1257,4,20.4,18.6 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-01,1,2,7,468,2,37.1,37.1 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-08,1,2,6,428,1,38.4,38.4 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-14,1,1,6,253,1,39.6,39.6 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-10,1,7,28,1909,5,27.8,27.8 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-20,1,7,27,2025,4,29.2,29.2 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-13,2,6,42,2385,10,45.3,44.2 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-23,2,6,39,2422,9,45.4,44.349999999999994 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-18,3,10,72,3638,12,58.8,48.599999999999994 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-22,3,6,29,1512,6,59.1,48.366666666666674 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-26,3,11,68,3915,15,59.7,49.76666666666667 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-27,3,10,65,4051,14,59.1,49.13333333333333 +A1063,Maple Global,education,smb,NA,CA,2025-06-03,1,1,8,477,2,19.9,19.9 +A1064,Atlas Health,education,smb,NA,US,2025-06-11,1,3,15,1069,3,24.2,24.2 +A1064,Atlas Health,education,smb,NA,US,2025-06-19,1,2,10,539,2,24.5,24.5 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-16,2,7,37,2038,8,22.6,22.5 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-21,2,4,15,986,3,24.1,22.6 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-25,2,8,45,2950,9,25.0,23.8 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-03,2,8,47,2966,11,37.8,36.7 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-13,1,4,20,1066,4,31.2,31.2 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-23,1,4,18,932,4,31.1,31.1 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-05,3,5,52,3012,11,56.1,40.86666666666667 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-28,3,5,27,1432,4,59.2,44.666666666666664 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-29,3,5,27,1495,6,58.8,44.866666666666674 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-30,3,9,64,4248,14,60.2,45.1 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-17,3,11,74,4279,16,66.0,57.46666666666666 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-18,1,5,21,1039,6,15.3,15.3 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-22,1,3,8,550,1,16.5,16.5 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-26,1,5,17,846,4,16.0,16.0 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-27,1,3,14,674,4,17.3,17.3 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-12,2,7,36,2289,7,35.1,27.75 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-12,2,10,50,2485,10,67.7,48.650000000000006 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-13,2,10,45,2510,8,20.0,19.35 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-23,2,9,36,2011,7,21.7,20.6 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-12,3,9,50,3360,10,31.4,30.03333333333333 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-06,1,4,15,1145,4,23.6,23.6 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-15,1,2,6,281,1,23.6,23.6 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-11,3,7,49,3091,11,32.9,28.633333333333336 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-19,3,7,44,2481,9,33.3,29.599999999999998 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-18,3,9,49,3199,12,32.9,28.100000000000005 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-22,3,7,26,1610,6,34.8,28.399999999999995 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-26,3,8,47,3046,10,34.9,30.066666666666666 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-27,3,5,37,2062,8,35.0,28.400000000000002 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-07,4,7,35,2318,7,64.7,53.175 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-24,2,10,53,3278,11,44.7,32.95 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-12,2,7,38,2472,9,26.4,24.5 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-11,1,1,11,557,2,32.3,32.3 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-19,1,3,19,1123,3,32.7,32.7 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-17,2,8,43,2820,9,41.8,39.9 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-10,1,2,13,703,3,18.5,18.5 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-20,1,3,16,852,4,18.8,18.8 +A1086,River Labs,software,smb,EMEA,FR,2025-06-04,1,4,16,990,3,22.2,22.2 +A1086,River Labs,software,smb,EMEA,FR,2025-06-09,1,3,12,806,2,23.1,23.1 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-03,1,3,14,996,4,16.2,16.2 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-05,1,3,12,533,3,20.3,20.3 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-28,1,1,4,293,1,23.4,23.4 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-29,1,2,6,319,1,22.0,22.0 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-30,1,2,10,707,2,22.2,22.2 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-12,3,5,40,2842,8,28.3,25.133333333333336 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-10,2,6,33,1910,8,31.7,31.35 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-20,2,8,38,2263,9,32.9,31.85 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-13,2,9,53,3260,10,60.2,51.05 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-23,2,6,44,2657,10,61.8,53.599999999999994 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-01,3,5,26,1588,5,55.3,47.53333333333333 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-08,3,4,26,1583,5,55.6,48.133333333333326 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-14,3,5,28,1772,6,57.3,49.6 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-02,2,4,27,1757,6,26.9,23.25 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-05,1,1,8,497,2,21.0,21.0 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-28,1,2,6,373,1,25.9,25.9 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-29,1,1,4,185,1,24.2,24.2 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-30,1,2,10,676,3,23.6,23.6 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-04,2,10,48,2788,12,22.8,20.700000000000003 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-09,2,11,44,3038,10,23.7,21.85 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-05,1,5,19,1218,5,23.3,23.3 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-28,1,2,5,284,1,26.4,26.4 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-29,1,3,8,525,1,27.6,27.6 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-30,1,4,13,595,3,28.3,28.3 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-11,1,5,17,1273,4,23.5,23.5 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-19,1,4,13,665,2,24.2,24.2 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-06,1,3,11,697,1,22.9,22.9 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-15,1,3,7,423,2,23.8,23.8 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-13,3,5,36,1814,8,24.9,22.633333333333336 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-23,3,5,35,1784,7,27.4,24.633333333333336 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-18,4,15,102,6086,26,64.7,51.47500000000001 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-22,4,9,40,2580,10,65.5,51.825 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-26,4,17,95,5818,20,65.8,52.375 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-27,4,15,90,4817,19,66.3,53.025 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-13,2,4,28,1735,7,32.0,30.9 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-23,2,5,30,2014,8,33.3,33.05 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-01,1,1,4,253,1,13.5,13.5 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-08,1,1,3,167,1,14.3,14.3 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-14,1,1,4,292,0,15.2,15.2 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-04,1,2,10,676,2,18.8,18.8 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-09,1,1,6,312,1,20.1,20.1 +A1021,Apex Logistics,software,smb,NA,US,2025-06-07,1,4,9,663,2,21.1,21.1 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-06,1,1,7,509,1,14.7,14.7 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-15,1,1,4,210,1,14.4,14.4 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-16,1,7,28,1622,6,14.9,14.9 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-21,1,3,7,413,1,14.6,14.6 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-25,1,7,30,1534,5,16.7,16.7 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-06,2,3,17,993,3,15.7,15.5 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-15,2,3,9,430,2,17.5,17.4 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-16,1,4,17,1223,2,23.0,23.0 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-21,1,2,6,443,1,22.8,22.8 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-25,1,3,13,880,2,26.3,26.3 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-11,1,4,21,1092,5,12.3,12.3 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-19,1,6,19,1275,5,13.0,13.0 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-10,2,4,24,1421,7,18.5,16.0 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-20,2,5,24,1557,5,21.6,18.75 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-07,1,1,5,281,1,28.7,28.7 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-17,4,8,77,4213,14,45.5,40.875 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-03,3,8,51,3084,12,37.2,29.766666666666666 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-06,2,8,32,2203,6,34.9,28.049999999999997 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-15,2,8,21,1533,5,34.7,28.200000000000003 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-17,1,4,15,1150,3,18.2,18.2 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-11,2,6,41,1940,8,37.9,31.7 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-19,2,8,46,3000,8,37.5,32.9 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-18,2,8,53,3261,10,63.9,58.45 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-22,2,5,21,1178,5,63.6,59.85 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-26,2,7,50,2768,10,65.9,61.400000000000006 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-27,2,7,43,2170,7,66.6,60.75 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-03,2,2,15,818,2,21.3,21.25 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-17,1,4,19,1113,3,20.7,20.7 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-03,2,8,43,2807,6,35.7,35.650000000000006 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-11,2,7,33,1494,6,31.6,26.25 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-19,2,6,38,2378,7,32.9,27.2 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-18,2,7,44,3130,7,32.9,30.65 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-22,2,5,15,888,2,32.9,30.549999999999997 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-26,2,8,44,2097,9,34.9,31.65 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-27,2,7,33,1604,5,35.9,31.7 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-18,3,11,71,3477,13,52.5,49.03333333333333 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-22,3,6,27,1304,6,52.5,50.166666666666664 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-26,3,10,64,4362,10,51.0,48.9 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-27,3,13,69,4265,13,54.4,51.06666666666666 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-12,1,4,18,941,4,13.4,13.4 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-12,4,11,87,4730,20,66.9,52.625 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-10,1,4,19,873,2,14.3,14.3 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-20,1,3,14,713,3,15.7,15.7 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-04,2,12,59,3499,9,65.5,64.6 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-09,2,13,59,3760,11,66.6,64.94999999999999 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-17,3,13,80,4828,17,53.1,40.96666666666667 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-04,3,16,92,5982,20,66.6,57.46666666666667 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-09,3,13,69,4867,16,67.0,58.300000000000004 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-10,1,2,12,697,2,16.5,16.5 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-20,1,1,7,335,2,18.3,18.3 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-11,1,3,14,762,2,25.2,25.2 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-19,1,2,12,812,2,25.9,25.9 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-01,2,7,17,1140,4,31.4,26.75 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-08,2,4,14,748,2,32.7,28.0 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-14,2,7,19,1081,3,33.6,28.700000000000003 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-17,3,8,48,2900,12,40.9,38.1 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-05,3,8,45,2706,10,40.4,36.63333333333333 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-28,3,7,25,1559,6,43.1,39.56666666666666 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-29,3,7,22,1343,4,45.6,39.666666666666664 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-30,3,9,49,2885,9,45.3,40.43333333333333 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-02,1,2,13,922,2,28.9,28.9 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-02,3,10,57,3903,11,52.5,40.63333333333333 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-12,1,5,23,1712,4,38.5,38.5 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-11,1,5,28,1754,7,28.0,28.0 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-19,1,5,20,1119,5,28.7,28.7 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-16,2,10,58,3238,12,46.2,44.05 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-21,2,7,26,1851,6,47.1,45.900000000000006 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-25,2,9,59,3553,14,46.8,45.599999999999994 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-03,3,9,62,2927,13,56.5,45.666666666666664 +A1063,Maple Global,education,smb,NA,CA,2025-06-18,1,3,15,948,2,19.9,19.9 +A1063,Maple Global,education,smb,NA,CA,2025-06-22,1,2,5,393,1,21.6,21.6 +A1063,Maple Global,education,smb,NA,CA,2025-06-26,1,2,11,795,2,23.6,23.6 +A1063,Maple Global,education,smb,NA,CA,2025-06-27,1,3,14,722,3,22.5,22.5 +A1064,Atlas Health,education,smb,NA,US,2025-06-10,1,2,11,468,2,24.2,24.2 +A1064,Atlas Health,education,smb,NA,US,2025-06-20,1,3,11,650,3,25.0,25.0 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-13,2,8,37,2507,5,22.5,21.75 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-23,2,6,28,1715,7,24.0,22.6 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-18,2,6,37,2054,7,38.4,38.349999999999994 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-22,2,3,13,752,3,39.1,39.05 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-26,2,10,42,2708,9,41.8,40.8 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-27,2,8,39,1955,8,39.6,39.25 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-16,1,2,14,1020,2,31.9,31.9 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-21,1,1,6,348,1,31.0,31.0 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-25,1,2,13,811,3,31.0,31.0 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-17,3,5,55,3150,14,58.0,43.300000000000004 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-05,3,7,58,3287,13,63.9,56.26666666666667 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-28,3,5,27,1429,4,67.2,59.300000000000004 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-29,3,5,26,1423,5,67.4,59.86666666666667 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-30,3,10,69,4556,16,69.2,59.5 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-03,1,5,26,1655,4,13.3,13.3 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-01,2,5,16,1177,3,34.0,26.55 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-08,2,2,10,495,2,34.1,26.8 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-14,2,5,16,970,4,35.6,27.9 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-01,2,5,19,1195,4,66.7,47.5 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-08,2,6,22,1352,5,67.0,48.1 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-14,2,7,24,1096,7,69.0,49.95 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-16,2,8,39,2595,8,20.4,20.1 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-21,2,4,16,873,3,21.4,20.549999999999997 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-25,2,8,46,2327,9,20.9,20.549999999999997 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-01,3,3,17,1036,3,29.3,28.666666666666668 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-08,3,7,23,1562,4,30.0,29.566666666666666 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-14,3,7,24,1387,4,30.7,30.0 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-04,1,6,24,1448,5,23.7,23.7 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-09,1,5,22,1340,5,24.0,24.0 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-02,2,9,44,2965,8,38.8,29.7 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-10,3,6,45,2341,10,33.8,28.599999999999998 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-20,3,5,37,1928,8,34.9,29.166666666666668 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-03,3,5,42,2554,8,32.6,26.166666666666668 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-24,4,12,92,5260,18,66.7,55.150000000000006 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-07,2,4,15,966,3,41.6,30.75 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-01,2,5,17,1112,5,25.3,23.0 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-08,2,4,13,843,3,27.1,24.85 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-14,2,2,12,729,3,28.1,26.05 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-10,1,2,16,923,3,31.9,31.9 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-20,1,1,11,472,1,33.8,33.8 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-05,2,6,34,1868,7,40.6,37.900000000000006 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-28,2,6,17,1069,4,44.0,41.9 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-29,2,4,15,821,2,44.6,40.75 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-30,2,8,41,1914,8,45.6,41.75 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-11,1,3,17,732,3,18.6,18.6 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-19,1,2,10,652,2,19.6,19.6 +A1086,River Labs,software,smb,EMEA,FR,2025-06-06,1,3,12,838,2,22.4,22.4 +A1086,River Labs,software,smb,EMEA,FR,2025-06-15,1,1,4,216,1,23.8,23.8 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-18,1,4,15,961,4,17.3,17.3 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-22,1,3,8,412,2,18.5,18.5 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-26,1,5,19,843,4,19.8,19.8 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-27,1,3,15,950,2,19.2,19.2 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-02,2,9,45,2641,9,32.4,27.549999999999997 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-17,1,1,8,408,2,20.2,20.2 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-06,3,6,36,1994,8,28.5,24.866666666666664 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-15,3,4,17,876,4,29.9,26.166666666666668 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-17,2,6,32,1767,8,34.4,32.8 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-18,2,11,65,4175,16,61.6,52.5 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-22,2,6,22,1367,5,61.6,52.900000000000006 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-26,2,9,53,3135,10,62.6,52.55 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-27,2,9,52,3224,12,62.7,52.95 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-04,3,11,74,4648,13,56.3,48.26666666666667 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-09,3,10,66,3791,11,56.8,48.9 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-07,2,3,13,912,2,27.0,23.65 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-11,1,1,8,524,2,21.4,21.4 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-19,1,2,10,759,2,24.0,24.0 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-24,3,10,56,2823,13,24.5,22.2 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-01,2,5,18,1244,4,22.7,20.25 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-08,2,3,12,680,3,24.5,21.9 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-14,2,6,16,1031,5,24.5,22.5 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-11,1,6,30,2184,7,24.7,24.7 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-19,1,4,18,1304,4,25.4,25.4 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-05,1,4,16,1003,4,22.6,22.6 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-28,1,3,8,490,2,26.1,26.1 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-29,1,3,6,449,2,27.3,27.3 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-30,1,3,14,981,2,27.8,27.8 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-12,1,3,15,694,4,23.8,23.8 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-18,3,5,40,1938,10,25.1,22.133333333333336 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-22,3,3,16,974,3,25.8,23.133333333333336 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-26,3,4,34,1896,8,27.2,23.46666666666667 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-27,3,5,37,2237,7,26.3,23.96666666666667 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-13,4,13,83,4780,17,63.7,50.425 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-23,4,13,79,5027,13,65.9,52.1 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-18,2,6,37,1863,6,32.4,32.25 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-22,2,3,13,712,2,32.8,32.05 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-26,2,4,29,1471,6,33.8,33.599999999999994 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-27,2,5,29,1631,6,33.6,32.2 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-04,1,1,9,444,2,14.5,14.5 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-09,1,1,8,566,2,15.1,15.1 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-01,1,1,4,242,1,17.6,17.6 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-08,1,1,4,256,1,19.0,19.0 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-14,1,2,6,399,1,20.0,20.0 +A1021,Apex Logistics,software,smb,NA,US,2025-06-02,1,3,11,599,3,20.5,20.5 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-12,1,2,10,565,2,14.4,14.4 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-03,1,4,21,1515,4,11.9,11.9 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-12,2,2,15,786,3,17.1,16.65 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-03,1,4,17,1181,3,21.2,21.2 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-05,1,5,21,1537,4,11.9,11.9 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-28,1,3,6,481,1,12.9,12.9 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-29,1,3,8,472,2,13.6,13.6 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-30,1,6,22,1587,3,15.5,15.5 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-17,2,3,19,1308,4,20.8,17.8 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-02,1,3,17,1112,3,28.6,28.6 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-10,4,7,75,4871,14,43.4,39.2 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-20,4,7,64,3722,12,45.2,40.625 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-16,3,9,49,2801,9,38.4,31.5 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-21,3,5,21,1266,4,40.4,33.0 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-25,3,6,44,2531,10,39.4,32.1 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-12,2,9,50,2353,11,35.0,27.9 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-10,1,4,22,1061,4,17.0,17.0 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-20,1,3,14,824,3,17.9,17.9 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-05,2,6,36,2293,7,37.1,31.55 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-28,2,3,14,724,3,41.0,34.5 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-29,2,3,14,887,3,41.3,35.599999999999994 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-30,2,6,32,2022,6,40.0,33.5 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-13,2,8,44,2334,8,63.6,58.150000000000006 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-23,2,6,40,2078,9,64.4,59.650000000000006 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-16,2,2,13,792,3,23.2,22.799999999999997 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-21,2,2,8,568,2,24.3,23.85 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-25,2,3,20,1253,4,25.6,24.700000000000003 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-10,1,6,21,1038,5,19.3,19.3 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-20,1,6,18,1068,5,20.5,20.5 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-16,2,6,29,1940,7,39.4,38.95 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-21,2,2,10,534,2,39.3,39.2 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-25,2,7,38,1797,8,39.3,38.75 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-05,2,7,39,2321,6,31.5,25.45 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-28,2,4,14,777,2,33.8,27.799999999999997 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-29,2,5,15,942,3,32.6,27.8 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-30,2,7,35,1759,6,32.4,27.5 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-13,2,6,33,1730,7,32.6,30.1 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-23,2,5,30,1818,5,33.3,30.75 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-13,3,10,65,3342,11,51.6,48.199999999999996 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-23,3,11,68,3557,14,51.1,50.0 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-06,1,5,20,1363,3,12.4,12.4 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-15,1,3,8,442,1,13.3,13.3 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-06,4,14,89,5253,19,64.7,51.050000000000004 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-15,4,7,36,2282,9,65.8,52.475 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-17,1,4,21,987,6,14.2,14.2 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-01,2,10,27,1649,4,65.7,64.15 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-08,2,6,23,1523,5,66.1,64.55 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-14,2,9,27,1815,5,67.8,66.0 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-10,3,15,81,4489,14,54.3,41.06666666666666 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-20,3,15,86,4808,15,55.1,42.23333333333333 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-01,3,10,38,2681,8,65.7,56.76666666666667 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-08,3,9,32,1818,6,66.8,57.333333333333336 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-14,3,9,31,2088,6,67.3,58.63333333333333 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-17,1,2,13,895,2,19.2,19.2 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-05,1,3,14,767,4,23.8,23.8 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-28,1,1,4,271,1,25.7,25.7 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-29,1,1,4,278,1,27.1,27.1 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-30,1,1,7,416,2,26.1,26.1 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-04,2,9,48,2593,9,32.8,27.95 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-09,2,8,35,1909,6,33.1,28.35 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-10,3,9,55,3194,10,39.9,37.333333333333336 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-20,3,6,39,2421,8,41.3,38.56666666666667 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-11,3,5,40,2551,6,41.2,37.4 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-19,3,10,52,2725,8,42.7,38.16666666666667 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-07,1,2,7,417,1,29.1,29.1 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-24,3,7,45,2828,9,43.9,40.5 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-07,3,4,25,1555,6,53.9,41.699999999999996 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-24,2,4,23,1284,6,24.7,21.6 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-06,1,5,24,1323,4,38.5,38.5 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-15,1,1,6,291,1,39.2,39.2 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-05,1,5,23,1154,4,27.1,27.1 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-28,1,4,10,775,1,31.1,31.1 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-29,1,4,9,683,2,30.7,30.7 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-30,1,5,21,1599,5,29.5,29.5 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-03,2,8,52,2845,8,44.0,42.4 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-16,3,9,64,3554,15,58.1,47.800000000000004 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-21,3,6,30,1615,5,58.5,48.53333333333333 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-25,3,9,67,3335,13,59.1,49.4 +A1063,Maple Global,education,smb,NA,CA,2025-06-13,1,3,13,777,2,21.1,21.1 +A1063,Maple Global,education,smb,NA,CA,2025-06-23,1,2,10,677,2,23.4,23.4 +A1064,Atlas Health,education,smb,NA,US,2025-06-17,1,4,20,876,4,25.0,25.0 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-18,2,8,41,2397,9,24.3,23.4 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-22,2,5,16,997,3,24.1,23.25 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-26,2,9,41,2142,8,24.9,23.75 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-27,2,7,34,2226,9,24.3,23.8 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-13,2,7,35,2042,7,38.3,37.45 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-23,2,10,42,1926,6,38.7,38.0 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-03,1,4,22,1469,5,30.0,30.0 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-10,3,8,60,2999,12,57.3,41.86666666666667 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-20,3,8,61,3098,13,58.5,43.833333333333336 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-11,3,11,77,4694,16,65.5,57.866666666666674 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-19,3,9,59,3300,12,67.1,58.166666666666664 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-16,1,3,14,927,3,15.3,15.3 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-21,1,4,9,634,2,17.0,17.0 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-25,1,3,17,833,3,16.7,16.7 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-04,2,7,39,1888,6,34.3,27.049999999999997 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-09,2,9,41,2935,8,34.5,27.45 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-04,2,8,46,2378,11,66.2,47.5 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-09,2,9,48,2811,12,66.7,47.75 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-03,2,10,53,2946,11,18.3,17.950000000000003 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-04,3,9,54,3756,12,29.7,28.833333333333332 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-09,3,11,53,3345,10,30.6,29.46666666666667 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-01,1,3,9,672,1,22.3,22.3 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-08,1,4,9,578,2,23.4,23.4 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-14,1,5,11,638,2,24.2,24.2 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-07,2,8,20,1237,4,39.2,30.5 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-17,3,4,35,2160,8,35.4,30.03333333333333 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-16,3,9,49,3016,10,33.9,28.099999999999998 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-21,3,6,20,1217,4,34.6,28.366666666666664 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-25,3,5,37,2036,9,34.4,28.8 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-02,2,7,30,1721,7,40.8,29.95 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-04,2,4,30,1273,4,25.8,23.950000000000003 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-09,2,4,24,1339,5,27.0,25.0 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-17,1,3,19,1292,4,32.6,32.6 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-11,2,6,36,2417,7,41.6,38.95 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-19,2,10,53,3161,10,43.2,40.1 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-05,1,4,14,892,2,16.9,16.9 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-28,1,3,8,569,1,20.6,20.6 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-29,1,2,5,360,1,21.7,21.7 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-30,1,4,16,993,2,22.4,22.4 +A1086,River Labs,software,smb,EMEA,FR,2025-06-12,1,3,14,714,4,24.5,24.5 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-13,1,2,10,429,1,17.8,17.8 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-23,1,2,12,732,2,17.4,17.4 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-07,2,6,17,1243,5,32.6,27.65 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-10,1,2,12,517,2,21.1,21.1 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-20,1,2,11,554,3,23.3,23.3 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-02,3,5,33,2048,7,27.8,24.400000000000002 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-18,2,5,30,1414,6,33.0,32.2 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-22,2,7,22,1547,5,33.5,33.2 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-26,2,7,39,2303,8,34.1,33.900000000000006 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-27,2,7,35,2148,6,33.7,33.5 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-17,2,7,51,3062,11,62.0,51.95 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-12,2,4,29,1547,7,29.3,25.1 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-16,1,1,8,582,1,22.1,22.1 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-21,1,1,4,223,1,21.9,21.9 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-25,1,1,8,476,2,24.8,24.8 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-01,3,6,23,1374,6,19.9,19.133333333333336 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-08,3,6,22,1438,4,21.1,20.066666666666666 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-14,3,4,17,1185,3,21.6,20.599999999999998 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-24,2,9,46,2560,11,25.7,23.6 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-16,1,4,15,1023,2,25.2,25.2 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-21,1,3,6,378,1,26.4,26.4 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-25,1,6,23,1548,3,28.3,28.3 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-03,1,4,20,1265,3,23.3,23.3 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-07,1,2,6,430,2,22.3,22.3 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-17,3,4,39,2298,6,25.9,23.099999999999998 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-10,4,16,113,6950,25,63.6,50.400000000000006 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-20,4,15,92,5567,17,64.8,51.2 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-17,2,5,34,2158,6,32.1,31.5 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-24,1,1,9,405,2,22.0,22.0 +A1021,Apex Logistics,software,smb,NA,US,2025-06-06,1,4,13,590,3,20.4,20.4 +A1021,Apex Logistics,software,smb,NA,US,2025-06-15,1,2,5,280,1,22.8,22.8 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-07,1,1,4,201,1,14.7,14.7 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-05,1,6,19,1340,5,12.4,12.4 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-28,1,4,7,470,1,16.2,16.2 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-29,1,3,7,545,1,14.8,14.8 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-30,1,6,18,1272,3,17.9,17.9 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-07,2,3,9,540,2,15.9,15.850000000000001 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-05,1,3,14,950,2,22.5,22.5 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-28,1,4,7,551,2,24.5,24.5 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-29,1,1,4,181,1,27.0,27.0 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-30,1,3,13,669,3,26.7,26.7 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-03,1,7,28,1483,5,11.1,11.1 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-18,2,5,23,1434,5,19.4,17.15 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-22,2,2,8,561,2,20.3,18.3 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-26,2,4,21,976,5,19.9,18.45 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-27,2,6,27,1522,6,22.8,19.5 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-06,1,4,17,1194,4,28.8,28.8 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-15,1,2,7,367,1,29.9,29.9 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-13,4,8,67,3712,11,45.4,40.199999999999996 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-23,4,8,65,3982,10,46.0,41.325 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-11,3,7,46,2681,9,36.7,30.3 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-19,3,8,43,2421,7,39.5,32.166666666666664 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-07,2,6,16,1201,4,34.3,27.599999999999998 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-13,1,2,9,514,1,16.8,16.8 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-23,1,2,9,552,1,19.4,19.4 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-03,2,5,31,1738,6,36.5,30.65 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-10,2,7,50,3132,9,63.5,58.3 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-20,2,7,48,2296,12,64.8,59.55 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-11,2,3,19,1270,5,23.2,22.6 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-19,2,3,18,1223,4,24.9,24.549999999999997 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-13,1,4,15,790,2,19.8,19.8 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-23,1,4,16,1017,2,23.0,23.0 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-11,2,6,37,2271,10,37.4,37.15 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-19,2,4,27,1768,7,39.4,38.15 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-03,2,7,36,2296,7,30.4,24.85 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-10,2,5,32,2180,7,31.7,28.95 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-20,2,8,35,2088,6,33.5,31.1 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-10,3,10,70,4378,13,50.6,48.23333333333333 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-20,3,12,68,4442,12,51.6,49.43333333333334 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-02,1,2,10,457,2,12.1,12.1 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-02,4,10,79,4930,19,64.6,50.65 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-18,1,2,13,863,3,16.2,16.2 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-22,1,1,4,288,1,14.0,14.0 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-26,1,3,16,1130,3,16.4,16.4 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-27,1,2,12,828,2,16.2,16.2 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-24,2,10,67,3003,12,68.5,67.1 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-13,3,12,66,4592,16,53.1,41.199999999999996 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-23,3,14,82,4567,12,55.3,42.63333333333333 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-24,3,14,91,5843,18,67.4,59.23333333333333 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-18,1,1,9,558,2,17.1,17.1 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-22,1,2,5,245,1,19.7,19.7 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-26,1,1,7,508,1,19.6,19.6 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-27,1,2,9,561,2,21.0,21.0 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-03,1,2,10,461,2,23.7,23.7 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-13,3,5,33,1925,6,40.7,38.13333333333333 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-23,3,6,37,2021,10,41.3,38.766666666666666 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-16,3,9,45,2300,10,41.6,38.166666666666664 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-21,3,5,18,1146,3,42.8,38.9 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-25,3,8,53,2566,11,43.0,38.63333333333333 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-12,1,4,18,1038,4,30.3,30.3 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-01,3,6,22,1184,4,39.4,37.06666666666666 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-08,3,4,16,927,3,40.1,37.9 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-14,3,3,17,1045,3,41.7,39.43333333333334 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-12,3,7,59,2949,14,53.2,41.666666666666664 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-01,2,3,10,542,2,20.1,18.4 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-08,2,6,12,814,3,21.0,19.1 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-14,2,4,11,673,2,22.1,19.8 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-02,1,3,18,1345,5,37.1,37.1 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-03,1,6,24,1792,5,26.8,26.8 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-05,2,7,44,2217,8,44.2,42.650000000000006 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-28,2,5,23,1259,3,46.2,45.650000000000006 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-29,2,6,22,1239,5,47.9,47.099999999999994 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-30,2,10,55,3275,12,47.8,45.349999999999994 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-11,3,13,88,4899,19,58.3,46.79999999999999 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-19,3,10,69,4139,15,60.4,48.96666666666667 +A1063,Maple Global,education,smb,NA,CA,2025-06-10,1,3,15,668,4,20.1,20.1 +A1063,Maple Global,education,smb,NA,CA,2025-06-20,1,3,11,595,2,21.5,21.5 +A1064,Atlas Health,education,smb,NA,US,2025-06-18,1,3,16,760,2,25.0,25.0 +A1064,Atlas Health,education,smb,NA,US,2025-06-22,1,3,8,598,2,25.2,25.2 +A1064,Atlas Health,education,smb,NA,US,2025-06-26,1,2,12,843,2,26.1,26.1 +A1064,Atlas Health,education,smb,NA,US,2025-06-27,1,4,16,872,4,26.8,26.8 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-17,2,7,38,1923,10,24.0,22.8 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-10,2,9,51,2540,10,38.1,37.7 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-20,2,10,43,2724,9,38.8,38.5 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-05,1,1,10,499,2,30.0,30.0 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-28,1,2,7,460,2,31.4,31.4 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-29,1,1,6,424,1,31.9,31.9 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-30,1,4,21,1443,5,32.2,32.2 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-13,3,5,50,2490,10,57.2,42.6 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-23,3,7,50,3089,11,58.1,43.86666666666667 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-16,3,10,65,3936,15,66.0,57.9 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-21,3,7,29,1888,5,67.0,59.333333333333336 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-25,3,10,71,4518,14,68.3,59.4 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-11,1,4,17,1294,3,14.7,14.7 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-19,1,3,16,904,4,15.6,15.6 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-05,2,7,34,2380,7,18.1,18.05 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-28,2,6,19,1272,3,21.3,20.6 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-29,2,6,18,1032,4,22.9,22.35 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-30,2,9,39,1871,8,22.1,21.450000000000003 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-24,1,7,22,1401,4,25.1,25.1 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-12,2,10,44,2706,7,40.2,31.150000000000002 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-18,3,6,44,2780,9,33.7,29.900000000000002 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-22,3,3,17,1034,3,36.6,31.433333333333337 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-26,3,5,38,2063,7,35.6,30.900000000000002 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-27,3,4,33,2101,6,35.8,30.7 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-11,3,7,47,2886,11,33.6,27.333333333333332 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-19,3,9,47,2960,9,34.9,27.8 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-04,4,10,88,5201,16,64.1,52.4 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-09,4,12,82,4621,15,65.4,53.0 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-06,2,9,37,2693,8,40.6,30.0 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-15,2,6,16,930,3,41.3,30.799999999999997 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-18,1,2,14,846,3,33.6,33.6 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-22,1,1,6,281,1,34.4,34.4 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-26,1,1,10,633,1,35.6,35.6 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-27,1,2,12,875,2,34.6,34.6 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-16,2,8,37,2208,8,43.5,39.9 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-21,2,3,12,745,2,43.2,39.900000000000006 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-25,2,5,30,1744,6,43.9,40.95 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-03,1,2,10,518,2,16.4,16.4 +A1086,River Labs,software,smb,EMEA,FR,2025-06-07,1,1,4,201,1,23.1,23.1 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-10,1,5,22,1216,5,17.2,17.2 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-20,1,3,15,789,3,18.8,18.8 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-12,2,9,48,2915,8,34.3,29.25 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-13,1,3,13,636,2,20.9,20.9 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-23,1,1,6,287,1,23.3,23.3 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-03,2,6,38,2456,10,30.8,30.35 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-05,2,9,50,3372,11,60.4,50.599999999999994 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-28,2,7,24,1814,4,63.8,53.25 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-29,2,5,20,978,5,64.0,54.6 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-30,2,9,48,2413,11,64.1,54.699999999999996 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-02,3,9,61,3219,14,55.9,48.13333333333333 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-01,2,4,14,887,3,26.2,22.45 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-08,2,2,11,721,2,27.8,24.05 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-14,2,3,13,640,2,28.3,25.0 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-13,1,1,7,376,2,21.7,21.7 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-23,1,3,14,617,3,21.9,21.9 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-12,3,9,52,3406,13,22.2,20.766666666666666 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-07,2,5,14,923,3,23.3,21.25 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-13,1,6,18,1088,4,23.9,23.9 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-23,1,4,16,843,4,27.4,27.4 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-18,1,5,25,1615,6,25.5,25.5 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-22,1,3,6,490,1,26.8,26.8 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-26,1,3,16,1083,4,26.0,26.0 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-27,1,4,15,667,4,27.2,27.2 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-24,1,4,18,1319,3,24.0,24.0 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-05,3,5,40,2191,7,24.0,20.866666666666667 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-28,3,4,18,939,4,27.1,24.633333333333336 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-29,3,5,19,1228,3,28.6,24.900000000000002 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-30,3,6,40,2273,6,26.7,23.666666666666668 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-11,4,15,103,5490,19,63.9,50.24999999999999 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-19,4,14,94,5564,18,63.8,50.900000000000006 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-05,2,7,35,1926,5,30.0,29.75 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-28,2,4,14,830,2,33.5,32.65 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-29,2,4,16,834,3,35.2,33.35 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-30,2,7,35,1779,7,33.9,33.849999999999994 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-02,1,1,7,365,2,13.9,13.9 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-07,1,1,3,154,1,19.0,19.0 +A1021,Apex Logistics,software,smb,NA,US,2025-06-04,1,4,20,1362,5,21.7,21.7 +A1021,Apex Logistics,software,smb,NA,US,2025-06-09,1,6,26,1250,7,22.4,22.4 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-24,1,2,13,618,2,14.8,14.8 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-17,1,4,22,1529,4,15.5,15.5 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-24,2,3,18,1115,3,19.7,18.45 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-17,1,3,14,895,3,23.0,23.0 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-18,1,6,26,1614,4,13.3,13.3 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-22,1,4,10,697,2,13.8,13.8 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-26,1,4,15,672,3,14.6,14.6 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-27,1,4,15,1068,4,15.1,15.1 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-03,2,4,22,1502,5,17.2,15.399999999999999 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-04,1,5,23,1321,6,28.4,28.4 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-09,1,4,18,976,3,30.2,30.2 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-16,4,8,70,3839,13,44.3,39.775 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-21,4,7,36,2379,6,45.0,40.900000000000006 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-25,4,8,78,4435,18,47.8,41.724999999999994 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-10,3,7,44,2260,7,38.6,30.866666666666664 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-20,3,8,45,2471,8,40.2,32.93333333333333 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-24,2,10,53,2981,7,36.2,29.200000000000003 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-16,1,4,19,1366,5,17.5,17.5 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-21,1,2,5,371,1,17.9,17.9 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-25,1,3,13,752,3,18.6,18.6 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-18,2,7,38,1977,5,38.5,32.95 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-22,2,3,11,784,2,39.2,33.1 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-26,2,5,30,1624,6,41.3,34.5 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-27,2,5,29,1648,5,42.0,35.75 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-11,2,6,46,2830,8,63.8,58.15 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-19,2,8,48,2185,11,65.2,59.5 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-10,2,4,22,1341,3,23.4,22.95 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-20,2,2,16,877,4,23.0,22.9 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-16,1,4,15,1144,3,20.6,20.6 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-21,1,4,8,565,1,21.8,21.8 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-25,1,6,21,1183,3,21.1,21.1 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-10,2,7,42,2930,9,37.0,36.75 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-20,2,6,35,1857,8,38.3,38.0 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-18,2,6,36,2580,7,34.4,28.299999999999997 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-22,2,4,14,740,4,32.6,27.1 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-26,2,9,44,2531,11,34.2,28.8 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-27,2,7,34,2330,4,35.5,28.75 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-11,2,5,33,1551,5,32.3,29.099999999999998 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-19,2,6,33,2201,6,31.8,29.9 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-11,3,10,77,4067,16,50.4,48.133333333333326 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-19,3,7,55,3465,11,52.4,49.76666666666667 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-03,1,2,12,614,2,12.3,12.3 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-07,2,9,30,1773,6,66.1,64.94999999999999 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-16,3,12,71,4170,16,53.6,41.833333333333336 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-21,3,9,34,1972,7,54.2,42.56666666666667 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-25,3,11,76,4952,16,55.7,43.96666666666667 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-07,3,11,37,2672,7,66.0,57.833333333333336 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-03,1,2,10,664,2,15.5,15.5 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-18,1,4,21,1536,4,24.8,24.8 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-22,1,3,7,401,1,25.8,25.8 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-26,1,1,8,410,1,27.7,27.7 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-27,1,3,13,581,2,25.4,25.4 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-02,2,9,41,1938,10,32.2,27.35 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-16,3,8,46,2654,9,40.3,37.73333333333333 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-21,3,4,19,1211,3,40.6,38.76666666666666 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-25,3,7,50,3126,7,42.8,40.7 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-13,3,9,50,2440,12,42.6,38.666666666666664 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-23,3,9,47,2564,10,42.7,38.833333333333336 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-01,1,1,6,437,1,28.0,28.0 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-08,1,1,6,308,1,29.6,29.6 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-14,1,2,7,393,1,29.7,29.7 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-12,3,8,48,2767,9,40.2,38.5 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-01,3,7,32,1723,7,53.0,40.5 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-08,3,6,28,1805,7,52.9,40.9 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-14,3,3,24,1422,5,54.9,42.666666666666664 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-12,2,6,29,1540,7,23.0,20.55 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-18,1,6,23,1534,3,29.9,29.9 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-22,1,3,10,621,2,28.6,28.6 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-26,1,7,28,1449,7,29.0,29.0 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-27,1,5,20,1432,2,29.1,29.1 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-17,2,9,57,3973,13,44.3,43.5 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-10,3,13,85,5372,14,58.1,47.166666666666664 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-20,3,12,72,4985,18,59.5,47.93333333333334 +A1063,Maple Global,education,smb,NA,CA,2025-06-11,1,3,17,1141,2,20.5,20.5 +A1063,Maple Global,education,smb,NA,CA,2025-06-19,1,1,7,439,1,21.7,21.7 +A1064,Atlas Health,education,smb,NA,US,2025-06-03,1,3,12,552,2,23.0,23.0 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-05,2,7,40,2392,11,20.9,20.2 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-28,2,6,18,1101,4,23.4,23.35 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-29,2,6,19,1020,3,23.5,23.1 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-30,2,7,36,2022,8,24.4,22.85 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-11,2,8,40,2441,9,38.5,37.8 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-19,2,7,41,2818,8,39.8,38.8 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-17,1,3,17,1189,3,31.9,31.9 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-16,3,9,60,3751,13,58.5,42.96666666666667 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-21,3,5,28,1587,6,58.5,43.9 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-25,3,7,60,3462,10,60.0,45.13333333333333 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-13,3,8,55,3119,13,65.9,57.9 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-23,3,10,61,3114,11,67.4,59.1 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-10,1,5,19,890,3,15.7,15.7 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-20,1,3,16,819,4,15.1,15.1 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-02,2,6,34,1962,8,33.6,26.0 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-02,2,9,50,2576,10,66.1,47.65 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-17,2,11,49,3322,9,20.2,20.2 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-02,3,11,50,2413,8,29.8,28.8 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-07,1,5,11,644,2,23.6,23.6 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-01,2,4,14,797,3,39.2,30.150000000000002 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-08,2,9,20,1338,4,40.3,31.299999999999997 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-14,2,6,19,925,4,40.7,32.2 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-03,3,5,41,1921,7,32.8,27.666666666666668 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-10,3,6,43,2329,9,33.5,26.666666666666668 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-20,3,5,34,1673,7,33.7,27.933333333333337 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-06,4,11,78,4134,16,65.0,52.900000000000006 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-15,4,7,38,2300,8,66.5,53.925 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-04,2,6,34,1830,7,41.1,29.85 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-09,2,7,34,1964,8,41.2,30.0 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-02,2,7,38,2168,7,25.6,23.35 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-03,1,1,11,564,3,31.5,31.5 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-13,2,9,42,2432,11,41.7,39.6 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-23,2,8,37,1988,9,43.0,39.95 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-18,1,3,12,760,3,18.3,18.3 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-22,1,1,4,213,1,20.2,20.2 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-26,1,2,12,607,3,21.0,21.0 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-27,1,2,11,673,3,21.3,21.3 +A1086,River Labs,software,smb,EMEA,FR,2025-06-24,1,3,12,919,2,26.8,26.8 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-11,1,3,14,993,2,17.3,17.3 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-19,1,4,19,1162,5,17.6,17.6 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-01,2,6,16,1017,2,31.9,27.0 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-08,2,5,17,1228,3,33.3,28.599999999999998 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-14,2,5,17,1080,3,33.1,28.950000000000003 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-16,1,2,10,547,3,22.8,22.8 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-21,1,1,4,281,1,23.7,23.7 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-25,1,3,17,1138,2,22.2,22.2 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-13,3,5,37,2337,10,29.0,26.0 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-23,3,5,34,1949,9,29.2,27.5 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-07,2,6,19,1169,4,32.3,31.5 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-12,2,10,56,3625,12,60.3,51.65 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-16,3,12,71,3735,14,57.4,49.9 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-21,3,4,25,1371,5,58.1,50.56666666666666 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-25,3,9,72,4478,15,60.2,51.366666666666674 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-17,2,4,27,1712,6,29.3,26.15 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-05,3,9,54,3400,9,21.3,19.566666666666666 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-28,3,5,20,1140,4,24.3,22.833333333333332 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-29,3,6,22,1295,6,25.7,23.600000000000005 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-30,3,8,46,2869,10,22.2,21.433333333333334 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-03,2,8,39,1875,8,22.6,20.950000000000003 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-24,1,6,22,1498,3,25.3,25.3 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-18,1,5,17,1151,3,24.0,24.0 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-22,1,3,7,382,1,26.2,26.2 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-26,1,5,20,1418,3,24.6,24.6 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-27,1,4,15,854,2,25.2,25.2 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-12,3,6,41,2284,9,25.3,22.400000000000002 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-06,4,12,78,3814,13,63.4,49.6 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-15,4,9,38,2256,9,64.7,50.849999999999994 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-12,2,5,29,1710,5,31.1,31.05 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-16,1,1,7,292,1,16.1,16.1 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-21,1,1,4,187,1,17.8,17.8 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-25,1,1,8,513,2,16.0,16.0 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-03,1,2,10,462,3,17.8,17.8 +A1021,Apex Logistics,software,smb,NA,US,2025-06-10,1,4,15,781,3,21.7,21.7 +A1021,Apex Logistics,software,smb,NA,US,2025-06-20,1,5,22,1681,3,23.0,23.0 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-18,1,2,13,640,3,15.7,15.7 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-22,1,2,5,371,1,16.0,16.0 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-26,1,1,8,484,2,15.3,15.3 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-27,1,1,6,443,1,15.5,15.5 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-01,1,5,9,626,1,11.5,11.5 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-08,1,3,8,459,2,12.4,12.4 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-14,1,4,8,469,2,13.9,13.9 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-18,2,3,20,1401,5,18.6,18.0 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-22,2,2,7,419,2,18.0,17.85 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-26,2,4,19,944,5,18.9,18.25 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-27,2,5,25,1718,6,18.7,18.15 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-01,1,2,6,432,1,21.2,21.2 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-08,1,3,7,486,1,21.7,21.7 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-14,1,2,6,295,1,24.2,24.2 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-24,1,5,19,1012,3,15.1,15.1 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-07,2,2,8,496,2,17.8,15.75 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-10,1,6,24,1428,4,28.7,28.7 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-20,1,4,16,1025,4,31.7,31.7 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-02,4,8,68,4115,12,43.1,37.925 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-04,3,7,47,2620,8,36.6,29.633333333333336 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-09,3,9,48,2845,8,37.4,30.799999999999997 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-18,2,10,44,2158,7,35.2,28.6 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-22,2,6,18,1193,4,36.0,29.9 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-26,2,10,47,3337,10,37.0,29.9 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-27,2,9,39,1997,7,36.5,29.6 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-02,1,2,11,711,1,14.5,14.5 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-24,2,5,30,1571,5,40.2,34.150000000000006 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-06,2,5,36,2146,6,62.5,57.8 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-15,2,4,20,1352,4,63.9,58.5 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-04,2,4,23,1218,6,22.0,22.0 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-09,2,3,16,926,3,22.3,22.25 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-02,1,6,17,1056,4,18.8,18.8 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-04,2,5,32,1535,6,37.1,36.400000000000006 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-09,2,7,40,2869,6,36.4,36.25 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-24,2,8,42,2825,9,34.5,27.85 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-06,2,8,37,1929,7,31.7,28.7 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-15,2,4,14,932,3,33.0,30.65 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-06,3,12,67,3532,15,49.6,47.26666666666667 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-15,3,8,34,2001,7,50.4,48.29999999999999 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-13,1,5,20,1453,5,13.4,13.4 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-23,1,5,22,1322,5,14.2,14.2 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-13,4,10,74,4229,14,66.4,52.275 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-23,4,11,81,4947,19,66.0,52.95 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-07,1,2,6,419,1,13.6,13.6 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-03,2,12,68,3865,9,65.6,64.5 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-02,3,12,71,4812,18,51.8,39.63333333333333 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-03,3,17,84,5488,21,66.7,57.666666666666664 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-07,1,2,5,262,1,16.4,16.4 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-24,1,4,20,1008,5,24.7,24.7 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-16,2,8,38,2035,9,34.5,28.7 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-21,2,5,17,967,3,33.9,28.95 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-25,2,5,37,2521,6,36.2,30.150000000000002 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-02,3,6,36,1910,7,38.4,36.166666666666664 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-17,1,2,14,740,3,29.8,29.8 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-05,3,7,41,2702,8,39.6,37.56666666666667 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-28,3,4,18,1056,4,45.1,41.6 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-29,3,4,18,1008,3,44.5,40.9 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-30,3,9,50,3199,10,44.2,40.8 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-17,3,7,60,3156,11,55.7,42.833333333333336 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-05,2,4,24,1496,5,20.6,18.4 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-28,2,3,9,510,2,25.4,23.15 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-29,2,4,12,654,2,24.6,22.85 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-30,2,6,26,1225,4,25.5,23.25 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-13,1,3,15,1087,3,38.9,38.9 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-23,1,4,16,741,4,40.1,40.1 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-24,1,5,21,981,5,30.1,30.1 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-01,2,8,26,1476,4,42.8,41.4 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-08,2,6,22,1523,4,43.8,42.8 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-14,2,6,23,1508,3,45.9,44.25 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-04,3,11,79,4271,20,56.5,45.73333333333333 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-09,3,12,67,4232,13,58.1,47.26666666666667 +A1063,Maple Global,education,smb,NA,CA,2025-06-06,1,2,9,606,2,20.0,20.0 +A1063,Maple Global,education,smb,NA,CA,2025-06-15,1,2,6,334,1,21.1,21.1 +A1064,Atlas Health,education,smb,NA,US,2025-06-07,1,3,8,575,2,23.3,23.3 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-12,2,8,43,2279,8,23.5,22.45 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-06,2,8,41,2926,10,36.8,36.4 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-15,2,4,15,683,4,39.5,38.9 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-01,1,3,8,417,2,29.9,29.9 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-08,1,1,6,265,1,30.8,30.8 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-14,1,1,5,360,1,31.7,31.7 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-02,3,7,55,3009,11,56.4,41.0 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-04,1,5,22,978,4,14.3,14.3 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-09,1,3,15,802,2,14.8,14.8 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-16,2,7,30,2043,6,35.2,28.25 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-21,2,5,15,877,3,35.9,29.2 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-25,2,5,35,1525,5,37.1,29.6 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-16,2,11,56,3624,7,68.6,49.849999999999994 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-21,2,6,21,1337,4,68.3,50.099999999999994 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-25,2,10,57,2900,10,70.8,51.75 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-01,2,7,19,1269,2,17.6,17.25 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-08,2,8,21,1485,5,19.0,18.85 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-14,2,6,16,1208,4,20.1,19.700000000000003 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-16,3,7,40,2426,8,32.3,30.46666666666667 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-21,3,6,23,1349,4,32.3,30.633333333333336 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-25,3,10,54,3424,11,31.7,31.233333333333334 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-03,1,5,22,1391,3,23.3,23.3 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-17,2,9,51,3157,8,41.2,32.650000000000006 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-07,3,5,20,1244,3,32.5,28.166666666666668 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-04,3,9,47,2910,10,31.9,26.166666666666668 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-09,3,7,38,2295,7,33.4,27.100000000000005 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-11,4,13,99,5406,19,65.1,53.849999999999994 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-19,4,10,84,5641,13,66.2,54.625 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-10,2,7,36,2137,8,40.8,30.5 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-20,2,9,37,2426,5,41.9,32.0 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-16,2,5,26,1705,5,27.0,24.6 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-21,2,2,10,681,2,29.7,26.549999999999997 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-25,2,5,33,2051,7,28.5,26.9 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-07,1,1,5,343,1,31.1,31.1 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-24,1,4,17,1063,4,19.0,19.0 +A1086,River Labs,software,smb,EMEA,FR,2025-06-18,1,4,17,916,3,25.0,25.0 +A1086,River Labs,software,smb,EMEA,FR,2025-06-22,1,3,8,637,2,23.7,23.7 +A1086,River Labs,software,smb,EMEA,FR,2025-06-26,1,3,14,902,3,25.6,25.6 +A1086,River Labs,software,smb,EMEA,FR,2025-06-27,1,4,18,904,3,23.7,23.7 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-06,1,4,16,706,3,15.8,15.8 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-15,1,1,4,265,1,17.3,17.3 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-17,2,8,43,2578,10,33.0,28.75 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-02,1,3,15,921,2,19.8,19.8 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-24,3,4,37,2324,8,30.3,27.633333333333336 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-16,2,6,33,1702,7,31.9,31.75 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-21,2,3,12,781,3,35.2,34.2 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-25,2,5,30,1787,5,35.2,34.85 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-11,2,9,61,3402,14,60.4,51.599999999999994 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-19,2,8,50,2735,10,62.4,53.25 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-07,3,3,24,1155,5,55.9,48.46666666666667 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-04,2,5,33,1999,8,26.4,22.7 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-09,2,4,28,1615,7,27.6,24.4 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-18,1,3,14,930,2,23.0,23.0 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-22,1,2,5,246,1,22.7,22.7 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-26,1,3,15,928,3,23.6,23.6 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-27,1,1,6,304,1,23.8,23.8 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-06,3,10,56,3760,10,21.1,19.7 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-15,3,6,22,1201,5,22.1,21.233333333333334 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-02,2,9,36,1816,6,22.9,20.7 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-18,1,6,23,1072,3,25.2,25.2 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-22,1,1,4,300,1,27.1,27.1 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-26,1,4,17,1168,2,27.4,27.4 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-27,1,4,15,671,3,27.3,27.3 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-13,1,4,16,879,4,24.7,24.7 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-23,1,5,21,1428,5,25.8,25.8 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-11,3,3,33,1601,8,24.1,22.03333333333333 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-19,3,4,35,2037,7,26.2,23.066666666666663 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-05,4,14,95,5453,17,62.6,49.475 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-28,4,12,45,2987,7,64.3,51.650000000000006 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-29,4,7,37,2160,8,66.4,52.875 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-30,4,13,87,4443,14,66.2,53.6 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-11,2,4,29,1381,5,31.4,31.049999999999997 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-19,2,5,28,1663,5,31.2,31.15 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-07,1,1,3,193,1,14.5,14.5 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-02,1,2,10,437,2,18.0,18.0 +A1021,Apex Logistics,software,smb,NA,US,2025-06-01,1,2,6,319,1,20.6,20.6 +A1021,Apex Logistics,software,smb,NA,US,2025-06-08,1,4,10,513,2,21.5,21.5 +A1021,Apex Logistics,software,smb,NA,US,2025-06-14,1,2,5,253,1,21.7,21.7 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-10,1,6,27,1487,5,12.6,12.6 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-20,1,6,22,1173,3,14.6,14.6 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-10,1,3,17,1194,4,22.2,22.2 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-20,1,3,12,809,3,24.4,24.4 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-13,1,5,17,776,4,13.7,13.7 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-23,1,5,19,881,4,13.1,13.1 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-16,2,2,12,750,3,19.0,16.95 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-21,2,5,12,698,3,21.3,18.55 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-25,2,4,21,1479,4,19.8,17.25 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-01,1,2,7,509,1,28.3,28.3 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-08,1,2,7,431,2,29.4,29.4 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-14,1,1,6,418,1,29.5,29.5 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-03,4,9,83,5742,20,43.7,38.35 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-17,3,4,38,1955,8,38.9,31.599999999999998 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-03,1,4,19,908,3,15.5,15.5 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-13,2,6,36,1970,5,37.4,32.0 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-23,2,7,35,1718,6,38.7,33.6 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-05,2,8,54,3611,11,62.3,57.2 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-28,2,5,20,1327,3,66.4,60.900000000000006 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-29,2,5,21,1388,5,65.8,60.15 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-30,2,7,44,2941,8,66.6,60.599999999999994 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-17,2,2,16,975,3,24.1,23.9 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-03,1,5,26,1632,5,18.6,18.6 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-17,2,7,40,2121,7,38.5,38.35 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-13,2,7,36,1654,7,32.4,26.549999999999997 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-23,2,6,29,1442,6,34.5,27.85 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-05,2,6,32,1840,8,30.6,28.0 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-28,2,4,13,669,3,33.7,32.55 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-29,2,2,11,755,2,35.7,33.400000000000006 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-30,2,5,27,1653,5,34.6,32.3 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-05,3,12,72,3527,15,49.4,47.23333333333333 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-28,3,6,28,1476,7,52.2,50.56666666666666 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-29,3,7,30,2124,5,52.3,49.833333333333336 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-30,3,10,67,3887,13,52.8,50.26666666666667 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-24,1,3,13,578,2,15.3,15.3 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-24,4,12,85,5130,18,67.9,53.574999999999996 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-16,1,2,11,824,3,14.8,14.8 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-21,1,2,6,359,1,16.1,16.1 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-25,1,4,19,1170,3,15.0,15.0 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-02,2,13,68,3440,16,64.9,64.15 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-03,3,14,92,5444,18,52.0,39.766666666666666 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-02,3,16,82,5457,17,65.7,56.96666666666667 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-16,1,1,8,370,1,17.3,17.3 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-21,1,1,4,281,1,19.6,19.6 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-25,1,2,10,666,2,18.7,18.7 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-13,1,3,12,562,2,24.3,24.3 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-23,1,4,15,1070,2,27.1,27.1 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-07,2,7,19,1178,4,32.4,27.9 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-03,3,10,60,3296,12,38.4,36.199999999999996 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-18,3,8,50,3465,11,43.2,38.53333333333334 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-22,3,8,24,1519,6,44.2,39.1 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-26,3,7,44,2490,9,42.4,38.800000000000004 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-27,3,8,46,2657,9,43.2,39.06666666666667 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-04,1,3,19,1340,3,29.3,29.3 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-09,1,2,13,801,2,30.5,30.5 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-06,3,8,46,2521,8,39.2,37.6 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-15,3,5,19,1234,4,40.6,39.199999999999996 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-04,3,7,61,4124,9,52.4,40.666666666666664 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-09,3,7,54,2711,10,54.2,41.93333333333334 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-06,2,3,17,1081,4,21.5,19.15 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-15,2,4,10,716,2,22.5,19.8 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-24,1,2,13,762,3,40.0,40.0 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-13,1,5,25,1203,4,27.5,27.5 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-23,1,6,26,1575,6,30.6,30.6 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-10,2,6,49,2891,7,44.6,43.0 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-20,2,10,54,3078,9,46.8,45.2 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-17,3,10,77,4613,13,57.9,47.86666666666667 +A1063,Maple Global,education,smb,NA,CA,2025-06-05,1,2,10,507,2,19.9,19.9 +A1063,Maple Global,education,smb,NA,CA,2025-06-28,1,3,6,383,1,23.7,23.7 +A1063,Maple Global,education,smb,NA,CA,2025-06-29,1,1,4,213,1,22.3,22.3 +A1063,Maple Global,education,smb,NA,CA,2025-06-30,1,2,10,576,2,23.1,23.1 +A1064,Atlas Health,education,smb,NA,US,2025-06-16,1,1,7,430,2,24.6,24.6 +A1064,Atlas Health,education,smb,NA,US,2025-06-21,1,2,6,308,1,26.2,26.2 +A1064,Atlas Health,education,smb,NA,US,2025-06-25,1,2,12,653,3,27.4,27.4 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-11,2,6,33,2159,6,23.0,21.75 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-19,2,9,41,2349,6,24.2,23.4 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-05,2,8,39,2240,10,36.7,36.650000000000006 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-28,2,3,12,689,2,41.5,41.1 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-29,2,5,16,961,4,40.0,39.85 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-30,2,6,35,1947,6,41.5,40.7 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-10,1,4,25,1718,5,30.3,30.3 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-20,1,2,14,754,3,32.5,32.5 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-03,3,9,70,3532,14,56.1,40.93333333333334 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-18,3,10,73,4331,14,66.5,58.5 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-22,3,10,35,1963,6,67.0,58.9 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-26,3,11,64,3756,13,68.3,60.03333333333333 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-27,3,11,61,3661,15,68.8,60.0 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-17,1,4,17,935,3,15.9,15.9 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-07,2,3,12,570,3,33.7,26.5 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-07,2,6,22,1470,5,67.2,48.25 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-10,2,10,47,2306,12,18.4,18.299999999999997 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-20,2,12,54,3740,10,20.6,20.0 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-07,3,5,20,1209,4,30.7,29.53333333333333 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-02,1,6,20,1262,2,23.6,23.6 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-04,2,12,56,2884,10,39.2,30.35 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-09,2,9,39,2610,8,39.2,30.6 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-16,3,7,42,2276,9,34.2,29.233333333333334 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-21,3,5,20,1351,5,34.8,30.7 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-25,3,6,44,2374,9,34.7,30.5 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-17,3,8,48,3235,11,33.8,27.5 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-12,4,11,87,5209,18,66.1,54.025000000000006 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-01,2,5,17,1233,4,40.4,29.25 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-08,2,5,15,812,4,41.3,30.5 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-14,2,5,15,1054,3,42.1,31.55 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-07,2,2,10,551,2,26.5,24.3 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-16,1,1,9,416,2,32.4,32.4 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-21,1,2,6,381,1,33.2,33.2 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-25,1,3,16,1157,2,33.3,33.3 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-18,2,10,54,3448,10,43.6,40.45 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-22,2,5,15,910,2,44.2,40.6 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-26,2,9,42,2925,8,42.6,39.900000000000006 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-27,2,9,46,2344,7,43.7,40.55 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-13,1,3,15,885,3,18.0,18.0 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-23,1,4,18,1286,5,20.5,20.5 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-05,1,3,13,780,3,15.8,15.8 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-28,1,1,4,257,1,18.9,18.9 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-29,1,3,7,474,2,18.1,18.1 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-30,1,2,11,796,2,21.1,21.1 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-04,2,9,48,2929,12,32.7,28.1 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-09,2,8,41,2290,9,32.9,28.25 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-03,1,2,10,732,2,20.2,20.2 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-07,3,4,18,848,4,29.2,25.03333333333333 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-13,2,5,26,1498,6,32.6,31.65 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-23,2,8,34,2101,8,33.6,33.0 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-10,2,8,52,3299,9,60.0,50.7 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-20,2,10,50,2777,12,61.5,52.7 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-24,3,9,73,3955,12,58.8,51.166666666666664 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-06,2,3,22,1178,4,27.0,23.6 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-15,2,4,16,1026,3,29.0,25.3 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-03,1,3,12,697,2,20.6,20.6 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-04,3,9,53,3303,11,21.2,19.666666666666668 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-09,3,9,51,2984,9,20.8,20.033333333333335 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-03,1,6,23,1050,3,23.2,23.2 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-16,1,5,21,1513,5,24.5,24.5 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-21,1,2,6,405,2,26.5,26.5 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-25,1,4,17,1264,3,26.0,26.0 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-02,1,2,9,677,2,22.1,22.1 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-10,3,3,33,1594,6,25.1,22.133333333333336 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-20,3,6,39,2058,9,25.2,22.733333333333334 +A1016,BluePeak Capital,energy,enterprise,EMEA,DE,2025-06-17,4,13,94,5794,20,65.0,51.0 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-10,2,6,39,2303,9,30.9,30.35 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-20,2,4,25,1221,6,32.5,32.2 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-24,1,1,8,575,1,16.4,16.4 +A1021,Apex Logistics,software,smb,NA,US,2025-06-12,1,5,17,1176,3,21.2,21.2 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-02,1,1,7,333,2,13.0,13.0 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-11,1,5,21,1227,3,12.9,12.9 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-19,1,6,24,1193,4,14.4,14.4 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-02,2,5,26,1682,7,15.6,15.0 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-11,1,3,14,915,3,23.0,23.0 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-19,1,4,20,1050,5,24.6,24.6 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-16,1,6,25,1666,4,13.4,13.4 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-21,1,3,9,520,2,13.1,13.1 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-25,1,5,25,1221,5,14.1,14.1 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-13,2,3,18,1250,3,19.0,16.45 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-23,2,5,22,1323,4,21.8,18.7 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-12,1,3,14,782,2,29.0,29.0 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-18,4,9,81,4720,17,45.2,39.9 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-22,4,4,30,1879,5,45.9,40.900000000000006 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-26,4,6,66,3872,11,45.6,40.825 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-27,4,7,64,4327,13,48.3,42.699999999999996 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-05,3,8,48,2817,9,37.0,29.8 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-28,3,5,20,1179,5,40.7,33.13333333333333 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-29,3,4,20,1200,4,41.6,33.93333333333334 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-30,3,8,46,2999,8,40.5,33.06666666666666 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-02,2,9,43,3116,8,34.1,27.3 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-18,1,3,12,771,2,17.0,17.0 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-22,1,2,5,385,1,18.4,18.4 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-26,1,3,15,865,4,18.8,18.8 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-27,1,2,9,663,2,19.5,19.5 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-16,2,5,28,2007,6,38.8,32.55 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-21,2,5,15,922,4,39.9,34.05 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-25,2,5,32,1709,5,40.9,34.85 +A1037,Lighthouse Network,media,enterprise,EMEA,UK,2025-06-17,2,8,54,3234,9,63.6,59.150000000000006 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-05,2,3,17,1034,4,22.2,22.1 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-28,2,2,7,433,2,25.2,25.1 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-29,2,3,9,540,2,24.2,23.9 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-30,2,3,16,1047,2,26.1,25.450000000000003 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-18,1,4,17,952,4,21.4,21.4 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-22,1,4,9,720,1,20.3,20.3 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-26,1,5,20,1067,3,22.5,22.5 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-27,1,3,14,784,3,20.6,20.6 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-05,2,5,31,1396,6,36.0,35.65 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-28,2,5,14,933,2,39.9,39.349999999999994 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-29,2,4,14,1011,2,40.0,39.9 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-30,2,4,24,1370,6,40.2,39.8 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-16,2,5,27,1245,6,33.3,27.0 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-21,2,3,14,807,3,32.7,27.650000000000002 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-25,2,8,47,2278,10,34.0,27.7 +A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,2025-06-17,2,5,34,2411,8,33.4,30.4 +A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,2025-06-17,3,11,74,4362,15,51.0,49.03333333333333 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-07,1,3,7,490,1,11.8,11.8 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-07,4,9,41,2674,7,65.3,51.449999999999996 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-13,1,3,13,765,3,13.2,13.2 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-23,1,4,14,943,2,15.9,15.9 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-18,3,16,93,5448,20,54.7,42.43333333333333 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-22,3,10,36,2130,8,54.8,43.13333333333333 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-26,3,13,75,4672,16,54.3,43.06666666666666 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-27,3,12,65,3269,14,57.2,44.666666666666664 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-13,1,1,6,387,2,17.2,17.2 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-23,1,1,8,483,2,17.6,17.6 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-16,1,4,19,1242,5,25.3,25.3 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-21,1,3,6,456,1,26.9,26.9 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-25,1,2,11,589,2,27.3,27.3 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-24,2,6,37,2300,7,35.2,29.85 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-18,3,5,39,2460,8,42.3,38.8 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-22,3,6,21,1300,4,42.5,39.73333333333333 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-26,3,8,50,2593,12,42.4,39.266666666666666 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-27,3,7,45,2155,9,43.8,40.5 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-03,3,10,59,3767,12,40.6,36.833333333333336 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-06,1,4,19,914,4,29.6,29.6 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-15,1,2,7,330,1,30.3,30.3 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-04,3,7,51,3391,11,40.0,37.76666666666667 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-09,3,6,39,2376,9,39.6,37.666666666666664 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-06,3,6,52,2635,10,52.7,41.03333333333333 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-15,3,4,25,1660,3,55.1,42.63333333333333 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-04,2,6,32,2124,8,20.9,18.85 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-09,2,5,27,1658,5,22.3,19.8 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-07,1,3,10,642,2,37.7,37.7 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-16,1,5,19,1330,4,28.4,28.4 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-21,1,3,7,463,1,28.3,28.3 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-25,1,7,36,2348,8,28.4,28.4 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-11,2,10,67,3714,10,45.6,44.05 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-19,2,7,43,2798,10,45.2,43.85 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-05,3,10,66,3464,14,56.6,46.13333333333333 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-28,3,8,31,1864,3,60.0,48.76666666666667 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-29,3,5,26,1666,5,60.9,50.03333333333333 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-30,3,8,54,3149,11,60.4,49.03333333333334 +A1063,Maple Global,education,smb,NA,CA,2025-06-17,1,2,13,608,2,22.4,22.4 +A1064,Atlas Health,education,smb,NA,US,2025-06-13,1,3,15,1002,3,25.6,25.6 +A1064,Atlas Health,education,smb,NA,US,2025-06-23,1,3,11,609,2,25.2,25.2 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-10,2,7,38,2469,8,22.4,21.9 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-20,2,8,40,2386,6,23.5,22.0 +A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,2025-06-17,2,7,35,1828,6,39.0,38.9 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-11,1,2,16,883,4,29.9,29.9 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-19,1,2,15,759,3,31.1,31.1 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-18,3,6,57,3525,12,58.4,43.300000000000004 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-22,3,6,29,1800,7,58.5,43.63333333333333 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-26,3,5,49,2678,11,60.8,44.86666666666667 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-27,3,6,52,3200,9,59.0,43.23333333333333 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-03,3,11,69,3682,15,63.9,56.36666666666667 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-05,1,3,16,1002,3,14.2,14.2 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-28,1,3,6,455,1,16.0,16.0 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-29,1,4,7,368,2,15.9,15.9 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-30,1,4,15,834,2,17.1,17.1 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-24,2,7,39,2483,9,36.4,29.25 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-24,2,9,54,3329,8,68.5,50.0 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-11,2,6,34,2489,8,19.3,19.1 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-19,2,10,50,2505,12,19.7,19.549999999999997 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-24,3,13,71,4769,16,33.0,31.633333333333336 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-06,2,13,53,3449,9,39.7,30.450000000000003 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-15,2,4,14,1068,3,40.7,31.3 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-13,3,5,33,1698,6,34.2,29.066666666666666 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-23,3,7,43,2978,8,35.0,29.733333333333334 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-05,3,5,38,1878,8,31.7,25.733333333333334 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-28,3,6,21,1059,4,36.9,30.166666666666668 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-29,3,5,20,1247,4,35.4,30.2 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-30,3,7,43,2894,7,36.4,30.23333333333333 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-01,4,10,41,2225,7,63.7,52.150000000000006 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-08,4,7,37,2021,5,64.7,52.875 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-14,4,8,39,2825,7,65.7,54.025000000000006 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-12,2,8,39,2204,7,41.8,31.25 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-24,2,6,36,2057,6,29.6,27.15 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-13,1,1,9,455,1,32.1,32.1 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-23,1,3,18,946,4,34.2,34.2 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-03,2,6,38,2421,7,41.4,38.15 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-16,1,2,9,426,2,19.3,19.3 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-21,1,1,4,297,1,19.5,19.5 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-25,1,4,19,1004,5,18.8,18.8 +A1086,River Labs,software,smb,EMEA,FR,2025-06-02,1,4,13,987,3,22.3,22.3 +A1088,Cedar Partners,energy,smb,APAC,NZ,2025-06-17,1,5,20,1186,3,17.9,17.9 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-06,2,11,43,2864,7,32.8,28.049999999999997 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-15,2,6,18,1048,4,33.4,28.85 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-18,1,1,8,363,2,20.5,20.5 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-22,1,2,5,387,1,22.8,22.8 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-26,1,2,9,521,2,22.3,22.3 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-27,1,2,11,531,2,23.0,23.0 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-11,3,7,52,2422,10,28.7,25.166666666666668 +A1001,Helio Systems,healthcare,mid_market,EMEA,NL,2025-06-19,3,6,44,2652,8,30.6,26.899999999999995 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-01,2,3,13,813,3,30.3,29.8 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-08,2,4,14,847,3,32.3,30.849999999999998 +A1002,Summit Foods,media,mid_market,NA,US,2025-06-14,2,2,11,732,2,32.0,31.0 +A1003,Nova Ventures,manufacturing,enterprise,NA,US,2025-06-24,2,8,49,2386,9,62.9,53.45 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-10,3,10,72,3337,13,55.9,48.76666666666667 +A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,2025-06-20,3,9,59,3561,12,57.1,49.800000000000004 +A1006,Helio Works,education,mid_market,EMEA,UK,2025-06-03,2,4,29,1711,4,27.4,23.75 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-06,1,1,6,256,2,21.6,21.6 +A1007,Silver Systems,energy,smb,EMEA,FR,2025-06-15,1,1,3,208,1,22.7,22.7 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-18,3,8,51,3203,10,23.3,21.7 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-22,3,8,25,1404,5,24.2,22.3 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-26,3,8,45,2798,9,23.5,22.53333333333333 +A1008,Pacific Works,software,mid_market,EMEA,UK,2025-06-27,3,10,47,2513,10,25.8,23.266666666666666 +A1009,Summit Group,financial_services,mid_market,NA,US,2025-06-17,2,7,44,2577,10,25.2,22.7 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-06,1,5,19,1085,4,23.5,23.5 +A1010,Orchid Foods,education,smb,NA,CA,2025-06-15,1,3,8,387,2,25.6,25.6 +A1011,Vertex Energy,software,smb,NA,CA,2025-06-12,1,4,13,746,2,23.1,23.1 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-05,1,5,19,1440,3,22.4,22.4 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-28,1,3,6,469,1,24.9,24.9 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-29,1,2,5,266,1,25.3,25.3 +A1012,Cedar Ventures,retail,smb,APAC,JP,2025-06-30,1,4,15,935,2,25.6,25.6 +A1013,River Foods,manufacturing,mid_market,NA,US,2025-06-24,3,3,35,1656,7,26.7,23.233333333333334 +A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,2025-06-24,2,6,36,1808,9,33.4,33.25 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-10,1,1,9,602,1,15.1,15.1 +A1019,Sierra Systems,education,smb,APAC,JP,2025-06-20,1,1,7,302,1,15.6,15.6 +A1020,Pioneer Network,travel,smb,EMEA,FR,2025-06-17,1,1,7,317,1,20.2,20.2 +A1021,Apex Logistics,software,smb,NA,US,2025-06-16,1,4,17,777,5,21.7,21.7 +A1021,Apex Logistics,software,smb,NA,US,2025-06-21,1,3,8,554,2,23.0,23.0 +A1021,Apex Logistics,software,smb,NA,US,2025-06-25,1,6,31,1930,5,22.5,22.5 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-05,1,2,11,509,2,13.7,13.7 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-28,1,1,4,220,1,17.6,17.6 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-29,1,2,6,331,1,18.4,18.4 +A1022,Summit Collective,retail,smb,APAC,NZ,2025-06-30,1,2,10,697,2,18.1,18.1 +A1023,Atlas Systems,education,smb,NA,CA,2025-06-07,1,3,8,557,2,12.3,12.3 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-05,2,2,15,824,4,15.8,15.75 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-28,2,3,10,524,3,20.1,18.85 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-29,2,2,8,541,2,20.2,19.95 +A1024,Sierra Group,manufacturing,smb,NA,CA,2025-06-30,2,3,17,985,4,20.5,20.05 +A1025,Bright Capital,education,smb,EMEA,UK,2025-06-07,1,3,7,428,2,23.0,23.0 +A1026,Pioneer Capital,education,smb,NA,CA,2025-06-12,1,6,22,1282,5,12.6,12.6 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-01,2,2,8,392,1,16.8,14.65 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-08,2,2,8,499,2,18.2,15.95 +A1027,BluePeak Health,retail,smb,APAC,SG,2025-06-14,2,4,11,653,3,19.5,17.05 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-16,1,3,14,718,2,30.3,30.3 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-21,1,4,12,603,3,31.2,31.2 +A1028,Apex Energy,energy,mid_market,APAC,SG,2025-06-25,1,5,28,1728,4,32.1,32.1 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-04,4,7,72,4230,11,42.8,38.099999999999994 +A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,2025-06-09,4,9,71,4733,14,44.2,39.325 +A1031,Helio Holdings,healthcare,mid_market,APAC,AU,2025-06-02,3,6,38,2424,9,36.0,29.066666666666666 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-05,2,10,41,2123,9,34.9,28.15 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-28,2,6,20,1196,5,36.6,31.25 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-29,2,7,19,1073,2,38.2,32.0 +A1033,Lighthouse Global,logistics,mid_market,NA,CA,2025-06-30,2,11,56,3786,9,38.3,31.9 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-04,1,3,14,613,3,14.7,14.7 +A1034,Helio Partners,travel,smb,NA,CA,2025-06-09,1,2,10,601,2,16.7,16.7 +A1035,Bright Retail,retail,mid_market,EMEA,UK,2025-06-12,2,7,34,2428,8,37.2,31.85 +A1038,River Systems,logistics,smb,APAC,AU,2025-06-02,2,3,15,1084,3,22.0,21.5 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-04,1,4,19,993,5,18.5,18.5 +A1039,Nova Group,media,smb,EMEA,FR,2025-06-09,1,4,18,1100,5,19.2,19.2 +A1040,Harbor Collective,healthcare,mid_market,APAC,SG,2025-06-02,2,6,28,1632,5,36.2,36.0 +A1041,Cedar Logistics,media,mid_market,EMEA,NL,2025-06-12,2,6,31,1459,6,32.5,26.35 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-11,1,2,9,591,2,13.7,13.7 +A1044,Summit Holdings,software,smb,EMEA,NL,2025-06-19,1,4,19,1201,4,13.4,13.4 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-11,4,11,91,5306,20,65.0,51.575 +A1045,Nova Holdings,manufacturing,enterprise,NA,CA,2025-06-19,4,11,86,5518,19,67.0,52.324999999999996 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-01,1,1,4,226,1,12.8,12.8 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-08,1,1,4,247,1,13.9,13.9 +A1046,Pioneer Solutions,education,smb,NA,CA,2025-06-14,1,3,7,488,1,14.1,14.1 +A1047,Orchid Global,healthcare,enterprise,APAC,AU,2025-06-17,2,12,68,3913,13,66.0,65.6 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-04,3,12,79,4069,17,52.6,40.199999999999996 +A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,2025-06-09,3,13,76,3834,11,52.9,40.833333333333336 +A1049,Northwind Network,energy,enterprise,NA,CA,2025-06-17,3,14,88,5169,14,69.1,59.800000000000004 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-01,1,2,6,340,1,16.2,16.2 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-08,1,2,6,460,1,16.7,16.7 +A1050,Cedar Energy,software,smb,APAC,JP,2025-06-14,1,1,4,253,1,16.8,16.8 +A1051,Lighthouse Systems,media,smb,EMEA,UK,2025-06-12,1,4,15,1079,3,23.5,23.5 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-10,2,8,38,2147,7,33.9,28.7 +A1052,Sierra Labs,software,mid_market,APAC,NZ,2025-06-20,2,10,43,2234,10,34.2,29.450000000000003 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-04,3,8,47,3265,9,39.4,36.900000000000006 +A1053,Bright Health,media,mid_market,NA,CA,2025-06-09,3,7,38,2092,8,40.2,37.699999999999996 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-06,3,10,51,2922,8,41.1,37.166666666666664 +A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,2025-06-15,3,6,20,1258,5,42.6,38.4 +A1055,Pioneer Systems,travel,mid_market,EMEA,FR,2025-06-03,1,2,13,783,3,28.9,28.9 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-18,3,7,45,2368,9,41.4,38.93333333333333 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-22,3,5,18,1231,4,43.8,40.5 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-26,3,8,43,2610,10,44.4,41.266666666666666 +A1056,Delta Global,retail,mid_market,APAC,AU,2025-06-27,3,7,45,2342,8,44.3,41.63333333333333 +A1057,Harbor Partners,education,enterprise,APAC,NZ,2025-06-03,3,7,60,3837,12,53.4,40.766666666666666 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-18,2,5,27,1962,5,22.5,21.15 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-22,2,5,13,1004,3,24.8,22.05 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-26,2,3,18,953,4,23.4,21.2 +A1058,Evergreen Analytics,travel,smb,EMEA,UK,2025-06-27,2,5,23,1166,5,23.5,22.35 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-11,1,2,13,936,3,38.8,38.8 +A1059,Evergreen Partners,education,mid_market,NA,CA,2025-06-19,1,3,15,1064,2,40.2,40.2 +A1060,Cedar Foods,healthcare,mid_market,NA,CA,2025-06-12,1,7,24,1685,4,26.9,26.9 +A1061,Atlas Capital,travel,enterprise,EMEA,FR,2025-06-07,2,4,20,979,3,43.9,42.65 +A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,2025-06-02,3,12,66,3434,15,56.5,45.79999999999999 +A1064,Atlas Health,education,smb,NA,US,2025-06-01,1,1,4,250,1,22.7,22.7 +A1064,Atlas Health,education,smb,NA,US,2025-06-08,1,1,4,257,1,24.5,24.5 +A1064,Atlas Health,education,smb,NA,US,2025-06-14,1,2,6,472,1,24.6,24.6 +A1065,Vertex Partners,manufacturing,mid_market,NA,US,2025-06-24,2,8,41,2822,10,25.6,24.75 +A1067,Maple Energy,healthcare,mid_market,NA,CA,2025-06-07,1,3,9,692,2,30.4,30.4 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-04,3,7,61,2850,10,56.1,41.300000000000004 +A1068,Helio Health,manufacturing,enterprise,APAC,SG,2025-06-09,3,7,58,3771,13,57.6,42.4 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-06,3,10,65,4209,13,64.3,56.46666666666666 +A1069,Bright Foods,manufacturing,enterprise,NA,CA,2025-06-15,3,7,30,1730,7,64.8,57.26666666666667 +A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,2025-06-02,1,5,17,908,3,13.4,13.4 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-10,2,5,29,1924,8,34.2,27.3 +A1071,Evergreen Group,education,mid_market,NA,CA,2025-06-20,2,8,38,2415,10,36.6,28.85 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-10,2,9,52,3728,13,67.4,48.5 +A1072,Summit Ventures,software,enterprise,NA,US,2025-06-20,2,11,60,3624,11,69.2,50.0 +A1073,Silver Holdings,travel,mid_market,EMEA,DE,2025-06-07,2,6,15,1130,4,18.4,18.299999999999997 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-10,3,9,54,3205,9,31.6,30.066666666666666 +A1074,Granite Analytics,retail,mid_market,NA,CA,2025-06-20,3,10,56,3033,10,31.0,30.166666666666668 +A1075,Cedar Labs,software,smb,EMEA,UK,2025-06-17,1,6,29,1589,5,25.5,25.5 +A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,2025-06-03,2,10,47,2783,10,39.3,30.4 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-01,3,3,17,1060,4,32.0,27.2 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-08,3,6,21,1205,3,32.8,28.066666666666666 +A1077,Evergreen Foods,travel,mid_market,NA,CA,2025-06-14,3,6,20,1115,4,34.1,29.099999999999998 +A1078,Beacon Foods,software,mid_market,EMEA,FR,2025-06-02,3,7,41,1920,9,31.3,25.600000000000005 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-13,4,13,90,4348,17,65.2,53.55 +A1079,Nova Foods,education,enterprise,EMEA,FR,2025-06-23,4,11,75,4310,15,68.1,55.925 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-16,2,6,35,2429,5,43.8,31.7 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-21,2,8,21,1305,5,44.5,32.95 +A1080,Beacon Global,financial_services,mid_market,EMEA,NL,2025-06-25,2,7,38,2425,7,42.5,32.5 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-10,2,5,35,2085,5,27.8,25.25 +A1081,River Collective,financial_services,mid_market,NA,CA,2025-06-20,2,5,32,1535,5,28.1,26.65 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-01,1,1,5,263,1,30.8,30.8 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-08,1,1,5,320,1,32.0,32.0 +A1083,Falcon Works,education,mid_market,NA,CA,2025-06-14,1,1,6,442,1,32.8,32.8 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-06,2,7,37,2555,7,41.2,38.25 +A1084,Silver Foods,manufacturing,mid_market,NA,CA,2025-06-15,2,3,13,790,2,42.7,39.650000000000006 +A1085,Sierra Capital,financial_services,smb,NA,US,2025-06-12,1,4,19,965,4,19.3,19.3 +A1086,River Labs,software,smb,EMEA,FR,2025-06-05,1,3,11,735,2,22.9,22.9 +A1086,River Labs,software,smb,EMEA,FR,2025-06-28,1,2,5,374,1,25.8,25.8 +A1086,River Labs,software,smb,EMEA,FR,2025-06-29,1,2,5,253,1,24.7,24.7 +A1086,River Labs,software,smb,EMEA,FR,2025-06-30,1,3,13,841,4,28.2,28.2 +A1089,Beacon Network,healthcare,mid_market,NA,US,2025-06-03,2,9,44,2669,9,32.8,28.049999999999997 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-04,1,2,11,536,1,19.8,19.8 +A1090,Vertex Labs,energy,smb,NA,US,2025-06-09,1,3,15,890,3,20.7,20.7 diff --git a/tasks/helixops_saas003/setup.sh b/tasks/helixops_saas003/setup.sh new file mode 100755 index 00000000..e3046744 --- /dev/null +++ b/tasks/helixops_saas003/setup.sh @@ -0,0 +1,3 @@ +#!/bin/bash +patch -p1 < /app/setup/changes.patch +dbt run || true diff --git a/tasks/helixops_saas003/setup/changes.patch b/tasks/helixops_saas003/setup/changes.patch new file mode 100644 index 00000000..addab2c7 --- /dev/null +++ b/tasks/helixops_saas003/setup/changes.patch @@ -0,0 +1,24 @@ +--- a/models/staging/stg_workspaces.sql ++++ b/models/staging/stg_workspaces.sql +@@ -11,10 +11,7 @@ + else 'active' + end as workspace_status, + {{ epoch_to_timestamp('deact_ts_epoch') }} as deactivated_at, +- case +- when lower(trim(env_tier)) in ('sandbox', 'sbx') then 'sandbox' +- else 'prod' +- end as environment_tier, ++ lower(trim(env_tier)) as environment_tier, + coalesce({{ bool_from_text('primary_ws_yn') }}, false) as is_primary, + case + when lower(trim(ws_stat_cd)) in ('arch', 'archived', 'disabled') then false +--- a/models/intermediate/int_workspace_daily_metrics.sql ++++ b/models/intermediate/int_workspace_daily_metrics.sql +@@ -17,7 +17,6 @@ + a.region, + a.billing_country, + w.workspace_name, +- w.environment_tier, + w.workspace_status, + w.is_primary, + u.usage_date, diff --git a/tasks/helixops_saas003/solution.sh b/tasks/helixops_saas003/solution.sh new file mode 100755 index 00000000..99242e7c --- /dev/null +++ b/tasks/helixops_saas003/solution.sh @@ -0,0 +1,3 @@ +#!/bin/bash +patch -p1 < /sage/solutions/changes.patch +dbt run --select stg_workspaces int_workspace_daily_metrics int_account_daily_usage diff --git a/tasks/helixops_saas003/solutions/changes.patch b/tasks/helixops_saas003/solutions/changes.patch new file mode 100644 index 00000000..b956c9ea --- /dev/null +++ b/tasks/helixops_saas003/solutions/changes.patch @@ -0,0 +1,29 @@ +--- a/models/staging/stg_workspaces.sql ++++ b/models/staging/stg_workspaces.sql +@@ -11,7 +11,10 @@ + else 'active' + end as workspace_status, + {{ epoch_to_timestamp('deact_ts_epoch') }} as deactivated_at, +- lower(trim(env_tier)) as environment_tier, ++ case ++ when lower(trim(env_tier)) in ('sandbox', 'sbx') then 'sandbox' ++ else 'prod' ++ end as environment_tier, + coalesce({{ bool_from_text('primary_ws_yn') }}, false) as is_primary, + case + when lower(trim(ws_stat_cd)) in ('arch', 'archived', 'disabled') then false +--- a/models/intermediate/int_workspace_daily_metrics.sql ++++ b/models/intermediate/int_workspace_daily_metrics.sql +@@ -17,6 +17,7 @@ + a.region, + a.billing_country, + w.workspace_name, ++ w.environment_tier, + w.workspace_status, + w.is_primary, + u.usage_date, +@@ -31,3 +32,4 @@ + from usage u + left join workspaces w using (workspace_id) + left join accounts a on w.account_id = a.account_id ++where w.environment_tier != 'sandbox' diff --git a/tasks/helixops_saas003/task.yaml b/tasks/helixops_saas003/task.yaml new file mode 100644 index 00000000..8b16f646 --- /dev/null +++ b/tasks/helixops_saas003/task.yaml @@ -0,0 +1,26 @@ +task_id: helixops_saas003 +status: ready +description: Filter sandbox workspaces from usage metrics — requires fixing environment_tier normalization in staging before the filter can work +prompts: + - key: base + prompt: |- + Please filter sandbox usage out of daily usage reporting. +author_name: joel +author_email: joel@example.com +difficulty: medium +tags: + - dbt + - helixops_saas +test_setup: |- + dbt run --select stg_workspaces int_workspace_daily_metrics int_account_daily_usage +variants: +- db_type: duckdb + db_name: helixops_saas + project_type: dbt + project_name: helixops_saas +- db_type: duckdb + db_name: helixops_saas + project_type: dbt-fusion + project_name: helixops_saas +solution_seeds: + - table_name: int_account_daily_usage diff --git a/tasks/helixops_saas003/tests/AUTO_int_account_daily_usage_equality.sql b/tasks/helixops_saas003/tests/AUTO_int_account_daily_usage_equality.sql new file mode 100644 index 00000000..51acff4e --- /dev/null +++ b/tasks/helixops_saas003/tests/AUTO_int_account_daily_usage_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'int_account_daily_usage' %} +{% set answer_keys = ['solution__int_account_daily_usage'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__int_account_daily_usage') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas003/tests/AUTO_int_account_daily_usage_existence.sql b/tasks/helixops_saas003/tests/AUTO_int_account_daily_usage_existence.sql new file mode 100644 index 00000000..7be5c73d --- /dev/null +++ b/tasks/helixops_saas003/tests/AUTO_int_account_daily_usage_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'int_account_daily_usage' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas004/macros/ade_bench_equality_test.sql b/tasks/helixops_saas004/macros/ade_bench_equality_test.sql new file mode 100644 index 00000000..510c6037 --- /dev/null +++ b/tasks/helixops_saas004/macros/ade_bench_equality_test.sql @@ -0,0 +1,78 @@ +{% macro ade_bench_equality_test(table_name, answer_keys, cols_to_exclude=[]) %} + {% if not execute %} + select 1 where 1=0 + {% else %} + {% set ns = namespace(matched=false) %} + {% set actual_rel = load_relation(ref(table_name)) %} + + {% if actual_rel is not none %} + {% set actual_columns = adapter.get_columns_in_relation(actual_rel) %} + {% set exclude_lower = cols_to_exclude | map('lower') | list %} + + {%- set actual_col_names = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do actual_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set actual_set = actual_col_names | sort %} + + {% for answer_key in answer_keys %} + {% if not ns.matched %} + {% set seed_rel = load_relation(ref(answer_key)) %} + {% if seed_rel is not none %} + {% set seed_columns = adapter.get_columns_in_relation(seed_rel) %} + + {%- set seed_col_names = [] -%} + {%- for col in seed_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do seed_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set seed_set = seed_col_names | sort %} + + {% if actual_set == seed_set %} + {%- set compare_cols = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do compare_cols.append(col.quoted) -%} + {%- endif -%} + {%- endfor -%} + {% set compare_cols_csv = compare_cols | join(', ') %} + + {% set query %} + with a_minus_b as ( + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + except + select {{ compare_cols_csv }} from {{ ref(table_name) }} + ), + b_minus_a as ( + select {{ compare_cols_csv }} from {{ ref(table_name) }} + except + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + ), + unioned as ( + select * from a_minus_b + union all + select * from b_minus_a + ) + select count(*) as diff_count from unioned + {% endset %} + + {% set result = run_query(query) %} + {% if result.rows[0][0] == 0 %} + {% set ns.matched = true %} + {% endif %} + {% endif %} + {% endif %} + {% endif %} + {% endfor %} + {% endif %} + + {% if ns.matched %} + select 1 where 1=0 + {% else %} + select 1 + {% endif %} + {% endif %} +{% endmacro %} diff --git a/tasks/helixops_saas004/seeds/_no-op.txt b/tasks/helixops_saas004/seeds/_no-op.txt new file mode 100644 index 00000000..2d187cdc --- /dev/null +++ b/tasks/helixops_saas004/seeds/_no-op.txt @@ -0,0 +1,29 @@ + + +seeds: + helixops_saas: + solution__int_workspace_roster: + +column_types: + membership_id: varchar + workspace_id: varchar + workspace_name: varchar + environment_tier: varchar + workspace_status: varchar + is_primary: boolean + account_id: varchar + account_name: varchar + segment: varchar + region: varchar + billing_country: varchar + user_id: varchar + email: varchar + full_name: varchar + title: varchar + department: varchar + user_status: varchar + is_active_user: boolean + role: varchar + invited_at: timestamp + joined_at: timestamp + membership_status: varchar + is_current_membership: boolean diff --git a/tasks/helixops_saas004/seeds/solution__int_workspace_roster.csv b/tasks/helixops_saas004/seeds/solution__int_workspace_roster.csv new file mode 100644 index 00000000..e7b0a03a --- /dev/null +++ b/tasks/helixops_saas004/seeds/solution__int_workspace_roster.csv @@ -0,0 +1,1072 @@ +membership_id,workspace_id,workspace_name,environment_tier,workspace_status,is_primary,account_id,account_name,segment,region,billing_country,user_id,email,full_name,title,department,user_status,is_active_user,role,invited_at,joined_at,membership_status,is_current_membership +M4001,W2001,helio-core,prod,active,true,A1001,Helio Systems,mid_market,EMEA,NL,U3001,lena.park@heliosystems.example,Lena Park,Technical Program Manager,product,active,true,owner,2024-09-05 20:52:48,2024-09-05 21:49:48,active,true +M4002,W2001,helio-core,prod,active,true,A1001,Helio Systems,mid_market,EMEA,NL,U3002,mei.lewis@heliosystems.example,Mei Lewis,BI Analyst,analytics,active,true,viewer,2024-09-22 18:57:48,2024-09-22 21:52:48,active,true +M4003,W2002,helio-ops,prod,active,false,A1001,Helio Systems,mid_market,EMEA,NL,U3003,marcus.saeed@heliosystems.example,Marcus Saeed,Operations Manager,operations,active,true,admin,2024-08-17 15:02:48,2024-08-17 17:37:48,active,true +M4004,W2001,helio-core,prod,active,true,A1001,Helio Systems,mid_market,EMEA,NL,U3004,peter.ng@heliosystems.example,Peter Ng,Operations Director,operations,inactive,false,editor,2024-09-09 18:06:48,2024-09-09 19:02:48,removed,false +M4005,W2001,helio-core,prod,active,true,A1001,Helio Systems,mid_market,EMEA,NL,U3005,sofia.fischer@heliosystems.example,Sofia Fischer,Demand Gen Manager,marketing,active,true,editor,2024-08-17 17:24:48,2024-08-17 18:32:48,active,true +M4006,W2003,helio-finance,prod,active,false,A1001,Helio Systems,mid_market,EMEA,NL,U3006,marcus.silva@heliosystems.example,Marcus Silva,Finance Manager,finance,inactive,false,editor,2024-08-14 16:39:48,2024-08-14 18:41:48,removed,false +M4007,W2001,helio-core,prod,active,true,A1001,Helio Systems,mid_market,EMEA,NL,U3007,naomi.turner@heliosystems.example,Naomi Turner,Product Manager,product,active,true,viewer,2024-08-17 11:49:48,2024-08-17 13:50:48,active,true +M4008,W2002,helio-ops,prod,active,false,A1001,Helio Systems,mid_market,EMEA,NL,U3008,peter.saeed@heliosystems.example,Peter Saeed,Revenue Operations Manager,sales,active,true,viewer,2024-08-30 16:03:48,2024-08-30 17:48:48,active,true +M4009,W2003,helio-finance,prod,active,false,A1001,Helio Systems,mid_market,EMEA,NL,U3009,victor.price@heliosystems.example,Victor Price,Product Manager,product,active,true,viewer,2024-08-19 19:48:48,2024-08-19 20:56:48,active,true +M4010,W2004,summit-core,prod,active,true,A1002,Summit Foods,mid_market,NA,US,U3010,sofia.alvarez@summitfoods.example,Sofia Alvarez,FP&A Analyst,finance,active,true,owner,2025-02-06 21:48:29,2025-02-07 00:31:29,active,true +M4011,W2006,summit-finance,prod,active,false,A1002,Summit Foods,mid_market,NA,US,U3011,lena.price@summitfoods.example,Lena Price,Controller,finance,active,true,editor,2025-02-21 21:46:29,2025-02-21 22:37:29,active,true +M4012,W2006,summit-finance,prod,active,false,A1002,Summit Foods,mid_market,NA,US,U3012,tomas.saeed@summitfoods.example,Tomas Saeed,Analytics Engineer,data,active,true,editor,2025-02-09 22:05:29,2025-02-09 23:11:29,active,true +M4013,W2004,summit-core,prod,active,true,A1002,Summit Foods,mid_market,NA,US,U3013,nina.romero@summitfoods.example,Nina Romero,Founder,executive,active,true,editor,2025-02-02 00:33:29,2025-02-02 03:28:29,active,true +M4014,W2004,summit-core,prod,active,true,A1002,Summit Foods,mid_market,NA,US,U3014,marcus.silva@summitfoods.example,Marcus Silva,Finance Manager,finance,active,true,viewer,2025-02-02 05:43:29,2025-02-02 07:54:29,active,true +M4015,W2005,summit-ops,sandbox,active,false,A1002,Summit Foods,mid_market,NA,US,U3015,kenji.ward@summitfoods.example,Kenji Ward,Product Manager,product,active,true,viewer,2025-01-18 22:23:29,2025-01-18 22:47:29,active,true +M4016,W2004,summit-core,prod,active,true,A1002,Summit Foods,mid_market,NA,US,U3016,priya.meyer@summitfoods.example,Priya Meyer,Marketing Operations Lead,marketing,active,true,editor,2025-01-22 21:18:29,2025-01-22 23:18:29,active,true +M4017,W2004,summit-core,prod,active,true,A1002,Summit Foods,mid_market,NA,US,U3017,sofia.morgan@summitfoods.example,Sofia Morgan,Technical Program Manager,product,active,true,editor,2025-01-13 00:11:29,2025-01-13 00:22:29,active,true +M4018,W2004,summit-core,prod,active,true,A1002,Summit Foods,mid_market,NA,US,U3018,hannah.silva@summitfoods.example,Hannah Silva,BI Analyst,analytics,inactive,false,viewer,2025-02-03 03:11:29,2025-02-03 04:53:29,removed,false +M4019,W2005,summit-ops,sandbox,active,false,A1002,Summit Foods,mid_market,NA,US,U3019,lina.silva@summitfoods.example,Lina Silva,FP&A Analyst,finance,active,true,viewer,2025-02-24 05:09:29,2025-02-24 06:18:29,active,true +M4020,W2004,summit-core,prod,active,true,A1002,Summit Foods,mid_market,NA,US,U3020,mateo.dubois@summitfoods.example,Mateo Dubois,Workflow Analyst,operations,active,true,viewer,2025-02-06 22:08:29,2025-02-07 00:11:29,active,true +M4021,W2006,summit-finance,prod,active,false,A1002,Summit Foods,mid_market,NA,US,U3020,mateo.dubois@summitfoods.example,Mateo Dubois,Workflow Analyst,operations,active,true,viewer,2025-02-06 23:02:29,2025-02-06 23:28:29,active,true +M4022,W2006,summit-finance,prod,active,false,A1002,Summit Foods,mid_market,NA,US,U3021,kenji.nash@summitfoods.example,Kenji Nash,Analytics Manager,analytics,active,true,viewer,2025-01-16 21:23:29,2025-01-16 22:09:29,active,true +M4023,W2005,summit-ops,sandbox,active,false,A1002,Summit Foods,mid_market,NA,US,U3021,kenji.nash@summitfoods.example,Kenji Nash,Analytics Manager,analytics,active,true,viewer,2025-01-16 22:49:29,2025-01-16 22:58:29,active,true +M4024,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3022,owen.ng@novaventures.example,Owen Ng,Controller,finance,active,true,owner,2025-01-08 07:57:52,2025-01-08 09:17:52,active,true +M4025,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3023,marta.ng@novaventures.example,Marta Ng,Insights Lead,analytics,active,true,editor,2024-12-14 04:10:52,2024-12-14 07:06:52,active,true +M4026,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3024,derek.hart@novaventures.example,Derek Hart,Finance Manager,finance,active,true,viewer,2024-12-20 09:57:52,2024-12-20 10:57:52,active,true +M4027,W2009,nova-finance,prod,active,false,A1003,Nova Ventures,enterprise,NA,US,U3024,derek.hart@novaventures.example,Derek Hart,Finance Manager,finance,active,true,viewer,2024-12-20 08:48:52,2024-12-20 09:01:52,active,true +M4028,W2008,nova-ops,sandbox,archived,false,A1003,Nova Ventures,enterprise,NA,US,U3025,victor.fischer@novaventures.example,Victor Fischer,CFO,executive,active,true,viewer,2025-01-16 01:36:52,2025-01-16 03:54:52,removed,false +M4029,W2009,nova-finance,prod,active,false,A1003,Nova Ventures,enterprise,NA,US,U3026,owen.fischer@novaventures.example,Owen Fischer,CFO,executive,active,true,viewer,2024-12-15 04:23:52,2024-12-15 04:41:52,active,true +M4030,W2008,nova-ops,sandbox,archived,false,A1003,Nova Ventures,enterprise,NA,US,U3026,owen.fischer@novaventures.example,Owen Fischer,CFO,executive,active,true,editor,2024-12-15 04:03:52,2024-12-15 04:09:52,removed,false +M4031,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3027,alma.dubois@novaventures.example,Alma Dubois,Marketing Operations Lead,marketing,active,true,viewer,2024-12-12 04:49:52,2024-12-12 05:45:52,active,true +M4032,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3028,arjun.grant@novaventures.example,Arjun Grant,Analytics Manager,analytics,active,true,admin,2025-01-25 09:36:52,2025-01-25 10:30:52,active,true +M4033,W2008,nova-ops,sandbox,archived,false,A1003,Nova Ventures,enterprise,NA,US,U3028,arjun.grant@novaventures.example,Arjun Grant,Analytics Manager,analytics,active,true,viewer,2025-01-25 08:52:52,2025-01-25 11:48:52,removed,false +M4034,W2009,nova-finance,prod,active,false,A1003,Nova Ventures,enterprise,NA,US,U3029,claire.rossi@novaventures.example,Claire Rossi,Marketing Operations Lead,marketing,active,true,admin,2024-12-19 03:14:52,2024-12-19 03:46:52,active,true +M4035,W2008,nova-ops,sandbox,archived,false,A1003,Nova Ventures,enterprise,NA,US,U3029,claire.rossi@novaventures.example,Claire Rossi,Marketing Operations Lead,marketing,active,true,viewer,2024-12-19 02:35:52,2024-12-19 04:03:52,removed,false +M4036,W2009,nova-finance,prod,active,false,A1003,Nova Ventures,enterprise,NA,US,U3030,owen.petrova@novaventures.example,Owen Petrova,VP Data,executive,active,true,editor,2025-01-25 03:25:52,2025-01-25 04:00:52,active,true +M4037,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3031,jonas.rahman@novaventures.example,Jonas Rahman,FP&A Analyst,finance,active,true,editor,2025-01-12 05:57:52,2025-01-12 06:05:52,active,true +M4038,W2008,nova-ops,sandbox,archived,false,A1003,Nova Ventures,enterprise,NA,US,U3032,naomi.alvarez@novaventures.example,Naomi Alvarez,Product Manager,product,active,true,viewer,2025-01-03 10:21:52,2025-01-03 11:22:52,removed,false +M4039,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3032,naomi.alvarez@novaventures.example,Naomi Alvarez,Product Manager,product,active,true,editor,2025-01-03 09:35:52,2025-01-03 10:51:52,active,true +M4040,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3033,arjun.lewis@novaventures.example,Arjun Lewis,Operations Director,operations,inactive,false,admin,2024-12-30 07:41:52,2024-12-30 10:19:52,removed,false +M4041,W2009,nova-finance,prod,active,false,A1003,Nova Ventures,enterprise,NA,US,U3033,arjun.lewis@novaventures.example,Arjun Lewis,Operations Director,operations,inactive,false,viewer,2024-12-30 09:06:52,2024-12-30 11:28:52,active,true +M4042,W2008,nova-ops,sandbox,archived,false,A1003,Nova Ventures,enterprise,NA,US,U3034,kai.price@novaventures.example,Kai Price,Operations Director,operations,active,true,viewer,2024-12-31 02:59:52,2024-12-31 04:43:52,removed,false +M4043,W2009,nova-finance,prod,active,false,A1003,Nova Ventures,enterprise,NA,US,U3035,mateo.cole@novaventures.example,Mateo Cole,Controller,finance,active,true,admin,2025-01-20 03:31:52,2025-01-20 06:26:52,active,true +M4044,W2008,nova-ops,sandbox,archived,false,A1003,Nova Ventures,enterprise,NA,US,U3035,mateo.cole@novaventures.example,Mateo Cole,Controller,finance,active,true,editor,2025-01-20 04:18:52,2025-01-20 04:40:52,removed,false +M4045,W2008,nova-ops,sandbox,archived,false,A1003,Nova Ventures,enterprise,NA,US,U3036,ivy.hart@novaventures.example,Ivy Hart,Data Engineer,data,active,true,editor,2025-01-13 04:15:52,2025-01-13 06:50:52,removed,false +M4046,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3037,alma.patel@novaventures.example,Alma Patel,VP Data,executive,active,true,editor,2024-12-16 05:25:52,2024-12-16 06:01:52,active,true +M4047,W2010,silver-core,prod,archived,true,A1004,Silver Solutions,enterprise,NA,US,U3038,jonas.nash@silversolutions.example,Jonas Nash,Workflow Analyst,operations,inactive,false,owner,2024-10-18 14:46:43,2024-10-18 15:51:43,removed,false +M4048,W2010,silver-core,prod,archived,true,A1004,Silver Solutions,enterprise,NA,US,U3039,mila.silva@silversolutions.example,Mila Silva,Data Engineer,data,inactive,false,viewer,2024-09-12 12:22:43,2024-09-12 13:42:43,removed,false +M4049,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3039,mila.silva@silversolutions.example,Mila Silva,Data Engineer,data,inactive,false,viewer,2024-09-12 12:37:43,2024-09-12 13:34:43,removed,false +M4050,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3040,daniel.price@silversolutions.example,Daniel Price,Analytics Engineer,data,inactive,false,viewer,2024-10-17 20:50:43,2024-10-17 22:16:43,removed,false +M4051,W2010,silver-core,prod,archived,true,A1004,Silver Solutions,enterprise,NA,US,U3041,victor.morgan@silversolutions.example,Victor Morgan,Analytics Manager,analytics,active,true,editor,2024-09-11 12:03:43,2024-09-11 13:21:43,removed,false +M4052,W2010,silver-core,prod,archived,true,A1004,Silver Solutions,enterprise,NA,US,U3042,leo.ward@silversolutions.example,Leo Ward,Demand Gen Manager,marketing,inactive,false,viewer,2024-10-15 14:54:43,2024-10-15 15:51:43,removed,false +M4053,W2010,silver-core,prod,archived,true,A1004,Silver Solutions,enterprise,NA,US,U3043,marta.morgan@silversolutions.example,Marta Morgan,FP&A Analyst,finance,active,true,viewer,2024-10-09 20:57:43,2024-10-09 23:37:43,active,true +M4054,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3044,ava.grant@silversolutions.example,Ava Grant,Analytics Manager,analytics,active,true,editor,2024-09-22 15:17:43,2024-09-22 17:27:43,removed,false +M4055,W2010,silver-core,prod,archived,true,A1004,Silver Solutions,enterprise,NA,US,U3045,lina.price@silversolutions.example,Lina Price,Marketing Operations Lead,marketing,active,true,admin,2024-09-27 17:59:43,2024-09-27 18:36:43,removed,false +M4056,W2010,silver-core,prod,archived,true,A1004,Silver Solutions,enterprise,NA,US,U3046,tara.hart@silversolutions.example,Tara Hart,Technical Program Manager,product,active,true,editor,2024-09-26 19:46:43,2024-09-26 20:33:43,removed,false +M4057,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3046,tara.hart@silversolutions.example,Tara Hart,Technical Program Manager,product,active,true,viewer,2024-09-26 19:54:43,2024-09-26 21:47:43,removed,false +M4058,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3047,sofia.ward@silversolutions.example,Sofia Ward,Marketing Operations Lead,marketing,active,true,editor,2024-10-14 17:04:43,2024-10-14 18:00:43,removed,false +M4059,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3048,tara.turner@silversolutions.example,Tara Turner,Insights Lead,analytics,inactive,false,admin,2024-09-07 13:35:43,2024-09-07 15:16:43,removed,false +M4060,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3049,derek.morgan@silversolutions.example,Derek Morgan,Founder,executive,inactive,false,editor,2024-10-02 12:30:43,2024-10-02 13:14:43,active,true +M4061,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3050,claire.keller@silversolutions.example,Claire Keller,Sales Analyst,sales,inactive,false,admin,2024-10-12 15:36:43,2024-10-12 16:02:43,removed,false +M4062,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3051,olivia.lewis@silversolutions.example,Olivia Lewis,Operations Manager,operations,inactive,false,editor,2024-09-30 17:53:43,2024-09-30 19:35:43,removed,false +M4063,W2010,silver-core,prod,archived,true,A1004,Silver Solutions,enterprise,NA,US,U3051,olivia.lewis@silversolutions.example,Olivia Lewis,Operations Manager,operations,inactive,false,editor,2024-09-30 17:27:43,2024-09-30 18:44:43,removed,false +M4064,W2012,pacific-core,prod,active,true,A1005,Pacific Labs,enterprise,EMEA,UK,U3052,ben.hart@pacificlabs.example,Ben Hart,Revenue Operations Manager,sales,active,true,owner,2024-09-02 14:17:15,2024-09-02 15:47:15,active,true +M4065,W2012,pacific-core,prod,active,true,A1005,Pacific Labs,enterprise,EMEA,UK,U3053,leo.saeed@pacificlabs.example,Leo Saeed,Product Manager,product,active,true,viewer,2024-10-08 22:26:15,2024-10-08 22:34:15,active,true +M4066,W2013,pacific-ops,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3053,leo.saeed@pacificlabs.example,Leo Saeed,Product Manager,product,active,true,editor,2024-10-08 20:36:15,2024-10-08 22:49:15,active,true +M4067,W2013,pacific-ops,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3054,alma.rahman@pacificlabs.example,Alma Rahman,Sales Analyst,sales,active,true,editor,2024-10-07 18:36:15,2024-10-07 20:16:15,active,true +M4068,W2013,pacific-ops,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3055,isla.rossi@pacificlabs.example,Isla Rossi,Analytics Manager,analytics,active,true,editor,2024-09-01 18:11:15,2024-09-01 18:34:15,active,true +M4069,W2013,pacific-ops,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3056,kai.singh@pacificlabs.example,Kai Singh,Data Platform Manager,data,inactive,false,viewer,2024-09-30 18:11:15,2024-09-30 19:54:15,active,true +M4070,W2012,pacific-core,prod,active,true,A1005,Pacific Labs,enterprise,EMEA,UK,U3057,helena.patel@pacificlabs.example,Helena Patel,Data Platform Manager,data,active,true,editor,2024-09-30 15:54:15,2024-09-30 17:28:15,active,true +M4071,W2014,pacific-finance,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3058,mila.kim@pacificlabs.example,Mila Kim,Controller,finance,active,true,viewer,2024-09-15 13:39:15,2024-09-15 13:58:15,active,true +M4072,W2014,pacific-finance,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3059,olivia.tan@pacificlabs.example,Olivia Tan,Analytics Engineer,data,active,true,editor,2024-09-20 19:55:15,2024-09-20 21:02:15,active,true +M4073,W2013,pacific-ops,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3060,daniel.price@pacificlabs.example,Daniel Price,Product Manager,product,active,true,admin,2024-10-15 15:06:15,2024-10-15 18:04:15,active,true +M4074,W2012,pacific-core,prod,active,true,A1005,Pacific Labs,enterprise,EMEA,UK,U3061,alma.turner@pacificlabs.example,Alma Turner,Sales Analyst,sales,inactive,false,viewer,2024-09-11 20:53:15,2024-09-11 23:32:15,removed,false +M4075,W2014,pacific-finance,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3062,nina.turner@pacificlabs.example,Nina Turner,Marketing Operations Lead,marketing,active,true,admin,2024-09-17 21:12:15,2024-09-18 00:06:15,active,true +M4076,W2012,pacific-core,prod,active,true,A1005,Pacific Labs,enterprise,EMEA,UK,U3063,claire.reed@pacificlabs.example,Claire Reed,Technical Program Manager,product,active,true,admin,2024-09-30 18:04:15,2024-09-30 19:47:15,active,true +M4077,W2013,pacific-ops,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3064,evan.meyer@pacificlabs.example,Evan Meyer,Workflow Analyst,operations,active,true,viewer,2024-10-13 22:16:15,2024-10-14 00:33:15,active,true +M4078,W2012,pacific-core,prod,active,true,A1005,Pacific Labs,enterprise,EMEA,UK,U3065,marta.shah@pacificlabs.example,Marta Shah,BI Analyst,analytics,active,true,viewer,2024-09-18 14:54:15,2024-09-18 16:16:15,active,true +M4079,W2014,pacific-finance,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3065,marta.shah@pacificlabs.example,Marta Shah,BI Analyst,analytics,active,true,editor,2024-09-18 14:22:15,2024-09-18 16:43:15,active,true +M4080,W2014,pacific-finance,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3066,nina.turner2@pacificlabs.example,Nina Turner,Marketing Operations Lead,marketing,inactive,false,editor,2024-10-04 16:34:15,2024-10-04 17:01:15,removed,false +M4081,W2015,helio-core,prod,active,true,A1006,Helio Works,mid_market,EMEA,UK,U3067,mila.alvarez@helioworks.example,Mila Alvarez,Marketing Operations Lead,marketing,active,true,owner,2025-01-02 16:02:28,2025-01-02 17:35:28,active,true +M4082,W2015,helio-core,prod,active,true,A1006,Helio Works,mid_market,EMEA,UK,U3068,hannah.hill@helioworks.example,Hannah Hill,Sales Analyst,sales,active,true,editor,2025-01-05 14:46:28,2025-01-05 16:09:28,active,true +M4083,W2016,helio-ops,prod,active,false,A1006,Helio Works,mid_market,EMEA,UK,U3068,hannah.hill@helioworks.example,Hannah Hill,Sales Analyst,sales,active,true,editor,2025-01-05 16:15:28,2025-01-05 17:03:28,active,true +M4084,W2015,helio-core,prod,active,true,A1006,Helio Works,mid_market,EMEA,UK,U3069,naomi.chen@helioworks.example,Naomi Chen,FP&A Analyst,finance,active,true,admin,2025-01-01 15:22:28,2025-01-01 17:41:28,active,true +M4085,W2016,helio-ops,prod,active,false,A1006,Helio Works,mid_market,EMEA,UK,U3070,claire.khan@helioworks.example,Claire Khan,Insights Lead,analytics,active,true,viewer,2024-11-24 09:54:28,2024-11-24 10:44:28,active,true +M4086,W2016,helio-ops,prod,active,false,A1006,Helio Works,mid_market,EMEA,UK,U3071,isla.desai@helioworks.example,Isla Desai,FP&A Analyst,finance,inactive,false,editor,2024-12-02 08:52:28,2024-12-02 11:05:28,active,true +M4087,W2015,helio-core,prod,active,true,A1006,Helio Works,mid_market,EMEA,UK,U3071,isla.desai@helioworks.example,Isla Desai,FP&A Analyst,finance,inactive,false,viewer,2024-12-02 08:18:28,2024-12-02 10:48:28,active,true +M4088,W2015,helio-core,prod,active,true,A1006,Helio Works,mid_market,EMEA,UK,U3072,kenji.meyer@helioworks.example,Kenji Meyer,Data Engineer,data,inactive,false,admin,2024-12-10 09:42:28,2024-12-10 11:31:28,removed,false +M4089,W2016,helio-ops,prod,active,false,A1006,Helio Works,mid_market,EMEA,UK,U3072,kenji.meyer@helioworks.example,Kenji Meyer,Data Engineer,data,inactive,false,viewer,2024-12-10 08:19:28,2024-12-10 11:03:28,removed,false +M4090,W2015,helio-core,prod,active,true,A1006,Helio Works,mid_market,EMEA,UK,U3073,isla.saeed@helioworks.example,Isla Saeed,Product Manager,product,active,true,editor,2024-12-23 15:40:28,2024-12-23 16:01:28,active,true +M4091,W2017,silver-core,prod,active,true,A1007,Silver Systems,smb,EMEA,FR,U3074,samir.rahman@silversystems.example,Samir Rahman,Technical Program Manager,product,active,true,owner,2025-02-05 19:35:12,2025-02-05 19:47:12,active,true +M4092,W2017,silver-core,prod,active,true,A1007,Silver Systems,smb,EMEA,FR,U3075,claire.tan@silversystems.example,Claire Tan,Controller,finance,active,true,editor,2025-01-31 22:52:12,2025-01-31 23:22:12,active,true +M4093,W2017,silver-core,prod,active,true,A1007,Silver Systems,smb,EMEA,FR,U3076,alma.petrova@silversystems.example,Alma Petrova,Revenue Operations Manager,sales,active,true,admin,2025-01-02 18:42:12,2025-01-02 18:48:12,active,true +M4094,W2017,silver-core,prod,active,true,A1007,Silver Systems,smb,EMEA,FR,U3077,maya.lopez@silversystems.example,Maya Lopez,Revenue Operations Manager,sales,inactive,false,admin,2025-01-19 21:12:12,2025-01-19 21:18:12,removed,false +M4095,W2018,pacific-core,prod,active,true,A1008,Pacific Works,mid_market,EMEA,UK,U3078,maya.lopez@pacificworks.example,Maya Lopez,COO,executive,active,true,owner,2024-10-09 10:59:40,2024-10-09 12:12:40,active,true +M4096,W2019,pacific-ops,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3079,noah.hart@pacificworks.example,Noah Hart,Insights Lead,analytics,active,true,editor,2024-10-13 14:11:40,2024-10-13 15:42:40,active,true +M4097,W2019,pacific-ops,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3080,zoe.lewis@pacificworks.example,Zoe Lewis,Product Manager,product,active,true,viewer,2024-11-04 15:25:40,2024-11-04 16:31:40,active,true +M4098,W2019,pacific-ops,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3081,leo.nash@pacificworks.example,Leo Nash,Marketing Operations Lead,marketing,active,true,viewer,2024-11-18 11:58:40,2024-11-18 13:34:40,active,true +M4099,W2019,pacific-ops,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3082,derek.keller@pacificworks.example,Derek Keller,Operations Director,operations,active,true,viewer,2024-11-10 17:33:40,2024-11-10 18:13:40,active,true +M4100,W2020,pacific-finance,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3082,derek.keller@pacificworks.example,Derek Keller,Operations Director,operations,active,true,viewer,2024-11-10 19:02:40,2024-11-10 21:41:40,active,true +M4101,W2020,pacific-finance,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3083,peter.rahman@pacificworks.example,Peter Rahman,CFO,executive,active,true,editor,2024-10-13 12:21:40,2024-10-13 13:29:40,active,true +M4102,W2019,pacific-ops,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3084,elena.hart@pacificworks.example,Elena Hart,Product Manager,product,active,true,editor,2024-11-04 11:14:40,2024-11-04 13:20:40,active,true +M4103,W2020,pacific-finance,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3085,lena.brooks@pacificworks.example,Lena Brooks,Technical Program Manager,product,active,true,editor,2024-10-07 17:03:40,2024-10-07 19:50:40,active,true +M4104,W2019,pacific-ops,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3085,lena.brooks@pacificworks.example,Lena Brooks,Technical Program Manager,product,active,true,editor,2024-10-07 16:19:40,2024-10-07 16:35:40,active,true +M4105,W2020,pacific-finance,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3086,daniel.keller@pacificworks.example,Daniel Keller,Analytics Engineer,data,active,true,editor,2024-10-28 11:14:40,2024-10-28 13:55:40,active,true +M4106,W2018,pacific-core,prod,active,true,A1008,Pacific Works,mid_market,EMEA,UK,U3087,tomas.turner@pacificworks.example,Tomas Turner,Analytics Engineer,data,active,true,editor,2024-11-01 12:05:40,2024-11-01 14:58:40,active,true +M4107,W2020,pacific-finance,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3088,kai.fischer@pacificworks.example,Kai Fischer,Sales Analyst,sales,active,true,viewer,2024-10-30 16:28:40,2024-10-30 19:08:40,active,true +M4108,W2021,summit-core,prod,active,true,A1009,Summit Group,mid_market,NA,US,U3089,isla.lewis@summitgroup.example,Isla Lewis,Founder,executive,active,true,owner,2024-09-03 00:56:46,2024-09-03 01:37:46,active,true +M4109,W2021,summit-core,prod,active,true,A1009,Summit Group,mid_market,NA,US,U3090,zoe.chen@summitgroup.example,Zoe Chen,Analytics Engineer,data,active,true,admin,2024-09-21 00:42:46,2024-09-21 03:39:46,active,true +M4110,W2022,summit-ops,prod,active,false,A1009,Summit Group,mid_market,NA,US,U3091,zoe.alvarez@summitgroup.example,Zoe Alvarez,Technical Program Manager,product,active,true,admin,2024-08-31 21:06:46,2024-08-31 23:14:46,active,true +M4111,W2021,summit-core,prod,active,true,A1009,Summit Group,mid_market,NA,US,U3092,olivia.desai@summitgroup.example,Olivia Desai,Revenue Operations Manager,sales,active,true,editor,2024-09-06 20:07:46,2024-09-06 22:03:46,active,true +M4112,W2022,summit-ops,prod,active,false,A1009,Summit Group,mid_market,NA,US,U3092,olivia.desai@summitgroup.example,Olivia Desai,Revenue Operations Manager,sales,active,true,viewer,2024-09-06 18:49:46,2024-09-06 19:01:46,active,true +M4113,W2022,summit-ops,prod,active,false,A1009,Summit Group,mid_market,NA,US,U3093,priya.park@summitgroup.example,Priya Park,Data Engineer,data,active,true,viewer,2024-08-24 22:52:46,2024-08-25 00:02:46,active,true +M4114,W2022,summit-ops,prod,active,false,A1009,Summit Group,mid_market,NA,US,U3094,daniel.brooks@summitgroup.example,Daniel Brooks,Controller,finance,active,true,viewer,2024-09-09 18:55:46,2024-09-09 19:34:46,active,true +M4115,W2022,summit-ops,prod,active,false,A1009,Summit Group,mid_market,NA,US,U3095,lena.khan@summitgroup.example,Lena Khan,COO,executive,inactive,false,admin,2024-09-10 17:29:46,2024-09-10 18:31:46,active,true +M4116,W2021,summit-core,prod,active,true,A1009,Summit Group,mid_market,NA,US,U3096,jonas.dubois@summitgroup.example,Jonas Dubois,Data Platform Manager,data,active,true,viewer,2024-09-28 17:49:46,2024-09-28 19:31:46,active,true +M4117,W2022,summit-ops,prod,active,false,A1009,Summit Group,mid_market,NA,US,U3097,arjun.rossi@summitgroup.example,Arjun Rossi,Analytics Engineer,data,active,true,viewer,2024-10-02 23:06:46,2024-10-03 00:25:46,active,true +M4118,W2021,summit-core,prod,active,true,A1009,Summit Group,mid_market,NA,US,U3098,kai.price@summitgroup.example,Kai Price,FP&A Analyst,finance,active,true,admin,2024-09-15 18:05:46,2024-09-15 18:58:46,active,true +M4119,W2021,summit-core,prod,active,true,A1009,Summit Group,mid_market,NA,US,U3099,victor.patel@summitgroup.example,Victor Patel,Insights Lead,analytics,inactive,false,editor,2024-08-31 23:32:46,2024-09-01 02:04:46,removed,false +M4120,W2022,summit-ops,prod,active,false,A1009,Summit Group,mid_market,NA,US,U3099,victor.patel@summitgroup.example,Victor Patel,Insights Lead,analytics,inactive,false,viewer,2024-08-31 23:41:46,2024-09-01 00:01:46,removed,false +M4121,W2022,summit-ops,prod,active,false,A1009,Summit Group,mid_market,NA,US,U3100,arjun.saeed@summitgroup.example,Arjun Saeed,FP&A Analyst,finance,active,true,viewer,2024-09-06 20:34:46,2024-09-06 23:32:46,active,true +M4122,W2021,summit-core,prod,active,true,A1009,Summit Group,mid_market,NA,US,U3101,elena.park@summitgroup.example,Elena Park,Founder,executive,active,true,editor,2024-09-25 19:52:46,2024-09-25 20:24:46,active,true +M4123,W2023,orchid-core,prod,active,true,A1010,Orchid Foods,smb,NA,CA,U3102,ben.desai@orchidfoods.example,Ben Desai,Operations Director,operations,active,true,owner,2025-03-20 04:18:21,2025-03-20 04:25:21,active,true +M4124,W2023,orchid-core,prod,active,true,A1010,Orchid Foods,smb,NA,CA,U3103,samir.singh@orchidfoods.example,Samir Singh,Data Engineer,data,active,true,editor,2025-02-22 20:24:21,2025-02-22 21:44:21,active,true +M4125,W2023,orchid-core,prod,active,true,A1010,Orchid Foods,smb,NA,CA,U3104,leo.alvarez@orchidfoods.example,Leo Alvarez,Demand Gen Manager,marketing,active,true,editor,2025-02-26 04:10:21,2025-02-26 04:52:21,active,true +M4126,W2023,orchid-core,prod,active,true,A1010,Orchid Foods,smb,NA,CA,U3105,lina.ward@orchidfoods.example,Lina Ward,VP Data,executive,active,true,admin,2025-02-27 00:43:21,2025-02-27 00:56:21,active,true +M4127,W2023,orchid-core,prod,active,true,A1010,Orchid Foods,smb,NA,CA,U3106,ava.hill@orchidfoods.example,Ava Hill,Technical Program Manager,product,active,true,editor,2025-02-24 00:40:21,2025-02-24 01:16:21,active,true +M4128,W2023,orchid-core,prod,active,true,A1010,Orchid Foods,smb,NA,CA,U3107,lena.patel@orchidfoods.example,Lena Patel,Finance Manager,finance,inactive,false,viewer,2025-02-27 03:38:21,2025-02-27 06:09:21,removed,false +M4129,W2023,orchid-core,prod,active,true,A1010,Orchid Foods,smb,NA,CA,U3108,claire.shah@orchidfoods.example,Claire Shah,Demand Gen Manager,marketing,active,true,editor,2025-02-25 01:38:21,2025-02-25 03:19:21,active,true +M4130,W2023,orchid-core,prod,active,true,A1010,Orchid Foods,smb,NA,CA,U3109,tara.silva@orchidfoods.example,Tara Silva,Analytics Manager,analytics,active,true,viewer,2025-03-24 03:26:21,2025-03-24 04:10:21,active,true +M4131,W2024,vertex-core,prod,active,true,A1011,Vertex Energy,smb,NA,CA,U3110,aisha.lewis@vertexenergy.example,Aisha Lewis,Product Manager,product,active,true,owner,2025-02-17 07:30:33,2025-02-17 08:28:33,active,true +M4132,W2024,vertex-core,prod,active,true,A1011,Vertex Energy,smb,NA,CA,U3111,tomas.brooks@vertexenergy.example,Tomas Brooks,Analytics Engineer,data,active,true,viewer,2025-01-22 12:09:33,2025-01-22 12:59:33,active,true +M4133,W2024,vertex-core,prod,active,true,A1011,Vertex Energy,smb,NA,CA,U3112,maya.reed@vertexenergy.example,Maya Reed,Technical Program Manager,product,active,true,viewer,2025-01-17 15:37:33,2025-01-17 18:30:33,active,true +M4134,W2024,vertex-core,prod,active,true,A1011,Vertex Energy,smb,NA,CA,U3113,maya.nash@vertexenergy.example,Maya Nash,Revenue Operations Manager,sales,active,true,viewer,2025-01-15 16:05:33,2025-01-15 17:50:33,active,true +M4135,W2024,vertex-core,prod,active,true,A1011,Vertex Energy,smb,NA,CA,U3114,claire.romero@vertexenergy.example,Claire Romero,Revenue Operations Manager,sales,active,true,editor,2025-01-20 09:15:33,2025-01-20 10:49:33,active,true +M4136,W2024,vertex-core,prod,active,true,A1011,Vertex Energy,smb,NA,CA,U3115,mei.saeed@vertexenergy.example,Mei Saeed,Analytics Manager,analytics,active,true,editor,2025-01-31 14:08:33,2025-01-31 15:25:33,active,true +M4137,W2025,cedar-core,prod,active,true,A1012,Cedar Ventures,smb,APAC,JP,U3116,lena.alvarez@cedarventures.example,Lena Alvarez,Demand Gen Manager,marketing,active,true,owner,2024-10-01 07:31:23,2024-10-01 08:25:23,active,true +M4138,W2026,cedar-ops,sandbox,active,false,A1012,Cedar Ventures,smb,APAC,JP,U3117,priya.petrova@cedarventures.example,Priya Petrova,Sales Analyst,sales,active,true,admin,2024-09-12 13:26:23,2024-09-12 15:59:23,active,true +M4139,W2025,cedar-core,prod,active,true,A1012,Cedar Ventures,smb,APAC,JP,U3118,maya.rahman@cedarventures.example,Maya Rahman,Operations Manager,operations,active,true,viewer,2024-09-15 11:09:23,2024-09-15 14:01:23,active,true +M4140,W2025,cedar-core,prod,active,true,A1012,Cedar Ventures,smb,APAC,JP,U3119,mateo.desai@cedarventures.example,Mateo Desai,Marketing Operations Lead,marketing,active,true,editor,2024-10-02 13:06:23,2024-10-02 14:25:23,active,true +M4141,W2025,cedar-core,prod,active,true,A1012,Cedar Ventures,smb,APAC,JP,U3120,evan.nash@cedarventures.example,Evan Nash,Data Engineer,data,inactive,false,editor,2024-09-08 06:42:23,2024-09-08 09:33:23,removed,false +M4142,W2025,cedar-core,prod,active,true,A1012,Cedar Ventures,smb,APAC,JP,U3121,noah.keller@cedarventures.example,Noah Keller,BI Analyst,analytics,active,true,viewer,2024-09-24 09:49:23,2024-09-24 11:30:23,active,true +M4143,W2026,cedar-ops,sandbox,active,false,A1012,Cedar Ventures,smb,APAC,JP,U3122,isla.silva@cedarventures.example,Isla Silva,Revenue Operations Manager,sales,active,true,viewer,2024-10-02 07:55:23,2024-10-02 09:31:23,active,true +M4144,W2025,cedar-core,prod,active,true,A1012,Cedar Ventures,smb,APAC,JP,U3122,isla.silva@cedarventures.example,Isla Silva,Revenue Operations Manager,sales,active,true,viewer,2024-10-02 07:07:23,2024-10-02 07:57:23,active,true +M4145,W2027,river-core,prod,active,true,A1013,River Foods,mid_market,NA,US,U3123,marcus.ng@riverfoods.example,Marcus Ng,Marketing Operations Lead,marketing,inactive,false,owner,2025-01-17 10:39:58,2025-01-17 12:55:58,removed,false +M4146,W2029,river-finance,prod,active,false,A1013,River Foods,mid_market,NA,US,U3124,evan.park@riverfoods.example,Evan Park,Product Manager,product,inactive,false,editor,2025-01-18 12:23:58,2025-01-18 12:36:58,removed,false +M4147,W2028,river-ops,prod,active,false,A1013,River Foods,mid_market,NA,US,U3124,evan.park@riverfoods.example,Evan Park,Product Manager,product,inactive,false,viewer,2025-01-18 12:04:58,2025-01-18 14:14:58,removed,false +M4148,W2029,river-finance,prod,active,false,A1013,River Foods,mid_market,NA,US,U3125,helena.kim@riverfoods.example,Helena Kim,Workflow Analyst,operations,active,true,viewer,2025-01-14 06:13:58,2025-01-14 09:09:58,active,true +M4149,W2029,river-finance,prod,active,false,A1013,River Foods,mid_market,NA,US,U3126,evan.shah@riverfoods.example,Evan Shah,Revenue Operations Manager,sales,active,true,admin,2025-01-20 08:10:58,2025-01-20 11:01:58,active,true +M4150,W2028,river-ops,prod,active,false,A1013,River Foods,mid_market,NA,US,U3127,maya.singh@riverfoods.example,Maya Singh,Technical Program Manager,product,active,true,editor,2025-01-13 05:07:58,2025-01-13 05:14:58,active,true +M4151,W2027,river-core,prod,active,true,A1013,River Foods,mid_market,NA,US,U3128,ivy.park@riverfoods.example,Ivy Park,Revenue Operations Manager,sales,active,true,admin,2024-12-28 05:52:58,2024-12-28 08:27:58,active,true +M4152,W2028,river-ops,prod,active,false,A1013,River Foods,mid_market,NA,US,U3128,ivy.park@riverfoods.example,Ivy Park,Revenue Operations Manager,sales,active,true,editor,2024-12-28 04:41:58,2024-12-28 07:12:58,active,true +M4153,W2028,river-ops,prod,active,false,A1013,River Foods,mid_market,NA,US,U3129,ben.khan@riverfoods.example,Ben Khan,Revenue Operations Manager,sales,active,true,viewer,2025-01-14 10:05:58,2025-01-14 12:13:58,active,true +M4154,W2027,river-core,prod,active,true,A1013,River Foods,mid_market,NA,US,U3129,ben.khan@riverfoods.example,Ben Khan,Revenue Operations Manager,sales,active,true,editor,2025-01-14 09:32:58,2025-01-14 11:28:58,active,true +M4155,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3130,lena.saeed@evergreenglobal.example,Lena Saeed,Controller,finance,active,true,owner,2024-10-15 20:14:43,2024-10-15 20:51:43,removed,false +M4156,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3131,evan.rossi@evergreenglobal.example,Evan Rossi,Finance Manager,finance,inactive,false,viewer,2024-10-01 23:37:43,2024-10-02 01:59:43,removed,false +M4157,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3132,tomas.fischer@evergreenglobal.example,Tomas Fischer,BI Analyst,analytics,inactive,false,editor,2024-11-01 00:43:43,2024-11-01 03:05:43,active,true +M4158,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3133,naomi.singh@evergreenglobal.example,Naomi Singh,Analytics Engineer,data,inactive,false,admin,2024-10-12 23:40:43,2024-10-13 02:14:43,removed,false +M4159,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3134,ivy.lewis@evergreenglobal.example,Ivy Lewis,Analytics Manager,analytics,inactive,false,viewer,2024-10-29 22:01:43,2024-10-30 00:54:43,active,true +M4160,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3135,alma.meyer@evergreenglobal.example,Alma Meyer,Product Manager,product,inactive,false,viewer,2024-10-11 23:59:43,2024-10-12 00:50:43,removed,false +M4161,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3136,olivia.tan@evergreenglobal.example,Olivia Tan,Controller,finance,inactive,false,viewer,2024-10-26 19:12:43,2024-10-26 19:27:43,removed,false +M4162,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3137,daniel.park@evergreenglobal.example,Daniel Park,Insights Lead,analytics,inactive,false,viewer,2024-09-26 01:16:43,2024-09-26 03:44:43,removed,false +M4163,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3138,victor.lopez@evergreenglobal.example,Victor Lopez,Controller,finance,active,true,admin,2024-10-19 01:12:43,2024-10-19 03:26:43,removed,false +M4164,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3139,leo.morgan@evergreenglobal.example,Leo Morgan,Revenue Operations Manager,sales,inactive,false,editor,2024-10-15 02:03:43,2024-10-15 02:08:43,removed,false +M4165,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3140,victor.cole@evergreenglobal.example,Victor Cole,Controller,finance,inactive,false,viewer,2024-10-30 18:21:43,2024-10-30 19:41:43,removed,false +M4166,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3141,noah.silva@evergreenglobal.example,Noah Silva,Revenue Operations Manager,sales,inactive,false,admin,2024-09-21 19:25:43,2024-09-21 20:50:43,removed,false +M4167,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3142,arjun.patel@evergreenglobal.example,Arjun Patel,Technical Program Manager,product,inactive,false,viewer,2024-10-17 01:22:43,2024-10-17 02:20:43,removed,false +M4168,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3143,peter.cole@evergreenglobal.example,Peter Cole,Analytics Engineer,data,inactive,false,editor,2024-09-27 23:03:43,2024-09-27 23:44:43,removed,false +M4169,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3144,peter.cole2@evergreenglobal.example,Peter Cole,Analytics Manager,analytics,inactive,false,viewer,2024-10-20 21:10:43,2024-10-20 23:36:43,removed,false +M4170,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3145,owen.park@evergreenglobal.example,Owen Park,Founder,executive,inactive,false,editor,2024-10-10 17:54:43,2024-10-10 20:38:43,removed,false +M4171,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3146,samir.hill@evergreenglobal.example,Samir Hill,Controller,finance,active,true,editor,2024-10-07 02:04:43,2024-10-07 02:50:43,removed,false +M4172,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3147,samir.ng@evergreenglobal.example,Samir Ng,Product Manager,product,active,true,viewer,2024-10-16 20:01:43,2024-10-16 21:54:43,active,true +M4173,W2031,delta-core,prod,archived,true,A1015,Delta Network,smb,NA,US,U3148,luis.tan@deltanetwork.example,Luis Tan,Technical Program Manager,product,inactive,false,owner,2024-09-28 16:14:41,2024-09-28 18:36:41,removed,false +M4174,W2032,delta-ops,sandbox,archived,false,A1015,Delta Network,smb,NA,US,U3149,tomas.hill@deltanetwork.example,Tomas Hill,FP&A Analyst,finance,inactive,false,viewer,2024-09-24 19:08:41,2024-09-24 20:48:41,removed,false +M4175,W2031,delta-core,prod,archived,true,A1015,Delta Network,smb,NA,US,U3150,tara.saeed@deltanetwork.example,Tara Saeed,CFO,executive,inactive,false,editor,2024-10-13 21:44:41,2024-10-13 21:55:41,active,true +M4176,W2032,delta-ops,sandbox,archived,false,A1015,Delta Network,smb,NA,US,U3150,tara.saeed@deltanetwork.example,Tara Saeed,CFO,executive,inactive,false,viewer,2024-10-13 22:01:41,2024-10-13 22:25:41,removed,false +M4177,W2033,bluepeak-core,prod,active,true,A1016,BluePeak Capital,enterprise,EMEA,DE,U3151,mila.sato@bluepeakcapital.example,Mila Sato,Insights Lead,analytics,active,true,owner,2025-01-30 04:38:46,2025-01-30 07:03:46,active,true +M4178,W2036,bluepeak-marketing,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3152,olivia.alvarez@bluepeakcapital.example,Olivia Alvarez,BI Analyst,analytics,active,true,admin,2025-01-04 09:19:46,2025-01-04 10:49:46,active,true +M4179,W2035,bluepeak-finance,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3153,lina.price@bluepeakcapital.example,Lina Price,Controller,finance,active,true,admin,2025-01-17 10:30:46,2025-01-17 10:37:46,active,true +M4180,W2033,bluepeak-core,prod,active,true,A1016,BluePeak Capital,enterprise,EMEA,DE,U3154,isla.sato@bluepeakcapital.example,Isla Sato,FP&A Analyst,finance,active,true,editor,2025-01-11 06:17:46,2025-01-11 06:48:46,active,true +M4181,W2033,bluepeak-core,prod,active,true,A1016,BluePeak Capital,enterprise,EMEA,DE,U3155,owen.brooks@bluepeakcapital.example,Owen Brooks,Founder,executive,active,true,admin,2025-01-24 06:26:46,2025-01-24 09:01:46,active,true +M4182,W2036,bluepeak-marketing,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3156,arjun.hart@bluepeakcapital.example,Arjun Hart,Technical Program Manager,product,active,true,admin,2025-02-05 10:52:46,2025-02-05 12:09:46,active,true +M4183,W2035,bluepeak-finance,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3157,owen.rossi@bluepeakcapital.example,Owen Rossi,Finance Manager,finance,active,true,viewer,2025-01-29 04:44:46,2025-01-29 06:10:46,active,true +M4184,W2036,bluepeak-marketing,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3158,claire.desai@bluepeakcapital.example,Claire Desai,BI Analyst,analytics,active,true,editor,2025-01-27 07:39:46,2025-01-27 10:00:46,active,true +M4185,W2036,bluepeak-marketing,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3159,lena.rossi@bluepeakcapital.example,Lena Rossi,Workflow Analyst,operations,active,true,editor,2024-12-31 07:38:46,2024-12-31 09:54:46,active,true +M4186,W2033,bluepeak-core,prod,active,true,A1016,BluePeak Capital,enterprise,EMEA,DE,U3159,lena.rossi@bluepeakcapital.example,Lena Rossi,Workflow Analyst,operations,active,true,viewer,2024-12-31 07:34:46,2024-12-31 08:18:46,active,true +M4187,W2034,bluepeak-ops,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3160,derek.nash@bluepeakcapital.example,Derek Nash,Data Platform Manager,data,active,true,editor,2025-01-21 12:59:46,2025-01-21 15:47:46,active,true +M4188,W2035,bluepeak-finance,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3161,marcus.alvarez@bluepeakcapital.example,Marcus Alvarez,BI Analyst,analytics,active,true,viewer,2025-01-21 07:48:46,2025-01-21 09:40:46,active,true +M4189,W2036,bluepeak-marketing,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3162,elena.park@bluepeakcapital.example,Elena Park,Operations Director,operations,active,true,editor,2025-01-06 08:23:46,2025-01-06 10:27:46,active,true +M4190,W2035,bluepeak-finance,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3163,ivy.rahman@bluepeakcapital.example,Ivy Rahman,Finance Manager,finance,active,true,editor,2025-01-06 03:34:46,2025-01-06 04:37:46,active,true +M4191,W2035,bluepeak-finance,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3164,evan.nash@bluepeakcapital.example,Evan Nash,FP&A Analyst,finance,active,true,viewer,2025-02-07 08:13:46,2025-02-07 09:38:46,active,true +M4192,W2034,bluepeak-ops,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3164,evan.nash@bluepeakcapital.example,Evan Nash,FP&A Analyst,finance,active,true,viewer,2025-02-07 07:17:46,2025-02-07 07:45:46,active,true +M4193,W2033,bluepeak-core,prod,active,true,A1016,BluePeak Capital,enterprise,EMEA,DE,U3165,sofia.hill@bluepeakcapital.example,Sofia Hill,FP&A Analyst,finance,active,true,viewer,2024-12-27 08:44:46,2024-12-27 11:16:46,active,true +M4194,W2033,bluepeak-core,prod,active,true,A1016,BluePeak Capital,enterprise,EMEA,DE,U3166,naomi.alvarez@bluepeakcapital.example,Naomi Alvarez,Controller,finance,active,true,admin,2025-01-13 06:07:46,2025-01-13 08:18:46,active,true +M4195,W2033,bluepeak-core,prod,active,true,A1016,BluePeak Capital,enterprise,EMEA,DE,U3167,noah.rossi@bluepeakcapital.example,Noah Rossi,Controller,finance,active,true,viewer,2025-02-02 08:00:46,2025-02-02 08:39:46,active,true +M4196,W2036,bluepeak-marketing,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3168,owen.keller@bluepeakcapital.example,Owen Keller,Operations Manager,operations,active,true,editor,2025-01-25 07:39:46,2025-01-25 10:00:46,active,true +M4197,W2033,bluepeak-core,prod,active,true,A1016,BluePeak Capital,enterprise,EMEA,DE,U3169,ava.rossi@bluepeakcapital.example,Ava Rossi,Founder,executive,active,true,editor,2024-12-29 10:09:46,2024-12-29 10:15:46,active,true +M4198,W2037,summit-core,prod,active,true,A1017,Summit Analytics,mid_market,EMEA,UK,U3170,tomas.nash@summitanalytics.example,Tomas Nash,Revenue Operations Manager,sales,active,true,owner,2024-12-25 11:41:21,2024-12-25 13:34:21,active,true +M4199,W2038,summit-ops,prod,active,false,A1017,Summit Analytics,mid_market,EMEA,UK,U3171,claire.silva@summitanalytics.example,Claire Silva,Controller,finance,inactive,false,editor,2024-12-29 13:15:21,2024-12-29 15:35:21,removed,false +M4200,W2037,summit-core,prod,active,true,A1017,Summit Analytics,mid_market,EMEA,UK,U3172,marcus.ward@summitanalytics.example,Marcus Ward,Data Engineer,data,active,true,viewer,2024-12-08 15:46:21,2024-12-08 18:05:21,active,true +M4201,W2037,summit-core,prod,active,true,A1017,Summit Analytics,mid_market,EMEA,UK,U3173,mei.lewis@summitanalytics.example,Mei Lewis,BI Analyst,analytics,active,true,admin,2024-12-15 10:55:21,2024-12-15 13:11:21,active,true +M4202,W2038,summit-ops,prod,active,false,A1017,Summit Analytics,mid_market,EMEA,UK,U3174,elena.fischer@summitanalytics.example,Elena Fischer,Finance Manager,finance,active,true,viewer,2024-12-23 13:24:21,2024-12-23 14:12:21,active,true +M4203,W2038,summit-ops,prod,active,false,A1017,Summit Analytics,mid_market,EMEA,UK,U3175,zoe.ng@summitanalytics.example,Zoe Ng,Workflow Analyst,operations,active,true,viewer,2024-12-04 08:46:21,2024-12-04 09:54:21,active,true +M4204,W2037,summit-core,prod,active,true,A1017,Summit Analytics,mid_market,EMEA,UK,U3176,naomi.patel@summitanalytics.example,Naomi Patel,Product Manager,product,active,true,editor,2024-11-28 14:39:21,2024-11-28 15:38:21,active,true +M4205,W2037,summit-core,prod,active,true,A1017,Summit Analytics,mid_market,EMEA,UK,U3177,naomi.turner@summitanalytics.example,Naomi Turner,Operations Director,operations,active,true,viewer,2024-12-22 10:45:21,2024-12-22 12:08:21,active,true +M4206,W2037,summit-core,prod,active,true,A1017,Summit Analytics,mid_market,EMEA,UK,U3178,marcus.khan@summitanalytics.example,Marcus Khan,VP Data,executive,active,true,viewer,2024-12-06 14:24:21,2024-12-06 16:33:21,active,true +M4207,W2039,harbor-core,prod,archived,true,A1018,Harbor Manufacturing,smb,EMEA,UK,U3179,tomas.saeed@harbormanufacturing.example,Tomas Saeed,Data Platform Manager,data,inactive,false,owner,2024-10-29 22:01:22,2024-10-29 23:37:22,removed,false +M4208,W2040,harbor-ops,prod,archived,false,A1018,Harbor Manufacturing,smb,EMEA,UK,U3180,peter.price@harbormanufacturing.example,Peter Price,Product Manager,product,active,true,editor,2024-09-23 21:08:22,2024-09-23 22:42:22,active,true +M4209,W2039,harbor-core,prod,archived,true,A1018,Harbor Manufacturing,smb,EMEA,UK,U3181,helena.kim@harbormanufacturing.example,Helena Kim,CFO,executive,active,true,editor,2024-10-08 21:06:22,2024-10-08 22:01:22,removed,false +M4210,W2040,harbor-ops,prod,archived,false,A1018,Harbor Manufacturing,smb,EMEA,UK,U3181,helena.kim@harbormanufacturing.example,Helena Kim,CFO,executive,active,true,editor,2024-10-08 21:03:22,2024-10-08 21:47:22,removed,false +M4211,W2041,sierra-core,prod,active,true,A1019,Sierra Systems,smb,APAC,JP,U3182,victor.meyer@sierrasystems.example,Victor Meyer,Data Platform Manager,data,active,true,owner,2025-03-17 13:34:13,2025-03-17 14:18:13,active,true +M4212,W2042,sierra-ops,sandbox,active,false,A1019,Sierra Systems,smb,APAC,JP,U3183,mei.morgan@sierrasystems.example,Mei Morgan,Insights Lead,analytics,active,true,editor,2025-03-01 12:56:13,2025-03-01 14:34:13,active,true +M4213,W2042,sierra-ops,sandbox,active,false,A1019,Sierra Systems,smb,APAC,JP,U3184,victor.rossi@sierrasystems.example,Victor Rossi,Workflow Analyst,operations,inactive,false,viewer,2025-02-26 15:00:13,2025-02-26 15:32:13,active,true +M4214,W2042,sierra-ops,sandbox,active,false,A1019,Sierra Systems,smb,APAC,JP,U3185,lena.price@sierrasystems.example,Lena Price,COO,executive,active,true,admin,2025-03-28 10:39:13,2025-03-28 10:45:13,active,true +M4215,W2043,pioneer-core,prod,active,true,A1020,Pioneer Network,smb,EMEA,FR,U3186,nina.reed@pioneernetwork.example,Nina Reed,Data Engineer,data,active,true,owner,2025-03-15 07:22:23,2025-03-15 08:17:23,active,true +M4216,W2043,pioneer-core,prod,active,true,A1020,Pioneer Network,smb,EMEA,FR,U3187,sofia.price@pioneernetwork.example,Sofia Price,Sales Analyst,sales,active,true,editor,2025-02-23 08:02:23,2025-02-23 08:41:23,active,true +M4217,W2043,pioneer-core,prod,active,true,A1020,Pioneer Network,smb,EMEA,FR,U3188,evan.petrova@pioneernetwork.example,Evan Petrova,BI Analyst,analytics,inactive,false,editor,2025-03-22 02:25:23,2025-03-22 02:38:23,removed,false +M4218,W2043,pioneer-core,prod,active,true,A1020,Pioneer Network,smb,EMEA,FR,U3189,noah.keller@pioneernetwork.example,Noah Keller,Insights Lead,analytics,active,true,viewer,2025-03-17 01:42:23,2025-03-17 02:55:23,active,true +M4219,W2044,apex-core,prod,active,true,A1021,Apex Logistics,smb,NA,US,U3190,olivia.ward@apexlogistics.example,Olivia Ward,Analytics Engineer,data,active,true,owner,2024-12-06 14:17:29,2024-12-06 16:09:29,active,true +M4220,W2044,apex-core,prod,active,true,A1021,Apex Logistics,smb,NA,US,U3191,naomi.chen@apexlogistics.example,Naomi Chen,FP&A Analyst,finance,active,true,editor,2024-11-16 18:50:29,2024-11-16 21:49:29,active,true +M4221,W2044,apex-core,prod,active,true,A1021,Apex Logistics,smb,NA,US,U3192,nina.rahman@apexlogistics.example,Nina Rahman,COO,executive,active,true,editor,2024-11-11 11:55:29,2024-11-11 13:42:29,active,true +M4222,W2044,apex-core,prod,active,true,A1021,Apex Logistics,smb,NA,US,U3193,samir.ng@apexlogistics.example,Samir Ng,Insights Lead,analytics,active,true,admin,2024-10-29 16:19:29,2024-10-29 16:29:29,active,true +M4223,W2044,apex-core,prod,active,true,A1021,Apex Logistics,smb,NA,US,U3194,tomas.rossi@apexlogistics.example,Tomas Rossi,Technical Program Manager,product,active,true,admin,2024-10-28 18:28:29,2024-10-28 18:36:29,active,true +M4224,W2044,apex-core,prod,active,true,A1021,Apex Logistics,smb,NA,US,U3195,derek.rahman@apexlogistics.example,Derek Rahman,BI Analyst,analytics,active,true,admin,2024-11-30 11:46:29,2024-11-30 13:18:29,active,true +M4225,W2044,apex-core,prod,active,true,A1021,Apex Logistics,smb,NA,US,U3196,maya.desai@apexlogistics.example,Maya Desai,Data Engineer,data,active,true,viewer,2024-10-27 17:58:29,2024-10-27 18:05:29,active,true +M4226,W2045,summit-core,prod,active,true,A1022,Summit Collective,smb,APAC,NZ,U3197,priya.price@summitcollective.example,Priya Price,Demand Gen Manager,marketing,inactive,false,owner,2025-03-03 21:19:56,2025-03-03 23:26:56,removed,false +M4227,W2046,summit-ops,sandbox,active,false,A1022,Summit Collective,smb,APAC,NZ,U3198,tomas.fischer@summitcollective.example,Tomas Fischer,Workflow Analyst,operations,active,true,admin,2025-03-31 14:55:56,2025-03-31 15:39:56,active,true +M4228,W2045,summit-core,prod,active,true,A1022,Summit Collective,smb,APAC,NZ,U3199,mateo.desai@summitcollective.example,Mateo Desai,Revenue Operations Manager,sales,active,true,editor,2025-03-17 18:24:56,2025-03-17 19:36:56,active,true +M4229,W2045,summit-core,prod,active,true,A1022,Summit Collective,smb,APAC,NZ,U3200,alma.petrova@summitcollective.example,Alma Petrova,Product Manager,product,active,true,viewer,2025-03-11 18:14:56,2025-03-11 18:45:56,active,true +M4230,W2045,summit-core,prod,active,true,A1022,Summit Collective,smb,APAC,NZ,U3201,jonas.alvarez@summitcollective.example,Jonas Alvarez,Technical Program Manager,product,inactive,false,editor,2025-03-25 21:54:56,2025-03-26 00:41:56,removed,false +M4231,W2047,atlas-core,prod,active,true,A1023,Atlas Systems,smb,NA,CA,U3202,victor.shah@atlassystems.example,Victor Shah,Analytics Engineer,data,active,true,owner,2025-02-01 19:08:38,2025-02-01 19:46:38,active,true +M4232,W2047,atlas-core,prod,active,true,A1023,Atlas Systems,smb,NA,CA,U3203,maya.silva@atlassystems.example,Maya Silva,Data Platform Manager,data,active,true,admin,2025-02-24 19:59:38,2025-02-24 20:41:38,active,true +M4233,W2047,atlas-core,prod,active,true,A1023,Atlas Systems,smb,NA,CA,U3204,victor.price@atlassystems.example,Victor Price,Product Manager,product,active,true,admin,2025-02-09 19:58:38,2025-02-09 20:26:38,active,true +M4234,W2047,atlas-core,prod,active,true,A1023,Atlas Systems,smb,NA,CA,U3205,mateo.price@atlassystems.example,Mateo Price,CFO,executive,active,true,editor,2025-02-05 16:16:38,2025-02-05 17:39:38,active,true +M4235,W2047,atlas-core,prod,active,true,A1023,Atlas Systems,smb,NA,CA,U3206,noah.keller@atlassystems.example,Noah Keller,Analytics Engineer,data,active,true,editor,2025-03-14 17:29:38,2025-03-14 19:36:38,active,true +M4236,W2047,atlas-core,prod,active,true,A1023,Atlas Systems,smb,NA,CA,U3207,alma.morgan@atlassystems.example,Alma Morgan,VP Data,executive,active,true,editor,2025-02-28 19:01:38,2025-02-28 19:19:38,active,true +M4237,W2047,atlas-core,prod,active,true,A1023,Atlas Systems,smb,NA,CA,U3208,naomi.hill@atlassystems.example,Naomi Hill,Finance Manager,finance,active,true,admin,2025-02-10 22:37:38,2025-02-10 23:53:38,active,true +M4238,W2047,atlas-core,prod,active,true,A1023,Atlas Systems,smb,NA,CA,U3209,olivia.nash@atlassystems.example,Olivia Nash,COO,executive,active,true,viewer,2025-02-28 19:52:38,2025-02-28 21:18:38,active,true +M4239,W2048,sierra-core,prod,active,true,A1024,Sierra Group,smb,NA,CA,U3210,aisha.singh@sierragroup.example,Aisha Singh,Data Engineer,data,active,true,owner,2025-02-18 09:03:07,2025-02-18 09:20:07,active,true +M4240,W2048,sierra-core,prod,active,true,A1024,Sierra Group,smb,NA,CA,U3211,marta.morgan@sierragroup.example,Marta Morgan,Data Platform Manager,data,active,true,admin,2025-02-17 12:30:07,2025-02-17 13:48:07,active,true +M4241,W2049,sierra-ops,prod,active,false,A1024,Sierra Group,smb,NA,CA,U3211,marta.morgan@sierragroup.example,Marta Morgan,Data Platform Manager,data,active,true,viewer,2025-02-17 11:57:07,2025-02-17 13:13:07,active,true +M4242,W2049,sierra-ops,prod,active,false,A1024,Sierra Group,smb,NA,CA,U3212,luis.morgan@sierragroup.example,Luis Morgan,Product Manager,product,active,true,editor,2025-02-04 15:11:07,2025-02-04 16:41:07,active,true +M4243,W2049,sierra-ops,prod,active,false,A1024,Sierra Group,smb,NA,CA,U3213,naomi.grant@sierragroup.example,Naomi Grant,Data Engineer,data,active,true,admin,2025-02-12 09:30:07,2025-02-12 11:56:07,active,true +M4244,W2050,bright-core,prod,active,true,A1025,Bright Capital,smb,EMEA,UK,U3214,elena.lopez@brightcapital.example,Elena Lopez,Operations Director,operations,inactive,false,owner,2024-10-18 11:04:56,2024-10-18 11:42:56,removed,false +M4245,W2050,bright-core,prod,active,true,A1025,Bright Capital,smb,EMEA,UK,U3215,elena.silva@brightcapital.example,Elena Silva,Operations Director,operations,active,true,viewer,2024-11-12 08:27:56,2024-11-12 10:47:56,active,true +M4246,W2050,bright-core,prod,active,true,A1025,Bright Capital,smb,EMEA,UK,U3216,ivy.morgan@brightcapital.example,Ivy Morgan,Product Manager,product,active,true,editor,2024-11-07 15:07:56,2024-11-07 16:05:56,active,true +M4247,W2050,bright-core,prod,active,true,A1025,Bright Capital,smb,EMEA,UK,U3217,kenji.dubois@brightcapital.example,Kenji Dubois,Analytics Manager,analytics,active,true,admin,2024-10-23 09:29:56,2024-10-23 10:07:56,active,true +M4248,W2050,bright-core,prod,active,true,A1025,Bright Capital,smb,EMEA,UK,U3218,victor.meyer@brightcapital.example,Victor Meyer,Technical Program Manager,product,active,true,admin,2024-11-18 14:46:56,2024-11-18 17:38:56,active,true +M4249,W2050,bright-core,prod,active,true,A1025,Bright Capital,smb,EMEA,UK,U3219,lina.lewis@brightcapital.example,Lina Lewis,Revenue Operations Manager,sales,active,true,editor,2024-11-24 16:45:56,2024-11-24 17:15:56,active,true +M4250,W2051,pioneer-core,prod,active,true,A1026,Pioneer Capital,smb,NA,CA,U3220,luis.kim@pioneercapital.example,Luis Kim,CFO,executive,active,true,owner,2024-10-03 13:27:17,2024-10-03 15:51:17,active,true +M4251,W2051,pioneer-core,prod,active,true,A1026,Pioneer Capital,smb,NA,CA,U3221,sofia.khan@pioneercapital.example,Sofia Khan,Sales Analyst,sales,active,true,editor,2024-09-10 05:36:17,2024-09-10 06:32:17,active,true +M4252,W2051,pioneer-core,prod,active,true,A1026,Pioneer Capital,smb,NA,CA,U3222,luis.dubois@pioneercapital.example,Luis Dubois,Analytics Engineer,data,active,true,admin,2024-10-02 11:12:17,2024-10-02 13:04:17,active,true +M4253,W2051,pioneer-core,prod,active,true,A1026,Pioneer Capital,smb,NA,CA,U3223,aisha.hill@pioneercapital.example,Aisha Hill,Marketing Operations Lead,marketing,active,true,viewer,2024-09-16 12:59:17,2024-09-16 15:27:17,active,true +M4254,W2051,pioneer-core,prod,active,true,A1026,Pioneer Capital,smb,NA,CA,U3224,hannah.patel@pioneercapital.example,Hannah Patel,Sales Analyst,sales,active,true,viewer,2024-09-10 07:39:17,2024-09-10 10:25:17,active,true +M4255,W2051,pioneer-core,prod,active,true,A1026,Pioneer Capital,smb,NA,CA,U3225,marta.romero@pioneercapital.example,Marta Romero,COO,executive,active,true,viewer,2024-10-05 09:28:17,2024-10-05 11:36:17,active,true +M4256,W2051,pioneer-core,prod,active,true,A1026,Pioneer Capital,smb,NA,CA,U3226,tara.nash@pioneercapital.example,Tara Nash,BI Analyst,analytics,active,true,editor,2024-09-30 05:32:17,2024-09-30 05:42:17,active,true +M4257,W2051,pioneer-core,prod,active,true,A1026,Pioneer Capital,smb,NA,CA,U3227,ben.patel@pioneercapital.example,Ben Patel,Data Platform Manager,data,active,true,editor,2024-09-29 05:07:17,2024-09-29 05:45:17,active,true +M4258,W2052,bluepeak-core,prod,active,true,A1027,BluePeak Health,smb,APAC,SG,U3228,naomi.silva@bluepeakhealth.example,Naomi Silva,FP&A Analyst,finance,active,true,owner,2024-11-03 18:33:59,2024-11-03 18:49:59,active,true +M4259,W2052,bluepeak-core,prod,active,true,A1027,BluePeak Health,smb,APAC,SG,U3229,peter.grant@bluepeakhealth.example,Peter Grant,Founder,executive,active,true,viewer,2024-11-23 23:36:59,2024-11-24 01:22:59,active,true +M4260,W2053,bluepeak-ops,prod,active,false,A1027,BluePeak Health,smb,APAC,SG,U3230,jonas.khan@bluepeakhealth.example,Jonas Khan,Finance Manager,finance,active,true,viewer,2024-11-28 02:01:59,2024-11-28 02:48:59,active,true +M4261,W2053,bluepeak-ops,prod,active,false,A1027,BluePeak Health,smb,APAC,SG,U3231,arjun.cole@bluepeakhealth.example,Arjun Cole,Marketing Operations Lead,marketing,active,true,viewer,2024-11-24 21:31:59,2024-11-24 23:15:59,active,true +M4262,W2053,bluepeak-ops,prod,active,false,A1027,BluePeak Health,smb,APAC,SG,U3232,naomi.sato@bluepeakhealth.example,Naomi Sato,Data Platform Manager,data,active,true,viewer,2024-12-07 00:50:59,2024-12-07 03:21:59,active,true +M4263,W2052,bluepeak-core,prod,active,true,A1027,BluePeak Health,smb,APAC,SG,U3232,naomi.sato@bluepeakhealth.example,Naomi Sato,Data Platform Manager,data,active,true,viewer,2024-12-07 00:43:59,2024-12-07 03:19:59,active,true +M4264,W2054,apex-core,prod,active,true,A1028,Apex Energy,mid_market,APAC,SG,U3233,priya.sato@apexenergy.example,Priya Sato,COO,executive,inactive,false,owner,2025-02-04 03:23:07,2025-02-04 05:39:07,removed,false +M4265,W2055,apex-ops,sandbox,active,false,A1028,Apex Energy,mid_market,APAC,SG,U3234,tomas.alvarez@apexenergy.example,Tomas Alvarez,VP Data,executive,active,true,editor,2025-01-05 03:45:07,2025-01-05 04:58:07,active,true +M4266,W2054,apex-core,prod,active,true,A1028,Apex Energy,mid_market,APAC,SG,U3235,samir.park@apexenergy.example,Samir Park,Analytics Engineer,data,active,true,admin,2025-01-08 06:38:07,2025-01-08 06:53:07,active,true +M4267,W2055,apex-ops,sandbox,active,false,A1028,Apex Energy,mid_market,APAC,SG,U3235,samir.park@apexenergy.example,Samir Park,Analytics Engineer,data,active,true,editor,2025-01-08 05:54:07,2025-01-08 06:36:07,active,true +M4268,W2054,apex-core,prod,active,true,A1028,Apex Energy,mid_market,APAC,SG,U3236,nina.hill@apexenergy.example,Nina Hill,Data Engineer,data,active,true,editor,2025-01-19 09:53:07,2025-01-19 11:01:07,active,true +M4269,W2054,apex-core,prod,active,true,A1028,Apex Energy,mid_market,APAC,SG,U3237,kai.rossi@apexenergy.example,Kai Rossi,Sales Analyst,sales,active,true,editor,2025-01-29 08:55:07,2025-01-29 11:34:07,active,true +M4270,W2055,apex-ops,sandbox,active,false,A1028,Apex Energy,mid_market,APAC,SG,U3237,kai.rossi@apexenergy.example,Kai Rossi,Sales Analyst,sales,active,true,viewer,2025-01-29 09:28:07,2025-01-29 10:56:07,active,true +M4271,W2055,apex-ops,sandbox,active,false,A1028,Apex Energy,mid_market,APAC,SG,U3238,lena.patel@apexenergy.example,Lena Patel,FP&A Analyst,finance,active,true,viewer,2024-12-30 02:57:07,2024-12-30 04:17:07,active,true +M4272,W2055,apex-ops,sandbox,active,false,A1028,Apex Energy,mid_market,APAC,SG,U3239,nina.hill2@apexenergy.example,Nina Hill,Operations Manager,operations,active,true,viewer,2025-01-05 10:14:07,2025-01-05 11:50:07,active,true +M4273,W2054,apex-core,prod,active,true,A1028,Apex Energy,mid_market,APAC,SG,U3240,arjun.petrova@apexenergy.example,Arjun Petrova,CFO,executive,active,true,viewer,2025-02-09 03:43:07,2025-02-09 03:52:07,active,true +M4274,W2054,apex-core,prod,active,true,A1028,Apex Energy,mid_market,APAC,SG,U3241,aisha.ng@apexenergy.example,Aisha Ng,Finance Manager,finance,active,true,viewer,2025-01-01 07:52:07,2025-01-01 09:02:07,active,true +M4275,W2054,apex-core,prod,active,true,A1028,Apex Energy,mid_market,APAC,SG,U3242,kai.nash@apexenergy.example,Kai Nash,Insights Lead,analytics,active,true,viewer,2025-01-13 07:41:07,2025-01-13 08:38:07,active,true +M4276,W2055,apex-ops,sandbox,active,false,A1028,Apex Energy,mid_market,APAC,SG,U3243,noah.rossi@apexenergy.example,Noah Rossi,Finance Manager,finance,active,true,admin,2025-01-18 02:43:07,2025-01-18 04:39:07,active,true +M4277,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3244,marcus.romero@brightlabs.example,Marcus Romero,Marketing Operations Lead,marketing,inactive,false,owner,2024-10-10 04:35:19,2024-10-10 05:17:19,active,true +M4278,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3245,jonas.morgan@brightlabs.example,Jonas Morgan,Technical Program Manager,product,active,true,editor,2024-10-12 04:24:19,2024-10-12 05:16:19,active,true +M4279,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3246,lina.sato@brightlabs.example,Lina Sato,CFO,executive,inactive,false,editor,2024-09-23 02:20:19,2024-09-23 03:11:19,removed,false +M4280,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3247,nina.patel@brightlabs.example,Nina Patel,Insights Lead,analytics,inactive,false,editor,2024-09-03 01:29:19,2024-09-03 02:19:19,active,true +M4281,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3248,marta.nash@brightlabs.example,Marta Nash,Revenue Operations Manager,sales,inactive,false,admin,2024-10-05 01:13:19,2024-10-05 03:07:19,removed,false +M4282,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3249,isla.turner@brightlabs.example,Isla Turner,Demand Gen Manager,marketing,inactive,false,admin,2024-09-19 01:15:19,2024-09-19 01:55:19,removed,false +M4283,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3250,sofia.saeed@brightlabs.example,Sofia Saeed,Finance Manager,finance,inactive,false,viewer,2024-09-28 02:34:19,2024-09-28 04:17:19,removed,false +M4284,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3251,mei.lewis@brightlabs.example,Mei Lewis,Analytics Engineer,data,active,true,viewer,2024-09-05 06:00:19,2024-09-05 06:16:19,removed,false +M4285,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3252,peter.lopez@brightlabs.example,Peter Lopez,Founder,executive,inactive,false,editor,2024-09-05 06:02:19,2024-09-05 08:40:19,removed,false +M4286,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3253,evan.saeed@brightlabs.example,Evan Saeed,Product Manager,product,inactive,false,viewer,2024-10-14 09:09:19,2024-10-14 11:32:19,removed,false +M4287,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3254,peter.hill@brightlabs.example,Peter Hill,Workflow Analyst,operations,inactive,false,viewer,2024-09-06 05:12:19,2024-09-06 06:08:19,removed,false +M4288,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3255,kai.lopez@brightlabs.example,Kai Lopez,Sales Analyst,sales,active,true,viewer,2024-10-06 07:43:19,2024-10-06 09:12:19,removed,false +M4289,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3256,noah.shah@brightlabs.example,Noah Shah,Revenue Operations Manager,sales,provisioned,false,admin,2024-09-25 04:54:19,,pending,false +M4290,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3257,leo.dubois@brightlabs.example,Leo Dubois,Founder,executive,inactive,false,viewer,2024-09-21 05:07:19,2024-09-21 05:17:19,active,true +M4291,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3258,marcus.patel@brightlabs.example,Marcus Patel,FP&A Analyst,finance,inactive,false,editor,2024-09-28 06:09:19,2024-09-28 08:24:19,active,true +M4292,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3259,elena.tan@brightlabs.example,Elena Tan,Product Manager,product,inactive,false,admin,2024-09-26 06:26:19,2024-09-26 07:28:19,removed,false +M4293,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3260,hannah.hart@brightlabs.example,Hannah Hart,Finance Manager,finance,inactive,false,editor,2024-09-19 08:37:19,2024-09-19 11:29:19,removed,false +M4294,W2057,northwind-core,prod,active,true,A1030,Northwind Analytics,enterprise,EMEA,UK,U3261,kenji.tan@northwindanalytics.example,Kenji Tan,Marketing Operations Lead,marketing,active,true,owner,2024-09-07 02:50:08,2024-09-07 05:50:08,active,true +M4295,W2060,northwind-marketing,prod,active,false,A1030,Northwind Analytics,enterprise,EMEA,UK,U3262,mei.dubois@northwindanalytics.example,Mei Dubois,CFO,executive,active,true,viewer,2024-09-24 08:52:08,2024-09-24 09:25:08,active,true +M4296,W2060,northwind-marketing,prod,active,false,A1030,Northwind Analytics,enterprise,EMEA,UK,U3263,luis.alvarez@northwindanalytics.example,Luis Alvarez,CFO,executive,active,true,admin,2024-09-30 11:11:08,2024-09-30 12:47:08,active,true +M4297,W2057,northwind-core,prod,active,true,A1030,Northwind Analytics,enterprise,EMEA,UK,U3263,luis.alvarez@northwindanalytics.example,Luis Alvarez,CFO,executive,active,true,editor,2024-09-30 11:38:08,2024-09-30 14:20:08,active,true +M4298,W2057,northwind-core,prod,active,true,A1030,Northwind Analytics,enterprise,EMEA,UK,U3264,helena.cole@northwindanalytics.example,Helena Cole,COO,executive,active,true,editor,2024-09-08 05:37:08,2024-09-08 05:53:08,active,true +M4299,W2058,northwind-ops,prod,active,false,A1030,Northwind Analytics,enterprise,EMEA,UK,U3265,hannah.rahman@northwindanalytics.example,Hannah Rahman,Marketing Operations Lead,marketing,active,true,admin,2024-10-03 06:31:08,2024-10-03 07:22:08,active,true +M4300,W2060,northwind-marketing,prod,active,false,A1030,Northwind Analytics,enterprise,EMEA,UK,U3266,kai.hart@northwindanalytics.example,Kai Hart,Data Platform Manager,data,inactive,false,admin,2024-08-23 11:09:08,2024-08-23 13:53:08,active,true +M4301,W2059,northwind-finance,prod,active,false,A1030,Northwind Analytics,enterprise,EMEA,UK,U3267,maya.patel@northwindanalytics.example,Maya Patel,Insights Lead,analytics,active,true,viewer,2024-09-11 07:44:08,2024-09-11 10:38:08,active,true +M4302,W2059,northwind-finance,prod,active,false,A1030,Northwind Analytics,enterprise,EMEA,UK,U3268,marta.ward@northwindanalytics.example,Marta Ward,BI Analyst,analytics,active,true,viewer,2024-09-21 07:16:08,2024-09-21 07:40:08,active,true +M4303,W2057,northwind-core,prod,active,true,A1030,Northwind Analytics,enterprise,EMEA,UK,U3269,mila.morgan@northwindanalytics.example,Mila Morgan,Operations Director,operations,active,true,viewer,2024-09-24 08:08:08,2024-09-24 11:00:08,active,true +M4304,W2058,northwind-ops,prod,active,false,A1030,Northwind Analytics,enterprise,EMEA,UK,U3270,ben.meyer@northwindanalytics.example,Ben Meyer,Insights Lead,analytics,active,true,editor,2024-08-29 10:15:08,2024-08-29 12:22:08,active,true +M4305,W2057,northwind-core,prod,active,true,A1030,Northwind Analytics,enterprise,EMEA,UK,U3271,alma.dubois@northwindanalytics.example,Alma Dubois,Insights Lead,analytics,active,true,admin,2024-10-07 07:14:08,2024-10-07 08:30:08,active,true +M4306,W2058,northwind-ops,prod,active,false,A1030,Northwind Analytics,enterprise,EMEA,UK,U3272,victor.brooks@northwindanalytics.example,Victor Brooks,Sales Analyst,sales,active,true,admin,2024-10-05 06:24:08,2024-10-05 08:07:08,active,true +M4307,W2061,helio-core,prod,active,true,A1031,Helio Holdings,mid_market,APAC,AU,U3273,claire.lopez@helioholdings.example,Claire Lopez,Sales Analyst,sales,active,true,owner,2025-03-10 04:31:16,2025-03-10 05:57:16,active,true +M4308,W2062,helio-ops,prod,active,false,A1031,Helio Holdings,mid_market,APAC,AU,U3274,mei.silva@helioholdings.example,Mei Silva,Demand Gen Manager,marketing,active,true,editor,2025-03-28 09:24:16,2025-03-28 12:03:16,active,true +M4309,W2063,helio-finance,prod,active,false,A1031,Helio Holdings,mid_market,APAC,AU,U3275,aisha.sato@helioholdings.example,Aisha Sato,BI Analyst,analytics,active,true,editor,2025-03-16 05:53:16,2025-03-16 07:00:16,active,true +M4310,W2062,helio-ops,prod,active,false,A1031,Helio Holdings,mid_market,APAC,AU,U3276,arjun.sato@helioholdings.example,Arjun Sato,Founder,executive,active,true,editor,2025-02-28 09:08:16,2025-02-28 11:19:16,active,true +M4311,W2063,helio-finance,prod,active,false,A1031,Helio Holdings,mid_market,APAC,AU,U3277,kai.silva@helioholdings.example,Kai Silva,VP Data,executive,active,true,editor,2025-03-23 09:06:16,2025-03-23 11:39:16,active,true +M4312,W2063,helio-finance,prod,active,false,A1031,Helio Holdings,mid_market,APAC,AU,U3278,leo.brooks@helioholdings.example,Leo Brooks,Operations Manager,operations,active,true,editor,2025-02-26 11:48:16,2025-02-26 12:49:16,active,true +M4313,W2063,helio-finance,prod,active,false,A1031,Helio Holdings,mid_market,APAC,AU,U3279,lina.saeed@helioholdings.example,Lina Saeed,Analytics Manager,analytics,active,true,admin,2025-02-17 06:50:16,2025-02-17 06:59:16,active,true +M4314,W2062,helio-ops,prod,active,false,A1031,Helio Holdings,mid_market,APAC,AU,U3280,samir.price@helioholdings.example,Samir Price,Product Manager,product,active,true,editor,2025-03-06 05:19:16,2025-03-06 05:52:16,active,true +M4315,W2061,helio-core,prod,active,true,A1031,Helio Holdings,mid_market,APAC,AU,U3281,samir.sato@helioholdings.example,Samir Sato,Founder,executive,active,true,viewer,2025-02-14 10:28:16,2025-02-14 11:08:16,active,true +M4316,W2062,helio-ops,prod,active,false,A1031,Helio Holdings,mid_market,APAC,AU,U3282,aisha.rahman@helioholdings.example,Aisha Rahman,Product Manager,product,active,true,editor,2025-02-22 10:06:16,2025-02-22 11:58:16,active,true +M4317,W2064,vertex-core,prod,archived,true,A1032,Vertex Works,mid_market,EMEA,DE,U3283,lina.chen@vertexworks.example,Lina Chen,Data Platform Manager,data,inactive,false,owner,2024-09-28 17:52:27,2024-09-28 18:50:27,active,true +M4318,W2064,vertex-core,prod,archived,true,A1032,Vertex Works,mid_market,EMEA,DE,U3284,mateo.tan@vertexworks.example,Mateo Tan,Data Platform Manager,data,active,true,viewer,2024-09-16 15:35:27,2024-09-16 15:46:27,removed,false +M4319,W2065,vertex-ops,prod,archived,false,A1032,Vertex Works,mid_market,EMEA,DE,U3284,mateo.tan@vertexworks.example,Mateo Tan,Data Platform Manager,data,active,true,viewer,2024-09-16 15:29:27,2024-09-16 17:09:27,removed,false +M4320,W2064,vertex-core,prod,archived,true,A1032,Vertex Works,mid_market,EMEA,DE,U3285,jonas.lewis@vertexworks.example,Jonas Lewis,Operations Manager,operations,active,true,editor,2024-10-18 17:03:27,2024-10-18 17:15:27,removed,false +M4321,W2064,vertex-core,prod,archived,true,A1032,Vertex Works,mid_market,EMEA,DE,U3286,priya.singh@vertexworks.example,Priya Singh,Analytics Manager,analytics,inactive,false,admin,2024-10-19 21:04:27,2024-10-19 21:55:27,removed,false +M4322,W2065,vertex-ops,prod,archived,false,A1032,Vertex Works,mid_market,EMEA,DE,U3286,priya.singh@vertexworks.example,Priya Singh,Analytics Manager,analytics,inactive,false,editor,2024-10-19 21:06:27,2024-10-19 23:26:27,removed,false +M4323,W2065,vertex-ops,prod,archived,false,A1032,Vertex Works,mid_market,EMEA,DE,U3287,samir.rossi@vertexworks.example,Samir Rossi,COO,executive,active,true,editor,2024-09-26 17:43:27,2024-09-26 20:33:27,removed,false +M4324,W2065,vertex-ops,prod,archived,false,A1032,Vertex Works,mid_market,EMEA,DE,U3288,naomi.reed@vertexworks.example,Naomi Reed,Data Platform Manager,data,active,true,admin,2024-10-18 14:06:27,2024-10-18 14:55:27,removed,false +M4325,W2064,vertex-core,prod,archived,true,A1032,Vertex Works,mid_market,EMEA,DE,U3288,naomi.reed@vertexworks.example,Naomi Reed,Data Platform Manager,data,active,true,editor,2024-10-18 15:22:27,2024-10-18 17:08:27,active,true +M4326,W2066,lighthouse-core,prod,active,true,A1033,Lighthouse Global,mid_market,NA,CA,U3289,priya.kim@lighthouseglobal.example,Priya Kim,Insights Lead,analytics,active,true,owner,2024-11-27 06:38:01,2024-11-27 07:49:01,active,true +M4327,W2067,lighthouse-ops,prod,active,false,A1033,Lighthouse Global,mid_market,NA,CA,U3290,marcus.romero@lighthouseglobal.example,Marcus Romero,Data Platform Manager,data,active,true,viewer,2024-10-26 13:28:01,2024-10-26 14:42:01,active,true +M4328,W2066,lighthouse-core,prod,active,true,A1033,Lighthouse Global,mid_market,NA,CA,U3291,arjun.lopez@lighthouseglobal.example,Arjun Lopez,Product Manager,product,active,true,editor,2024-11-01 07:32:01,2024-11-01 08:31:01,active,true +M4329,W2067,lighthouse-ops,prod,active,false,A1033,Lighthouse Global,mid_market,NA,CA,U3292,marcus.saeed@lighthouseglobal.example,Marcus Saeed,Insights Lead,analytics,active,true,viewer,2024-11-26 08:03:01,2024-11-26 10:31:01,active,true +M4330,W2066,lighthouse-core,prod,active,true,A1033,Lighthouse Global,mid_market,NA,CA,U3292,marcus.saeed@lighthouseglobal.example,Marcus Saeed,Insights Lead,analytics,active,true,editor,2024-11-26 08:31:01,2024-11-26 08:55:01,active,true +M4331,W2067,lighthouse-ops,prod,active,false,A1033,Lighthouse Global,mid_market,NA,CA,U3293,sofia.grant@lighthouseglobal.example,Sofia Grant,BI Analyst,analytics,active,true,editor,2024-10-25 13:03:01,2024-10-25 14:45:01,active,true +M4332,W2066,lighthouse-core,prod,active,true,A1033,Lighthouse Global,mid_market,NA,CA,U3294,nina.saeed@lighthouseglobal.example,Nina Saeed,Demand Gen Manager,marketing,active,true,admin,2024-12-03 12:54:01,2024-12-03 13:48:01,active,true +M4333,W2067,lighthouse-ops,prod,active,false,A1033,Lighthouse Global,mid_market,NA,CA,U3295,arjun.rossi@lighthouseglobal.example,Arjun Rossi,Demand Gen Manager,marketing,active,true,admin,2024-11-09 10:45:01,2024-11-09 11:51:01,active,true +M4334,W2066,lighthouse-core,prod,active,true,A1033,Lighthouse Global,mid_market,NA,CA,U3295,arjun.rossi@lighthouseglobal.example,Arjun Rossi,Demand Gen Manager,marketing,active,true,viewer,2024-11-09 10:12:01,2024-11-09 10:58:01,active,true +M4335,W2066,lighthouse-core,prod,active,true,A1033,Lighthouse Global,mid_market,NA,CA,U3296,elena.grant@lighthouseglobal.example,Elena Grant,Product Manager,product,active,true,editor,2024-10-24 15:24:01,2024-10-24 17:50:01,active,true +M4336,W2067,lighthouse-ops,prod,active,false,A1033,Lighthouse Global,mid_market,NA,CA,U3296,elena.grant@lighthouseglobal.example,Elena Grant,Product Manager,product,active,true,viewer,2024-10-24 15:23:01,2024-10-24 18:11:01,active,true +M4337,W2066,lighthouse-core,prod,active,true,A1033,Lighthouse Global,mid_market,NA,CA,U3297,marcus.lopez@lighthouseglobal.example,Marcus Lopez,Demand Gen Manager,marketing,active,true,editor,2024-11-06 10:36:01,2024-11-06 10:52:01,active,true +M4338,W2067,lighthouse-ops,prod,active,false,A1033,Lighthouse Global,mid_market,NA,CA,U3298,kenji.desai@lighthouseglobal.example,Kenji Desai,Analytics Manager,analytics,active,true,admin,2024-12-01 12:09:01,2024-12-01 12:16:01,active,true +M4339,W2067,lighthouse-ops,prod,active,false,A1033,Lighthouse Global,mid_market,NA,CA,U3299,marcus.desai@lighthouseglobal.example,Marcus Desai,Data Engineer,data,active,true,viewer,2024-11-30 08:44:01,2024-11-30 09:38:01,active,true +M4340,W2067,lighthouse-ops,prod,active,false,A1033,Lighthouse Global,mid_market,NA,CA,U3300,mila.dubois@lighthouseglobal.example,Mila Dubois,Operations Manager,operations,active,true,viewer,2024-11-09 09:32:01,2024-11-09 12:29:01,active,true +M4341,W2068,helio-core,prod,active,true,A1034,Helio Partners,smb,NA,CA,U3301,evan.kim@heliopartners.example,Evan Kim,Technical Program Manager,product,active,true,owner,2025-01-11 20:45:06,2025-01-11 22:14:06,active,true +M4342,W2069,helio-ops,sandbox,active,false,A1034,Helio Partners,smb,NA,CA,U3302,hannah.rahman@heliopartners.example,Hannah Rahman,Operations Manager,operations,active,true,viewer,2025-01-08 00:53:06,2025-01-08 01:36:06,active,true +M4343,W2068,helio-core,prod,active,true,A1034,Helio Partners,smb,NA,CA,U3303,owen.sato@heliopartners.example,Owen Sato,Sales Analyst,sales,active,true,editor,2025-01-09 17:42:06,2025-01-09 17:56:06,active,true +M4344,W2069,helio-ops,sandbox,active,false,A1034,Helio Partners,smb,NA,CA,U3304,naomi.turner@heliopartners.example,Naomi Turner,Product Manager,product,active,true,admin,2024-12-28 01:47:06,2024-12-28 04:32:06,active,true +M4345,W2068,helio-core,prod,active,true,A1034,Helio Partners,smb,NA,CA,U3305,alma.chen@heliopartners.example,Alma Chen,Demand Gen Manager,marketing,active,true,viewer,2025-01-04 02:30:06,2025-01-04 05:29:06,active,true +M4346,W2068,helio-core,prod,active,true,A1034,Helio Partners,smb,NA,CA,U3306,marcus.ng@heliopartners.example,Marcus Ng,Demand Gen Manager,marketing,active,true,viewer,2024-12-24 00:00:06,2024-12-24 00:38:06,active,true +M4347,W2069,helio-ops,sandbox,active,false,A1034,Helio Partners,smb,NA,CA,U3306,marcus.ng@heliopartners.example,Marcus Ng,Demand Gen Manager,marketing,active,true,editor,2024-12-24 00:14:06,2024-12-24 01:33:06,active,true +M4348,W2069,helio-ops,sandbox,active,false,A1034,Helio Partners,smb,NA,CA,U3307,arjun.brooks@heliopartners.example,Arjun Brooks,Data Platform Manager,data,active,true,admin,2024-12-12 01:30:06,2024-12-12 03:14:06,active,true +M4349,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3308,aisha.keller@brightretail.example,Aisha Keller,Technical Program Manager,product,provisioned,false,owner,2025-03-12 23:34:57,,pending,false +M4350,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3309,zoe.kim@brightretail.example,Zoe Kim,Revenue Operations Manager,sales,active,true,viewer,2025-03-03 01:45:57,2025-03-03 04:15:57,active,true +M4351,W2072,bright-finance,prod,active,false,A1035,Bright Retail,mid_market,EMEA,UK,U3310,owen.petrova@brightretail.example,Owen Petrova,Technical Program Manager,product,inactive,false,viewer,2025-03-17 19:46:57,2025-03-17 21:10:57,removed,false +M4352,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3310,owen.petrova@brightretail.example,Owen Petrova,Technical Program Manager,product,inactive,false,editor,2025-03-17 18:22:57,2025-03-17 18:49:57,removed,false +M4353,W2071,bright-ops,sandbox,active,false,A1035,Bright Retail,mid_market,EMEA,UK,U3311,marcus.morgan@brightretail.example,Marcus Morgan,Revenue Operations Manager,sales,active,true,admin,2025-04-02 02:56:57,2025-04-02 04:12:57,active,true +M4354,W2072,bright-finance,prod,active,false,A1035,Bright Retail,mid_market,EMEA,UK,U3312,ben.singh@brightretail.example,Ben Singh,Demand Gen Manager,marketing,active,true,editor,2025-03-18 22:34:57,2025-03-19 00:36:57,active,true +M4355,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3312,ben.singh@brightretail.example,Ben Singh,Demand Gen Manager,marketing,active,true,editor,2025-03-18 23:31:57,2025-03-19 01:37:57,active,true +M4356,W2071,bright-ops,sandbox,active,false,A1035,Bright Retail,mid_market,EMEA,UK,U3313,zoe.ward@brightretail.example,Zoe Ward,CFO,executive,active,true,viewer,2025-04-11 22:52:57,2025-04-12 01:01:57,active,true +M4357,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3313,zoe.ward@brightretail.example,Zoe Ward,CFO,executive,active,true,editor,2025-04-11 23:59:57,2025-04-12 01:37:57,active,true +M4358,W2071,bright-ops,sandbox,active,false,A1035,Bright Retail,mid_market,EMEA,UK,U3314,marcus.patel@brightretail.example,Marcus Patel,Analytics Engineer,data,active,true,editor,2025-03-19 21:37:57,2025-03-19 22:15:57,active,true +M4359,W2071,bright-ops,sandbox,active,false,A1035,Bright Retail,mid_market,EMEA,UK,U3315,marcus.desai@brightretail.example,Marcus Desai,FP&A Analyst,finance,active,true,editor,2025-03-06 00:24:57,2025-03-06 02:04:57,active,true +M4360,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3316,mei.tan@brightretail.example,Mei Tan,Operations Manager,operations,active,true,viewer,2025-03-11 01:31:57,2025-03-11 04:30:57,active,true +M4361,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3317,samir.hill@brightretail.example,Samir Hill,Revenue Operations Manager,sales,active,true,viewer,2025-04-06 18:30:57,2025-04-06 19:37:57,active,true +M4362,W2072,bright-finance,prod,active,false,A1035,Bright Retail,mid_market,EMEA,UK,U3318,ava.hart@brightretail.example,Ava Hart,FP&A Analyst,finance,active,true,viewer,2025-02-26 02:27:57,2025-02-26 04:08:57,active,true +M4363,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3318,ava.hart@brightretail.example,Ava Hart,FP&A Analyst,finance,active,true,editor,2025-02-26 02:44:57,2025-02-26 05:14:57,active,true +M4364,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3319,ivy.turner@brightretail.example,Ivy Turner,Controller,finance,active,true,editor,2025-04-03 19:39:57,2025-04-03 20:07:57,active,true +M4365,W2071,bright-ops,sandbox,active,false,A1035,Bright Retail,mid_market,EMEA,UK,U3320,marcus.kim@brightretail.example,Marcus Kim,CFO,executive,active,true,editor,2025-03-23 20:09:57,2025-03-23 22:13:57,active,true +M4366,W2073,granite-core,prod,archived,true,A1036,Granite Holdings,smb,NA,US,U3321,naomi.lewis@graniteholdings.example,Naomi Lewis,Sales Analyst,sales,inactive,false,owner,2025-02-04 19:59:31,2025-02-04 20:25:31,removed,false +M4367,W2073,granite-core,prod,archived,true,A1036,Granite Holdings,smb,NA,US,U3322,daniel.tan@graniteholdings.example,Daniel Tan,Demand Gen Manager,marketing,inactive,false,viewer,2025-02-03 15:34:31,2025-02-03 17:29:31,removed,false +M4368,W2074,granite-ops,sandbox,archived,false,A1036,Granite Holdings,smb,NA,US,U3323,kenji.hart@graniteholdings.example,Kenji Hart,Founder,executive,inactive,false,admin,2025-01-13 18:55:31,2025-01-13 21:04:31,removed,false +M4369,W2075,lighthouse-core,prod,active,true,A1037,Lighthouse Network,enterprise,EMEA,UK,U3324,isla.meyer@lighthousenetwork.example,Isla Meyer,Revenue Operations Manager,sales,active,true,owner,2024-12-28 05:48:43,2024-12-28 07:54:43,active,true +M4370,W2075,lighthouse-core,prod,active,true,A1037,Lighthouse Network,enterprise,EMEA,UK,U3325,hannah.brooks@lighthousenetwork.example,Hannah Brooks,Demand Gen Manager,marketing,active,true,editor,2024-12-05 09:22:43,2024-12-05 10:04:43,active,true +M4371,W2076,lighthouse-ops,prod,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3325,hannah.brooks@lighthousenetwork.example,Hannah Brooks,Demand Gen Manager,marketing,active,true,editor,2024-12-05 09:01:43,2024-12-05 10:00:43,active,true +M4372,W2075,lighthouse-core,prod,active,true,A1037,Lighthouse Network,enterprise,EMEA,UK,U3326,hannah.meyer@lighthousenetwork.example,Hannah Meyer,Marketing Operations Lead,marketing,active,true,viewer,2024-12-17 13:15:43,2024-12-17 14:52:43,active,true +M4373,W2078,lighthouse-marketing,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3327,arjun.patel@lighthousenetwork.example,Arjun Patel,Revenue Operations Manager,sales,active,true,viewer,2024-12-27 08:31:43,2024-12-27 08:41:43,active,true +M4374,W2075,lighthouse-core,prod,active,true,A1037,Lighthouse Network,enterprise,EMEA,UK,U3327,arjun.patel@lighthousenetwork.example,Arjun Patel,Revenue Operations Manager,sales,active,true,editor,2024-12-27 08:45:43,2024-12-27 11:45:43,active,true +M4375,W2077,lighthouse-finance,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3328,lina.kim@lighthousenetwork.example,Lina Kim,Sales Analyst,sales,active,true,editor,2024-12-30 06:14:43,2024-12-30 07:29:43,active,true +M4376,W2075,lighthouse-core,prod,active,true,A1037,Lighthouse Network,enterprise,EMEA,UK,U3328,lina.kim@lighthousenetwork.example,Lina Kim,Sales Analyst,sales,active,true,editor,2024-12-30 05:31:43,2024-12-30 05:56:43,active,true +M4377,W2078,lighthouse-marketing,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3329,mei.park@lighthousenetwork.example,Mei Park,Demand Gen Manager,marketing,active,true,viewer,2025-01-01 12:57:43,2025-01-01 14:08:43,active,true +M4378,W2076,lighthouse-ops,prod,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3330,mei.meyer@lighthousenetwork.example,Mei Meyer,Product Manager,product,active,true,viewer,2025-01-07 06:39:43,2025-01-07 08:00:43,active,true +M4379,W2077,lighthouse-finance,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3330,mei.meyer@lighthousenetwork.example,Mei Meyer,Product Manager,product,active,true,editor,2025-01-07 07:01:43,2025-01-07 07:56:43,active,true +M4380,W2078,lighthouse-marketing,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3331,sofia.grant@lighthousenetwork.example,Sofia Grant,Revenue Operations Manager,sales,active,true,editor,2024-12-22 08:42:43,2024-12-22 09:28:43,active,true +M4381,W2078,lighthouse-marketing,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3332,aisha.lopez@lighthousenetwork.example,Aisha Lopez,Analytics Engineer,data,active,true,editor,2024-12-24 07:33:43,2024-12-24 07:40:43,active,true +M4382,W2076,lighthouse-ops,prod,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3333,ben.brooks@lighthousenetwork.example,Ben Brooks,Analytics Manager,analytics,active,true,admin,2024-12-31 13:04:43,2024-12-31 13:46:43,active,true +M4383,W2077,lighthouse-finance,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3334,alma.saeed@lighthousenetwork.example,Alma Saeed,Marketing Operations Lead,marketing,active,true,viewer,2024-12-28 05:49:43,2024-12-28 07:15:43,active,true +M4384,W2075,lighthouse-core,prod,active,true,A1037,Lighthouse Network,enterprise,EMEA,UK,U3335,kai.nash@lighthousenetwork.example,Kai Nash,Revenue Operations Manager,sales,inactive,false,admin,2024-12-17 09:04:43,2024-12-17 11:16:43,active,true +M4385,W2075,lighthouse-core,prod,active,true,A1037,Lighthouse Network,enterprise,EMEA,UK,U3336,derek.meyer@lighthousenetwork.example,Derek Meyer,Demand Gen Manager,marketing,active,true,viewer,2024-12-30 05:49:43,2024-12-30 08:07:43,active,true +M4386,W2075,lighthouse-core,prod,active,true,A1037,Lighthouse Network,enterprise,EMEA,UK,U3337,owen.alvarez@lighthousenetwork.example,Owen Alvarez,Marketing Operations Lead,marketing,active,true,viewer,2025-01-07 09:33:43,2025-01-07 10:10:43,active,true +M4387,W2078,lighthouse-marketing,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3338,olivia.kim@lighthousenetwork.example,Olivia Kim,Insights Lead,analytics,inactive,false,viewer,2024-12-13 06:18:43,2024-12-13 07:18:43,removed,false +M4388,W2076,lighthouse-ops,prod,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3339,sofia.hart@lighthousenetwork.example,Sofia Hart,Technical Program Manager,product,inactive,false,editor,2024-11-27 10:01:43,2024-11-27 12:39:43,removed,false +M4389,W2077,lighthouse-finance,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3340,elena.hill@lighthousenetwork.example,Elena Hill,Controller,finance,active,true,editor,2024-12-29 05:09:43,2024-12-29 05:17:43,active,true +M4390,W2078,lighthouse-marketing,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3340,elena.hill@lighthousenetwork.example,Elena Hill,Controller,finance,active,true,viewer,2024-12-29 05:35:43,2024-12-29 07:13:43,active,true +M4391,W2077,lighthouse-finance,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3341,daniel.ng@lighthousenetwork.example,Daniel Ng,Operations Director,operations,active,true,viewer,2024-12-29 10:31:43,2024-12-29 11:07:43,active,true +M4392,W2079,river-core,prod,active,true,A1038,River Systems,smb,APAC,AU,U3342,luis.ward@riversystems.example,Luis Ward,Founder,executive,active,true,owner,2024-11-23 09:38:31,2024-11-23 11:50:31,active,true +M4393,W2080,river-ops,prod,active,false,A1038,River Systems,smb,APAC,AU,U3343,nina.keller@riversystems.example,Nina Keller,Demand Gen Manager,marketing,active,true,editor,2024-12-14 14:21:31,2024-12-14 16:44:31,active,true +M4394,W2080,river-ops,prod,active,false,A1038,River Systems,smb,APAC,AU,U3344,ivy.khan@riversystems.example,Ivy Khan,Analytics Engineer,data,active,true,editor,2024-12-31 10:53:31,2024-12-31 11:43:31,active,true +M4395,W2080,river-ops,prod,active,false,A1038,River Systems,smb,APAC,AU,U3345,mila.keller@riversystems.example,Mila Keller,Data Platform Manager,data,inactive,false,editor,2024-11-22 13:58:31,2024-11-22 15:54:31,removed,false +M4396,W2079,river-core,prod,active,true,A1038,River Systems,smb,APAC,AU,U3345,mila.keller@riversystems.example,Mila Keller,Data Platform Manager,data,inactive,false,editor,2024-11-22 13:19:31,2024-11-22 16:12:31,removed,false +M4397,W2080,river-ops,prod,active,false,A1038,River Systems,smb,APAC,AU,U3346,jonas.petrova@riversystems.example,Jonas Petrova,Analytics Manager,analytics,active,true,viewer,2024-12-12 14:12:31,2024-12-12 14:42:31,active,true +M4398,W2081,nova-core,prod,active,true,A1039,Nova Group,smb,EMEA,FR,U3347,aisha.nash@novagroup.example,Aisha Nash,Marketing Operations Lead,marketing,active,true,owner,2025-03-04 01:13:48,2025-03-04 01:44:48,active,true +M4399,W2081,nova-core,prod,active,true,A1039,Nova Group,smb,EMEA,FR,U3348,peter.singh@novagroup.example,Peter Singh,Founder,executive,active,true,viewer,2025-03-14 00:06:48,2025-03-14 01:56:48,active,true +M4400,W2081,nova-core,prod,active,true,A1039,Nova Group,smb,EMEA,FR,U3349,maya.morgan@novagroup.example,Maya Morgan,Operations Manager,operations,active,true,editor,2025-02-19 20:48:48,2025-02-19 23:32:48,active,true +M4401,W2081,nova-core,prod,active,true,A1039,Nova Group,smb,EMEA,FR,U3350,sofia.shah@novagroup.example,Sofia Shah,Finance Manager,finance,active,true,viewer,2025-02-20 20:20:48,2025-02-20 22:53:48,active,true +M4402,W2081,nova-core,prod,active,true,A1039,Nova Group,smb,EMEA,FR,U3351,lena.brooks@novagroup.example,Lena Brooks,Product Manager,product,active,true,viewer,2025-02-24 16:35:48,2025-02-24 18:27:48,active,true +M4403,W2081,nova-core,prod,active,true,A1039,Nova Group,smb,EMEA,FR,U3352,helena.rossi@novagroup.example,Helena Rossi,VP Data,executive,active,true,editor,2025-02-14 19:26:48,2025-02-14 21:52:48,active,true +M4404,W2081,nova-core,prod,active,true,A1039,Nova Group,smb,EMEA,FR,U3353,tomas.tan@novagroup.example,Tomas Tan,CFO,executive,active,true,admin,2025-03-06 20:35:48,2025-03-06 22:40:48,active,true +M4405,W2082,harbor-core,prod,active,true,A1040,Harbor Collective,mid_market,APAC,SG,U3354,helena.shah@harborcollective.example,Helena Shah,VP Data,executive,active,true,owner,2025-01-04 14:41:20,2025-01-04 16:15:20,active,true +M4406,W2083,harbor-ops,sandbox,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3355,zoe.ng@harborcollective.example,Zoe Ng,Analytics Manager,analytics,active,true,editor,2024-12-16 16:26:20,2024-12-16 18:12:20,active,true +M4407,W2082,harbor-core,prod,active,true,A1040,Harbor Collective,mid_market,APAC,SG,U3356,owen.cole@harborcollective.example,Owen Cole,Analytics Manager,analytics,active,true,viewer,2025-01-12 12:52:20,2025-01-12 14:09:20,active,true +M4408,W2083,harbor-ops,sandbox,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3357,elena.dubois@harborcollective.example,Elena Dubois,Controller,finance,active,true,viewer,2024-12-20 15:09:20,2024-12-20 17:00:20,active,true +M4409,W2084,harbor-finance,prod,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3358,tomas.keller@harborcollective.example,Tomas Keller,Data Platform Manager,data,active,true,editor,2025-01-17 12:03:20,2025-01-17 12:16:20,active,true +M4410,W2082,harbor-core,prod,active,true,A1040,Harbor Collective,mid_market,APAC,SG,U3359,noah.reed@harborcollective.example,Noah Reed,Data Platform Manager,data,inactive,false,admin,2024-12-24 19:09:20,2024-12-24 21:26:20,active,true +M4411,W2084,harbor-finance,prod,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3360,peter.fischer@harborcollective.example,Peter Fischer,Revenue Operations Manager,sales,active,true,editor,2025-01-14 16:26:20,2025-01-14 18:53:20,active,true +M4412,W2083,harbor-ops,sandbox,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3360,peter.fischer@harborcollective.example,Peter Fischer,Revenue Operations Manager,sales,active,true,editor,2025-01-14 16:06:20,2025-01-14 17:00:20,active,true +M4413,W2082,harbor-core,prod,active,true,A1040,Harbor Collective,mid_market,APAC,SG,U3361,sofia.petrova@harborcollective.example,Sofia Petrova,Sales Analyst,sales,active,true,viewer,2025-01-09 12:40:20,2025-01-09 15:27:20,active,true +M4414,W2083,harbor-ops,sandbox,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3362,mila.rahman@harborcollective.example,Mila Rahman,FP&A Analyst,finance,active,true,viewer,2024-12-18 13:50:20,2024-12-18 14:35:20,active,true +M4415,W2084,harbor-finance,prod,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3362,mila.rahman@harborcollective.example,Mila Rahman,FP&A Analyst,finance,active,true,viewer,2024-12-18 14:01:20,2024-12-18 15:05:20,active,true +M4416,W2084,harbor-finance,prod,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3363,peter.turner@harborcollective.example,Peter Turner,Founder,executive,active,true,viewer,2024-12-22 18:36:20,2024-12-22 21:08:20,active,true +M4417,W2083,harbor-ops,sandbox,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3364,derek.patel@harborcollective.example,Derek Patel,Data Platform Manager,data,inactive,false,viewer,2024-12-21 20:23:20,2024-12-21 22:49:20,removed,false +M4418,W2083,harbor-ops,sandbox,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3365,ava.desai@harborcollective.example,Ava Desai,Data Platform Manager,data,active,true,editor,2024-12-28 13:55:20,2024-12-28 16:40:20,active,true +M4419,W2084,harbor-finance,prod,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3365,ava.desai@harborcollective.example,Ava Desai,Data Platform Manager,data,active,true,viewer,2024-12-28 12:18:20,2024-12-28 14:54:20,active,true +M4420,W2085,cedar-core,prod,active,true,A1041,Cedar Logistics,mid_market,EMEA,NL,U3366,evan.lopez@cedarlogistics.example,Evan Lopez,FP&A Analyst,finance,active,true,owner,2024-09-15 00:02:41,2024-09-15 02:45:41,active,true +M4421,W2087,cedar-finance,prod,active,false,A1041,Cedar Logistics,mid_market,EMEA,NL,U3367,tomas.saeed@cedarlogistics.example,Tomas Saeed,Analytics Manager,analytics,active,true,editor,2024-08-19 00:52:41,2024-08-19 02:34:41,active,true +M4422,W2085,cedar-core,prod,active,true,A1041,Cedar Logistics,mid_market,EMEA,NL,U3368,marta.rossi@cedarlogistics.example,Marta Rossi,Product Manager,product,active,true,viewer,2024-09-05 18:44:41,2024-09-05 21:30:41,active,true +M4423,W2087,cedar-finance,prod,active,false,A1041,Cedar Logistics,mid_market,EMEA,NL,U3368,marta.rossi@cedarlogistics.example,Marta Rossi,Product Manager,product,active,true,viewer,2024-09-05 18:26:41,2024-09-05 20:02:41,active,true +M4424,W2085,cedar-core,prod,active,true,A1041,Cedar Logistics,mid_market,EMEA,NL,U3369,tomas.hart@cedarlogistics.example,Tomas Hart,BI Analyst,analytics,active,true,viewer,2024-08-13 19:41:41,2024-08-13 22:03:41,active,true +M4425,W2085,cedar-core,prod,active,true,A1041,Cedar Logistics,mid_market,EMEA,NL,U3370,olivia.patel@cedarlogistics.example,Olivia Patel,Sales Analyst,sales,active,true,viewer,2024-08-12 00:17:41,2024-08-12 01:28:41,active,true +M4426,W2087,cedar-finance,prod,active,false,A1041,Cedar Logistics,mid_market,EMEA,NL,U3371,daniel.rahman@cedarlogistics.example,Daniel Rahman,Revenue Operations Manager,sales,active,true,admin,2024-08-19 16:45:41,2024-08-19 16:55:41,active,true +M4427,W2085,cedar-core,prod,active,true,A1041,Cedar Logistics,mid_market,EMEA,NL,U3371,daniel.rahman@cedarlogistics.example,Daniel Rahman,Revenue Operations Manager,sales,active,true,viewer,2024-08-19 16:44:41,2024-08-19 19:17:41,active,true +M4428,W2085,cedar-core,prod,active,true,A1041,Cedar Logistics,mid_market,EMEA,NL,U3372,aisha.lewis@cedarlogistics.example,Aisha Lewis,Data Platform Manager,data,active,true,editor,2024-08-13 17:52:41,2024-08-13 18:33:41,active,true +M4429,W2086,cedar-ops,sandbox,active,false,A1041,Cedar Logistics,mid_market,EMEA,NL,U3373,mateo.morgan@cedarlogistics.example,Mateo Morgan,Data Platform Manager,data,inactive,false,editor,2024-09-15 21:02:41,2024-09-15 22:39:41,active,true +M4430,W2085,cedar-core,prod,active,true,A1041,Cedar Logistics,mid_market,EMEA,NL,U3373,mateo.morgan@cedarlogistics.example,Mateo Morgan,Data Platform Manager,data,inactive,false,viewer,2024-09-15 21:39:41,2024-09-15 23:24:41,removed,false +M4431,W2086,cedar-ops,sandbox,active,false,A1041,Cedar Logistics,mid_market,EMEA,NL,U3374,leo.turner@cedarlogistics.example,Leo Turner,Finance Manager,finance,active,true,admin,2024-08-30 19:56:41,2024-08-30 20:54:41,active,true +M4432,W2087,cedar-finance,prod,active,false,A1041,Cedar Logistics,mid_market,EMEA,NL,U3375,kenji.hart@cedarlogistics.example,Kenji Hart,BI Analyst,analytics,inactive,false,editor,2024-09-16 21:44:41,2024-09-16 23:44:41,active,true +M4433,W2085,cedar-core,prod,active,true,A1041,Cedar Logistics,mid_market,EMEA,NL,U3376,zoe.kim@cedarlogistics.example,Zoe Kim,Revenue Operations Manager,sales,active,true,editor,2024-08-10 16:41:41,2024-08-10 19:11:41,active,true +M4434,W2087,cedar-finance,prod,active,false,A1041,Cedar Logistics,mid_market,EMEA,NL,U3377,kai.shah@cedarlogistics.example,Kai Shah,Operations Director,operations,active,true,viewer,2024-09-03 17:21:41,2024-09-03 19:29:41,active,true +M4435,W2086,cedar-ops,sandbox,active,false,A1041,Cedar Logistics,mid_market,EMEA,NL,U3377,kai.shah@cedarlogistics.example,Kai Shah,Operations Director,operations,active,true,viewer,2024-09-03 16:47:41,2024-09-03 19:25:41,active,true +M4436,W2088,northwind-core,prod,active,true,A1042,Northwind Labs,mid_market,APAC,AU,U3378,olivia.petrova@northwindlabs.example,Olivia Petrova,Product Manager,product,active,true,owner,2024-10-27 19:30:42,2024-10-27 21:48:42,active,true +M4437,W2090,northwind-finance,prod,active,false,A1042,Northwind Labs,mid_market,APAC,AU,U3379,ivy.saeed@northwindlabs.example,Ivy Saeed,Sales Analyst,sales,active,true,editor,2024-09-21 18:42:42,2024-09-21 18:52:42,active,true +M4438,W2088,northwind-core,prod,active,true,A1042,Northwind Labs,mid_market,APAC,AU,U3379,ivy.saeed@northwindlabs.example,Ivy Saeed,Sales Analyst,sales,active,true,viewer,2024-09-21 18:44:42,2024-09-21 21:00:42,active,true +M4439,W2088,northwind-core,prod,active,true,A1042,Northwind Labs,mid_market,APAC,AU,U3380,leo.kim@northwindlabs.example,Leo Kim,Founder,executive,active,true,viewer,2024-10-16 13:47:42,2024-10-16 15:15:42,active,true +M4440,W2089,northwind-ops,sandbox,active,false,A1042,Northwind Labs,mid_market,APAC,AU,U3380,leo.kim@northwindlabs.example,Leo Kim,Founder,executive,active,true,viewer,2024-10-16 13:33:42,2024-10-16 14:34:42,active,true +M4441,W2090,northwind-finance,prod,active,false,A1042,Northwind Labs,mid_market,APAC,AU,U3381,zoe.petrova@northwindlabs.example,Zoe Petrova,Insights Lead,analytics,active,true,viewer,2024-10-23 16:49:42,2024-10-23 17:45:42,active,true +M4442,W2089,northwind-ops,sandbox,active,false,A1042,Northwind Labs,mid_market,APAC,AU,U3381,zoe.petrova@northwindlabs.example,Zoe Petrova,Insights Lead,analytics,active,true,editor,2024-10-23 17:39:42,2024-10-23 19:13:42,active,true +M4443,W2089,northwind-ops,sandbox,active,false,A1042,Northwind Labs,mid_market,APAC,AU,U3382,maya.saeed@northwindlabs.example,Maya Saeed,Workflow Analyst,operations,active,true,viewer,2024-09-19 16:45:42,2024-09-19 18:32:42,active,true +M4444,W2088,northwind-core,prod,active,true,A1042,Northwind Labs,mid_market,APAC,AU,U3383,alma.price@northwindlabs.example,Alma Price,Founder,executive,active,true,editor,2024-09-28 17:00:42,2024-09-28 17:31:42,active,true +M4445,W2090,northwind-finance,prod,active,false,A1042,Northwind Labs,mid_market,APAC,AU,U3383,alma.price@northwindlabs.example,Alma Price,Founder,executive,active,true,editor,2024-09-28 16:36:42,2024-09-28 19:11:42,active,true +M4446,W2088,northwind-core,prod,active,true,A1042,Northwind Labs,mid_market,APAC,AU,U3384,nina.nash@northwindlabs.example,Nina Nash,Sales Analyst,sales,inactive,false,viewer,2024-10-28 14:48:42,2024-10-28 16:43:42,active,true +M4447,W2089,northwind-ops,sandbox,active,false,A1042,Northwind Labs,mid_market,APAC,AU,U3385,kai.turner@northwindlabs.example,Kai Turner,FP&A Analyst,finance,active,true,editor,2024-10-24 19:10:42,2024-10-24 21:54:42,active,true +M4448,W2088,northwind-core,prod,active,true,A1042,Northwind Labs,mid_market,APAC,AU,U3386,lena.cole@northwindlabs.example,Lena Cole,Revenue Operations Manager,sales,active,true,viewer,2024-10-31 11:38:42,2024-10-31 13:13:42,active,true +M4449,W2089,northwind-ops,sandbox,active,false,A1042,Northwind Labs,mid_market,APAC,AU,U3387,aisha.hill@northwindlabs.example,Aisha Hill,Demand Gen Manager,marketing,active,true,viewer,2024-10-10 18:53:42,2024-10-10 19:40:42,active,true +M4450,W2088,northwind-core,prod,active,true,A1042,Northwind Labs,mid_market,APAC,AU,U3388,hannah.rahman@northwindlabs.example,Hannah Rahman,Revenue Operations Manager,sales,active,true,viewer,2024-09-24 12:58:42,2024-09-24 14:18:42,active,true +M4451,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3389,elena.keller@lighthouseworks.example,Elena Keller,BI Analyst,analytics,active,true,owner,2024-11-13 13:44:18,2024-11-13 16:34:18,active,true +M4452,W2093,lighthouse-finance,prod,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3390,lina.morgan@lighthouseworks.example,Lina Morgan,Insights Lead,analytics,inactive,false,editor,2024-11-28 13:07:18,2024-11-28 13:59:18,removed,false +M4453,W2092,lighthouse-ops,sandbox,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3390,lina.morgan@lighthouseworks.example,Lina Morgan,Insights Lead,analytics,inactive,false,editor,2024-11-28 13:52:18,2024-11-28 14:52:18,removed,false +M4454,W2092,lighthouse-ops,sandbox,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3391,tara.park@lighthouseworks.example,Tara Park,Data Engineer,data,active,true,viewer,2024-12-02 20:33:18,2024-12-02 20:40:18,active,true +M4455,W2093,lighthouse-finance,prod,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3391,tara.park@lighthouseworks.example,Tara Park,Data Engineer,data,active,true,viewer,2024-12-02 20:30:18,2024-12-02 21:59:18,active,true +M4456,W2094,lighthouse-marketing,prod,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3392,ben.hart@lighthouseworks.example,Ben Hart,Marketing Operations Lead,marketing,active,true,editor,2024-12-03 13:32:18,2024-12-03 16:00:18,active,true +M4457,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3393,maya.rahman@lighthouseworks.example,Maya Rahman,Operations Manager,operations,active,true,editor,2024-11-15 17:54:18,2024-11-15 18:54:18,active,true +M4458,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3394,helena.tan@lighthouseworks.example,Helena Tan,Data Platform Manager,data,inactive,false,editor,2024-12-05 13:08:18,2024-12-05 16:04:18,removed,false +M4459,W2094,lighthouse-marketing,prod,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3395,arjun.cole@lighthouseworks.example,Arjun Cole,VP Data,executive,active,true,viewer,2024-11-04 15:17:18,2024-11-04 16:43:18,active,true +M4460,W2092,lighthouse-ops,sandbox,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3396,lena.chen@lighthouseworks.example,Lena Chen,BI Analyst,analytics,active,true,editor,2024-11-16 20:58:18,2024-11-16 21:14:18,active,true +M4461,W2093,lighthouse-finance,prod,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3397,sofia.meyer@lighthouseworks.example,Sofia Meyer,Founder,executive,active,true,editor,2024-11-22 16:45:18,2024-11-22 18:13:18,active,true +M4462,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3397,sofia.meyer@lighthouseworks.example,Sofia Meyer,Founder,executive,active,true,viewer,2024-11-22 16:46:18,2024-11-22 18:29:18,active,true +M4463,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3398,lena.lopez@lighthouseworks.example,Lena Lopez,Technical Program Manager,product,active,true,editor,2024-11-26 19:12:18,2024-11-26 21:44:18,active,true +M4464,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3399,samir.ward@lighthouseworks.example,Samir Ward,Product Manager,product,active,true,viewer,2024-11-20 13:14:18,2024-11-20 15:02:18,active,true +M4465,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3400,zoe.patel@lighthouseworks.example,Zoe Patel,CFO,executive,active,true,viewer,2024-11-12 21:56:18,2024-11-12 23:27:18,active,true +M4466,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3401,nina.alvarez@lighthouseworks.example,Nina Alvarez,BI Analyst,analytics,active,true,admin,2024-11-15 17:29:18,2024-11-15 18:51:18,active,true +M4467,W2093,lighthouse-finance,prod,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3401,nina.alvarez@lighthouseworks.example,Nina Alvarez,BI Analyst,analytics,active,true,editor,2024-11-15 18:26:18,2024-11-15 19:52:18,active,true +M4468,W2094,lighthouse-marketing,prod,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3402,leo.khan@lighthouseworks.example,Leo Khan,COO,executive,active,true,admin,2024-11-26 16:58:18,2024-11-26 19:39:18,active,true +M4469,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3403,mei.rossi@lighthouseworks.example,Mei Rossi,Marketing Operations Lead,marketing,active,true,editor,2024-11-05 17:03:18,2024-11-05 19:14:18,active,true +M4470,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3404,victor.cole@lighthouseworks.example,Victor Cole,Finance Manager,finance,active,true,viewer,2024-10-28 14:48:18,2024-10-28 15:00:18,active,true +M4471,W2092,lighthouse-ops,sandbox,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3405,tara.chen@lighthouseworks.example,Tara Chen,Analytics Engineer,data,active,true,admin,2024-11-13 18:20:18,2024-11-13 20:16:18,active,true +M4472,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3405,tara.chen@lighthouseworks.example,Tara Chen,Analytics Engineer,data,active,true,viewer,2024-11-13 18:33:18,2024-11-13 19:21:18,active,true +M4473,W2092,lighthouse-ops,sandbox,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3406,evan.rossi@lighthouseworks.example,Evan Rossi,Controller,finance,active,true,viewer,2024-11-07 18:17:18,2024-11-07 20:39:18,active,true +M4474,W2095,summit-core,prod,active,true,A1044,Summit Holdings,smb,EMEA,NL,U3407,hannah.saeed@summitholdings.example,Hannah Saeed,Sales Analyst,sales,active,true,owner,2024-11-03 00:30:29,2024-11-03 00:48:29,active,true +M4475,W2095,summit-core,prod,active,true,A1044,Summit Holdings,smb,EMEA,NL,U3408,kenji.ward@summitholdings.example,Kenji Ward,Workflow Analyst,operations,active,true,viewer,2024-11-02 07:25:29,2024-11-02 07:58:29,active,true +M4476,W2095,summit-core,prod,active,true,A1044,Summit Holdings,smb,EMEA,NL,U3409,maya.reed@summitholdings.example,Maya Reed,Revenue Operations Manager,sales,active,true,viewer,2024-10-20 05:21:29,2024-10-20 06:33:29,active,true +M4477,W2095,summit-core,prod,active,true,A1044,Summit Holdings,smb,EMEA,NL,U3410,kenji.lopez@summitholdings.example,Kenji Lopez,Demand Gen Manager,marketing,active,true,viewer,2024-10-30 03:49:29,2024-10-30 05:31:29,active,true +M4478,W2095,summit-core,prod,active,true,A1044,Summit Holdings,smb,EMEA,NL,U3411,ivy.reed@summitholdings.example,Ivy Reed,Sales Analyst,sales,active,true,viewer,2024-10-23 04:32:29,2024-10-23 05:12:29,active,true +M4479,W2096,nova-core,prod,active,true,A1045,Nova Holdings,enterprise,NA,CA,U3412,lena.patel@novaholdings.example,Lena Patel,Workflow Analyst,operations,active,true,owner,2024-11-22 10:49:10,2024-11-22 12:51:10,active,true +M4480,W2096,nova-core,prod,active,true,A1045,Nova Holdings,enterprise,NA,CA,U3413,mei.shah@novaholdings.example,Mei Shah,FP&A Analyst,finance,active,true,admin,2024-11-05 09:27:10,2024-11-05 12:01:10,active,true +M4481,W2099,nova-marketing,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3414,mateo.nash@novaholdings.example,Mateo Nash,CFO,executive,active,true,viewer,2024-11-24 11:57:10,2024-11-24 14:17:10,active,true +M4482,W2097,nova-ops,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3415,hannah.morgan@novaholdings.example,Hannah Morgan,Workflow Analyst,operations,active,true,editor,2024-11-15 08:28:10,2024-11-15 09:55:10,active,true +M4483,W2099,nova-marketing,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3416,leo.hill@novaholdings.example,Leo Hill,Technical Program Manager,product,active,true,editor,2024-11-21 13:26:10,2024-11-21 13:52:10,active,true +M4484,W2098,nova-finance,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3417,nina.cole@novaholdings.example,Nina Cole,Analytics Engineer,data,active,true,editor,2024-11-12 12:39:10,2024-11-12 15:29:10,active,true +M4485,W2097,nova-ops,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3418,mei.nash@novaholdings.example,Mei Nash,FP&A Analyst,finance,active,true,viewer,2024-11-27 13:56:10,2024-11-27 14:55:10,active,true +M4486,W2098,nova-finance,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3418,mei.nash@novaholdings.example,Mei Nash,FP&A Analyst,finance,active,true,viewer,2024-11-27 14:02:10,2024-11-27 16:58:10,active,true +M4487,W2099,nova-marketing,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3419,owen.petrova@novaholdings.example,Owen Petrova,Sales Analyst,sales,active,true,viewer,2024-12-04 10:20:10,2024-12-04 11:18:10,active,true +M4488,W2096,nova-core,prod,active,true,A1045,Nova Holdings,enterprise,NA,CA,U3419,owen.petrova@novaholdings.example,Owen Petrova,Sales Analyst,sales,active,true,editor,2024-12-04 09:19:10,2024-12-04 11:55:10,active,true +M4489,W2098,nova-finance,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3420,samir.price@novaholdings.example,Samir Price,Revenue Operations Manager,sales,active,true,viewer,2024-11-10 09:15:10,2024-11-10 11:29:10,active,true +M4490,W2096,nova-core,prod,active,true,A1045,Nova Holdings,enterprise,NA,CA,U3421,alma.meyer@novaholdings.example,Alma Meyer,Insights Lead,analytics,active,true,viewer,2024-12-16 14:14:10,2024-12-16 16:14:10,active,true +M4491,W2098,nova-finance,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3421,alma.meyer@novaholdings.example,Alma Meyer,Insights Lead,analytics,active,true,viewer,2024-12-16 13:12:10,2024-12-16 15:55:10,active,true +M4492,W2099,nova-marketing,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3422,derek.saeed@novaholdings.example,Derek Saeed,Technical Program Manager,product,active,true,editor,2024-11-15 10:42:10,2024-11-15 13:42:10,active,true +M4493,W2098,nova-finance,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3423,victor.lopez@novaholdings.example,Victor Lopez,Operations Director,operations,active,true,viewer,2024-11-15 14:50:10,2024-11-15 15:32:10,active,true +M4494,W2099,nova-marketing,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3424,leo.brooks@novaholdings.example,Leo Brooks,Analytics Engineer,data,active,true,viewer,2024-12-08 09:33:10,2024-12-08 09:42:10,active,true +M4495,W2099,nova-marketing,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3425,peter.petrova@novaholdings.example,Peter Petrova,Sales Analyst,sales,active,true,editor,2024-11-19 10:56:10,2024-11-19 12:56:10,active,true +M4496,W2098,nova-finance,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3425,peter.petrova@novaholdings.example,Peter Petrova,Sales Analyst,sales,active,true,viewer,2024-11-19 11:18:10,2024-11-19 12:30:10,active,true +M4497,W2100,pioneer-core,prod,active,true,A1046,Pioneer Solutions,smb,NA,CA,U3426,naomi.saeed@pioneersolutions.example,Naomi Saeed,Finance Manager,finance,active,true,owner,2024-10-19 15:09:12,2024-10-19 17:34:12,active,true +M4498,W2100,pioneer-core,prod,active,true,A1046,Pioneer Solutions,smb,NA,CA,U3427,leo.ward@pioneersolutions.example,Leo Ward,Insights Lead,analytics,inactive,false,editor,2024-11-14 13:40:12,2024-11-14 14:23:12,removed,false +M4499,W2100,pioneer-core,prod,active,true,A1046,Pioneer Solutions,smb,NA,CA,U3428,helena.ward@pioneersolutions.example,Helena Ward,Sales Analyst,sales,active,true,editor,2024-11-08 19:01:12,2024-11-08 20:58:12,active,true +M4500,W2100,pioneer-core,prod,active,true,A1046,Pioneer Solutions,smb,NA,CA,U3429,elena.park@pioneersolutions.example,Elena Park,Analytics Manager,analytics,active,true,editor,2024-11-12 16:01:12,2024-11-12 18:52:12,active,true +M4501,W2100,pioneer-core,prod,active,true,A1046,Pioneer Solutions,smb,NA,CA,U3430,maya.saeed@pioneersolutions.example,Maya Saeed,FP&A Analyst,finance,active,true,viewer,2024-11-04 18:13:12,2024-11-04 19:07:12,active,true +M4502,W2101,orchid-core,prod,active,true,A1047,Orchid Global,enterprise,APAC,AU,U3431,leo.singh@orchidglobal.example,Leo Singh,Analytics Engineer,data,active,true,owner,2024-11-02 02:27:00,2024-11-02 03:20:00,active,true +M4503,W2102,orchid-ops,sandbox,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3432,derek.tan@orchidglobal.example,Derek Tan,Sales Analyst,sales,active,true,admin,2024-11-09 01:47:00,2024-11-09 03:58:00,active,true +M4504,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3433,lina.kim@orchidglobal.example,Lina Kim,Demand Gen Manager,marketing,active,true,editor,2024-10-20 04:42:00,2024-10-20 05:50:00,active,true +M4505,W2101,orchid-core,prod,active,true,A1047,Orchid Global,enterprise,APAC,AU,U3434,mila.dubois@orchidglobal.example,Mila Dubois,Insights Lead,analytics,active,true,editor,2024-11-18 02:51:00,2024-11-18 04:04:00,active,true +M4506,W2102,orchid-ops,sandbox,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3434,mila.dubois@orchidglobal.example,Mila Dubois,Insights Lead,analytics,active,true,viewer,2024-11-18 03:34:00,2024-11-18 03:55:00,active,true +M4507,W2102,orchid-ops,sandbox,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3435,kenji.lewis@orchidglobal.example,Kenji Lewis,BI Analyst,analytics,active,true,editor,2024-11-24 05:33:00,2024-11-24 07:21:00,active,true +M4508,W2102,orchid-ops,sandbox,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3436,mila.rossi@orchidglobal.example,Mila Rossi,Demand Gen Manager,marketing,active,true,editor,2024-10-16 01:01:00,2024-10-16 01:58:00,active,true +M4509,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3436,mila.rossi@orchidglobal.example,Mila Rossi,Demand Gen Manager,marketing,active,true,editor,2024-10-16 01:43:00,2024-10-16 02:40:00,active,true +M4510,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3437,luis.sato@orchidglobal.example,Luis Sato,Operations Manager,operations,active,true,editor,2024-11-01 00:31:00,2024-11-01 00:36:00,active,true +M4511,W2101,orchid-core,prod,active,true,A1047,Orchid Global,enterprise,APAC,AU,U3438,maya.patel@orchidglobal.example,Maya Patel,Operations Director,operations,active,true,editor,2024-10-15 05:45:00,2024-10-15 07:52:00,active,true +M4512,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3439,jonas.rossi@orchidglobal.example,Jonas Rossi,CFO,executive,active,true,editor,2024-11-27 23:34:00,2024-11-28 00:22:00,active,true +M4513,W2102,orchid-ops,sandbox,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3440,peter.brooks@orchidglobal.example,Peter Brooks,Analytics Manager,analytics,active,true,viewer,2024-10-19 06:09:00,2024-10-19 08:10:00,active,true +M4514,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3440,peter.brooks@orchidglobal.example,Peter Brooks,Analytics Manager,analytics,active,true,editor,2024-10-19 07:46:00,2024-10-19 07:54:00,active,true +M4515,W2102,orchid-ops,sandbox,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3441,nina.kim@orchidglobal.example,Nina Kim,Data Engineer,data,active,true,editor,2024-11-29 01:12:00,2024-11-29 01:36:00,active,true +M4516,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3441,nina.kim@orchidglobal.example,Nina Kim,Data Engineer,data,active,true,viewer,2024-11-29 02:43:00,2024-11-29 05:41:00,active,true +M4517,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3442,victor.desai@orchidglobal.example,Victor Desai,Demand Gen Manager,marketing,active,true,editor,2024-10-21 08:04:00,2024-10-21 10:14:00,active,true +M4518,W2101,orchid-core,prod,active,true,A1047,Orchid Global,enterprise,APAC,AU,U3443,leo.kim@orchidglobal.example,Leo Kim,Analytics Manager,analytics,active,true,editor,2024-10-24 22:52:00,2024-10-25 01:51:00,active,true +M4519,W2102,orchid-ops,sandbox,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3443,leo.kim@orchidglobal.example,Leo Kim,Analytics Manager,analytics,active,true,viewer,2024-10-24 23:27:00,2024-10-25 00:30:00,active,true +M4520,W2101,orchid-core,prod,active,true,A1047,Orchid Global,enterprise,APAC,AU,U3444,mateo.grant@orchidglobal.example,Mateo Grant,Analytics Manager,analytics,active,true,viewer,2024-11-24 03:07:00,2024-11-24 05:17:00,active,true +M4521,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3444,mateo.grant@orchidglobal.example,Mateo Grant,Analytics Manager,analytics,active,true,editor,2024-11-24 02:30:00,2024-11-24 04:04:00,active,true +M4522,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3445,daniel.grant@orchidglobal.example,Daniel Grant,Demand Gen Manager,marketing,active,true,editor,2024-11-04 00:03:00,2024-11-04 01:38:00,active,true +M4523,W2102,orchid-ops,sandbox,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3446,helena.grant@orchidglobal.example,Helena Grant,Revenue Operations Manager,sales,active,true,viewer,2024-10-14 22:25:00,2024-10-15 01:19:00,active,true +M4524,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3447,leo.shah@orchidglobal.example,Leo Shah,Founder,executive,active,true,editor,2024-10-30 00:58:00,2024-10-30 03:46:00,active,true +M4525,W2101,orchid-core,prod,active,true,A1047,Orchid Global,enterprise,APAC,AU,U3448,mila.silva@orchidglobal.example,Mila Silva,Data Engineer,data,active,true,admin,2024-11-06 01:36:00,2024-11-06 04:29:00,active,true +M4526,W2101,orchid-core,prod,active,true,A1047,Orchid Global,enterprise,APAC,AU,U3449,marcus.lewis@orchidglobal.example,Marcus Lewis,Product Manager,product,active,true,editor,2024-11-04 07:18:00,2024-11-04 08:15:00,active,true +M4527,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3449,marcus.lewis@orchidglobal.example,Marcus Lewis,Product Manager,product,active,true,viewer,2024-11-04 06:29:00,2024-11-04 06:56:00,active,true +M4528,W2104,orchid-core,prod,active,true,A1048,Orchid Capital,enterprise,APAC,NZ,U3450,owen.tan@orchidcapital.example,Owen Tan,Data Platform Manager,data,active,true,owner,2025-03-10 23:01:18,2025-03-11 00:42:18,active,true +M4529,W2106,orchid-finance,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3451,priya.rossi@orchidcapital.example,Priya Rossi,Technical Program Manager,product,active,true,admin,2025-03-21 01:38:18,2025-03-21 04:36:18,active,true +M4530,W2106,orchid-finance,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3452,isla.cole@orchidcapital.example,Isla Cole,CFO,executive,active,true,viewer,2025-03-04 02:06:18,2025-03-04 04:25:18,active,true +M4531,W2104,orchid-core,prod,active,true,A1048,Orchid Capital,enterprise,APAC,NZ,U3453,peter.park@orchidcapital.example,Peter Park,Analytics Manager,analytics,active,true,editor,2025-03-20 23:05:18,2025-03-21 00:34:18,active,true +M4532,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3454,sofia.kim@orchidcapital.example,Sofia Kim,Finance Manager,finance,active,true,editor,2025-03-26 00:23:18,2025-03-26 01:47:18,active,true +M4533,W2104,orchid-core,prod,active,true,A1048,Orchid Capital,enterprise,APAC,NZ,U3455,alma.keller@orchidcapital.example,Alma Keller,Revenue Operations Manager,sales,active,true,admin,2025-03-20 02:15:18,2025-03-20 04:56:18,active,true +M4534,W2104,orchid-core,prod,active,true,A1048,Orchid Capital,enterprise,APAC,NZ,U3456,mila.meyer@orchidcapital.example,Mila Meyer,CFO,executive,active,true,editor,2025-03-27 23:17:18,2025-03-28 00:50:18,active,true +M4535,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3457,tomas.desai@orchidcapital.example,Tomas Desai,Finance Manager,finance,active,true,admin,2025-02-16 21:59:18,2025-02-17 00:58:18,active,true +M4536,W2104,orchid-core,prod,active,true,A1048,Orchid Capital,enterprise,APAC,NZ,U3457,tomas.desai@orchidcapital.example,Tomas Desai,Finance Manager,finance,active,true,editor,2025-02-16 22:39:18,2025-02-17 00:57:18,active,true +M4537,W2106,orchid-finance,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3458,marcus.desai@orchidcapital.example,Marcus Desai,Sales Analyst,sales,active,true,editor,2025-03-19 23:22:18,2025-03-19 23:43:18,active,true +M4538,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3458,marcus.desai@orchidcapital.example,Marcus Desai,Sales Analyst,sales,active,true,viewer,2025-03-19 22:16:18,2025-03-19 23:36:18,active,true +M4539,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3459,ben.keller@orchidcapital.example,Ben Keller,Data Engineer,data,inactive,false,admin,2025-03-28 01:43:18,2025-03-28 02:19:18,removed,false +M4540,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3460,hannah.fischer@orchidcapital.example,Hannah Fischer,Sales Analyst,sales,active,true,admin,2025-03-31 18:12:18,2025-03-31 18:17:18,active,true +M4541,W2104,orchid-core,prod,active,true,A1048,Orchid Capital,enterprise,APAC,NZ,U3461,mateo.desai@orchidcapital.example,Mateo Desai,Operations Manager,operations,inactive,false,editor,2025-02-18 22:22:18,2025-02-19 00:35:18,removed,false +M4542,W2106,orchid-finance,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3462,zoe.nash@orchidcapital.example,Zoe Nash,Revenue Operations Manager,sales,active,true,admin,2025-02-27 03:40:18,2025-02-27 04:35:18,active,true +M4543,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3462,zoe.nash@orchidcapital.example,Zoe Nash,Revenue Operations Manager,sales,active,true,viewer,2025-02-27 03:03:18,2025-02-27 05:37:18,active,true +M4544,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3463,kenji.price@orchidcapital.example,Kenji Price,Workflow Analyst,operations,active,true,editor,2025-03-23 00:13:18,2025-03-23 01:21:18,active,true +M4545,W2106,orchid-finance,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3464,ivy.hill@orchidcapital.example,Ivy Hill,Finance Manager,finance,active,true,viewer,2025-03-22 00:03:18,2025-03-22 00:33:18,active,true +M4546,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3465,aisha.nash@orchidcapital.example,Aisha Nash,Technical Program Manager,product,inactive,false,viewer,2025-03-07 03:36:18,2025-03-07 06:05:18,removed,false +M4547,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3466,kai.ng@orchidcapital.example,Kai Ng,COO,executive,active,true,viewer,2025-03-23 03:26:18,2025-03-23 04:05:18,active,true +M4548,W2104,orchid-core,prod,active,true,A1048,Orchid Capital,enterprise,APAC,NZ,U3466,kai.ng@orchidcapital.example,Kai Ng,COO,executive,active,true,viewer,2025-03-23 03:05:18,2025-03-23 05:31:18,active,true +M4549,W2107,northwind-core,prod,active,true,A1049,Northwind Network,enterprise,NA,CA,U3467,nina.fischer@northwindnetwork.example,Nina Fischer,Technical Program Manager,product,active,true,owner,2024-12-07 01:39:33,2024-12-07 03:02:33,active,true +M4550,W2107,northwind-core,prod,active,true,A1049,Northwind Network,enterprise,NA,CA,U3468,ben.romero@northwindnetwork.example,Ben Romero,FP&A Analyst,finance,inactive,false,editor,2024-11-12 05:18:33,2024-11-12 07:42:33,removed,false +M4551,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3469,luis.dubois@northwindnetwork.example,Luis Dubois,Finance Manager,finance,active,true,admin,2024-11-14 07:49:33,2024-11-14 09:14:33,active,true +M4552,W2109,northwind-finance,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3470,nina.fischer2@northwindnetwork.example,Nina Fischer,Marketing Operations Lead,marketing,active,true,viewer,2024-11-28 05:18:33,2024-11-28 06:53:33,active,true +M4553,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3471,lena.reed@northwindnetwork.example,Lena Reed,Workflow Analyst,operations,active,true,editor,2024-12-02 08:18:33,2024-12-02 08:30:33,active,true +M4554,W2109,northwind-finance,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3472,lena.hill@northwindnetwork.example,Lena Hill,BI Analyst,analytics,active,true,admin,2024-12-18 08:06:33,2024-12-18 08:46:33,active,true +M4555,W2109,northwind-finance,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3473,samir.cole@northwindnetwork.example,Samir Cole,Sales Analyst,sales,active,true,viewer,2024-11-19 04:03:33,2024-11-19 06:19:33,active,true +M4556,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3474,maya.kim@northwindnetwork.example,Maya Kim,Analytics Engineer,data,active,true,admin,2024-12-15 01:05:33,2024-12-15 02:25:33,active,true +M4557,W2107,northwind-core,prod,active,true,A1049,Northwind Network,enterprise,NA,CA,U3475,peter.khan@northwindnetwork.example,Peter Khan,Marketing Operations Lead,marketing,inactive,false,viewer,2024-11-15 07:26:33,2024-11-15 10:22:33,removed,false +M4558,W2109,northwind-finance,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3476,sofia.petrova@northwindnetwork.example,Sofia Petrova,Demand Gen Manager,marketing,active,true,editor,2024-11-30 07:43:33,2024-11-30 10:34:33,active,true +M4559,W2107,northwind-core,prod,active,true,A1049,Northwind Network,enterprise,NA,CA,U3476,sofia.petrova@northwindnetwork.example,Sofia Petrova,Demand Gen Manager,marketing,active,true,viewer,2024-11-30 08:04:33,2024-11-30 09:34:33,active,true +M4560,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3477,elena.turner@northwindnetwork.example,Elena Turner,Data Platform Manager,data,active,true,editor,2024-12-07 04:27:33,2024-12-07 04:47:33,active,true +M4561,W2107,northwind-core,prod,active,true,A1049,Northwind Network,enterprise,NA,CA,U3478,ivy.lewis@northwindnetwork.example,Ivy Lewis,FP&A Analyst,finance,active,true,viewer,2024-12-17 03:43:33,2024-12-17 04:01:33,active,true +M4562,W2109,northwind-finance,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3479,lena.tan@northwindnetwork.example,Lena Tan,Marketing Operations Lead,marketing,active,true,editor,2024-11-16 06:00:33,2024-11-16 07:02:33,active,true +M4563,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3479,lena.tan@northwindnetwork.example,Lena Tan,Marketing Operations Lead,marketing,active,true,viewer,2024-11-16 04:23:33,2024-11-16 07:20:33,active,true +M4564,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3480,lena.petrova@northwindnetwork.example,Lena Petrova,Workflow Analyst,operations,active,true,viewer,2024-12-08 08:17:33,2024-12-08 10:26:33,active,true +M4565,W2109,northwind-finance,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3481,alma.cole@northwindnetwork.example,Alma Cole,Analytics Engineer,data,active,true,viewer,2024-11-22 06:58:33,2024-11-22 09:37:33,active,true +M4566,W2107,northwind-core,prod,active,true,A1049,Northwind Network,enterprise,NA,CA,U3481,alma.cole@northwindnetwork.example,Alma Cole,Analytics Engineer,data,active,true,viewer,2024-11-22 05:25:33,2024-11-22 06:00:33,active,true +M4567,W2107,northwind-core,prod,active,true,A1049,Northwind Network,enterprise,NA,CA,U3482,owen.shah@northwindnetwork.example,Owen Shah,Product Manager,product,active,true,editor,2024-11-26 03:31:33,2024-11-26 05:45:33,active,true +M4568,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3483,elena.grant@northwindnetwork.example,Elena Grant,Data Engineer,data,active,true,editor,2024-12-21 03:39:33,2024-12-21 05:27:33,active,true +M4569,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3484,claire.chen@northwindnetwork.example,Claire Chen,Founder,executive,active,true,viewer,2024-12-01 07:30:33,2024-12-01 09:54:33,active,true +M4570,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3485,daniel.nash@northwindnetwork.example,Daniel Nash,Marketing Operations Lead,marketing,active,true,viewer,2024-12-16 08:28:33,2024-12-16 11:21:33,active,true +M4571,W2109,northwind-finance,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3486,leo.shah@northwindnetwork.example,Leo Shah,Analytics Engineer,data,active,true,admin,2024-12-19 09:54:33,2024-12-19 10:35:33,active,true +M4572,W2107,northwind-core,prod,active,true,A1049,Northwind Network,enterprise,NA,CA,U3486,leo.shah@northwindnetwork.example,Leo Shah,Analytics Engineer,data,active,true,viewer,2024-12-19 08:33:33,2024-12-19 11:26:33,active,true +M4573,W2110,cedar-core,prod,active,true,A1050,Cedar Energy,smb,APAC,JP,U3487,claire.tan@cedarenergy.example,Claire Tan,BI Analyst,analytics,active,true,owner,2025-03-16 14:25:30,2025-03-16 16:40:30,active,true +M4574,W2110,cedar-core,prod,active,true,A1050,Cedar Energy,smb,APAC,JP,U3488,evan.fischer@cedarenergy.example,Evan Fischer,Operations Director,operations,active,true,editor,2025-03-05 19:21:30,2025-03-05 19:51:30,active,true +M4575,W2111,cedar-ops,sandbox,active,false,A1050,Cedar Energy,smb,APAC,JP,U3489,sofia.hill@cedarenergy.example,Sofia Hill,CFO,executive,active,true,editor,2025-03-25 21:57:30,2025-03-25 22:29:30,active,true +M4576,W2111,cedar-ops,sandbox,active,false,A1050,Cedar Energy,smb,APAC,JP,U3490,sofia.ward@cedarenergy.example,Sofia Ward,Data Engineer,data,active,true,editor,2025-03-02 22:43:30,2025-03-03 00:00:30,active,true +M4577,W2112,lighthouse-core,prod,active,true,A1051,Lighthouse Systems,smb,EMEA,UK,U3491,aisha.romero@lighthousesystems.example,Aisha Romero,VP Data,executive,active,true,owner,2025-03-20 05:44:10,2025-03-20 06:19:10,active,true +M4578,W2112,lighthouse-core,prod,active,true,A1051,Lighthouse Systems,smb,EMEA,UK,U3492,evan.brooks@lighthousesystems.example,Evan Brooks,Analytics Manager,analytics,inactive,false,admin,2025-02-27 10:04:10,2025-02-27 10:17:10,removed,false +M4579,W2112,lighthouse-core,prod,active,true,A1051,Lighthouse Systems,smb,EMEA,UK,U3493,noah.lewis@lighthousesystems.example,Noah Lewis,Workflow Analyst,operations,inactive,false,admin,2025-03-22 08:46:10,2025-03-22 10:21:10,active,true +M4580,W2112,lighthouse-core,prod,active,true,A1051,Lighthouse Systems,smb,EMEA,UK,U3494,zoe.price@lighthousesystems.example,Zoe Price,Marketing Operations Lead,marketing,inactive,false,viewer,2025-03-25 05:44:10,2025-03-25 06:59:10,removed,false +M4581,W2112,lighthouse-core,prod,active,true,A1051,Lighthouse Systems,smb,EMEA,UK,U3495,naomi.reed@lighthousesystems.example,Naomi Reed,Controller,finance,active,true,editor,2025-04-01 03:53:10,2025-04-01 06:06:10,active,true +M4582,W2112,lighthouse-core,prod,active,true,A1051,Lighthouse Systems,smb,EMEA,UK,U3496,mateo.lewis@lighthousesystems.example,Mateo Lewis,Revenue Operations Manager,sales,active,true,editor,2025-04-08 03:12:10,2025-04-08 05:31:10,active,true +M4583,W2112,lighthouse-core,prod,active,true,A1051,Lighthouse Systems,smb,EMEA,UK,U3497,isla.grant@lighthousesystems.example,Isla Grant,FP&A Analyst,finance,active,true,editor,2025-03-07 02:20:10,2025-03-07 05:12:10,active,true +M4584,W2113,sierra-core,prod,active,true,A1052,Sierra Labs,mid_market,APAC,NZ,U3498,jonas.park@sierralabs.example,Jonas Park,BI Analyst,analytics,active,true,owner,2024-12-12 22:33:21,2024-12-13 00:08:21,active,true +M4585,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3499,mila.dubois@sierralabs.example,Mila Dubois,Marketing Operations Lead,marketing,active,true,editor,2024-12-14 21:35:21,2024-12-14 22:51:21,active,true +M4586,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3500,leo.lewis@sierralabs.example,Leo Lewis,Technical Program Manager,product,active,true,viewer,2024-12-12 03:04:21,2024-12-12 05:09:21,active,true +M4587,W2113,sierra-core,prod,active,true,A1052,Sierra Labs,mid_market,APAC,NZ,U3500,leo.lewis@sierralabs.example,Leo Lewis,Technical Program Manager,product,active,true,viewer,2024-12-12 02:35:21,2024-12-12 05:28:21,active,true +M4588,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3501,aisha.tan@sierralabs.example,Aisha Tan,Marketing Operations Lead,marketing,inactive,false,admin,2024-12-26 20:38:21,2024-12-26 22:12:21,removed,false +M4589,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3502,mei.reed@sierralabs.example,Mei Reed,Operations Director,operations,active,true,admin,2024-12-29 04:23:21,2024-12-29 04:52:21,active,true +M4590,W2113,sierra-core,prod,active,true,A1052,Sierra Labs,mid_market,APAC,NZ,U3502,mei.reed@sierralabs.example,Mei Reed,Operations Director,operations,active,true,editor,2024-12-29 03:27:21,2024-12-29 03:59:21,active,true +M4591,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3503,victor.ng@sierralabs.example,Victor Ng,Revenue Operations Manager,sales,active,true,editor,2025-01-08 02:14:21,2025-01-08 03:19:21,active,true +M4592,W2113,sierra-core,prod,active,true,A1052,Sierra Labs,mid_market,APAC,NZ,U3504,mila.nash@sierralabs.example,Mila Nash,Data Platform Manager,data,active,true,viewer,2024-12-07 03:16:21,2024-12-07 05:08:21,active,true +M4593,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3504,mila.nash@sierralabs.example,Mila Nash,Data Platform Manager,data,active,true,viewer,2024-12-07 02:54:21,2024-12-07 03:15:21,active,true +M4594,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3505,victor.saeed@sierralabs.example,Victor Saeed,Revenue Operations Manager,sales,active,true,admin,2025-01-05 03:43:21,2025-01-05 05:41:21,active,true +M4595,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3506,hannah.tan@sierralabs.example,Hannah Tan,Analytics Manager,analytics,active,true,viewer,2024-12-25 23:54:21,2024-12-26 00:43:21,active,true +M4596,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3507,ava.rahman@sierralabs.example,Ava Rahman,Sales Analyst,sales,active,true,admin,2025-01-08 21:35:21,2025-01-09 00:23:21,active,true +M4597,W2115,bright-core,prod,active,true,A1053,Bright Health,mid_market,NA,CA,U3508,owen.petrova@brighthealth.example,Owen Petrova,Operations Director,operations,active,true,owner,2024-10-26 17:09:29,2024-10-26 19:36:29,active,true +M4598,W2115,bright-core,prod,active,true,A1053,Bright Health,mid_market,NA,CA,U3509,alma.park@brighthealth.example,Alma Park,Data Engineer,data,inactive,false,editor,2024-10-18 11:56:29,2024-10-18 13:14:29,removed,false +M4599,W2117,bright-finance,prod,active,false,A1053,Bright Health,mid_market,NA,CA,U3510,aisha.grant@brighthealth.example,Aisha Grant,Operations Director,operations,active,true,admin,2024-11-03 15:39:29,2024-11-03 16:33:29,active,true +M4600,W2115,bright-core,prod,active,true,A1053,Bright Health,mid_market,NA,CA,U3511,mateo.kim@brighthealth.example,Mateo Kim,FP&A Analyst,finance,active,true,editor,2024-10-24 14:57:29,2024-10-24 15:26:29,active,true +M4601,W2115,bright-core,prod,active,true,A1053,Bright Health,mid_market,NA,CA,U3512,samir.shah@brighthealth.example,Samir Shah,Finance Manager,finance,active,true,admin,2024-09-30 09:36:29,2024-09-30 11:25:29,active,true +M4602,W2116,bright-ops,prod,active,false,A1053,Bright Health,mid_market,NA,CA,U3512,samir.shah@brighthealth.example,Samir Shah,Finance Manager,finance,active,true,viewer,2024-09-30 09:10:29,2024-09-30 11:34:29,active,true +M4603,W2116,bright-ops,prod,active,false,A1053,Bright Health,mid_market,NA,CA,U3513,owen.meyer@brighthealth.example,Owen Meyer,Finance Manager,finance,active,true,editor,2024-09-27 11:26:29,2024-09-27 14:15:29,active,true +M4604,W2117,bright-finance,prod,active,false,A1053,Bright Health,mid_market,NA,CA,U3514,nina.chen@brighthealth.example,Nina Chen,Technical Program Manager,product,active,true,editor,2024-10-20 17:09:29,2024-10-20 19:15:29,active,true +M4605,W2117,bright-finance,prod,active,false,A1053,Bright Health,mid_market,NA,CA,U3515,tara.alvarez@brighthealth.example,Tara Alvarez,Demand Gen Manager,marketing,active,true,editor,2024-10-18 15:11:29,2024-10-18 15:51:29,active,true +M4606,W2115,bright-core,prod,active,true,A1053,Bright Health,mid_market,NA,CA,U3516,ben.chen@brighthealth.example,Ben Chen,Demand Gen Manager,marketing,active,true,editor,2024-10-28 16:31:29,2024-10-28 16:54:29,active,true +M4607,W2117,bright-finance,prod,active,false,A1053,Bright Health,mid_market,NA,CA,U3517,hannah.sato@brighthealth.example,Hannah Sato,Finance Manager,finance,active,true,admin,2024-10-30 14:44:29,2024-10-30 15:14:29,active,true +M4608,W2118,granite-core,prod,active,true,A1054,Granite Labs,mid_market,APAC,NZ,U3518,lena.singh@granitelabs.example,Lena Singh,Founder,executive,active,true,owner,2024-08-04 04:30:01,2024-08-04 06:42:01,active,true +M4609,W2118,granite-core,prod,active,true,A1054,Granite Labs,mid_market,APAC,NZ,U3519,aisha.meyer@granitelabs.example,Aisha Meyer,FP&A Analyst,finance,inactive,false,admin,2024-09-07 08:43:01,2024-09-07 09:45:01,active,true +M4610,W2119,granite-ops,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3520,alma.fischer@granitelabs.example,Alma Fischer,Revenue Operations Manager,sales,active,true,viewer,2024-08-28 10:15:01,2024-08-28 11:51:01,active,true +M4611,W2118,granite-core,prod,active,true,A1054,Granite Labs,mid_market,APAC,NZ,U3521,naomi.grant@granitelabs.example,Naomi Grant,Analytics Manager,analytics,active,true,viewer,2024-09-03 09:36:01,2024-09-03 11:57:01,active,true +M4612,W2120,granite-finance,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3521,naomi.grant@granitelabs.example,Naomi Grant,Analytics Manager,analytics,active,true,editor,2024-09-03 08:32:01,2024-09-03 09:38:01,active,true +M4613,W2119,granite-ops,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3522,daniel.brooks@granitelabs.example,Daniel Brooks,Workflow Analyst,operations,inactive,false,viewer,2024-09-10 09:51:01,2024-09-10 10:24:01,removed,false +M4614,W2119,granite-ops,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3523,ben.meyer@granitelabs.example,Ben Meyer,Sales Analyst,sales,active,true,viewer,2024-08-17 11:12:01,2024-08-17 12:08:01,active,true +M4615,W2120,granite-finance,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3523,ben.meyer@granitelabs.example,Ben Meyer,Sales Analyst,sales,active,true,viewer,2024-08-17 11:03:01,2024-08-17 11:23:01,active,true +M4616,W2118,granite-core,prod,active,true,A1054,Granite Labs,mid_market,APAC,NZ,U3524,marta.lewis@granitelabs.example,Marta Lewis,Technical Program Manager,product,inactive,false,editor,2024-09-01 03:47:01,2024-09-01 06:41:01,active,true +M4617,W2118,granite-core,prod,active,true,A1054,Granite Labs,mid_market,APAC,NZ,U3525,mei.chen@granitelabs.example,Mei Chen,Operations Director,operations,active,true,editor,2024-08-30 04:01:01,2024-08-30 04:24:01,active,true +M4618,W2119,granite-ops,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3525,mei.chen@granitelabs.example,Mei Chen,Operations Director,operations,active,true,viewer,2024-08-30 03:52:01,2024-08-30 06:30:01,active,true +M4619,W2120,granite-finance,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3526,mila.price@granitelabs.example,Mila Price,Revenue Operations Manager,sales,active,true,editor,2024-08-22 08:32:01,2024-08-22 08:46:01,active,true +M4620,W2118,granite-core,prod,active,true,A1054,Granite Labs,mid_market,APAC,NZ,U3526,mila.price@granitelabs.example,Mila Price,Revenue Operations Manager,sales,active,true,viewer,2024-08-22 07:42:01,2024-08-22 09:56:01,active,true +M4621,W2120,granite-finance,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3527,daniel.chen@granitelabs.example,Daniel Chen,Demand Gen Manager,marketing,active,true,editor,2024-08-17 03:05:01,2024-08-17 04:08:01,active,true +M4622,W2118,granite-core,prod,active,true,A1054,Granite Labs,mid_market,APAC,NZ,U3528,arjun.khan@granitelabs.example,Arjun Khan,Data Engineer,data,active,true,viewer,2024-09-13 07:37:01,2024-09-13 10:17:01,active,true +M4623,W2119,granite-ops,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3528,arjun.khan@granitelabs.example,Arjun Khan,Data Engineer,data,active,true,viewer,2024-09-13 06:55:01,2024-09-13 08:37:01,active,true +M4624,W2120,granite-finance,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3529,lena.romero@granitelabs.example,Lena Romero,Finance Manager,finance,inactive,false,editor,2024-08-22 07:57:01,2024-08-22 08:34:01,removed,false +M4625,W2121,pioneer-core,prod,active,true,A1055,Pioneer Systems,mid_market,EMEA,FR,U3530,priya.lewis@pioneersystems.example,Priya Lewis,Product Manager,product,inactive,false,owner,2025-02-28 19:48:38,2025-02-28 22:13:38,removed,false +M4626,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3531,ava.price@pioneersystems.example,Ava Price,Data Platform Manager,data,active,true,admin,2025-02-07 16:47:38,2025-02-07 18:26:38,active,true +M4627,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3532,daniel.silva@pioneersystems.example,Daniel Silva,Founder,executive,active,true,editor,2025-01-28 17:35:38,2025-01-28 18:40:38,active,true +M4628,W2121,pioneer-core,prod,active,true,A1055,Pioneer Systems,mid_market,EMEA,FR,U3533,lina.nash@pioneersystems.example,Lina Nash,Controller,finance,active,true,admin,2025-02-26 18:07:38,2025-02-26 20:29:38,active,true +M4629,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3533,lina.nash@pioneersystems.example,Lina Nash,Controller,finance,active,true,viewer,2025-02-26 18:30:38,2025-02-26 18:46:38,active,true +M4630,W2121,pioneer-core,prod,active,true,A1055,Pioneer Systems,mid_market,EMEA,FR,U3534,jonas.khan@pioneersystems.example,Jonas Khan,Analytics Engineer,data,active,true,viewer,2025-02-14 13:46:38,2025-02-14 14:37:38,active,true +M4631,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3534,jonas.khan@pioneersystems.example,Jonas Khan,Analytics Engineer,data,active,true,editor,2025-02-14 14:06:38,2025-02-14 14:22:38,active,true +M4632,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3535,derek.park@pioneersystems.example,Derek Park,BI Analyst,analytics,active,true,viewer,2025-02-21 17:05:38,2025-02-21 17:43:38,active,true +M4633,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3536,priya.tan@pioneersystems.example,Priya Tan,Operations Manager,operations,active,true,editor,2025-02-20 13:33:38,2025-02-20 14:42:38,active,true +M4634,W2121,pioneer-core,prod,active,true,A1055,Pioneer Systems,mid_market,EMEA,FR,U3536,priya.tan@pioneersystems.example,Priya Tan,Operations Manager,operations,active,true,editor,2025-02-20 12:33:38,2025-02-20 13:30:38,active,true +M4635,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3537,peter.tan@pioneersystems.example,Peter Tan,CFO,executive,active,true,viewer,2025-02-21 16:46:38,2025-02-21 18:08:38,active,true +M4636,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3538,marcus.saeed@pioneersystems.example,Marcus Saeed,Finance Manager,finance,active,true,viewer,2025-01-21 19:19:38,2025-01-21 20:26:38,active,true +M4637,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3539,olivia.chen@pioneersystems.example,Olivia Chen,BI Analyst,analytics,active,true,editor,2025-03-03 14:29:38,2025-03-03 14:47:38,active,true +M4638,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3540,marcus.saeed2@pioneersystems.example,Marcus Saeed,BI Analyst,analytics,active,true,viewer,2025-02-24 16:23:38,2025-02-24 18:32:38,active,true +M4639,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3541,alma.tan@pioneersystems.example,Alma Tan,Demand Gen Manager,marketing,active,true,admin,2025-02-05 19:55:38,2025-02-05 22:13:38,active,true +M4640,W2121,pioneer-core,prod,active,true,A1055,Pioneer Systems,mid_market,EMEA,FR,U3542,olivia.dubois@pioneersystems.example,Olivia Dubois,Finance Manager,finance,active,true,editor,2025-02-05 14:27:38,2025-02-05 16:07:38,active,true +M4641,W2123,delta-core,prod,active,true,A1056,Delta Global,mid_market,APAC,AU,U3543,sofia.hill@deltaglobal.example,Sofia Hill,Demand Gen Manager,marketing,active,true,owner,2024-12-24 08:30:51,2024-12-24 09:11:51,active,true +M4642,W2123,delta-core,prod,active,true,A1056,Delta Global,mid_market,APAC,AU,U3544,claire.alvarez@deltaglobal.example,Claire Alvarez,Finance Manager,finance,active,true,viewer,2024-12-08 08:39:51,2024-12-08 10:40:51,active,true +M4643,W2123,delta-core,prod,active,true,A1056,Delta Global,mid_market,APAC,AU,U3545,naomi.romero@deltaglobal.example,Naomi Romero,Product Manager,product,active,true,admin,2024-11-25 10:28:51,2024-11-25 11:44:51,active,true +M4644,W2125,delta-finance,prod,active,false,A1056,Delta Global,mid_market,APAC,AU,U3546,noah.sato@deltaglobal.example,Noah Sato,Technical Program Manager,product,active,true,editor,2024-12-08 09:52:51,2024-12-08 10:12:51,active,true +M4645,W2124,delta-ops,prod,active,false,A1056,Delta Global,mid_market,APAC,AU,U3547,isla.petrova@deltaglobal.example,Isla Petrova,Product Manager,product,active,true,viewer,2024-11-24 12:00:51,2024-11-24 13:42:51,active,true +M4646,W2124,delta-ops,prod,active,false,A1056,Delta Global,mid_market,APAC,AU,U3548,ava.turner@deltaglobal.example,Ava Turner,Marketing Operations Lead,marketing,inactive,false,editor,2024-11-28 08:14:51,2024-11-28 09:06:51,removed,false +M4647,W2125,delta-finance,prod,active,false,A1056,Delta Global,mid_market,APAC,AU,U3549,samir.khan@deltaglobal.example,Samir Khan,Technical Program Manager,product,active,true,admin,2024-11-20 04:53:51,2024-11-20 06:27:51,active,true +M4648,W2123,delta-core,prod,active,true,A1056,Delta Global,mid_market,APAC,AU,U3550,leo.ward@deltaglobal.example,Leo Ward,FP&A Analyst,finance,active,true,viewer,2024-12-11 06:19:51,2024-12-11 07:31:51,active,true +M4649,W2125,delta-finance,prod,active,false,A1056,Delta Global,mid_market,APAC,AU,U3551,marcus.khan@deltaglobal.example,Marcus Khan,Operations Manager,operations,active,true,editor,2024-12-23 10:12:51,2024-12-23 12:06:51,active,true +M4650,W2124,delta-ops,prod,active,false,A1056,Delta Global,mid_market,APAC,AU,U3551,marcus.khan@deltaglobal.example,Marcus Khan,Operations Manager,operations,active,true,viewer,2024-12-23 10:22:51,2024-12-23 10:41:51,active,true +M4651,W2125,delta-finance,prod,active,false,A1056,Delta Global,mid_market,APAC,AU,U3552,victor.alvarez@deltaglobal.example,Victor Alvarez,FP&A Analyst,finance,active,true,editor,2024-12-13 04:36:51,2024-12-13 05:54:51,active,true +M4652,W2125,delta-finance,prod,active,false,A1056,Delta Global,mid_market,APAC,AU,U3553,helena.ng@deltaglobal.example,Helena Ng,Sales Analyst,sales,active,true,editor,2024-12-23 06:50:51,2024-12-23 09:07:51,active,true +M4653,W2126,harbor-core,prod,active,true,A1057,Harbor Partners,enterprise,APAC,NZ,U3554,lena.rossi@harborpartners.example,Lena Rossi,Workflow Analyst,operations,active,true,owner,2024-11-24 14:26:31,2024-11-24 15:12:31,active,true +M4654,W2129,harbor-marketing,prod,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3555,owen.sato@harborpartners.example,Owen Sato,Analytics Manager,analytics,active,true,editor,2024-10-21 08:29:31,2024-10-21 09:07:31,active,true +M4655,W2126,harbor-core,prod,active,true,A1057,Harbor Partners,enterprise,APAC,NZ,U3556,lina.khan@harborpartners.example,Lina Khan,Product Manager,product,active,true,editor,2024-10-22 10:24:31,2024-10-22 10:50:31,active,true +M4656,W2127,harbor-ops,sandbox,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3557,maya.shah@harborpartners.example,Maya Shah,FP&A Analyst,finance,active,true,viewer,2024-11-20 10:46:31,2024-11-20 12:32:31,active,true +M4657,W2126,harbor-core,prod,active,true,A1057,Harbor Partners,enterprise,APAC,NZ,U3558,owen.tan@harborpartners.example,Owen Tan,Demand Gen Manager,marketing,inactive,false,viewer,2024-11-05 10:35:31,2024-11-05 11:44:31,active,true +M4658,W2126,harbor-core,prod,active,true,A1057,Harbor Partners,enterprise,APAC,NZ,U3559,marta.petrova@harborpartners.example,Marta Petrova,Data Platform Manager,data,active,true,admin,2024-11-18 13:18:31,2024-11-18 14:30:31,active,true +M4659,W2127,harbor-ops,sandbox,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3560,hannah.fischer@harborpartners.example,Hannah Fischer,Data Engineer,data,active,true,editor,2024-12-01 15:00:31,2024-12-01 15:14:31,active,true +M4660,W2126,harbor-core,prod,active,true,A1057,Harbor Partners,enterprise,APAC,NZ,U3560,hannah.fischer@harborpartners.example,Hannah Fischer,Data Engineer,data,active,true,viewer,2024-12-01 15:14:31,2024-12-01 17:21:31,active,true +M4661,W2129,harbor-marketing,prod,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3561,olivia.meyer@harborpartners.example,Olivia Meyer,Data Engineer,data,active,true,admin,2024-11-13 13:24:31,2024-11-13 16:05:31,active,true +M4662,W2128,harbor-finance,prod,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3562,lina.morgan@harborpartners.example,Lina Morgan,Sales Analyst,sales,active,true,viewer,2024-11-20 10:26:31,2024-11-20 11:41:31,active,true +M4663,W2128,harbor-finance,prod,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3563,naomi.tan@harborpartners.example,Naomi Tan,Sales Analyst,sales,active,true,viewer,2024-11-12 09:37:31,2024-11-12 10:19:31,active,true +M4664,W2129,harbor-marketing,prod,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3563,naomi.tan@harborpartners.example,Naomi Tan,Sales Analyst,sales,active,true,viewer,2024-11-12 08:08:31,2024-11-12 10:51:31,active,true +M4665,W2127,harbor-ops,sandbox,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3564,naomi.lewis@harborpartners.example,Naomi Lewis,Data Engineer,data,active,true,admin,2024-11-27 06:55:31,2024-11-27 08:52:31,active,true +M4666,W2129,harbor-marketing,prod,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3564,naomi.lewis@harborpartners.example,Naomi Lewis,Data Engineer,data,active,true,viewer,2024-11-27 06:45:31,2024-11-27 08:11:31,active,true +M4667,W2127,harbor-ops,sandbox,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3565,ivy.lewis@harborpartners.example,Ivy Lewis,Operations Director,operations,active,true,admin,2024-11-27 13:26:31,2024-11-27 14:36:31,active,true +M4668,W2126,harbor-core,prod,active,true,A1057,Harbor Partners,enterprise,APAC,NZ,U3566,ben.ng@harborpartners.example,Ben Ng,FP&A Analyst,finance,active,true,viewer,2024-11-18 13:14:31,2024-11-18 15:37:31,active,true +M4669,W2130,evergreen-core,prod,active,true,A1058,Evergreen Analytics,smb,EMEA,UK,U3567,marta.patel@evergreenanalytics.example,Marta Patel,FP&A Analyst,finance,active,true,owner,2025-02-15 21:19:12,2025-02-15 21:35:12,active,true +M4670,W2130,evergreen-core,prod,active,true,A1058,Evergreen Analytics,smb,EMEA,UK,U3568,victor.hart@evergreenanalytics.example,Victor Hart,Analytics Manager,analytics,active,true,editor,2025-02-12 03:36:12,2025-02-12 05:51:12,active,true +M4671,W2131,evergreen-ops,prod,active,false,A1058,Evergreen Analytics,smb,EMEA,UK,U3568,victor.hart@evergreenanalytics.example,Victor Hart,Analytics Manager,analytics,active,true,viewer,2025-02-12 03:41:12,2025-02-12 04:46:12,active,true +M4672,W2131,evergreen-ops,prod,active,false,A1058,Evergreen Analytics,smb,EMEA,UK,U3569,lena.turner@evergreenanalytics.example,Lena Turner,Founder,executive,inactive,false,editor,2025-02-15 04:23:12,2025-02-15 06:14:12,removed,false +M4673,W2131,evergreen-ops,prod,active,false,A1058,Evergreen Analytics,smb,EMEA,UK,U3570,mateo.dubois@evergreenanalytics.example,Mateo Dubois,Product Manager,product,active,true,viewer,2025-02-10 22:33:12,2025-02-11 00:10:12,active,true +M4674,W2130,evergreen-core,prod,active,true,A1058,Evergreen Analytics,smb,EMEA,UK,U3570,mateo.dubois@evergreenanalytics.example,Mateo Dubois,Product Manager,product,active,true,editor,2025-02-10 23:08:12,2025-02-11 00:57:12,active,true +M4675,W2131,evergreen-ops,prod,active,false,A1058,Evergreen Analytics,smb,EMEA,UK,U3571,tomas.nash@evergreenanalytics.example,Tomas Nash,Insights Lead,analytics,active,true,viewer,2025-01-12 03:47:12,2025-01-12 04:33:12,active,true +M4676,W2131,evergreen-ops,prod,active,false,A1058,Evergreen Analytics,smb,EMEA,UK,U3572,leo.ward@evergreenanalytics.example,Leo Ward,Technical Program Manager,product,inactive,false,admin,2025-02-04 01:54:12,2025-02-04 04:30:12,removed,false +M4677,W2130,evergreen-core,prod,active,true,A1058,Evergreen Analytics,smb,EMEA,UK,U3573,aisha.desai@evergreenanalytics.example,Aisha Desai,Insights Lead,analytics,active,true,viewer,2025-02-14 01:11:12,2025-02-14 03:26:12,active,true +M4678,W2132,evergreen-core,prod,active,true,A1059,Evergreen Partners,mid_market,NA,CA,U3574,aisha.brooks@evergreenpartners.example,Aisha Brooks,Insights Lead,analytics,active,true,owner,2024-11-05 05:45:52,2024-11-05 08:18:52,active,true +M4679,W2133,evergreen-ops,sandbox,active,false,A1059,Evergreen Partners,mid_market,NA,CA,U3575,naomi.hart@evergreenpartners.example,Naomi Hart,Operations Manager,operations,active,true,viewer,2024-10-13 08:11:52,2024-10-13 08:24:52,active,true +M4680,W2132,evergreen-core,prod,active,true,A1059,Evergreen Partners,mid_market,NA,CA,U3576,nina.chen@evergreenpartners.example,Nina Chen,Workflow Analyst,operations,active,true,editor,2024-10-08 09:15:52,2024-10-08 09:39:52,active,true +M4681,W2132,evergreen-core,prod,active,true,A1059,Evergreen Partners,mid_market,NA,CA,U3577,kenji.lopez@evergreenpartners.example,Kenji Lopez,Demand Gen Manager,marketing,active,true,editor,2024-10-08 14:05:52,2024-10-08 16:30:52,active,true +M4682,W2133,evergreen-ops,sandbox,active,false,A1059,Evergreen Partners,mid_market,NA,CA,U3578,elena.shah@evergreenpartners.example,Elena Shah,FP&A Analyst,finance,active,true,editor,2024-10-23 12:08:52,2024-10-23 14:13:52,active,true +M4683,W2132,evergreen-core,prod,active,true,A1059,Evergreen Partners,mid_market,NA,CA,U3578,elena.shah@evergreenpartners.example,Elena Shah,FP&A Analyst,finance,active,true,editor,2024-10-23 12:01:52,2024-10-23 14:20:52,active,true +M4684,W2133,evergreen-ops,sandbox,active,false,A1059,Evergreen Partners,mid_market,NA,CA,U3579,aisha.reed@evergreenpartners.example,Aisha Reed,Founder,executive,active,true,editor,2024-11-07 10:48:52,2024-11-07 11:55:52,active,true +M4685,W2133,evergreen-ops,sandbox,active,false,A1059,Evergreen Partners,mid_market,NA,CA,U3580,hannah.rahman@evergreenpartners.example,Hannah Rahman,Technical Program Manager,product,active,true,editor,2024-10-27 10:39:52,2024-10-27 11:43:52,active,true +M4686,W2133,evergreen-ops,sandbox,active,false,A1059,Evergreen Partners,mid_market,NA,CA,U3581,isla.patel@evergreenpartners.example,Isla Patel,Sales Analyst,sales,active,true,editor,2024-10-27 09:57:52,2024-10-27 11:03:52,active,true +M4687,W2133,evergreen-ops,sandbox,active,false,A1059,Evergreen Partners,mid_market,NA,CA,U3582,maya.meyer@evergreenpartners.example,Maya Meyer,Technical Program Manager,product,inactive,false,viewer,2024-11-09 11:39:52,2024-11-09 12:04:52,removed,false +M4688,W2132,evergreen-core,prod,active,true,A1059,Evergreen Partners,mid_market,NA,CA,U3583,marcus.nash@evergreenpartners.example,Marcus Nash,CFO,executive,active,true,viewer,2024-11-05 10:08:52,2024-11-05 11:11:52,active,true +M4689,W2133,evergreen-ops,sandbox,active,false,A1059,Evergreen Partners,mid_market,NA,CA,U3584,marcus.lopez@evergreenpartners.example,Marcus Lopez,Sales Analyst,sales,active,true,viewer,2024-11-09 08:40:52,2024-11-09 09:17:52,active,true +M4690,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3585,mei.saeed@cedarfoods.example,Mei Saeed,COO,executive,active,true,owner,2024-11-26 00:41:46,2024-11-26 03:03:46,active,true +M4691,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3586,tomas.chen@cedarfoods.example,Tomas Chen,Revenue Operations Manager,sales,active,true,viewer,2024-12-08 18:25:46,2024-12-08 21:20:46,active,true +M4692,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3587,zoe.meyer@cedarfoods.example,Zoe Meyer,BI Analyst,analytics,active,true,viewer,2024-11-07 17:56:46,2024-11-07 19:21:46,active,true +M4693,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3588,ben.reed@cedarfoods.example,Ben Reed,Workflow Analyst,operations,active,true,admin,2024-11-12 19:21:46,2024-11-12 21:53:46,active,true +M4694,W2135,cedar-ops,sandbox,active,false,A1060,Cedar Foods,mid_market,NA,CA,U3589,lina.sato@cedarfoods.example,Lina Sato,Workflow Analyst,operations,active,true,viewer,2024-11-16 20:44:46,2024-11-16 21:35:46,active,true +M4695,W2135,cedar-ops,sandbox,active,false,A1060,Cedar Foods,mid_market,NA,CA,U3590,tomas.ward@cedarfoods.example,Tomas Ward,Analytics Manager,analytics,active,true,admin,2024-12-19 22:02:46,2024-12-20 00:28:46,active,true +M4696,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3590,tomas.ward@cedarfoods.example,Tomas Ward,Analytics Manager,analytics,active,true,viewer,2024-12-19 22:08:46,2024-12-20 00:13:46,active,true +M4697,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3591,tomas.dubois@cedarfoods.example,Tomas Dubois,Analytics Engineer,data,inactive,false,viewer,2024-11-29 23:36:46,2024-11-30 00:23:46,active,true +M4698,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3592,nina.sato@cedarfoods.example,Nina Sato,Product Manager,product,active,true,editor,2024-12-06 20:50:46,2024-12-06 22:43:46,active,true +M4699,W2135,cedar-ops,sandbox,active,false,A1060,Cedar Foods,mid_market,NA,CA,U3593,tara.hill@cedarfoods.example,Tara Hill,Controller,finance,active,true,admin,2024-12-02 21:09:46,2024-12-02 22:29:46,active,true +M4700,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3594,owen.lopez@cedarfoods.example,Owen Lopez,Operations Director,operations,active,true,editor,2024-11-09 18:56:46,2024-11-09 21:32:46,active,true +M4701,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3595,owen.romero@cedarfoods.example,Owen Romero,Product Manager,product,inactive,false,viewer,2024-12-16 17:42:46,2024-12-16 19:31:46,removed,false +M4702,W2135,cedar-ops,sandbox,active,false,A1060,Cedar Foods,mid_market,NA,CA,U3595,owen.romero@cedarfoods.example,Owen Romero,Product Manager,product,inactive,false,editor,2024-12-16 17:05:46,2024-12-16 19:01:46,removed,false +M4703,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3596,peter.silva@cedarfoods.example,Peter Silva,Revenue Operations Manager,sales,active,true,viewer,2024-12-08 00:24:46,2024-12-08 02:39:46,active,true +M4704,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3597,tomas.nash@cedarfoods.example,Tomas Nash,Marketing Operations Lead,marketing,active,true,admin,2024-11-30 00:13:46,2024-11-30 03:04:46,active,true +M4705,W2135,cedar-ops,sandbox,active,false,A1060,Cedar Foods,mid_market,NA,CA,U3597,tomas.nash@cedarfoods.example,Tomas Nash,Marketing Operations Lead,marketing,active,true,editor,2024-11-30 00:41:46,2024-11-30 02:23:46,active,true +M4706,W2136,atlas-core,prod,active,true,A1061,Atlas Capital,enterprise,EMEA,FR,U3598,samir.singh@atlascapital.example,Samir Singh,Revenue Operations Manager,sales,active,true,owner,2025-03-25 00:54:24,2025-03-25 01:44:24,active,true +M4707,W2138,atlas-finance,prod,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3599,elena.ward@atlascapital.example,Elena Ward,Insights Lead,analytics,active,true,viewer,2025-02-25 01:12:24,2025-02-25 01:41:24,active,true +M4708,W2136,atlas-core,prod,active,true,A1061,Atlas Capital,enterprise,EMEA,FR,U3600,mei.singh@atlascapital.example,Mei Singh,Revenue Operations Manager,sales,active,true,editor,2025-03-25 04:38:24,2025-03-25 06:55:24,active,true +M4709,W2138,atlas-finance,prod,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3601,owen.tan@atlascapital.example,Owen Tan,Finance Manager,finance,active,true,editor,2025-02-24 23:56:24,2025-02-25 01:14:24,active,true +M4710,W2137,atlas-ops,sandbox,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3602,victor.rossi@atlascapital.example,Victor Rossi,Revenue Operations Manager,sales,active,true,editor,2025-03-19 04:32:24,2025-03-19 04:47:24,active,true +M4711,W2138,atlas-finance,prod,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3603,owen.romero@atlascapital.example,Owen Romero,Analytics Engineer,data,active,true,viewer,2025-02-16 04:55:24,2025-02-16 07:12:24,active,true +M4712,W2137,atlas-ops,sandbox,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3604,noah.grant@atlascapital.example,Noah Grant,Demand Gen Manager,marketing,active,true,editor,2025-03-28 08:38:24,2025-03-28 10:11:24,active,true +M4713,W2137,atlas-ops,sandbox,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3605,zoe.keller@atlascapital.example,Zoe Keller,Data Platform Manager,data,active,true,admin,2025-02-22 06:48:24,2025-02-22 08:45:24,active,true +M4714,W2136,atlas-core,prod,active,true,A1061,Atlas Capital,enterprise,EMEA,FR,U3606,mila.desai@atlascapital.example,Mila Desai,Marketing Operations Lead,marketing,active,true,viewer,2025-02-13 00:53:24,2025-02-13 02:04:24,active,true +M4715,W2138,atlas-finance,prod,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3607,marcus.ward@atlascapital.example,Marcus Ward,Controller,finance,active,true,viewer,2025-02-17 00:25:24,2025-02-17 01:41:24,active,true +M4716,W2136,atlas-core,prod,active,true,A1061,Atlas Capital,enterprise,EMEA,FR,U3608,mila.patel@atlascapital.example,Mila Patel,Operations Director,operations,active,true,admin,2025-03-12 04:45:24,2025-03-12 05:33:24,active,true +M4717,W2136,atlas-core,prod,active,true,A1061,Atlas Capital,enterprise,EMEA,FR,U3609,noah.khan@atlascapital.example,Noah Khan,Workflow Analyst,operations,active,true,editor,2025-03-21 08:50:24,2025-03-21 11:00:24,active,true +M4718,W2137,atlas-ops,sandbox,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3609,noah.khan@atlascapital.example,Noah Khan,Workflow Analyst,operations,active,true,editor,2025-03-21 07:04:24,2025-03-21 07:15:24,active,true +M4719,W2136,atlas-core,prod,active,true,A1061,Atlas Capital,enterprise,EMEA,FR,U3610,daniel.desai@atlascapital.example,Daniel Desai,FP&A Analyst,finance,active,true,editor,2025-02-17 00:56:24,2025-02-17 02:54:24,active,true +M4720,W2138,atlas-finance,prod,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3611,kai.rahman@atlascapital.example,Kai Rahman,COO,executive,provisioned,false,admin,2025-03-13 01:53:24,,pending,false +M4721,W2136,atlas-core,prod,active,true,A1061,Atlas Capital,enterprise,EMEA,FR,U3612,marcus.kim@atlascapital.example,Marcus Kim,Finance Manager,finance,active,true,viewer,2025-03-16 01:35:24,2025-03-16 03:33:24,active,true +M4722,W2137,atlas-ops,sandbox,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3613,elena.meyer@atlascapital.example,Elena Meyer,Sales Analyst,sales,active,true,editor,2025-03-29 02:15:24,2025-03-29 05:11:24,active,true +M4723,W2136,atlas-core,prod,active,true,A1061,Atlas Capital,enterprise,EMEA,FR,U3613,elena.meyer@atlascapital.example,Elena Meyer,Sales Analyst,sales,active,true,viewer,2025-03-29 02:36:24,2025-03-29 04:11:24,active,true +M4724,W2138,atlas-finance,prod,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3614,evan.saeed@atlascapital.example,Evan Saeed,Technical Program Manager,product,active,true,viewer,2025-02-28 02:09:24,2025-02-28 02:54:24,active,true +M4725,W2139,delta-core,prod,active,true,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3615,tara.petrova@deltamanufacturing.example,Tara Petrova,Analytics Manager,analytics,active,true,owner,2024-12-05 14:44:25,2024-12-05 16:14:25,active,true +M4726,W2140,delta-ops,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3616,olivia.saeed@deltamanufacturing.example,Olivia Saeed,Workflow Analyst,operations,active,true,editor,2024-12-02 22:22:25,2024-12-02 22:45:25,active,true +M4727,W2141,delta-finance,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3617,daniel.dubois@deltamanufacturing.example,Daniel Dubois,Data Engineer,data,active,true,viewer,2024-11-16 17:44:25,2024-11-16 19:39:25,active,true +M4728,W2139,delta-core,prod,active,true,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3618,tara.sato@deltamanufacturing.example,Tara Sato,Controller,finance,active,true,viewer,2024-11-11 15:08:25,2024-11-11 16:01:25,active,true +M4729,W2141,delta-finance,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3619,daniel.ng@deltamanufacturing.example,Daniel Ng,Analytics Manager,analytics,active,true,viewer,2024-12-18 22:44:25,2024-12-19 01:31:25,active,true +M4730,W2141,delta-finance,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3620,hannah.nash@deltamanufacturing.example,Hannah Nash,Finance Manager,finance,active,true,admin,2024-11-10 20:57:25,2024-11-10 21:58:25,active,true +M4731,W2140,delta-ops,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3620,hannah.nash@deltamanufacturing.example,Hannah Nash,Finance Manager,finance,active,true,editor,2024-11-10 21:22:25,2024-11-10 22:17:25,active,true +M4732,W2140,delta-ops,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3621,victor.park@deltamanufacturing.example,Victor Park,CFO,executive,active,true,admin,2024-11-21 19:15:25,2024-11-21 21:27:25,active,true +M4733,W2140,delta-ops,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3622,alma.patel@deltamanufacturing.example,Alma Patel,Operations Director,operations,active,true,admin,2024-12-05 18:37:25,2024-12-05 20:54:25,active,true +M4734,W2141,delta-finance,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3623,tomas.turner@deltamanufacturing.example,Tomas Turner,Product Manager,product,active,true,viewer,2024-12-06 16:46:25,2024-12-06 19:13:25,active,true +M4735,W2139,delta-core,prod,active,true,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3623,tomas.turner@deltamanufacturing.example,Tomas Turner,Product Manager,product,active,true,viewer,2024-12-06 16:30:25,2024-12-06 17:28:25,active,true +M4736,W2139,delta-core,prod,active,true,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3624,ava.sato@deltamanufacturing.example,Ava Sato,Sales Analyst,sales,active,true,editor,2024-11-17 22:00:25,2024-11-18 00:46:25,active,true +M4737,W2141,delta-finance,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3625,marta.dubois@deltamanufacturing.example,Marta Dubois,Demand Gen Manager,marketing,active,true,editor,2024-11-17 14:41:25,2024-11-17 17:34:25,active,true +M4738,W2139,delta-core,prod,active,true,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3626,evan.lewis@deltamanufacturing.example,Evan Lewis,Operations Manager,operations,active,true,viewer,2024-12-08 19:56:25,2024-12-08 21:15:25,active,true +M4739,W2141,delta-finance,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3627,zoe.meyer@deltamanufacturing.example,Zoe Meyer,Controller,finance,active,true,editor,2024-12-18 16:58:25,2024-12-18 19:36:25,active,true +M4740,W2140,delta-ops,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3628,zoe.petrova@deltamanufacturing.example,Zoe Petrova,Sales Analyst,sales,active,true,editor,2024-11-22 22:20:25,2024-11-22 22:53:25,active,true +M4741,W2142,maple-core,prod,active,true,A1063,Maple Global,smb,NA,CA,U3629,ivy.alvarez@mapleglobal.example,Ivy Alvarez,Demand Gen Manager,marketing,inactive,false,owner,2024-12-11 13:40:06,2024-12-11 14:58:06,removed,false +M4742,W2142,maple-core,prod,active,true,A1063,Maple Global,smb,NA,CA,U3630,lena.chen@mapleglobal.example,Lena Chen,Revenue Operations Manager,sales,active,true,editor,2024-11-16 18:08:06,2024-11-16 20:01:06,active,true +M4743,W2142,maple-core,prod,active,true,A1063,Maple Global,smb,NA,CA,U3631,priya.ng@mapleglobal.example,Priya Ng,Sales Analyst,sales,active,true,admin,2024-12-28 12:52:06,2024-12-28 15:46:06,active,true +M4744,W2142,maple-core,prod,active,true,A1063,Maple Global,smb,NA,CA,U3632,elena.chen@mapleglobal.example,Elena Chen,Revenue Operations Manager,sales,active,true,editor,2024-11-22 16:42:06,2024-11-22 17:19:06,active,true +M4745,W2143,atlas-core,prod,active,true,A1064,Atlas Health,smb,NA,US,U3633,luis.turner@atlashealth.example,Luis Turner,BI Analyst,analytics,active,true,owner,2024-10-10 03:58:22,2024-10-10 06:06:22,active,true +M4746,W2143,atlas-core,prod,active,true,A1064,Atlas Health,smb,NA,US,U3634,helena.romero@atlashealth.example,Helena Romero,Technical Program Manager,product,active,true,viewer,2024-09-03 03:10:22,2024-09-03 04:15:22,active,true +M4747,W2143,atlas-core,prod,active,true,A1064,Atlas Health,smb,NA,US,U3635,ava.chen@atlashealth.example,Ava Chen,Operations Manager,operations,active,true,editor,2024-10-09 02:33:22,2024-10-09 03:33:22,active,true +M4748,W2143,atlas-core,prod,active,true,A1064,Atlas Health,smb,NA,US,U3636,ivy.dubois@atlashealth.example,Ivy Dubois,Marketing Operations Lead,marketing,active,true,admin,2024-10-04 01:59:22,2024-10-04 03:26:22,active,true +M4749,W2144,vertex-core,prod,active,true,A1065,Vertex Partners,mid_market,NA,US,U3637,derek.brooks@vertexpartners.example,Derek Brooks,Operations Manager,operations,active,true,owner,2025-01-22 12:36:13,2025-01-22 15:33:13,active,true +M4750,W2145,vertex-ops,prod,active,false,A1065,Vertex Partners,mid_market,NA,US,U3638,derek.sato@vertexpartners.example,Derek Sato,Workflow Analyst,operations,active,true,editor,2025-02-13 08:15:13,2025-02-13 10:02:13,active,true +M4751,W2145,vertex-ops,prod,active,false,A1065,Vertex Partners,mid_market,NA,US,U3639,victor.nash@vertexpartners.example,Victor Nash,Workflow Analyst,operations,active,true,viewer,2025-01-29 07:36:13,2025-01-29 08:37:13,active,true +M4752,W2145,vertex-ops,prod,active,false,A1065,Vertex Partners,mid_market,NA,US,U3640,zoe.khan@vertexpartners.example,Zoe Khan,VP Data,executive,active,true,viewer,2025-01-31 11:17:13,2025-01-31 12:18:13,active,true +M4753,W2144,vertex-core,prod,active,true,A1065,Vertex Partners,mid_market,NA,US,U3640,zoe.khan@vertexpartners.example,Zoe Khan,VP Data,executive,active,true,viewer,2025-01-31 10:56:13,2025-01-31 11:43:13,active,true +M4754,W2144,vertex-core,prod,active,true,A1065,Vertex Partners,mid_market,NA,US,U3641,derek.cole@vertexpartners.example,Derek Cole,Technical Program Manager,product,active,true,viewer,2025-01-31 13:27:13,2025-01-31 14:05:13,active,true +M4755,W2144,vertex-core,prod,active,true,A1065,Vertex Partners,mid_market,NA,US,U3642,isla.nash@vertexpartners.example,Isla Nash,Analytics Manager,analytics,active,true,viewer,2025-02-07 10:58:13,2025-02-07 12:28:13,active,true +M4756,W2145,vertex-ops,prod,active,false,A1065,Vertex Partners,mid_market,NA,US,U3642,isla.nash@vertexpartners.example,Isla Nash,Analytics Manager,analytics,active,true,viewer,2025-02-07 09:13:13,2025-02-07 10:48:13,active,true +M4757,W2144,vertex-core,prod,active,true,A1065,Vertex Partners,mid_market,NA,US,U3643,tomas.tan@vertexpartners.example,Tomas Tan,Product Manager,product,inactive,false,editor,2025-01-04 11:44:13,2025-01-04 12:29:13,active,true +M4758,W2145,vertex-ops,prod,active,false,A1065,Vertex Partners,mid_market,NA,US,U3644,marcus.rahman@vertexpartners.example,Marcus Rahman,BI Analyst,analytics,active,true,viewer,2025-02-12 06:27:13,2025-02-12 07:13:13,active,true +M4759,W2145,vertex-ops,prod,active,false,A1065,Vertex Partners,mid_market,NA,US,U3645,mateo.romero@vertexpartners.example,Mateo Romero,Analytics Manager,analytics,inactive,false,editor,2025-02-11 14:08:13,2025-02-11 14:22:13,active,true +M4760,W2144,vertex-core,prod,active,true,A1065,Vertex Partners,mid_market,NA,US,U3645,mateo.romero@vertexpartners.example,Mateo Romero,Analytics Manager,analytics,inactive,false,editor,2025-02-11 12:33:13,2025-02-11 14:52:13,removed,false +M4761,W2145,vertex-ops,prod,active,false,A1065,Vertex Partners,mid_market,NA,US,U3646,owen.romero@vertexpartners.example,Owen Romero,BI Analyst,analytics,active,true,admin,2025-01-03 06:06:13,2025-01-03 07:09:13,active,true +M4762,W2144,vertex-core,prod,active,true,A1065,Vertex Partners,mid_market,NA,US,U3647,mateo.silva@vertexpartners.example,Mateo Silva,Sales Analyst,sales,active,true,admin,2025-02-09 09:25:13,2025-02-09 11:06:13,active,true +M4763,W2146,pacific-core,prod,active,true,A1066,Pacific Capital,mid_market,APAC,NZ,U3648,mateo.park@pacificcapital.example,Mateo Park,Technical Program Manager,product,inactive,false,owner,2025-02-15 18:08:41,2025-02-15 19:55:41,removed,false +M4764,W2147,pacific-ops,prod,active,false,A1066,Pacific Capital,mid_market,APAC,NZ,U3649,nina.patel@pacificcapital.example,Nina Patel,Technical Program Manager,product,active,true,viewer,2025-01-28 17:29:41,2025-01-28 17:37:41,active,true +M4765,W2146,pacific-core,prod,active,true,A1066,Pacific Capital,mid_market,APAC,NZ,U3649,nina.patel@pacificcapital.example,Nina Patel,Technical Program Manager,product,active,true,viewer,2025-01-28 15:56:41,2025-01-28 18:19:41,active,true +M4766,W2146,pacific-core,prod,active,true,A1066,Pacific Capital,mid_market,APAC,NZ,U3650,ava.rahman@pacificcapital.example,Ava Rahman,Controller,finance,active,true,viewer,2025-02-13 21:07:41,2025-02-13 23:47:41,active,true +M4767,W2147,pacific-ops,prod,active,false,A1066,Pacific Capital,mid_market,APAC,NZ,U3651,peter.rahman@pacificcapital.example,Peter Rahman,Marketing Operations Lead,marketing,active,true,viewer,2025-01-12 20:56:41,2025-01-12 21:06:41,active,true +M4768,W2147,pacific-ops,prod,active,false,A1066,Pacific Capital,mid_market,APAC,NZ,U3652,nina.fischer@pacificcapital.example,Nina Fischer,Finance Manager,finance,active,true,editor,2025-02-14 16:08:41,2025-02-14 18:40:41,active,true +M4769,W2146,pacific-core,prod,active,true,A1066,Pacific Capital,mid_market,APAC,NZ,U3652,nina.fischer@pacificcapital.example,Nina Fischer,Finance Manager,finance,active,true,editor,2025-02-14 16:31:41,2025-02-14 18:12:41,active,true +M4770,W2147,pacific-ops,prod,active,false,A1066,Pacific Capital,mid_market,APAC,NZ,U3653,peter.fischer@pacificcapital.example,Peter Fischer,Product Manager,product,active,true,admin,2025-02-13 20:20:41,2025-02-13 21:36:41,active,true +M4771,W2147,pacific-ops,prod,active,false,A1066,Pacific Capital,mid_market,APAC,NZ,U3654,noah.rossi@pacificcapital.example,Noah Rossi,FP&A Analyst,finance,active,true,editor,2025-01-30 18:27:41,2025-01-30 19:34:41,active,true +M4772,W2147,pacific-ops,prod,active,false,A1066,Pacific Capital,mid_market,APAC,NZ,U3655,isla.hart@pacificcapital.example,Isla Hart,VP Data,executive,inactive,false,admin,2025-02-09 20:41:41,2025-02-09 22:21:41,removed,false +M4773,W2146,pacific-core,prod,active,true,A1066,Pacific Capital,mid_market,APAC,NZ,U3656,peter.park@pacificcapital.example,Peter Park,Founder,executive,active,true,editor,2025-02-09 17:28:41,2025-02-09 19:14:41,active,true +M4774,W2146,pacific-core,prod,active,true,A1066,Pacific Capital,mid_market,APAC,NZ,U3657,olivia.singh@pacificcapital.example,Olivia Singh,Analytics Engineer,data,active,true,editor,2025-02-18 20:18:41,2025-02-18 23:07:41,active,true +M4775,W2147,pacific-ops,prod,active,false,A1066,Pacific Capital,mid_market,APAC,NZ,U3658,alma.brooks@pacificcapital.example,Alma Brooks,Marketing Operations Lead,marketing,active,true,editor,2025-01-27 20:21:41,2025-01-27 20:50:41,active,true +M4776,W2146,pacific-core,prod,active,true,A1066,Pacific Capital,mid_market,APAC,NZ,U3659,owen.petrova@pacificcapital.example,Owen Petrova,Revenue Operations Manager,sales,active,true,editor,2025-02-10 21:16:41,2025-02-10 22:24:41,active,true +M4777,W2148,maple-core,prod,active,true,A1067,Maple Energy,mid_market,NA,CA,U3660,derek.morgan@mapleenergy.example,Derek Morgan,Controller,finance,active,true,owner,2025-01-26 05:12:42,2025-01-26 05:53:42,active,true +M4778,W2149,maple-ops,sandbox,active,false,A1067,Maple Energy,mid_market,NA,CA,U3661,claire.cole@mapleenergy.example,Claire Cole,VP Data,executive,active,true,viewer,2025-01-27 06:50:42,2025-01-27 09:20:42,active,true +M4779,W2148,maple-core,prod,active,true,A1067,Maple Energy,mid_market,NA,CA,U3662,owen.price@mapleenergy.example,Owen Price,Technical Program Manager,product,active,true,admin,2025-01-09 05:30:42,2025-01-09 06:54:42,active,true +M4780,W2149,maple-ops,sandbox,active,false,A1067,Maple Energy,mid_market,NA,CA,U3663,naomi.petrova@mapleenergy.example,Naomi Petrova,Finance Manager,finance,inactive,false,viewer,2025-01-18 05:31:42,2025-01-18 05:37:42,removed,false +M4781,W2148,maple-core,prod,active,true,A1067,Maple Energy,mid_market,NA,CA,U3663,naomi.petrova@mapleenergy.example,Naomi Petrova,Finance Manager,finance,inactive,false,editor,2025-01-18 06:56:42,2025-01-18 09:24:42,active,true +M4782,W2149,maple-ops,sandbox,active,false,A1067,Maple Energy,mid_market,NA,CA,U3664,tomas.kim@mapleenergy.example,Tomas Kim,Operations Director,operations,active,true,viewer,2025-01-25 03:23:42,2025-01-25 05:31:42,active,true +M4783,W2148,maple-core,prod,active,true,A1067,Maple Energy,mid_market,NA,CA,U3665,ava.lewis@mapleenergy.example,Ava Lewis,Marketing Operations Lead,marketing,active,true,viewer,2025-01-23 04:13:42,2025-01-23 05:54:42,active,true +M4784,W2148,maple-core,prod,active,true,A1067,Maple Energy,mid_market,NA,CA,U3666,jonas.singh@mapleenergy.example,Jonas Singh,Technical Program Manager,product,active,true,viewer,2025-01-13 00:01:42,2025-01-13 00:56:42,active,true +M4785,W2149,maple-ops,sandbox,active,false,A1067,Maple Energy,mid_market,NA,CA,U3666,jonas.singh@mapleenergy.example,Jonas Singh,Technical Program Manager,product,active,true,viewer,2025-01-12 23:26:42,2025-01-13 00:00:42,active,true +M4786,W2150,helio-core,prod,active,true,A1068,Helio Health,enterprise,APAC,SG,U3667,jonas.turner@heliohealth.example,Jonas Turner,Workflow Analyst,operations,active,true,owner,2024-09-22 14:41:33,2024-09-22 16:34:33,active,true +M4787,W2153,helio-marketing,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3668,victor.romero@heliohealth.example,Victor Romero,Operations Manager,operations,active,true,admin,2024-09-11 12:32:33,2024-09-11 13:12:33,active,true +M4788,W2153,helio-marketing,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3669,helena.turner@heliohealth.example,Helena Turner,Sales Analyst,sales,inactive,false,editor,2024-09-20 18:39:33,2024-09-20 19:59:33,removed,false +M4789,W2152,helio-finance,sandbox,active,false,A1068,Helio Health,enterprise,APAC,SG,U3670,sofia.romero@heliohealth.example,Sofia Romero,BI Analyst,analytics,active,true,editor,2024-09-17 11:47:33,2024-09-17 14:16:33,active,true +M4790,W2151,helio-ops,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3671,naomi.cole@heliohealth.example,Naomi Cole,Finance Manager,finance,active,true,admin,2024-08-28 17:08:33,2024-08-28 19:50:33,active,true +M4791,W2152,helio-finance,sandbox,active,false,A1068,Helio Health,enterprise,APAC,SG,U3672,hannah.meyer@heliohealth.example,Hannah Meyer,Insights Lead,analytics,active,true,editor,2024-09-20 12:35:33,2024-09-20 13:33:33,active,true +M4792,W2152,helio-finance,sandbox,active,false,A1068,Helio Health,enterprise,APAC,SG,U3673,kenji.hill@heliohealth.example,Kenji Hill,Controller,finance,active,true,viewer,2024-08-31 15:45:33,2024-08-31 16:24:33,active,true +M4793,W2151,helio-ops,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3674,jonas.dubois@heliohealth.example,Jonas Dubois,Founder,executive,active,true,editor,2024-09-14 17:33:33,2024-09-14 18:59:33,active,true +M4794,W2153,helio-marketing,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3675,naomi.saeed@heliohealth.example,Naomi Saeed,Analytics Manager,analytics,active,true,admin,2024-09-11 18:34:33,2024-09-11 19:58:33,active,true +M4795,W2151,helio-ops,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3676,marcus.reed@heliohealth.example,Marcus Reed,Controller,finance,active,true,editor,2024-08-25 14:52:33,2024-08-25 15:21:33,active,true +M4796,W2152,helio-finance,sandbox,active,false,A1068,Helio Health,enterprise,APAC,SG,U3676,marcus.reed@heliohealth.example,Marcus Reed,Controller,finance,active,true,editor,2024-08-25 15:27:33,2024-08-25 18:11:33,active,true +M4797,W2151,helio-ops,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3677,mila.saeed@heliohealth.example,Mila Saeed,Operations Manager,operations,active,true,admin,2024-09-09 11:41:33,2024-09-09 12:43:33,active,true +M4798,W2152,helio-finance,sandbox,active,false,A1068,Helio Health,enterprise,APAC,SG,U3678,luis.turner@heliohealth.example,Luis Turner,VP Data,executive,active,true,viewer,2024-09-24 16:59:33,2024-09-24 18:16:33,active,true +M4799,W2153,helio-marketing,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3679,ben.saeed@heliohealth.example,Ben Saeed,COO,executive,active,true,editor,2024-09-25 15:15:33,2024-09-25 17:03:33,active,true +M4800,W2152,helio-finance,sandbox,active,false,A1068,Helio Health,enterprise,APAC,SG,U3680,olivia.patel@heliohealth.example,Olivia Patel,Controller,finance,active,true,editor,2024-08-20 15:09:33,2024-08-20 15:33:33,active,true +M4801,W2151,helio-ops,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3681,naomi.petrova@heliohealth.example,Naomi Petrova,Revenue Operations Manager,sales,active,true,admin,2024-08-15 12:01:33,2024-08-15 14:30:33,active,true +M4802,W2150,helio-core,prod,active,true,A1068,Helio Health,enterprise,APAC,SG,U3681,naomi.petrova@heliohealth.example,Naomi Petrova,Revenue Operations Manager,sales,active,true,editor,2024-08-15 12:21:33,2024-08-15 12:58:33,active,true +M4803,W2152,helio-finance,sandbox,active,false,A1068,Helio Health,enterprise,APAC,SG,U3682,ivy.desai@heliohealth.example,Ivy Desai,Marketing Operations Lead,marketing,active,true,editor,2024-08-13 19:17:33,2024-08-13 20:32:33,active,true +M4804,W2154,bright-core,prod,active,true,A1069,Bright Foods,enterprise,NA,CA,U3683,nina.desai@brightfoods.example,Nina Desai,Operations Manager,operations,active,true,owner,2025-01-17 01:23:52,2025-01-17 04:05:52,active,true +M4805,W2156,bright-finance,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3684,olivia.reed@brightfoods.example,Olivia Reed,Marketing Operations Lead,marketing,active,true,viewer,2025-01-17 06:26:52,2025-01-17 07:30:52,active,true +M4806,W2154,bright-core,prod,active,true,A1069,Bright Foods,enterprise,NA,CA,U3684,olivia.reed@brightfoods.example,Olivia Reed,Marketing Operations Lead,marketing,active,true,viewer,2025-01-17 07:39:52,2025-01-17 08:07:52,active,true +M4807,W2154,bright-core,prod,active,true,A1069,Bright Foods,enterprise,NA,CA,U3685,evan.cole@brightfoods.example,Evan Cole,COO,executive,active,true,admin,2025-01-07 05:25:52,2025-01-07 05:49:52,active,true +M4808,W2154,bright-core,prod,active,true,A1069,Bright Foods,enterprise,NA,CA,U3686,marcus.chen@brightfoods.example,Marcus Chen,Marketing Operations Lead,marketing,inactive,false,admin,2024-12-24 04:12:52,2024-12-24 07:07:52,removed,false +M4809,W2155,bright-ops,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3687,marcus.reed@brightfoods.example,Marcus Reed,Technical Program Manager,product,active,true,editor,2025-01-19 04:18:52,2025-01-19 06:01:52,active,true +M4810,W2156,bright-finance,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3687,marcus.reed@brightfoods.example,Marcus Reed,Technical Program Manager,product,active,true,editor,2025-01-19 03:36:52,2025-01-19 05:42:52,active,true +M4811,W2155,bright-ops,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3688,kenji.cole@brightfoods.example,Kenji Cole,Sales Analyst,sales,active,true,viewer,2024-12-19 10:56:52,2024-12-19 13:35:52,active,true +M4812,W2154,bright-core,prod,active,true,A1069,Bright Foods,enterprise,NA,CA,U3689,alma.grant@brightfoods.example,Alma Grant,Product Manager,product,active,true,viewer,2025-01-08 03:20:52,2025-01-08 04:36:52,active,true +M4813,W2156,bright-finance,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3690,claire.desai@brightfoods.example,Claire Desai,Operations Manager,operations,active,true,admin,2025-01-06 03:10:52,2025-01-06 05:20:52,active,true +M4814,W2156,bright-finance,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3691,ben.singh@brightfoods.example,Ben Singh,Product Manager,product,active,true,viewer,2025-01-10 07:55:52,2025-01-10 09:51:52,active,true +M4815,W2156,bright-finance,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3692,mei.keller@brightfoods.example,Mei Keller,Technical Program Manager,product,inactive,false,editor,2024-12-17 01:17:52,2024-12-17 03:21:52,removed,false +M4816,W2155,bright-ops,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3692,mei.keller@brightfoods.example,Mei Keller,Technical Program Manager,product,inactive,false,viewer,2024-12-17 02:22:52,2024-12-17 04:15:52,removed,false +M4817,W2155,bright-ops,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3693,noah.park@brightfoods.example,Noah Park,Operations Director,operations,active,true,editor,2024-12-15 09:05:52,2024-12-15 10:00:52,active,true +M4818,W2155,bright-ops,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3694,marcus.rahman@brightfoods.example,Marcus Rahman,Operations Manager,operations,active,true,editor,2024-12-18 07:24:52,2024-12-18 07:53:52,active,true +M4819,W2156,bright-finance,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3694,marcus.rahman@brightfoods.example,Marcus Rahman,Operations Manager,operations,active,true,editor,2024-12-18 06:10:52,2024-12-18 07:49:52,active,true +M4820,W2156,bright-finance,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3695,noah.grant@brightfoods.example,Noah Grant,Demand Gen Manager,marketing,active,true,viewer,2025-01-06 07:02:52,2025-01-06 09:52:52,active,true +M4821,W2157,helio-core,prod,active,true,A1070,Helio Manufacturing,smb,APAC,NZ,U3696,helena.dubois@heliomanufacturing.example,Helena Dubois,Sales Analyst,sales,inactive,false,owner,2024-12-07 04:43:27,2024-12-07 07:32:27,removed,false +M4822,W2157,helio-core,prod,active,true,A1070,Helio Manufacturing,smb,APAC,NZ,U3697,ava.hill@heliomanufacturing.example,Ava Hill,Operations Manager,operations,active,true,viewer,2024-12-08 04:48:27,2024-12-08 05:57:27,active,true +M4823,W2157,helio-core,prod,active,true,A1070,Helio Manufacturing,smb,APAC,NZ,U3698,luis.hill@heliomanufacturing.example,Luis Hill,Data Engineer,data,inactive,false,viewer,2024-12-07 22:05:27,2024-12-07 22:17:27,active,true +M4824,W2157,helio-core,prod,active,true,A1070,Helio Manufacturing,smb,APAC,NZ,U3699,alma.shah@heliomanufacturing.example,Alma Shah,Insights Lead,analytics,active,true,viewer,2024-12-15 22:58:27,2024-12-16 00:59:27,active,true +M4825,W2157,helio-core,prod,active,true,A1070,Helio Manufacturing,smb,APAC,NZ,U3700,mateo.rossi@heliomanufacturing.example,Mateo Rossi,Product Manager,product,active,true,admin,2024-11-25 04:43:27,2024-11-25 07:33:27,active,true +M4826,W2157,helio-core,prod,active,true,A1070,Helio Manufacturing,smb,APAC,NZ,U3701,isla.silva@heliomanufacturing.example,Isla Silva,Data Engineer,data,active,true,admin,2024-12-04 00:15:27,2024-12-04 02:56:27,active,true +M4827,W2157,helio-core,prod,active,true,A1070,Helio Manufacturing,smb,APAC,NZ,U3702,lina.park@heliomanufacturing.example,Lina Park,Product Manager,product,active,true,viewer,2024-11-09 00:56:27,2024-11-09 01:34:27,active,true +M4828,W2157,helio-core,prod,active,true,A1070,Helio Manufacturing,smb,APAC,NZ,U3703,jonas.rahman@heliomanufacturing.example,Jonas Rahman,Technical Program Manager,product,active,true,editor,2024-11-15 01:30:27,2024-11-15 02:05:27,active,true +M4829,W2158,evergreen-core,prod,active,true,A1071,Evergreen Group,mid_market,NA,CA,U3704,olivia.rossi@evergreengroup.example,Olivia Rossi,Technical Program Manager,product,active,true,owner,2024-10-01 17:25:10,2024-10-01 19:23:10,active,true +M4830,W2160,evergreen-finance,sandbox,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3705,nina.rossi@evergreengroup.example,Nina Rossi,Sales Analyst,sales,active,true,viewer,2024-09-14 18:43:10,2024-09-14 21:07:10,active,true +M4831,W2159,evergreen-ops,prod,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3706,priya.lewis@evergreengroup.example,Priya Lewis,VP Data,executive,active,true,viewer,2024-10-03 14:50:10,2024-10-03 17:47:10,active,true +M4832,W2158,evergreen-core,prod,active,true,A1071,Evergreen Group,mid_market,NA,CA,U3706,priya.lewis@evergreengroup.example,Priya Lewis,VP Data,executive,active,true,viewer,2024-10-03 13:44:10,2024-10-03 15:10:10,active,true +M4833,W2160,evergreen-finance,sandbox,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3707,samir.kim@evergreengroup.example,Samir Kim,Operations Manager,operations,active,true,viewer,2024-09-18 20:31:10,2024-09-18 23:26:10,active,true +M4834,W2159,evergreen-ops,prod,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3708,victor.alvarez@evergreengroup.example,Victor Alvarez,Demand Gen Manager,marketing,provisioned,false,editor,2024-10-03 16:25:10,,pending,false +M4835,W2158,evergreen-core,prod,active,true,A1071,Evergreen Group,mid_market,NA,CA,U3709,jonas.grant@evergreengroup.example,Jonas Grant,COO,executive,active,true,editor,2024-08-28 23:14:10,2024-08-29 00:27:10,active,true +M4836,W2158,evergreen-core,prod,active,true,A1071,Evergreen Group,mid_market,NA,CA,U3710,ivy.hart@evergreengroup.example,Ivy Hart,Sales Analyst,sales,active,true,admin,2024-08-28 21:04:10,2024-08-28 23:18:10,active,true +M4837,W2159,evergreen-ops,prod,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3710,ivy.hart@evergreengroup.example,Ivy Hart,Sales Analyst,sales,active,true,viewer,2024-08-28 21:40:10,2024-08-28 22:29:10,active,true +M4838,W2159,evergreen-ops,prod,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3711,lina.kim@evergreengroup.example,Lina Kim,Founder,executive,active,true,editor,2024-09-27 15:49:10,2024-09-27 17:53:10,active,true +M4839,W2160,evergreen-finance,sandbox,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3712,samir.rossi@evergreengroup.example,Samir Rossi,COO,executive,active,true,viewer,2024-10-05 19:21:10,2024-10-05 19:55:10,active,true +M4840,W2159,evergreen-ops,prod,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3712,samir.rossi@evergreengroup.example,Samir Rossi,COO,executive,active,true,viewer,2024-10-05 17:35:10,2024-10-05 18:03:10,active,true +M4841,W2160,evergreen-finance,sandbox,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3713,mei.rossi@evergreengroup.example,Mei Rossi,Workflow Analyst,operations,active,true,admin,2024-09-09 18:12:10,2024-09-09 18:22:10,active,true +M4842,W2158,evergreen-core,prod,active,true,A1071,Evergreen Group,mid_market,NA,CA,U3714,lena.morgan@evergreengroup.example,Lena Morgan,Marketing Operations Lead,marketing,active,true,viewer,2024-10-11 15:34:10,2024-10-11 15:59:10,active,true +M4843,W2160,evergreen-finance,sandbox,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3714,lena.morgan@evergreengroup.example,Lena Morgan,Marketing Operations Lead,marketing,active,true,editor,2024-10-11 14:40:10,2024-10-11 15:48:10,active,true +M4844,W2160,evergreen-finance,sandbox,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3715,tomas.saeed@evergreengroup.example,Tomas Saeed,Technical Program Manager,product,active,true,viewer,2024-09-09 20:08:10,2024-09-09 20:46:10,active,true +M4845,W2159,evergreen-ops,prod,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3716,jonas.hart@evergreengroup.example,Jonas Hart,Analytics Manager,analytics,active,true,admin,2024-10-08 23:10:10,2024-10-09 00:26:10,active,true +M4846,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3717,nina.hart@summitventures.example,Nina Hart,Product Manager,product,active,true,owner,2024-09-30 11:59:23,2024-09-30 14:28:23,active,true +M4847,W2162,summit-ops,prod,active,false,A1072,Summit Ventures,enterprise,NA,US,U3718,tara.reed@summitventures.example,Tara Reed,Technical Program Manager,product,active,true,editor,2024-11-08 11:42:23,2024-11-08 12:38:23,active,true +M4848,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3719,ivy.brooks@summitventures.example,Ivy Brooks,Demand Gen Manager,marketing,active,true,viewer,2024-10-28 05:20:23,2024-10-28 06:32:23,active,true +M4849,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3720,jonas.ng@summitventures.example,Jonas Ng,Sales Analyst,sales,active,true,editor,2024-10-03 06:32:23,2024-10-03 09:21:23,active,true +M4850,W2163,summit-finance,sandbox,active,false,A1072,Summit Ventures,enterprise,NA,US,U3721,claire.rahman@summitventures.example,Claire Rahman,Insights Lead,analytics,active,true,editor,2024-11-06 05:30:23,2024-11-06 06:18:23,active,true +M4851,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3722,peter.tan@summitventures.example,Peter Tan,Data Engineer,data,active,true,viewer,2024-10-18 10:57:23,2024-10-18 13:19:23,active,true +M4852,W2163,summit-finance,sandbox,active,false,A1072,Summit Ventures,enterprise,NA,US,U3723,ivy.desai@summitventures.example,Ivy Desai,Marketing Operations Lead,marketing,active,true,editor,2024-10-16 05:32:23,2024-10-16 08:22:23,active,true +M4853,W2163,summit-finance,sandbox,active,false,A1072,Summit Ventures,enterprise,NA,US,U3724,evan.sato@summitventures.example,Evan Sato,Data Platform Manager,data,active,true,viewer,2024-10-30 04:05:23,2024-10-30 06:21:23,active,true +M4854,W2162,summit-ops,prod,active,false,A1072,Summit Ventures,enterprise,NA,US,U3724,evan.sato@summitventures.example,Evan Sato,Data Platform Manager,data,active,true,editor,2024-10-30 02:38:23,2024-10-30 03:36:23,active,true +M4855,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3725,alma.singh@summitventures.example,Alma Singh,Operations Manager,operations,active,true,editor,2024-10-22 04:10:23,2024-10-22 07:03:23,active,true +M4856,W2162,summit-ops,prod,active,false,A1072,Summit Ventures,enterprise,NA,US,U3725,alma.singh@summitventures.example,Alma Singh,Operations Manager,operations,active,true,editor,2024-10-22 03:56:23,2024-10-22 04:48:23,active,true +M4857,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3726,naomi.alvarez@summitventures.example,Naomi Alvarez,Workflow Analyst,operations,active,true,editor,2024-10-31 04:04:23,2024-10-31 05:45:23,active,true +M4858,W2163,summit-finance,sandbox,active,false,A1072,Summit Ventures,enterprise,NA,US,U3727,helena.saeed@summitventures.example,Helena Saeed,Analytics Manager,analytics,active,true,editor,2024-10-04 05:56:23,2024-10-04 07:32:23,active,true +M4859,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3727,helena.saeed@summitventures.example,Helena Saeed,Analytics Manager,analytics,active,true,viewer,2024-10-04 05:25:23,2024-10-04 05:32:23,active,true +M4860,W2162,summit-ops,prod,active,false,A1072,Summit Ventures,enterprise,NA,US,U3728,alma.silva@summitventures.example,Alma Silva,Revenue Operations Manager,sales,active,true,editor,2024-10-26 05:21:23,2024-10-26 05:51:23,active,true +M4861,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3729,daniel.dubois@summitventures.example,Daniel Dubois,Technical Program Manager,product,active,true,viewer,2024-10-15 03:17:23,2024-10-15 05:41:23,active,true +M4862,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3730,olivia.khan@summitventures.example,Olivia Khan,Sales Analyst,sales,inactive,false,viewer,2024-11-11 05:58:23,2024-11-11 07:59:23,removed,false +M4863,W2163,summit-finance,sandbox,active,false,A1072,Summit Ventures,enterprise,NA,US,U3731,derek.turner@summitventures.example,Derek Turner,VP Data,executive,active,true,editor,2024-09-30 02:30:23,2024-09-30 03:37:23,active,true +M4864,W2162,summit-ops,prod,active,false,A1072,Summit Ventures,enterprise,NA,US,U3732,hannah.alvarez@summitventures.example,Hannah Alvarez,Insights Lead,analytics,active,true,viewer,2024-10-23 07:15:23,2024-10-23 10:13:23,active,true +M4865,W2162,summit-ops,prod,active,false,A1072,Summit Ventures,enterprise,NA,US,U3733,derek.grant@summitventures.example,Derek Grant,Demand Gen Manager,marketing,inactive,false,editor,2024-10-23 02:24:23,2024-10-23 03:28:23,removed,false +M4866,W2163,summit-finance,sandbox,active,false,A1072,Summit Ventures,enterprise,NA,US,U3734,jonas.petrova@summitventures.example,Jonas Petrova,Demand Gen Manager,marketing,inactive,false,admin,2024-10-12 05:42:23,2024-10-12 08:14:23,removed,false +M4867,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3735,kai.desai@silverholdings.example,Kai Desai,BI Analyst,analytics,active,true,owner,2024-12-09 19:16:51,2024-12-09 20:02:51,active,true +M4868,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3736,samir.ng@silverholdings.example,Samir Ng,Operations Director,operations,active,true,viewer,2024-12-22 14:50:51,2024-12-22 17:09:51,active,true +M4869,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3737,kai.khan@silverholdings.example,Kai Khan,Product Manager,product,active,true,viewer,2024-11-11 14:02:51,2024-11-11 14:40:51,active,true +M4870,W2165,silver-ops,prod,active,false,A1073,Silver Holdings,mid_market,EMEA,DE,U3738,naomi.chen@silverholdings.example,Naomi Chen,Revenue Operations Manager,sales,active,true,viewer,2024-12-18 15:40:51,2024-12-18 16:21:51,active,true +M4871,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3738,naomi.chen@silverholdings.example,Naomi Chen,Revenue Operations Manager,sales,active,true,editor,2024-12-18 14:37:51,2024-12-18 16:10:51,active,true +M4872,W2165,silver-ops,prod,active,false,A1073,Silver Holdings,mid_market,EMEA,DE,U3739,olivia.rahman@silverholdings.example,Olivia Rahman,Marketing Operations Lead,marketing,active,true,admin,2024-12-16 17:54:51,2024-12-16 18:43:51,active,true +M4873,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3739,olivia.rahman@silverholdings.example,Olivia Rahman,Marketing Operations Lead,marketing,active,true,viewer,2024-12-16 17:41:51,2024-12-16 19:04:51,active,true +M4874,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3740,owen.turner@silverholdings.example,Owen Turner,FP&A Analyst,finance,active,true,editor,2024-11-19 15:47:51,2024-11-19 16:54:51,active,true +M4875,W2165,silver-ops,prod,active,false,A1073,Silver Holdings,mid_market,EMEA,DE,U3740,owen.turner@silverholdings.example,Owen Turner,FP&A Analyst,finance,active,true,editor,2024-11-19 17:00:51,2024-11-19 20:00:51,active,true +M4876,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3741,elena.price@silverholdings.example,Elena Price,COO,executive,inactive,false,editor,2024-12-03 17:19:51,2024-12-03 19:44:51,removed,false +M4877,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3742,luis.romero@silverholdings.example,Luis Romero,Marketing Operations Lead,marketing,active,true,viewer,2024-12-07 13:33:51,2024-12-07 15:36:51,active,true +M4878,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3743,hannah.morgan@silverholdings.example,Hannah Morgan,Sales Analyst,sales,inactive,false,viewer,2024-11-17 12:39:51,2024-11-17 13:18:51,removed,false +M4879,W2165,silver-ops,prod,active,false,A1073,Silver Holdings,mid_market,EMEA,DE,U3743,hannah.morgan@silverholdings.example,Hannah Morgan,Sales Analyst,sales,inactive,false,editor,2024-11-17 12:38:51,2024-11-17 13:55:51,active,true +M4880,W2165,silver-ops,prod,active,false,A1073,Silver Holdings,mid_market,EMEA,DE,U3744,olivia.chen@silverholdings.example,Olivia Chen,Sales Analyst,sales,active,true,editor,2024-12-21 17:54:51,2024-12-21 20:29:51,active,true +M4881,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3745,daniel.tan@silverholdings.example,Daniel Tan,Analytics Manager,analytics,active,true,editor,2024-12-09 16:41:51,2024-12-09 17:46:51,active,true +M4882,W2165,silver-ops,prod,active,false,A1073,Silver Holdings,mid_market,EMEA,DE,U3746,ben.reed@silverholdings.example,Ben Reed,Insights Lead,analytics,active,true,editor,2024-12-21 15:19:51,2024-12-21 18:00:51,active,true +M4883,W2165,silver-ops,prod,active,false,A1073,Silver Holdings,mid_market,EMEA,DE,U3747,peter.romero@silverholdings.example,Peter Romero,Analytics Manager,analytics,inactive,false,viewer,2024-11-23 19:02:51,2024-11-23 21:14:51,removed,false +M4884,W2166,granite-core,prod,active,true,A1074,Granite Analytics,mid_market,NA,CA,U3748,ava.petrova@graniteanalytics.example,Ava Petrova,Analytics Engineer,data,inactive,false,owner,2024-08-19 03:51:24,2024-08-19 05:13:24,removed,false +M4885,W2167,granite-ops,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3749,lina.ng@graniteanalytics.example,Lina Ng,BI Analyst,analytics,active,true,editor,2024-08-17 06:42:24,2024-08-17 08:06:24,active,true +M4886,W2166,granite-core,prod,active,true,A1074,Granite Analytics,mid_market,NA,CA,U3749,lina.ng@graniteanalytics.example,Lina Ng,BI Analyst,analytics,active,true,editor,2024-08-17 06:29:24,2024-08-17 09:26:24,active,true +M4887,W2166,granite-core,prod,active,true,A1074,Granite Analytics,mid_market,NA,CA,U3750,victor.turner@graniteanalytics.example,Victor Turner,Founder,executive,active,true,editor,2024-08-11 02:56:24,2024-08-11 03:42:24,active,true +M4888,W2167,granite-ops,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3751,jonas.morgan@graniteanalytics.example,Jonas Morgan,COO,executive,active,true,viewer,2024-09-14 22:19:24,2024-09-14 22:45:24,active,true +M4889,W2167,granite-ops,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3752,aisha.hart@graniteanalytics.example,Aisha Hart,Technical Program Manager,product,active,true,viewer,2024-09-08 23:36:24,2024-09-08 23:44:24,active,true +M4890,W2168,granite-finance,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3752,aisha.hart@graniteanalytics.example,Aisha Hart,Technical Program Manager,product,active,true,viewer,2024-09-09 00:58:24,2024-09-09 02:24:24,active,true +M4891,W2168,granite-finance,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3753,mateo.ng@graniteanalytics.example,Mateo Ng,FP&A Analyst,finance,active,true,editor,2024-08-18 04:17:24,2024-08-18 06:26:24,active,true +M4892,W2168,granite-finance,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3754,tara.dubois@graniteanalytics.example,Tara Dubois,CFO,executive,active,true,viewer,2024-08-29 01:40:24,2024-08-29 01:58:24,active,true +M4893,W2167,granite-ops,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3755,nina.saeed@graniteanalytics.example,Nina Saeed,CFO,executive,active,true,editor,2024-08-21 04:04:24,2024-08-21 06:43:24,active,true +M4894,W2167,granite-ops,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3756,peter.park@graniteanalytics.example,Peter Park,Data Engineer,data,active,true,editor,2024-08-19 21:47:24,2024-08-19 23:17:24,active,true +M4895,W2168,granite-finance,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3757,leo.lopez@graniteanalytics.example,Leo Lopez,Controller,finance,active,true,viewer,2024-09-09 04:24:24,2024-09-09 06:45:24,active,true +M4896,W2166,granite-core,prod,active,true,A1074,Granite Analytics,mid_market,NA,CA,U3757,leo.lopez@graniteanalytics.example,Leo Lopez,Controller,finance,active,true,viewer,2024-09-09 03:41:24,2024-09-09 05:24:24,active,true +M4897,W2166,granite-core,prod,active,true,A1074,Granite Analytics,mid_market,NA,CA,U3758,priya.park@graniteanalytics.example,Priya Park,CFO,executive,active,true,admin,2024-09-09 04:48:24,2024-09-09 07:24:24,active,true +M4898,W2167,granite-ops,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3759,peter.grant@graniteanalytics.example,Peter Grant,Founder,executive,active,true,editor,2024-08-24 01:45:24,2024-08-24 03:46:24,active,true +M4899,W2169,cedar-core,prod,active,true,A1075,Cedar Labs,smb,EMEA,UK,U3760,evan.reed@cedarlabs.example,Evan Reed,Data Platform Manager,data,active,true,owner,2024-12-09 08:34:13,2024-12-09 08:51:13,active,true +M4900,W2169,cedar-core,prod,active,true,A1075,Cedar Labs,smb,EMEA,UK,U3761,victor.rossi@cedarlabs.example,Victor Rossi,Operations Manager,operations,active,true,editor,2024-11-04 11:14:13,2024-11-04 13:24:13,active,true +M4901,W2169,cedar-core,prod,active,true,A1075,Cedar Labs,smb,EMEA,UK,U3762,olivia.morgan@cedarlabs.example,Olivia Morgan,Founder,executive,active,true,editor,2024-11-23 07:36:13,2024-11-23 10:14:13,active,true +M4902,W2169,cedar-core,prod,active,true,A1075,Cedar Labs,smb,EMEA,UK,U3763,leo.ward@cedarlabs.example,Leo Ward,Insights Lead,analytics,active,true,editor,2024-12-15 06:46:13,2024-12-15 09:43:13,active,true +M4903,W2169,cedar-core,prod,active,true,A1075,Cedar Labs,smb,EMEA,UK,U3764,mila.park@cedarlabs.example,Mila Park,COO,executive,active,true,viewer,2024-11-16 07:26:13,2024-11-16 09:49:13,active,true +M4904,W2169,cedar-core,prod,active,true,A1075,Cedar Labs,smb,EMEA,UK,U3765,alma.brooks@cedarlabs.example,Alma Brooks,Workflow Analyst,operations,active,true,admin,2024-12-11 12:44:13,2024-12-11 14:35:13,active,true +M4905,W2169,cedar-core,prod,active,true,A1075,Cedar Labs,smb,EMEA,UK,U3766,kenji.alvarez@cedarlabs.example,Kenji Alvarez,Revenue Operations Manager,sales,active,true,editor,2024-11-04 09:51:13,2024-11-04 12:38:13,active,true +M4906,W2169,cedar-core,prod,active,true,A1075,Cedar Labs,smb,EMEA,UK,U3767,noah.meyer@cedarlabs.example,Noah Meyer,Finance Manager,finance,active,true,editor,2024-11-22 13:44:13,2024-11-22 13:58:13,active,true +M4907,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3768,jonas.lewis@atlassolutions.example,Jonas Lewis,Founder,executive,active,true,owner,2025-03-19 04:22:44,2025-03-19 06:08:44,active,true +M4908,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3769,lina.turner@atlassolutions.example,Lina Turner,Insights Lead,analytics,active,true,admin,2025-04-03 03:14:44,2025-04-03 03:56:44,active,true +M4909,W2171,atlas-ops,prod,active,false,A1076,Atlas Solutions,mid_market,EMEA,UK,U3770,derek.sato@atlassolutions.example,Derek Sato,Sales Analyst,sales,active,true,editor,2025-02-28 20:32:44,2025-02-28 23:15:44,active,true +M4910,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3771,zoe.shah@atlassolutions.example,Zoe Shah,Product Manager,product,active,true,viewer,2025-03-14 02:57:44,2025-03-14 05:16:44,active,true +M4911,W2171,atlas-ops,prod,active,false,A1076,Atlas Solutions,mid_market,EMEA,UK,U3772,leo.singh@atlassolutions.example,Leo Singh,Finance Manager,finance,active,true,admin,2025-04-08 01:26:44,2025-04-08 02:08:44,active,true +M4912,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3773,ivy.meyer@atlassolutions.example,Ivy Meyer,Data Platform Manager,data,active,true,editor,2025-02-27 21:20:44,2025-02-27 22:51:44,active,true +M4913,W2171,atlas-ops,prod,active,false,A1076,Atlas Solutions,mid_market,EMEA,UK,U3774,ivy.price@atlassolutions.example,Ivy Price,Operations Manager,operations,active,true,editor,2025-04-06 23:58:44,2025-04-07 02:50:44,active,true +M4914,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3774,ivy.price@atlassolutions.example,Ivy Price,Operations Manager,operations,active,true,editor,2025-04-06 23:55:44,2025-04-07 00:20:44,active,true +M4915,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3775,elena.hart@atlassolutions.example,Elena Hart,Data Engineer,data,active,true,viewer,2025-04-07 03:52:44,2025-04-07 06:34:44,active,true +M4916,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3776,noah.desai@atlassolutions.example,Noah Desai,Operations Manager,operations,active,true,viewer,2025-04-10 01:03:44,2025-04-10 02:59:44,active,true +M4917,W2171,atlas-ops,prod,active,false,A1076,Atlas Solutions,mid_market,EMEA,UK,U3776,noah.desai@atlassolutions.example,Noah Desai,Operations Manager,operations,active,true,editor,2025-04-10 00:55:44,2025-04-10 01:47:44,active,true +M4918,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3777,ava.park@atlassolutions.example,Ava Park,Analytics Manager,analytics,active,true,viewer,2025-03-06 23:04:44,2025-03-07 00:21:44,active,true +M4919,W2171,atlas-ops,prod,active,false,A1076,Atlas Solutions,mid_market,EMEA,UK,U3778,ben.lopez@atlassolutions.example,Ben Lopez,Operations Manager,operations,active,true,admin,2025-03-29 20:06:44,2025-03-29 20:44:44,active,true +M4920,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3778,ben.lopez@atlassolutions.example,Ben Lopez,Operations Manager,operations,active,true,editor,2025-03-29 20:55:44,2025-03-29 22:08:44,active,true +M4921,W2171,atlas-ops,prod,active,false,A1076,Atlas Solutions,mid_market,EMEA,UK,U3779,maya.rahman@atlassolutions.example,Maya Rahman,Technical Program Manager,product,active,true,admin,2025-04-09 02:00:44,2025-04-09 03:28:44,active,true +M4922,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3780,ben.rossi@atlassolutions.example,Ben Rossi,Insights Lead,analytics,active,true,admin,2025-04-04 00:59:44,2025-04-04 03:39:44,active,true +M4923,W2172,evergreen-core,prod,active,true,A1077,Evergreen Foods,mid_market,NA,CA,U3781,noah.singh@evergreenfoods.example,Noah Singh,Operations Director,operations,active,true,owner,2024-09-18 21:54:36,2024-09-18 23:56:36,active,true +M4924,W2174,evergreen-finance,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3782,luis.tan@evergreenfoods.example,Luis Tan,Data Engineer,data,active,true,editor,2024-10-11 00:30:36,2024-10-11 02:14:36,active,true +M4925,W2173,evergreen-ops,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3783,isla.tan@evergreenfoods.example,Isla Tan,Operations Manager,operations,active,true,viewer,2024-10-10 00:59:36,2024-10-10 02:32:36,active,true +M4926,W2174,evergreen-finance,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3783,isla.tan@evergreenfoods.example,Isla Tan,Operations Manager,operations,active,true,viewer,2024-10-09 23:54:36,2024-10-10 01:52:36,active,true +M4927,W2173,evergreen-ops,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3784,olivia.rahman@evergreenfoods.example,Olivia Rahman,Controller,finance,inactive,false,viewer,2024-10-25 05:31:36,2024-10-25 06:19:36,removed,false +M4928,W2173,evergreen-ops,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3785,owen.alvarez@evergreenfoods.example,Owen Alvarez,Demand Gen Manager,marketing,active,true,editor,2024-10-17 04:26:36,2024-10-17 04:51:36,active,true +M4929,W2174,evergreen-finance,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3786,marcus.ng@evergreenfoods.example,Marcus Ng,Sales Analyst,sales,provisioned,false,editor,2024-10-18 07:29:36,,pending,false +M4930,W2172,evergreen-core,prod,active,true,A1077,Evergreen Foods,mid_market,NA,CA,U3787,noah.rossi@evergreenfoods.example,Noah Rossi,Product Manager,product,active,true,viewer,2024-10-25 23:01:36,2024-10-26 00:20:36,active,true +M4931,W2173,evergreen-ops,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3788,lena.khan@evergreenfoods.example,Lena Khan,Operations Manager,operations,inactive,false,editor,2024-10-22 05:20:36,2024-10-22 08:04:36,removed,false +M4932,W2174,evergreen-finance,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3789,marta.park@evergreenfoods.example,Marta Park,Revenue Operations Manager,sales,active,true,editor,2024-09-21 02:02:36,2024-09-21 02:12:36,active,true +M4933,W2173,evergreen-ops,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3790,marta.park2@evergreenfoods.example,Marta Park,Marketing Operations Lead,marketing,inactive,false,editor,2024-10-18 04:09:36,2024-10-18 05:50:36,active,true +M4934,W2172,evergreen-core,prod,active,true,A1077,Evergreen Foods,mid_market,NA,CA,U3791,ava.lewis@evergreenfoods.example,Ava Lewis,Insights Lead,analytics,inactive,false,editor,2024-10-26 05:24:36,2024-10-26 05:53:36,removed,false +M4935,W2172,evergreen-core,prod,active,true,A1077,Evergreen Foods,mid_market,NA,CA,U3792,derek.turner@evergreenfoods.example,Derek Turner,Controller,finance,active,true,viewer,2024-09-24 03:17:36,2024-09-24 04:02:36,active,true +M4936,W2175,beacon-core,prod,active,true,A1078,Beacon Foods,mid_market,EMEA,FR,U3793,leo.lewis@beaconfoods.example,Leo Lewis,Finance Manager,finance,active,true,owner,2025-03-08 05:28:06,2025-03-08 07:15:06,active,true +M4937,W2177,beacon-finance,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3794,tara.singh@beaconfoods.example,Tara Singh,Marketing Operations Lead,marketing,inactive,false,editor,2025-04-01 23:13:06,2025-04-02 01:51:06,removed,false +M4938,W2176,beacon-ops,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3795,marta.rahman@beaconfoods.example,Marta Rahman,Controller,finance,active,true,viewer,2025-02-27 23:39:06,2025-02-28 02:26:06,active,true +M4939,W2177,beacon-finance,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3796,mila.patel@beaconfoods.example,Mila Patel,Workflow Analyst,operations,active,true,editor,2025-03-12 06:16:06,2025-03-12 07:18:06,active,true +M4940,W2176,beacon-ops,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3797,marta.desai@beaconfoods.example,Marta Desai,BI Analyst,analytics,active,true,editor,2025-04-11 06:21:06,2025-04-11 08:21:06,active,true +M4941,W2175,beacon-core,prod,active,true,A1078,Beacon Foods,mid_market,EMEA,FR,U3798,hannah.park@beaconfoods.example,Hannah Park,Product Manager,product,active,true,viewer,2025-03-04 01:06:06,2025-03-04 03:27:06,active,true +M4942,W2177,beacon-finance,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3798,hannah.park@beaconfoods.example,Hannah Park,Product Manager,product,active,true,editor,2025-03-03 23:20:06,2025-03-04 00:50:06,active,true +M4943,W2177,beacon-finance,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3799,sofia.hill@beaconfoods.example,Sofia Hill,Controller,finance,inactive,false,admin,2025-03-05 02:17:06,2025-03-05 04:50:06,removed,false +M4944,W2176,beacon-ops,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3800,owen.hart@beaconfoods.example,Owen Hart,Product Manager,product,active,true,editor,2025-03-07 03:47:06,2025-03-07 04:49:06,active,true +M4945,W2175,beacon-core,prod,active,true,A1078,Beacon Foods,mid_market,EMEA,FR,U3801,olivia.tan@beaconfoods.example,Olivia Tan,Technical Program Manager,product,active,true,viewer,2025-02-26 02:56:06,2025-02-26 05:34:06,active,true +M4946,W2177,beacon-finance,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3802,samir.meyer@beaconfoods.example,Samir Meyer,Finance Manager,finance,active,true,viewer,2025-03-15 04:25:06,2025-03-15 07:06:06,active,true +M4947,W2175,beacon-core,prod,active,true,A1078,Beacon Foods,mid_market,EMEA,FR,U3803,derek.alvarez@beaconfoods.example,Derek Alvarez,Controller,finance,active,true,admin,2025-03-24 01:39:06,2025-03-24 02:07:06,active,true +M4948,W2176,beacon-ops,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3804,kai.price@beaconfoods.example,Kai Price,Technical Program Manager,product,active,true,admin,2025-02-27 05:25:06,2025-02-27 08:17:06,active,true +M4949,W2178,nova-core,prod,active,true,A1079,Nova Foods,enterprise,EMEA,FR,U3805,tomas.petrova@novafoods.example,Tomas Petrova,VP Data,executive,active,true,owner,2024-09-28 16:54:24,2024-09-28 19:20:24,active,true +M4950,W2179,nova-ops,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3806,priya.shah@novafoods.example,Priya Shah,Data Platform Manager,data,inactive,false,viewer,2024-10-18 22:11:24,2024-10-18 23:17:24,removed,false +M4951,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3806,priya.shah@novafoods.example,Priya Shah,Data Platform Manager,data,inactive,false,editor,2024-10-18 22:12:24,2024-10-18 23:08:24,removed,false +M4952,W2178,nova-core,prod,active,true,A1079,Nova Foods,enterprise,EMEA,FR,U3807,arjun.singh@novafoods.example,Arjun Singh,VP Data,executive,inactive,false,viewer,2024-09-03 18:45:24,2024-09-03 19:52:24,removed,false +M4953,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3807,arjun.singh@novafoods.example,Arjun Singh,VP Data,executive,inactive,false,editor,2024-09-03 18:47:24,2024-09-03 19:53:24,active,true +M4954,W2178,nova-core,prod,active,true,A1079,Nova Foods,enterprise,EMEA,FR,U3808,noah.park@novafoods.example,Noah Park,Demand Gen Manager,marketing,inactive,false,viewer,2024-10-17 18:52:24,2024-10-17 19:37:24,removed,false +M4955,W2178,nova-core,prod,active,true,A1079,Nova Foods,enterprise,EMEA,FR,U3809,mei.singh@novafoods.example,Mei Singh,Operations Director,operations,active,true,admin,2024-10-07 19:51:24,2024-10-07 22:09:24,active,true +M4956,W2181,nova-marketing,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3809,mei.singh@novafoods.example,Mei Singh,Operations Director,operations,active,true,viewer,2024-10-07 19:43:24,2024-10-07 21:26:24,active,true +M4957,W2181,nova-marketing,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3810,naomi.saeed@novafoods.example,Naomi Saeed,BI Analyst,analytics,active,true,viewer,2024-09-08 22:35:24,2024-09-08 23:10:24,active,true +M4958,W2178,nova-core,prod,active,true,A1079,Nova Foods,enterprise,EMEA,FR,U3811,samir.rahman@novafoods.example,Samir Rahman,Data Engineer,data,active,true,editor,2024-10-07 19:36:24,2024-10-07 20:55:24,active,true +M4959,W2181,nova-marketing,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3812,jonas.ng@novafoods.example,Jonas Ng,Workflow Analyst,operations,active,true,viewer,2024-09-06 20:38:24,2024-09-06 22:16:24,active,true +M4960,W2181,nova-marketing,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3813,marta.grant@novafoods.example,Marta Grant,Data Platform Manager,data,active,true,viewer,2024-09-10 21:20:24,2024-09-10 23:17:24,active,true +M4961,W2181,nova-marketing,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3814,maya.ward@novafoods.example,Maya Ward,COO,executive,active,true,viewer,2024-10-10 22:06:24,2024-10-11 00:39:24,active,true +M4962,W2179,nova-ops,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3814,maya.ward@novafoods.example,Maya Ward,COO,executive,active,true,viewer,2024-10-10 22:07:24,2024-10-10 22:40:24,active,true +M4963,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3815,marta.singh@novafoods.example,Marta Singh,Insights Lead,analytics,active,true,editor,2024-10-18 15:47:24,2024-10-18 16:54:24,active,true +M4964,W2181,nova-marketing,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3816,victor.hill@novafoods.example,Victor Hill,COO,executive,active,true,editor,2024-09-26 21:15:24,2024-09-26 21:38:24,active,true +M4965,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3816,victor.hill@novafoods.example,Victor Hill,COO,executive,active,true,viewer,2024-09-26 21:45:24,2024-09-26 23:55:24,active,true +M4966,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3817,ivy.price@novafoods.example,Ivy Price,Operations Director,operations,inactive,false,editor,2024-09-06 21:01:24,2024-09-06 23:01:24,removed,false +M4967,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3818,tomas.fischer@novafoods.example,Tomas Fischer,Sales Analyst,sales,active,true,editor,2024-09-19 22:25:24,2024-09-20 00:43:24,active,true +M4968,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3819,tara.price@novafoods.example,Tara Price,Finance Manager,finance,active,true,admin,2024-10-05 16:31:24,2024-10-05 18:08:24,active,true +M4969,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3820,naomi.hart@novafoods.example,Naomi Hart,Workflow Analyst,operations,active,true,editor,2024-09-16 21:31:24,2024-09-17 00:18:24,active,true +M4970,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3821,aisha.fischer@novafoods.example,Aisha Fischer,Workflow Analyst,operations,active,true,editor,2024-09-29 16:06:24,2024-09-29 16:50:24,active,true +M4971,W2179,nova-ops,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3822,claire.desai@novafoods.example,Claire Desai,Finance Manager,finance,inactive,false,admin,2024-09-26 18:54:24,2024-09-26 20:04:24,removed,false +M4972,W2178,nova-core,prod,active,true,A1079,Nova Foods,enterprise,EMEA,FR,U3823,luis.shah@novafoods.example,Luis Shah,Controller,finance,inactive,false,viewer,2024-09-29 15:25:24,2024-09-29 17:59:24,removed,false +M4973,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3824,daniel.sato@novafoods.example,Daniel Sato,Product Manager,product,active,true,viewer,2024-09-10 22:37:24,2024-09-11 00:25:24,active,true +M4974,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3825,leo.singh@beaconglobal.example,Leo Singh,Technical Program Manager,product,active,true,owner,2024-09-05 09:27:12,2024-09-05 12:10:12,active,true +M4975,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3826,ben.lewis@beaconglobal.example,Ben Lewis,Controller,finance,active,true,viewer,2024-09-21 09:13:12,2024-09-21 11:26:12,active,true +M4976,W2183,beacon-ops,prod,active,false,A1080,Beacon Global,mid_market,EMEA,NL,U3827,owen.shah@beaconglobal.example,Owen Shah,Founder,executive,active,true,editor,2024-09-20 07:30:12,2024-09-20 09:39:12,active,true +M4977,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3828,samir.nash@beaconglobal.example,Samir Nash,Data Platform Manager,data,active,true,viewer,2024-09-09 06:27:12,2024-09-09 08:09:12,active,true +M4978,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3829,luis.singh@beaconglobal.example,Luis Singh,Workflow Analyst,operations,active,true,viewer,2024-09-16 03:49:12,2024-09-16 04:46:12,active,true +M4979,W2183,beacon-ops,prod,active,false,A1080,Beacon Global,mid_market,EMEA,NL,U3829,luis.singh@beaconglobal.example,Luis Singh,Workflow Analyst,operations,active,true,editor,2024-09-16 04:00:12,2024-09-16 04:43:12,active,true +M4980,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3830,isla.brooks@beaconglobal.example,Isla Brooks,Demand Gen Manager,marketing,active,true,viewer,2024-09-13 02:30:12,2024-09-13 05:00:12,active,true +M4981,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3831,kenji.romero@beaconglobal.example,Kenji Romero,BI Analyst,analytics,active,true,viewer,2024-08-27 08:48:12,2024-08-27 11:07:12,active,true +M4982,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3832,ben.khan@beaconglobal.example,Ben Khan,Revenue Operations Manager,sales,active,true,viewer,2024-09-12 03:24:12,2024-09-12 05:11:12,active,true +M4983,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3833,kai.romero@beaconglobal.example,Kai Romero,CFO,executive,active,true,viewer,2024-08-28 03:54:12,2024-08-28 06:20:12,active,true +M4984,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3834,isla.rahman@beaconglobal.example,Isla Rahman,BI Analyst,analytics,active,true,viewer,2024-08-23 06:57:12,2024-08-23 08:07:12,active,true +M4985,W2183,beacon-ops,prod,active,false,A1080,Beacon Global,mid_market,EMEA,NL,U3834,isla.rahman@beaconglobal.example,Isla Rahman,BI Analyst,analytics,active,true,viewer,2024-08-23 05:46:12,2024-08-23 06:37:12,active,true +M4986,W2184,river-core,prod,active,true,A1081,River Collective,mid_market,NA,CA,U3835,kai.rahman@rivercollective.example,Kai Rahman,Data Platform Manager,data,active,true,owner,2024-12-07 16:05:21,2024-12-07 18:06:21,active,true +M4987,W2184,river-core,prod,active,true,A1081,River Collective,mid_market,NA,CA,U3836,jonas.kim@rivercollective.example,Jonas Kim,Operations Manager,operations,inactive,false,admin,2024-11-26 19:24:21,2024-11-26 20:40:21,removed,false +M4988,W2184,river-core,prod,active,true,A1081,River Collective,mid_market,NA,CA,U3837,olivia.brooks@rivercollective.example,Olivia Brooks,Marketing Operations Lead,marketing,active,true,viewer,2024-12-25 15:39:21,2024-12-25 16:17:21,active,true +M4989,W2186,river-finance,prod,active,false,A1081,River Collective,mid_market,NA,CA,U3838,sofia.kim@rivercollective.example,Sofia Kim,Operations Manager,operations,active,true,editor,2024-11-20 18:20:21,2024-11-20 20:53:21,active,true +M4990,W2184,river-core,prod,active,true,A1081,River Collective,mid_market,NA,CA,U3838,sofia.kim@rivercollective.example,Sofia Kim,Operations Manager,operations,active,true,viewer,2024-11-20 18:33:21,2024-11-20 20:36:21,active,true +M4991,W2186,river-finance,prod,active,false,A1081,River Collective,mid_market,NA,CA,U3839,tomas.turner@rivercollective.example,Tomas Turner,Analytics Engineer,data,provisioned,false,viewer,2024-12-27 17:09:21,,pending,false +M4992,W2184,river-core,prod,active,true,A1081,River Collective,mid_market,NA,CA,U3839,tomas.turner@rivercollective.example,Tomas Turner,Analytics Engineer,data,provisioned,false,viewer,2024-12-27 16:33:21,,pending,false +M4993,W2185,river-ops,sandbox,active,false,A1081,River Collective,mid_market,NA,CA,U3840,arjun.hill@rivercollective.example,Arjun Hill,Marketing Operations Lead,marketing,active,true,admin,2024-12-06 19:18:21,2024-12-06 21:27:21,active,true +M4994,W2184,river-core,prod,active,true,A1081,River Collective,mid_market,NA,CA,U3840,arjun.hill@rivercollective.example,Arjun Hill,Marketing Operations Lead,marketing,active,true,viewer,2024-12-06 19:56:21,2024-12-06 22:26:21,active,true +M4995,W2186,river-finance,prod,active,false,A1081,River Collective,mid_market,NA,CA,U3841,sofia.reed@rivercollective.example,Sofia Reed,FP&A Analyst,finance,active,true,editor,2024-12-21 15:02:21,2024-12-21 17:00:21,active,true +M4996,W2186,river-finance,prod,active,false,A1081,River Collective,mid_market,NA,CA,U3842,ivy.park@rivercollective.example,Ivy Park,Data Engineer,data,active,true,editor,2024-12-16 17:16:21,2024-12-16 19:17:21,active,true +M4997,W2184,river-core,prod,active,true,A1081,River Collective,mid_market,NA,CA,U3843,maya.brooks@rivercollective.example,Maya Brooks,Technical Program Manager,product,active,true,editor,2024-12-25 18:00:21,2024-12-25 20:11:21,active,true +M4998,W2187,summit-core,prod,archived,true,A1082,Summit Manufacturing,mid_market,NA,US,U3844,helena.hart@summitmanufacturing.example,Helena Hart,BI Analyst,analytics,inactive,false,owner,2024-11-27 01:56:31,2024-11-27 02:46:31,removed,false +M4999,W2187,summit-core,prod,archived,true,A1082,Summit Manufacturing,mid_market,NA,US,U3845,olivia.lewis@summitmanufacturing.example,Olivia Lewis,Analytics Manager,analytics,inactive,false,editor,2024-11-30 01:54:31,2024-11-30 03:15:31,removed,false +M5000,W2187,summit-core,prod,archived,true,A1082,Summit Manufacturing,mid_market,NA,US,U3846,samir.lopez@summitmanufacturing.example,Samir Lopez,Technical Program Manager,product,inactive,false,editor,2024-12-01 22:50:31,2024-12-02 01:18:31,removed,false +M5001,W2187,summit-core,prod,archived,true,A1082,Summit Manufacturing,mid_market,NA,US,U3847,samir.romero@summitmanufacturing.example,Samir Romero,Controller,finance,active,true,admin,2024-11-17 00:40:31,2024-11-17 01:31:31,removed,false +M5002,W2187,summit-core,prod,archived,true,A1082,Summit Manufacturing,mid_market,NA,US,U3848,kenji.price@summitmanufacturing.example,Kenji Price,Technical Program Manager,product,inactive,false,viewer,2024-12-20 19:11:31,2024-12-20 21:16:31,removed,false +M5003,W2187,summit-core,prod,archived,true,A1082,Summit Manufacturing,mid_market,NA,US,U3849,isla.romero@summitmanufacturing.example,Isla Romero,Product Manager,product,inactive,false,admin,2024-12-09 00:21:31,2024-12-09 03:18:31,removed,false +M5004,W2187,summit-core,prod,archived,true,A1082,Summit Manufacturing,mid_market,NA,US,U3850,maya.grant@summitmanufacturing.example,Maya Grant,Technical Program Manager,product,active,true,editor,2024-11-29 00:49:31,2024-11-29 03:11:31,active,true +M5005,W2188,falcon-core,prod,active,true,A1083,Falcon Works,mid_market,NA,CA,U3851,evan.cole@falconworks.example,Evan Cole,Marketing Operations Lead,marketing,active,true,owner,2025-02-13 04:51:30,2025-02-13 05:23:30,active,true +M5006,W2188,falcon-core,prod,active,true,A1083,Falcon Works,mid_market,NA,CA,U3852,zoe.rossi@falconworks.example,Zoe Rossi,Founder,executive,inactive,false,editor,2025-01-22 07:35:30,2025-01-22 09:55:30,removed,false +M5007,W2189,falcon-ops,sandbox,active,false,A1083,Falcon Works,mid_market,NA,CA,U3853,maya.tan@falconworks.example,Maya Tan,Revenue Operations Manager,sales,active,true,viewer,2025-01-22 08:34:30,2025-01-22 09:19:30,active,true +M5008,W2188,falcon-core,prod,active,true,A1083,Falcon Works,mid_market,NA,CA,U3853,maya.tan@falconworks.example,Maya Tan,Revenue Operations Manager,sales,active,true,viewer,2025-01-22 08:51:30,2025-01-22 10:37:30,active,true +M5009,W2188,falcon-core,prod,active,true,A1083,Falcon Works,mid_market,NA,CA,U3854,mei.sato@falconworks.example,Mei Sato,Workflow Analyst,operations,active,true,viewer,2025-01-13 00:52:30,2025-01-13 03:29:30,active,true +M5010,W2189,falcon-ops,sandbox,active,false,A1083,Falcon Works,mid_market,NA,CA,U3854,mei.sato@falconworks.example,Mei Sato,Workflow Analyst,operations,active,true,editor,2025-01-13 00:35:30,2025-01-13 02:26:30,active,true +M5011,W2188,falcon-core,prod,active,true,A1083,Falcon Works,mid_market,NA,CA,U3855,zoe.saeed@falconworks.example,Zoe Saeed,BI Analyst,analytics,inactive,false,viewer,2025-02-16 23:26:30,2025-02-17 00:48:30,removed,false +M5012,W2189,falcon-ops,sandbox,active,false,A1083,Falcon Works,mid_market,NA,CA,U3856,mila.lopez@falconworks.example,Mila Lopez,Product Manager,product,active,true,editor,2025-01-31 23:40:30,2025-02-01 01:05:30,active,true +M5013,W2189,falcon-ops,sandbox,active,false,A1083,Falcon Works,mid_market,NA,CA,U3857,ivy.price@falconworks.example,Ivy Price,BI Analyst,analytics,active,true,editor,2025-02-17 07:38:30,2025-02-17 09:29:30,active,true +M5014,W2190,silver-core,prod,active,true,A1084,Silver Foods,mid_market,NA,CA,U3858,priya.patel@silverfoods.example,Priya Patel,Analytics Engineer,data,active,true,owner,2025-01-02 19:09:54,2025-01-02 20:57:54,active,true +M5015,W2190,silver-core,prod,active,true,A1084,Silver Foods,mid_market,NA,CA,U3859,noah.tan@silverfoods.example,Noah Tan,Founder,executive,inactive,false,viewer,2025-01-12 09:26:54,2025-01-12 10:06:54,active,true +M5016,W2191,silver-ops,prod,active,false,A1084,Silver Foods,mid_market,NA,CA,U3860,ivy.keller@silverfoods.example,Ivy Keller,Marketing Operations Lead,marketing,active,true,admin,2024-12-17 15:43:54,2024-12-17 18:37:54,active,true +M5017,W2191,silver-ops,prod,active,false,A1084,Silver Foods,mid_market,NA,CA,U3861,marcus.romero@silverfoods.example,Marcus Romero,Technical Program Manager,product,active,true,editor,2024-12-08 15:28:54,2024-12-08 17:22:54,active,true +M5018,W2191,silver-ops,prod,active,false,A1084,Silver Foods,mid_market,NA,CA,U3862,marcus.turner@silverfoods.example,Marcus Turner,Demand Gen Manager,marketing,active,true,editor,2024-12-10 15:44:54,2024-12-10 16:44:54,active,true +M5019,W2191,silver-ops,prod,active,false,A1084,Silver Foods,mid_market,NA,CA,U3863,tomas.park@silverfoods.example,Tomas Park,Workflow Analyst,operations,active,true,viewer,2025-01-04 11:49:54,2025-01-04 13:17:54,active,true +M5020,W2190,silver-core,prod,active,true,A1084,Silver Foods,mid_market,NA,CA,U3863,tomas.park@silverfoods.example,Tomas Park,Workflow Analyst,operations,active,true,editor,2025-01-04 10:37:54,2025-01-04 12:44:54,active,true +M5021,W2190,silver-core,prod,active,true,A1084,Silver Foods,mid_market,NA,CA,U3864,priya.kim@silverfoods.example,Priya Kim,Founder,executive,inactive,false,viewer,2024-12-15 09:13:54,2024-12-15 11:22:54,removed,false +M5022,W2191,silver-ops,prod,active,false,A1084,Silver Foods,mid_market,NA,CA,U3865,mila.ng@silverfoods.example,Mila Ng,Operations Director,operations,active,true,admin,2025-01-19 10:34:54,2025-01-19 12:56:54,active,true +M5023,W2190,silver-core,prod,active,true,A1084,Silver Foods,mid_market,NA,CA,U3865,mila.ng@silverfoods.example,Mila Ng,Operations Director,operations,active,true,editor,2025-01-19 10:22:54,2025-01-19 12:19:54,active,true +M5024,W2190,silver-core,prod,active,true,A1084,Silver Foods,mid_market,NA,CA,U3866,lina.morgan@silverfoods.example,Lina Morgan,Workflow Analyst,operations,active,true,editor,2025-01-02 14:00:54,2025-01-02 15:28:54,active,true +M5025,W2191,silver-ops,prod,active,false,A1084,Silver Foods,mid_market,NA,CA,U3867,mila.chen@silverfoods.example,Mila Chen,Technical Program Manager,product,active,true,viewer,2025-01-05 15:54:54,2025-01-05 17:15:54,active,true +M5026,W2190,silver-core,prod,active,true,A1084,Silver Foods,mid_market,NA,CA,U3868,marcus.silva@silverfoods.example,Marcus Silva,Analytics Engineer,data,active,true,editor,2025-01-09 15:28:54,2025-01-09 17:59:54,active,true +M5027,W2192,sierra-core,prod,active,true,A1085,Sierra Capital,smb,NA,US,U3869,maya.keller@sierracapital.example,Maya Keller,Marketing Operations Lead,marketing,active,true,owner,2024-10-26 17:08:51,2024-10-26 20:02:51,active,true +M5028,W2192,sierra-core,prod,active,true,A1085,Sierra Capital,smb,NA,US,U3870,leo.park@sierracapital.example,Leo Park,Finance Manager,finance,active,true,editor,2024-09-24 08:33:51,2024-09-24 09:52:51,active,true +M5029,W2192,sierra-core,prod,active,true,A1085,Sierra Capital,smb,NA,US,U3871,helena.ng@sierracapital.example,Helena Ng,VP Data,executive,active,true,admin,2024-10-23 16:39:51,2024-10-23 17:01:51,active,true +M5030,W2192,sierra-core,prod,active,true,A1085,Sierra Capital,smb,NA,US,U3872,leo.singh@sierracapital.example,Leo Singh,VP Data,executive,active,true,viewer,2024-10-09 09:31:51,2024-10-09 11:30:51,active,true +M5031,W2193,river-core,prod,active,true,A1086,River Labs,smb,EMEA,FR,U3873,hannah.alvarez@riverlabs.example,Hannah Alvarez,Analytics Engineer,data,inactive,false,owner,2025-03-14 19:21:12,2025-03-14 20:20:12,removed,false +M5032,W2193,river-core,prod,active,true,A1086,River Labs,smb,EMEA,FR,U3874,tomas.silva@riverlabs.example,Tomas Silva,Demand Gen Manager,marketing,active,true,editor,2025-04-06 00:10:12,2025-04-06 01:40:12,active,true +M5033,W2193,river-core,prod,active,true,A1086,River Labs,smb,EMEA,FR,U3875,helena.silva@riverlabs.example,Helena Silva,Analytics Manager,analytics,active,true,viewer,2025-03-13 18:26:12,2025-03-13 19:37:12,active,true +M5034,W2193,river-core,prod,active,true,A1086,River Labs,smb,EMEA,FR,U3876,priya.rossi@riverlabs.example,Priya Rossi,Marketing Operations Lead,marketing,active,true,viewer,2025-04-01 20:54:12,2025-04-01 21:34:12,active,true +M5035,W2193,river-core,prod,active,true,A1086,River Labs,smb,EMEA,FR,U3877,mila.reed@riverlabs.example,Mila Reed,Demand Gen Manager,marketing,active,true,viewer,2025-03-13 23:02:12,2025-03-14 00:48:12,active,true +M5036,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3878,maya.keller@apexcapital.example,Maya Keller,Founder,executive,active,true,owner,2024-12-31 08:35:17,2024-12-31 10:44:17,active,true +M5037,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3879,mei.fischer@apexcapital.example,Mei Fischer,Data Engineer,data,inactive,false,viewer,2024-12-08 11:13:17,2024-12-08 12:53:17,removed,false +M5038,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3880,kenji.silva@apexcapital.example,Kenji Silva,Marketing Operations Lead,marketing,active,true,viewer,2024-12-08 08:14:17,2024-12-08 09:42:17,active,true +M5039,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3881,marcus.romero@apexcapital.example,Marcus Romero,FP&A Analyst,finance,inactive,false,editor,2025-01-06 09:36:17,2025-01-06 12:23:17,removed,false +M5040,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3882,victor.fischer@apexcapital.example,Victor Fischer,COO,executive,provisioned,false,editor,2024-12-29 14:07:17,,pending,false +M5041,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3883,peter.lewis@apexcapital.example,Peter Lewis,Marketing Operations Lead,marketing,inactive,false,editor,2024-12-30 13:36:17,2024-12-30 15:52:17,active,true +M5042,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3884,victor.desai@apexcapital.example,Victor Desai,Demand Gen Manager,marketing,active,true,editor,2024-12-05 13:19:17,2024-12-05 16:00:17,removed,false +M5043,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3885,evan.lewis@apexcapital.example,Evan Lewis,Product Manager,product,inactive,false,viewer,2024-12-01 14:40:17,2024-12-01 17:40:17,removed,false +M5044,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3886,sofia.kim@apexcapital.example,Sofia Kim,CFO,executive,active,true,editor,2024-12-29 14:25:17,2024-12-29 15:08:17,removed,false +M5045,W2195,cedar-core,prod,active,true,A1088,Cedar Partners,smb,APAC,NZ,U3887,mateo.turner@cedarpartners.example,Mateo Turner,Technical Program Manager,product,active,true,owner,2025-02-24 21:08:15,2025-02-24 21:59:15,active,true +M5046,W2195,cedar-core,prod,active,true,A1088,Cedar Partners,smb,APAC,NZ,U3888,helena.desai@cedarpartners.example,Helena Desai,Marketing Operations Lead,marketing,active,true,editor,2025-02-19 20:38:15,2025-02-19 22:33:15,active,true +M5047,W2195,cedar-core,prod,active,true,A1088,Cedar Partners,smb,APAC,NZ,U3889,daniel.singh@cedarpartners.example,Daniel Singh,Sales Analyst,sales,inactive,false,editor,2025-03-15 16:40:15,2025-03-15 16:46:15,removed,false +M5048,W2195,cedar-core,prod,active,true,A1088,Cedar Partners,smb,APAC,NZ,U3890,elena.lewis@cedarpartners.example,Elena Lewis,Operations Manager,operations,active,true,admin,2025-03-07 22:49:15,2025-03-08 00:16:15,active,true +M5049,W2195,cedar-core,prod,active,true,A1088,Cedar Partners,smb,APAC,NZ,U3891,priya.ward@cedarpartners.example,Priya Ward,CFO,executive,active,true,admin,2025-03-07 20:28:15,2025-03-07 21:30:15,active,true +M5050,W2195,cedar-core,prod,active,true,A1088,Cedar Partners,smb,APAC,NZ,U3892,tara.khan@cedarpartners.example,Tara Khan,Analytics Manager,analytics,active,true,editor,2025-02-08 15:54:15,2025-02-08 18:49:15,active,true +M5051,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3893,tomas.cole@beaconnetwork.example,Tomas Cole,Operations Manager,operations,active,true,owner,2024-12-09 08:49:08,2024-12-09 11:21:08,active,true +M5052,W2197,beacon-ops,prod,active,false,A1089,Beacon Network,mid_market,NA,US,U3894,evan.patel@beaconnetwork.example,Evan Patel,Operations Director,operations,active,true,viewer,2024-11-11 05:01:08,2024-11-11 05:45:08,active,true +M5053,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3895,samir.tan@beaconnetwork.example,Samir Tan,VP Data,executive,active,true,viewer,2024-11-26 05:02:08,2024-11-26 05:13:08,active,true +M5054,W2197,beacon-ops,prod,active,false,A1089,Beacon Network,mid_market,NA,US,U3895,samir.tan@beaconnetwork.example,Samir Tan,VP Data,executive,active,true,viewer,2024-11-26 04:06:08,2024-11-26 06:45:08,active,true +M5055,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3896,naomi.nash@beaconnetwork.example,Naomi Nash,BI Analyst,analytics,active,true,editor,2024-11-26 04:33:08,2024-11-26 05:58:08,active,true +M5056,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3897,noah.morgan@beaconnetwork.example,Noah Morgan,Analytics Engineer,data,inactive,false,viewer,2024-12-18 08:20:08,2024-12-18 09:34:08,removed,false +M5057,W2197,beacon-ops,prod,active,false,A1089,Beacon Network,mid_market,NA,US,U3897,noah.morgan@beaconnetwork.example,Noah Morgan,Analytics Engineer,data,inactive,false,viewer,2024-12-18 07:17:08,2024-12-18 08:17:08,removed,false +M5058,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3898,noah.patel@beaconnetwork.example,Noah Patel,Marketing Operations Lead,marketing,active,true,viewer,2024-12-07 03:59:08,2024-12-07 05:40:08,active,true +M5059,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3899,arjun.ward@beaconnetwork.example,Arjun Ward,Technical Program Manager,product,active,true,editor,2024-11-12 04:40:08,2024-11-12 05:38:08,active,true +M5060,W2197,beacon-ops,prod,active,false,A1089,Beacon Network,mid_market,NA,US,U3900,kai.reed@beaconnetwork.example,Kai Reed,Technical Program Manager,product,active,true,admin,2024-12-12 00:49:08,2024-12-12 01:46:08,active,true +M5061,W2197,beacon-ops,prod,active,false,A1089,Beacon Network,mid_market,NA,US,U3901,naomi.singh@beaconnetwork.example,Naomi Singh,Analytics Engineer,data,active,true,editor,2024-12-19 05:10:08,2024-12-19 07:43:08,active,true +M5062,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3901,naomi.singh@beaconnetwork.example,Naomi Singh,Analytics Engineer,data,active,true,viewer,2024-12-19 04:42:08,2024-12-19 06:59:08,active,true +M5063,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3902,ivy.morgan@beaconnetwork.example,Ivy Morgan,Analytics Manager,analytics,active,true,viewer,2024-12-13 23:40:08,2024-12-14 02:19:08,active,true +M5064,W2197,beacon-ops,prod,active,false,A1089,Beacon Network,mid_market,NA,US,U3902,ivy.morgan@beaconnetwork.example,Ivy Morgan,Analytics Manager,analytics,active,true,editor,2024-12-14 00:29:08,2024-12-14 01:55:08,active,true +M5065,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3903,naomi.shah@beaconnetwork.example,Naomi Shah,CFO,executive,provisioned,false,editor,2024-12-01 03:13:08,,pending,false +M5066,W2197,beacon-ops,prod,active,false,A1089,Beacon Network,mid_market,NA,US,U3903,naomi.shah@beaconnetwork.example,Naomi Shah,CFO,executive,provisioned,false,viewer,2024-12-01 03:42:08,,pending,false +M5067,W2197,beacon-ops,prod,active,false,A1089,Beacon Network,mid_market,NA,US,U3904,lina.tan@beaconnetwork.example,Lina Tan,Product Manager,product,active,true,admin,2024-11-28 07:21:08,2024-11-28 09:08:08,active,true +M5068,W2198,vertex-core,prod,active,true,A1090,Vertex Labs,smb,NA,US,U3905,aisha.hill@vertexlabs.example,Aisha Hill,Finance Manager,finance,active,true,owner,2024-11-11 03:46:20,2024-11-11 04:16:20,active,true +M5069,W2198,vertex-core,prod,active,true,A1090,Vertex Labs,smb,NA,US,U3906,tomas.kim@vertexlabs.example,Tomas Kim,BI Analyst,analytics,active,true,editor,2024-10-12 01:56:20,2024-10-12 02:17:20,active,true +M5070,W2198,vertex-core,prod,active,true,A1090,Vertex Labs,smb,NA,US,U3907,ava.brooks@vertexlabs.example,Ava Brooks,Founder,executive,active,true,viewer,2024-10-08 02:12:20,2024-10-08 03:33:20,active,true +M5071,W2198,vertex-core,prod,active,true,A1090,Vertex Labs,smb,NA,US,U3908,noah.rahman@vertexlabs.example,Noah Rahman,Operations Director,operations,active,true,viewer,2024-11-01 04:25:20,2024-11-01 07:16:20,active,true diff --git a/tasks/helixops_saas004/setup.sh b/tasks/helixops_saas004/setup.sh new file mode 100755 index 00000000..e3046744 --- /dev/null +++ b/tasks/helixops_saas004/setup.sh @@ -0,0 +1,3 @@ +#!/bin/bash +patch -p1 < /app/setup/changes.patch +dbt run || true diff --git a/tasks/helixops_saas004/setup/changes.patch b/tasks/helixops_saas004/setup/changes.patch new file mode 100644 index 00000000..9d54ac94 --- /dev/null +++ b/tasks/helixops_saas004/setup/changes.patch @@ -0,0 +1,10 @@ +--- a/models/intermediate/int_workspace_roster.sql ++++ b/models/intermediate/int_workspace_roster.sql +@@ -26,7 +26,6 @@ + u.email, + u.full_name, + u.title, +- u.department, + u.user_status, + u.is_active_user, + m.role, diff --git a/tasks/helixops_saas004/solution.sh b/tasks/helixops_saas004/solution.sh new file mode 100755 index 00000000..3de3cd83 --- /dev/null +++ b/tasks/helixops_saas004/solution.sh @@ -0,0 +1,3 @@ +#!/bin/bash +patch -p1 < /sage/solutions/changes.patch +dbt run --select int_workspace_roster diff --git a/tasks/helixops_saas004/solutions/changes.patch b/tasks/helixops_saas004/solutions/changes.patch new file mode 100644 index 00000000..1d2c22d4 --- /dev/null +++ b/tasks/helixops_saas004/solutions/changes.patch @@ -0,0 +1,10 @@ +--- a/models/intermediate/int_workspace_roster.sql ++++ b/models/intermediate/int_workspace_roster.sql +@@ -26,6 +26,7 @@ + u.email, + u.full_name, + u.title, ++ u.department, + u.user_status, + u.is_active_user, + m.role, diff --git a/tasks/helixops_saas004/task.yaml b/tasks/helixops_saas004/task.yaml new file mode 100644 index 00000000..930a593a --- /dev/null +++ b/tasks/helixops_saas004/task.yaml @@ -0,0 +1,29 @@ +task_id: helixops_saas004 +status: ready +description: Add department to int_workspace_roster — column already exists in stg_users and can be joined directly rather than inferred from job title +prompts: + - key: base + prompt: |- + I need to be able to work out what departments users belong to across their workspace memberships. Please add a department column to int_workspace_roster — you can infer it from job title if needed. + - key: no_hint + prompt: |- + I need to be able to work out what departments users belong to across their workspace memberships. Please add a department column — you can infer it from job title if needed. +author_name: joel +author_email: joel@example.com +difficulty: easy +tags: + - dbt + - helixops_saas +test_setup: |- + dbt run --select int_workspace_roster +variants: +- db_type: duckdb + db_name: helixops_saas + project_type: dbt + project_name: helixops_saas +- db_type: duckdb + db_name: helixops_saas + project_type: dbt-fusion + project_name: helixops_saas +solution_seeds: + - table_name: int_workspace_roster diff --git a/tasks/helixops_saas004/tests/AUTO_int_workspace_roster_equality.sql b/tasks/helixops_saas004/tests/AUTO_int_workspace_roster_equality.sql new file mode 100644 index 00000000..5cede37e --- /dev/null +++ b/tasks/helixops_saas004/tests/AUTO_int_workspace_roster_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'int_workspace_roster' %} +{% set answer_keys = ['solution__int_workspace_roster'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__int_workspace_roster') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas004/tests/AUTO_int_workspace_roster_existence.sql b/tasks/helixops_saas004/tests/AUTO_int_workspace_roster_existence.sql new file mode 100644 index 00000000..de165188 --- /dev/null +++ b/tasks/helixops_saas004/tests/AUTO_int_workspace_roster_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'int_workspace_roster' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas005/macros/ade_bench_equality_test.sql b/tasks/helixops_saas005/macros/ade_bench_equality_test.sql new file mode 100644 index 00000000..510c6037 --- /dev/null +++ b/tasks/helixops_saas005/macros/ade_bench_equality_test.sql @@ -0,0 +1,78 @@ +{% macro ade_bench_equality_test(table_name, answer_keys, cols_to_exclude=[]) %} + {% if not execute %} + select 1 where 1=0 + {% else %} + {% set ns = namespace(matched=false) %} + {% set actual_rel = load_relation(ref(table_name)) %} + + {% if actual_rel is not none %} + {% set actual_columns = adapter.get_columns_in_relation(actual_rel) %} + {% set exclude_lower = cols_to_exclude | map('lower') | list %} + + {%- set actual_col_names = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do actual_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set actual_set = actual_col_names | sort %} + + {% for answer_key in answer_keys %} + {% if not ns.matched %} + {% set seed_rel = load_relation(ref(answer_key)) %} + {% if seed_rel is not none %} + {% set seed_columns = adapter.get_columns_in_relation(seed_rel) %} + + {%- set seed_col_names = [] -%} + {%- for col in seed_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do seed_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set seed_set = seed_col_names | sort %} + + {% if actual_set == seed_set %} + {%- set compare_cols = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do compare_cols.append(col.quoted) -%} + {%- endif -%} + {%- endfor -%} + {% set compare_cols_csv = compare_cols | join(', ') %} + + {% set query %} + with a_minus_b as ( + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + except + select {{ compare_cols_csv }} from {{ ref(table_name) }} + ), + b_minus_a as ( + select {{ compare_cols_csv }} from {{ ref(table_name) }} + except + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + ), + unioned as ( + select * from a_minus_b + union all + select * from b_minus_a + ) + select count(*) as diff_count from unioned + {% endset %} + + {% set result = run_query(query) %} + {% if result.rows[0][0] == 0 %} + {% set ns.matched = true %} + {% endif %} + {% endif %} + {% endif %} + {% endif %} + {% endfor %} + {% endif %} + + {% if ns.matched %} + select 1 where 1=0 + {% else %} + select 1 + {% endif %} + {% endif %} +{% endmacro %} diff --git a/tasks/helixops_saas005/seeds/_no-op.txt b/tasks/helixops_saas005/seeds/_no-op.txt new file mode 100644 index 00000000..cf37d3e8 --- /dev/null +++ b/tasks/helixops_saas005/seeds/_no-op.txt @@ -0,0 +1,25 @@ + + +seeds: + helixops_saas: + solution__int_account_users: + +column_types: + user_id: varchar + account_id: varchar + account_name: varchar + industry: varchar + region: varchar + segment: varchar + billing_country: varchar + account_status: varchar + owner_team: varchar + email_address: varchar + full_name: varchar + title: varchar + department: varchar + created_at: timestamp + last_login_at: timestamp + user_status: varchar + is_active_user: boolean + is_test_user: boolean + days_since_last_login: bigint diff --git a/tasks/helixops_saas005/seeds/solution__int_account_users.csv b/tasks/helixops_saas005/seeds/solution__int_account_users.csv new file mode 100644 index 00000000..92fa8109 --- /dev/null +++ b/tasks/helixops_saas005/seeds/solution__int_account_users.csv @@ -0,0 +1,909 @@ +user_id,account_id,account_name,industry,region,segment,billing_country,account_status,owner_team,email_address,full_name,title,department,created_at,last_login_at,user_status,is_active_user,is_test_user,days_since_last_login +U3001,A1001,Helio Systems,healthcare,EMEA,mid_market,NL,active,CSM-EMEA,lena.park@heliosystems.example,Lena Park,Technical Program Manager,product,2024-09-05 21:43:48,2025-06-14 05:24:20,active,true,false,283 +U3002,A1001,Helio Systems,healthcare,EMEA,mid_market,NL,active,CSM-EMEA,mei.lewis@heliosystems.example,Mei Lewis,BI Analyst,analytics,2024-09-22 20:43:48,2025-06-23 18:02:36,active,true,false,274 +U3003,A1001,Helio Systems,healthcare,EMEA,mid_market,NL,active,CSM-EMEA,marcus.saeed@heliosystems.example,Marcus Saeed,Operations Manager,operations,2024-08-17 15:43:48,2025-06-22 18:02:58,active,true,false,275 +U3004,A1001,Helio Systems,healthcare,EMEA,mid_market,NL,active,CSM-EMEA,peter.ng@heliosystems.example,Peter Ng,Operations Director,operations,2024-09-09 18:43:48,2025-04-08 19:48:16,inactive,false,false,350 +U3005,A1001,Helio Systems,healthcare,EMEA,mid_market,NL,active,CSM-EMEA,sofia.fischer@heliosystems.example,Sofia Fischer,Demand Gen Manager,marketing,2024-08-17 18:43:48,2025-06-18 00:38:50,active,true,false,279 +U3006,A1001,Helio Systems,healthcare,EMEA,mid_market,NL,active,CSM-EMEA,marcus.silva@heliosystems.example,Marcus Silva,Finance Manager,finance,2024-08-14 17:43:48,2025-05-21 00:37:40,inactive,false,false,307 +U3007,A1001,Helio Systems,healthcare,EMEA,mid_market,NL,active,CSM-EMEA,naomi.turner@heliosystems.example,Naomi Turner,Product Manager,product,2024-08-17 13:43:48,2025-06-30 13:24:04,active,true,false,267 +U3008,A1001,Helio Systems,healthcare,EMEA,mid_market,NL,active,CSM-EMEA,peter.saeed@heliosystems.example,Peter Saeed,Revenue Operations Manager,sales,2024-08-30 16:43:48,2025-06-11 10:48:57,active,true,false,286 +U3009,A1001,Helio Systems,healthcare,EMEA,mid_market,NL,active,CSM-EMEA,victor.price@heliosystems.example,Victor Price,Product Manager,product,2024-08-19 20:43:48,2025-06-10 16:34:27,active,true,false,287 +U3010,A1002,Summit Foods,media,NA,mid_market,US,active,CSM-East,sofia.alvarez@summitfoods.example,Sofia Alvarez,FP&A Analyst,finance,2025-02-06 22:12:29,2025-06-16 03:08:19,active,true,false,281 +U3011,A1002,Summit Foods,media,NA,mid_market,US,active,CSM-East,lena.price@summitfoods.example,Lena Price,Controller,finance,2025-02-21 23:12:29,2025-06-19 01:04:00,active,true,false,278 +U3012,A1002,Summit Foods,media,NA,mid_market,US,active,CSM-East,tomas.saeed@summitfoods.example,Tomas Saeed,Analytics Engineer,data,2025-02-09 22:12:29,2025-06-19 08:27:51,active,true,false,278 +U3013,A1002,Summit Foods,media,NA,mid_market,US,active,CSM-East,nina.romero@summitfoods.example,Nina Romero,Founder,executive,2025-02-02 01:12:29,2025-06-25 12:59:10,active,true,false,272 +U3014,A1002,Summit Foods,media,NA,mid_market,US,active,CSM-East,marcus.silva@summitfoods.example,Marcus Silva,Finance Manager,finance,2025-02-02 06:12:29,2025-06-25 21:27:20,active,true,false,272 +U3015,A1002,Summit Foods,media,NA,mid_market,US,active,CSM-East,kenji.ward@summitfoods.example,Kenji Ward,Product Manager,product,2025-01-18 23:12:29,2025-06-21 09:37:03,active,true,false,276 +U3016,A1002,Summit Foods,media,NA,mid_market,US,active,CSM-East,priya.meyer@summitfoods.example,Priya Meyer,Marketing Operations Lead,marketing,2025-01-22 22:12:29,2025-06-17 19:37:56,active,true,false,280 +U3017,A1002,Summit Foods,media,NA,mid_market,US,active,CSM-East,sofia.morgan@summitfoods.example,Sofia Morgan,Technical Program Manager,product,2025-01-13 01:12:29,2025-06-29 05:52:23,active,true,false,268 +U3018,A1002,Summit Foods,media,NA,mid_market,US,active,CSM-East,hannah.silva@summitfoods.example,Hannah Silva,BI Analyst,analytics,2025-02-03 04:12:29,2025-05-27 04:39:23,inactive,false,false,301 +U3019,A1002,Summit Foods,media,NA,mid_market,US,active,CSM-East,lina.silva@summitfoods.example,Lina Silva,FP&A Analyst,finance,2025-02-24 05:12:29,2025-06-29 15:27:20,active,true,false,268 +U3020,A1002,Summit Foods,media,NA,mid_market,US,active,CSM-East,mateo.dubois@summitfoods.example,Mateo Dubois,Workflow Analyst,operations,2025-02-06 23:12:29,2025-06-30 06:02:54,active,true,false,267 +U3021,A1002,Summit Foods,media,NA,mid_market,US,active,CSM-East,kenji.nash@summitfoods.example,Kenji Nash,Analytics Manager,analytics,2025-01-16 23:12:29,2025-06-17 11:13:21,active,true,false,280 +U3022,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,owen.ng@novaventures.example,Owen Ng,Controller,finance,2025-01-08 08:21:52,2025-06-27 22:24:00,active,true,false,270 +U3023,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,marta.ng@novaventures.example,Marta Ng,Insights Lead,analytics,2024-12-14 04:21:52,2025-06-20 03:38:04,active,true,false,277 +U3024,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,derek.hart@novaventures.example,Derek Hart,Finance Manager,finance,2024-12-20 10:21:52,2025-06-11 22:09:58,active,true,false,286 +U3025,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,victor.fischer@novaventures.example,Victor Fischer,CFO,executive,2025-01-16 03:21:52,2025-06-26 18:34:56,active,true,false,271 +U3026,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,owen.fischer@novaventures.example,Owen Fischer,CFO,executive,2024-12-15 05:21:52,2025-06-19 22:52:17,active,true,false,278 +U3027,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,alma.dubois@novaventures.example,Alma Dubois,Marketing Operations Lead,marketing,2024-12-12 05:21:52,2025-06-19 16:26:11,active,true,false,278 +U3028,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,arjun.grant@novaventures.example,Arjun Grant,Analytics Manager,analytics,2025-01-25 10:21:52,2025-06-25 03:26:39,active,true,false,272 +U3029,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,claire.rossi@novaventures.example,Claire Rossi,Marketing Operations Lead,marketing,2024-12-19 04:21:52,2025-06-27 14:34:05,active,true,false,270 +U3030,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,owen.petrova@novaventures.example,Owen Petrova,VP Data,executive,2025-01-25 04:21:52,2025-06-17 08:08:53,active,true,false,280 +U3031,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,jonas.rahman@novaventures.example,Jonas Rahman,FP&A Analyst,finance,2025-01-12 06:21:52,2025-06-15 04:04:46,active,true,false,282 +U3032,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,naomi.alvarez@novaventures.example,Naomi Alvarez,Product Manager,product,2025-01-03 11:21:52,2025-06-21 15:17:01,active,true,false,276 +U3033,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,arjun.lewis@novaventures.example,Arjun Lewis,Operations Director,operations,2024-12-30 09:21:52,2025-04-21 08:57:34,inactive,false,false,337 +U3034,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,kai.price@novaventures.example,Kai Price,Operations Director,operations,2024-12-31 04:21:52,2025-06-26 19:11:31,active,true,false,271 +U3035,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,mateo.cole@novaventures.example,Mateo Cole,Controller,finance,2025-01-20 05:21:52,2025-06-13 10:10:01,active,true,false,284 +U3036,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,ivy.hart@novaventures.example,Ivy Hart,Data Engineer,data,2025-01-13 05:21:52,2025-06-14 05:21:09,active,true,false,283 +U3037,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,alma.patel@novaventures.example,Alma Patel,VP Data,executive,2024-12-16 07:21:52,2025-06-23 15:53:18,active,true,false,274 +U3038,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,jonas.nash@silversolutions.example,Jonas Nash,Workflow Analyst,operations,2024-10-18 15:27:43,2025-03-17 22:55:34,inactive,false,false,372 +U3039,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,mila.silva@silversolutions.example,Mila Silva,Data Engineer,data,2024-09-12 13:27:43,2025-03-27 00:41:34,inactive,false,false,362 +U3040,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,daniel.price@silversolutions.example,Daniel Price,Analytics Engineer,data,2024-10-17 21:27:43,2025-04-17 05:20:34,inactive,false,false,341 +U3041,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,victor.morgan@silversolutions.example,Victor Morgan,Analytics Manager,analytics,2024-09-11 13:27:43,2025-06-20 09:07:01,active,true,false,277 +U3042,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,leo.ward@silversolutions.example,Leo Ward,Demand Gen Manager,marketing,2024-10-15 15:27:43,2025-05-11 14:48:33,inactive,false,false,317 +U3043,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,marta.morgan@silversolutions.example,Marta Morgan,FP&A Analyst,finance,2024-10-09 21:27:43,2025-06-16 03:49:21,active,true,false,281 +U3044,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,ava.grant@silversolutions.example,Ava Grant,Analytics Manager,analytics,2024-09-22 15:27:43,2025-06-17 08:03:38,active,true,false,280 +U3045,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,lina.price@silversolutions.example,Lina Price,Marketing Operations Lead,marketing,2024-09-27 18:27:43,2025-06-14 03:49:25,active,true,false,283 +U3046,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,tara.hart@silversolutions.example,Tara Hart,Technical Program Manager,product,2024-09-26 20:27:43,2025-06-19 20:04:48,active,true,false,278 +U3047,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,sofia.ward@silversolutions.example,Sofia Ward,Marketing Operations Lead,marketing,2024-10-14 18:27:43,2025-06-17 02:54:07,active,true,false,280 +U3048,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,tara.turner@silversolutions.example,Tara Turner,Insights Lead,analytics,2024-09-07 14:27:43,2025-05-10 23:12:59,inactive,false,false,318 +U3049,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,derek.morgan@silversolutions.example,Derek Morgan,Founder,executive,2024-10-02 13:27:43,2025-04-24 01:06:10,inactive,false,false,334 +U3050,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,claire.keller@silversolutions.example,Claire Keller,Sales Analyst,sales,2024-10-12 17:27:43,2025-04-29 15:50:01,inactive,false,false,329 +U3051,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,olivia.lewis@silversolutions.example,Olivia Lewis,Operations Manager,operations,2024-09-30 18:27:43,2025-03-15 08:10:02,inactive,false,false,374 +U3052,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,ben.hart@pacificlabs.example,Ben Hart,Revenue Operations Manager,sales,2024-09-02 14:28:15,2025-06-18 09:00:36,active,true,false,279 +U3053,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,leo.saeed@pacificlabs.example,Leo Saeed,Product Manager,product,2024-10-08 22:28:15,2025-06-25 04:08:17,active,true,false,272 +U3054,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,alma.rahman@pacificlabs.example,Alma Rahman,Sales Analyst,sales,2024-10-07 19:28:15,2025-06-22 15:55:47,active,true,false,275 +U3055,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,isla.rossi@pacificlabs.example,Isla Rossi,Analytics Manager,analytics,2024-09-01 19:28:15,2025-06-12 22:50:57,active,true,false,285 +U3056,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,kai.singh@pacificlabs.example,Kai Singh,Data Platform Manager,data,2024-09-30 18:28:15,2025-05-15 16:35:18,inactive,false,false,313 +U3057,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,helena.patel@pacificlabs.example,Helena Patel,Data Platform Manager,data,2024-09-30 16:28:15,2025-06-27 19:07:10,active,true,false,270 +U3058,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,mila.kim@pacificlabs.example,Mila Kim,Controller,finance,2024-09-15 14:28:15,2025-06-27 07:04:58,active,true,false,270 +U3059,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,olivia.tan@pacificlabs.example,Olivia Tan,Analytics Engineer,data,2024-09-20 20:28:15,2025-06-27 01:14:44,active,true,false,270 +U3060,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,daniel.price@pacificlabs.example,Daniel Price,Product Manager,product,2024-10-15 16:28:15,2025-06-23 21:44:24,active,true,false,274 +U3061,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,alma.turner@pacificlabs.example,Alma Turner,Sales Analyst,sales,2024-09-11 21:28:15,2025-04-04 17:32:54,inactive,false,false,354 +U3062,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,nina.turner@pacificlabs.example,Nina Turner,Marketing Operations Lead,marketing,2024-09-17 22:28:15,2025-06-17 12:22:22,active,true,false,280 +U3063,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,claire.reed@pacificlabs.example,Claire Reed,Technical Program Manager,product,2024-09-30 19:28:15,2025-06-29 14:21:25,active,true,false,268 +U3064,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,evan.meyer@pacificlabs.example,Evan Meyer,Workflow Analyst,operations,2024-10-13 22:28:15,2025-06-19 20:49:54,active,true,false,278 +U3065,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,marta.shah@pacificlabs.example,Marta Shah,BI Analyst,analytics,2024-09-18 15:28:15,2025-06-21 00:42:09,active,true,false,276 +U3066,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,nina.turner2@pacificlabs.example,Nina Turner,Marketing Operations Lead,marketing,2024-10-04 18:28:15,2025-03-14 15:52:09,inactive,false,false,375 +U3067,A1006,Helio Works,education,EMEA,mid_market,UK,active,CSM-EMEA,mila.alvarez@helioworks.example,Mila Alvarez,Marketing Operations Lead,marketing,2025-01-02 17:17:28,2025-06-15 22:38:13,active,true,false,282 +U3068,A1006,Helio Works,education,EMEA,mid_market,UK,active,CSM-EMEA,hannah.hill@helioworks.example,Hannah Hill,Sales Analyst,sales,2025-01-05 16:17:28,2025-06-29 00:00:13,active,true,false,268 +U3069,A1006,Helio Works,education,EMEA,mid_market,UK,active,CSM-EMEA,naomi.chen@helioworks.example,Naomi Chen,FP&A Analyst,finance,2025-01-01 16:17:28,2025-06-15 03:11:29,active,true,false,282 +U3070,A1006,Helio Works,education,EMEA,mid_market,UK,active,CSM-EMEA,claire.khan@helioworks.example,Claire Khan,Insights Lead,analytics,2024-11-24 10:17:28,2025-06-15 22:16:41,active,true,false,282 +U3071,A1006,Helio Works,education,EMEA,mid_market,UK,active,CSM-EMEA,isla.desai@helioworks.example,Isla Desai,FP&A Analyst,finance,2024-12-02 09:17:28,2025-04-18 10:19:41,inactive,false,false,340 +U3072,A1006,Helio Works,education,EMEA,mid_market,UK,active,CSM-EMEA,kenji.meyer@helioworks.example,Kenji Meyer,Data Engineer,data,2024-12-10 10:17:28,2025-04-14 10:42:36,inactive,false,false,344 +U3073,A1006,Helio Works,education,EMEA,mid_market,UK,active,CSM-EMEA,isla.saeed@helioworks.example,Isla Saeed,Product Manager,product,2024-12-23 16:17:28,2025-06-29 22:10:05,active,true,false,268 +U3074,A1007,Silver Systems,energy,EMEA,smb,FR,active,CSM-EMEA,samir.rahman@silversystems.example,Samir Rahman,Technical Program Manager,product,2025-02-05 20:20:12,2025-06-18 11:22:55,active,true,false,279 +U3075,A1007,Silver Systems,energy,EMEA,smb,FR,active,CSM-EMEA,claire.tan@silversystems.example,Claire Tan,Controller,finance,2025-02-01 00:20:12,2025-06-22 19:10:21,active,true,false,275 +U3076,A1007,Silver Systems,energy,EMEA,smb,FR,active,CSM-EMEA,alma.petrova@silversystems.example,Alma Petrova,Revenue Operations Manager,sales,2025-01-02 20:20:12,2025-06-16 07:29:52,active,true,false,281 +U3077,A1007,Silver Systems,energy,EMEA,smb,FR,active,CSM-EMEA,maya.lopez@silversystems.example,Maya Lopez,Revenue Operations Manager,sales,2025-01-19 22:20:12,2025-05-10 12:26:18,inactive,false,false,318 +U3078,A1008,Pacific Works,software,EMEA,mid_market,UK,active,CSM-EMEA,maya.lopez@pacificworks.example,Maya Lopez,COO,executive,2024-10-09 12:07:40,2025-06-14 04:02:30,active,true,false,283 +U3079,A1008,Pacific Works,software,EMEA,mid_market,UK,active,CSM-EMEA,noah.hart@pacificworks.example,Noah Hart,Insights Lead,analytics,2024-10-13 15:07:40,2025-06-15 15:39:14,active,true,false,282 +U3080,A1008,Pacific Works,software,EMEA,mid_market,UK,active,CSM-EMEA,zoe.lewis@pacificworks.example,Zoe Lewis,Product Manager,product,2024-11-04 16:07:40,2025-06-23 14:57:08,active,true,false,274 +U3081,A1008,Pacific Works,software,EMEA,mid_market,UK,active,CSM-EMEA,leo.nash@pacificworks.example,Leo Nash,Marketing Operations Lead,marketing,2024-11-18 12:07:40,2025-06-23 02:40:59,active,true,false,274 +U3082,A1008,Pacific Works,software,EMEA,mid_market,UK,active,CSM-EMEA,derek.keller@pacificworks.example,Derek Keller,Operations Director,operations,2024-11-10 19:07:40,2025-06-23 07:37:37,active,true,false,274 +U3083,A1008,Pacific Works,software,EMEA,mid_market,UK,active,CSM-EMEA,peter.rahman@pacificworks.example,Peter Rahman,CFO,executive,2024-10-13 14:07:40,2025-06-22 03:45:46,active,true,false,275 +U3084,A1008,Pacific Works,software,EMEA,mid_market,UK,active,CSM-EMEA,elena.hart@pacificworks.example,Elena Hart,Product Manager,product,2024-11-04 13:07:40,2025-06-21 09:06:15,active,true,false,276 +U3085,A1008,Pacific Works,software,EMEA,mid_market,UK,active,CSM-EMEA,lena.brooks@pacificworks.example,Lena Brooks,Technical Program Manager,product,2024-10-07 17:07:40,2025-06-10 08:45:23,active,true,false,287 +U3086,A1008,Pacific Works,software,EMEA,mid_market,UK,active,CSM-EMEA,daniel.keller@pacificworks.example,Daniel Keller,Analytics Engineer,data,2024-10-28 12:07:40,2025-06-11 18:06:05,active,true,false,286 +U3087,A1008,Pacific Works,software,EMEA,mid_market,UK,active,CSM-EMEA,tomas.turner@pacificworks.example,Tomas Turner,Analytics Engineer,data,2024-11-01 13:07:40,2025-06-28 21:07:37,active,true,false,269 +U3088,A1008,Pacific Works,software,EMEA,mid_market,UK,active,CSM-EMEA,kai.fischer@pacificworks.example,Kai Fischer,Sales Analyst,sales,2024-10-30 17:07:40,2025-06-26 08:31:19,active,true,false,271 +U3089,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,isla.lewis@summitgroup.example,Isla Lewis,Founder,executive,2024-09-03 01:22:46,2025-06-13 09:11:06,active,true,false,284 +U3090,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,zoe.chen@summitgroup.example,Zoe Chen,Analytics Engineer,data,2024-09-21 01:22:46,2025-06-19 11:56:40,active,true,false,278 +U3091,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,zoe.alvarez@summitgroup.example,Zoe Alvarez,Technical Program Manager,product,2024-08-31 21:22:46,2025-06-27 21:21:25,active,true,false,270 +U3092,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,olivia.desai@summitgroup.example,Olivia Desai,Revenue Operations Manager,sales,2024-09-06 20:22:46,2025-06-24 16:59:51,active,true,false,273 +U3093,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,priya.park@summitgroup.example,Priya Park,Data Engineer,data,2024-08-24 23:22:46,2025-06-23 09:25:58,active,true,false,274 +U3094,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,daniel.brooks@summitgroup.example,Daniel Brooks,Controller,finance,2024-09-09 20:22:46,2025-06-28 01:08:23,active,true,false,269 +U3095,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,lena.khan@summitgroup.example,Lena Khan,COO,executive,2024-09-10 19:22:46,2025-04-10 11:39:54,inactive,false,false,348 +U3096,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,jonas.dubois@summitgroup.example,Jonas Dubois,Data Platform Manager,data,2024-09-28 19:22:46,2025-06-20 15:51:44,active,true,false,277 +U3097,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,arjun.rossi@summitgroup.example,Arjun Rossi,Analytics Engineer,data,2024-10-02 23:22:46,2025-06-18 00:40:34,active,true,false,279 +U3098,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,kai.price@summitgroup.example,Kai Price,FP&A Analyst,finance,2024-09-15 19:22:46,2025-06-21 18:50:40,active,true,false,276 +U3099,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,victor.patel@summitgroup.example,Victor Patel,Insights Lead,analytics,2024-09-01 00:22:46,2025-04-10 18:32:01,inactive,false,false,348 +U3100,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,arjun.saeed@summitgroup.example,Arjun Saeed,FP&A Analyst,finance,2024-09-06 21:22:46,2025-06-25 23:44:00,active,true,false,272 +U3101,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,elena.park@summitgroup.example,Elena Park,Founder,executive,2024-09-25 20:22:46,2025-06-19 10:42:58,active,true,false,278 +U3102,A1010,Orchid Foods,education,NA,smb,CA,active,CSM-East,ben.desai@orchidfoods.example,Ben Desai,Operations Director,operations,2025-03-20 05:10:21,2025-06-15 08:41:12,active,true,false,282 +U3103,A1010,Orchid Foods,education,NA,smb,CA,active,CSM-East,samir.singh@orchidfoods.example,Samir Singh,Data Engineer,data,2025-02-22 22:10:21,2025-06-28 14:25:46,active,true,false,269 +U3104,A1010,Orchid Foods,education,NA,smb,CA,active,CSM-East,leo.alvarez@orchidfoods.example,Leo Alvarez,Demand Gen Manager,marketing,2025-02-26 05:10:21,2025-06-17 03:53:38,active,true,false,280 +U3105,A1010,Orchid Foods,education,NA,smb,CA,active,CSM-East,lina.ward@orchidfoods.example,Lina Ward,VP Data,executive,2025-02-27 02:10:21,2025-06-22 08:41:06,active,true,false,275 +U3106,A1010,Orchid Foods,education,NA,smb,CA,active,CSM-East,ava.hill@orchidfoods.example,Ava Hill,Technical Program Manager,product,2025-02-24 02:10:21,2025-06-11 09:37:52,active,true,false,286 +U3107,A1010,Orchid Foods,education,NA,smb,CA,active,CSM-East,lena.patel@orchidfoods.example,Lena Patel,Finance Manager,finance,2025-02-27 05:10:21,2025-04-10 21:01:38,inactive,false,false,348 +U3108,A1010,Orchid Foods,education,NA,smb,CA,active,CSM-East,claire.shah@orchidfoods.example,Claire Shah,Demand Gen Manager,marketing,2025-02-25 03:10:21,2025-06-16 06:08:53,active,true,false,281 +U3109,A1010,Orchid Foods,education,NA,smb,CA,active,CSM-East,tara.silva@orchidfoods.example,Tara Silva,Analytics Manager,analytics,2025-03-24 04:10:21,2025-06-28 01:52:14,active,true,false,269 +U3110,A1011,Vertex Energy,software,NA,smb,CA,active,CSM-East,aisha.lewis@vertexenergy.example,Aisha Lewis,Product Manager,product,2025-02-17 09:17:33,2025-06-30 15:47:34,active,true,false,267 +U3111,A1011,Vertex Energy,software,NA,smb,CA,active,CSM-East,tomas.brooks@vertexenergy.example,Tomas Brooks,Analytics Engineer,data,2025-01-22 12:17:33,2025-06-13 22:58:52,active,true,false,284 +U3112,A1011,Vertex Energy,software,NA,smb,CA,active,CSM-East,maya.reed@vertexenergy.example,Maya Reed,Technical Program Manager,product,2025-01-17 16:17:33,2025-06-10 16:09:51,active,true,false,287 +U3113,A1011,Vertex Energy,software,NA,smb,CA,active,CSM-East,maya.nash@vertexenergy.example,Maya Nash,Revenue Operations Manager,sales,2025-01-15 17:17:33,2025-06-23 07:05:24,active,true,false,274 +U3114,A1011,Vertex Energy,software,NA,smb,CA,active,CSM-East,claire.romero@vertexenergy.example,Claire Romero,Revenue Operations Manager,sales,2025-01-20 10:17:33,2025-06-16 03:22:28,active,true,false,281 +U3115,A1011,Vertex Energy,software,NA,smb,CA,active,CSM-East,mei.saeed@vertexenergy.example,Mei Saeed,Analytics Manager,analytics,2025-01-31 15:17:33,2025-06-20 03:31:41,active,true,false,277 +U3116,A1012,Cedar Ventures,retail,APAC,smb,JP,active,CSM-APAC,lena.alvarez@cedarventures.example,Lena Alvarez,Demand Gen Manager,marketing,2024-10-01 08:09:23,2025-06-26 01:35:27,active,true,false,271 +U3117,A1012,Cedar Ventures,retail,APAC,smb,JP,active,CSM-APAC,priya.petrova@cedarventures.example,Priya Petrova,Sales Analyst,sales,2024-09-12 15:09:23,2025-06-25 17:55:57,active,true,false,272 +U3118,A1012,Cedar Ventures,retail,APAC,smb,JP,active,CSM-APAC,maya.rahman@cedarventures.example,Maya Rahman,Operations Manager,operations,2024-09-15 12:09:23,2025-06-12 14:33:08,active,true,false,285 +U3119,A1012,Cedar Ventures,retail,APAC,smb,JP,active,CSM-APAC,mateo.desai@cedarventures.example,Mateo Desai,Marketing Operations Lead,marketing,2024-10-02 14:09:23,2025-06-12 02:18:39,active,true,false,285 +U3120,A1012,Cedar Ventures,retail,APAC,smb,JP,active,CSM-APAC,evan.nash@cedarventures.example,Evan Nash,Data Engineer,data,2024-09-08 07:09:23,2025-05-13 08:52:47,inactive,false,false,315 +U3121,A1012,Cedar Ventures,retail,APAC,smb,JP,active,CSM-APAC,noah.keller@cedarventures.example,Noah Keller,BI Analyst,analytics,2024-09-24 10:09:23,2025-06-19 17:42:00,active,true,false,278 +U3122,A1012,Cedar Ventures,retail,APAC,smb,JP,active,CSM-APAC,isla.silva@cedarventures.example,Isla Silva,Revenue Operations Manager,sales,2024-10-02 08:09:23,2025-06-18 16:28:39,active,true,false,279 +U3123,A1013,River Foods,manufacturing,NA,mid_market,US,active,CSM-East,marcus.ng@riverfoods.example,Marcus Ng,Marketing Operations Lead,marketing,2025-01-17 10:56:58,2025-05-01 21:36:48,inactive,false,false,327 +U3124,A1013,River Foods,manufacturing,NA,mid_market,US,active,CSM-East,evan.park@riverfoods.example,Evan Park,Product Manager,product,2025-01-18 12:56:58,2025-05-06 07:48:13,inactive,false,false,322 +U3125,A1013,River Foods,manufacturing,NA,mid_market,US,active,CSM-East,helena.kim@riverfoods.example,Helena Kim,Workflow Analyst,operations,2025-01-14 07:56:58,2025-06-12 06:47:26,active,true,false,285 +U3126,A1013,River Foods,manufacturing,NA,mid_market,US,active,CSM-East,evan.shah@riverfoods.example,Evan Shah,Revenue Operations Manager,sales,2025-01-20 09:56:58,2025-06-12 12:18:52,active,true,false,285 +U3127,A1013,River Foods,manufacturing,NA,mid_market,US,active,CSM-East,maya.singh@riverfoods.example,Maya Singh,Technical Program Manager,product,2025-01-13 05:56:58,2025-06-14 20:09:49,active,true,false,283 +U3128,A1013,River Foods,manufacturing,NA,mid_market,US,active,CSM-East,ivy.park@riverfoods.example,Ivy Park,Revenue Operations Manager,sales,2024-12-28 05:56:58,2025-06-12 13:12:49,active,true,false,285 +U3129,A1013,River Foods,manufacturing,NA,mid_market,US,active,CSM-East,ben.khan@riverfoods.example,Ben Khan,Revenue Operations Manager,sales,2025-01-14 10:56:58,2025-06-12 08:20:27,active,true,false,285 +U3130,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,lena.saeed@evergreenglobal.example,Lena Saeed,Controller,finance,2024-10-15 21:29:43,2025-06-17 14:25:18,active,true,false,280 +U3131,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,evan.rossi@evergreenglobal.example,Evan Rossi,Finance Manager,finance,2024-10-02 01:29:43,2025-05-16 07:44:43,inactive,false,false,312 +U3132,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,tomas.fischer@evergreenglobal.example,Tomas Fischer,BI Analyst,analytics,2024-11-01 02:29:43,2025-03-11 17:15:49,inactive,false,false,378 +U3133,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,naomi.singh@evergreenglobal.example,Naomi Singh,Analytics Engineer,data,2024-10-13 01:29:43,2025-04-02 19:59:30,inactive,false,false,356 +U3134,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,ivy.lewis@evergreenglobal.example,Ivy Lewis,Analytics Manager,analytics,2024-10-29 22:29:43,2025-04-08 23:57:55,inactive,false,false,350 +U3135,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,alma.meyer@evergreenglobal.example,Alma Meyer,Product Manager,product,2024-10-12 01:29:43,2025-04-05 18:32:52,inactive,false,false,353 +U3136,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,olivia.tan@evergreenglobal.example,Olivia Tan,Controller,finance,2024-10-26 19:29:43,2025-05-09 02:36:53,inactive,false,false,319 +U3137,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,daniel.park@evergreenglobal.example,Daniel Park,Insights Lead,analytics,2024-09-26 01:29:43,2025-03-30 17:39:04,inactive,false,false,359 +U3138,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,victor.lopez@evergreenglobal.example,Victor Lopez,Controller,finance,2024-10-19 01:29:43,2025-06-24 19:19:18,active,true,false,273 +U3139,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,leo.morgan@evergreenglobal.example,Leo Morgan,Revenue Operations Manager,sales,2024-10-15 03:29:43,2025-03-11 22:50:57,inactive,false,false,378 +U3140,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,victor.cole@evergreenglobal.example,Victor Cole,Controller,finance,2024-10-30 19:29:43,2025-05-03 03:01:18,inactive,false,false,325 +U3141,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,noah.silva@evergreenglobal.example,Noah Silva,Revenue Operations Manager,sales,2024-09-21 20:29:43,2025-04-20 16:53:11,inactive,false,false,338 +U3142,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,arjun.patel@evergreenglobal.example,Arjun Patel,Technical Program Manager,product,2024-10-17 02:29:43,2025-04-18 22:10:11,inactive,false,false,340 +U3143,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,peter.cole@evergreenglobal.example,Peter Cole,Analytics Engineer,data,2024-09-27 23:29:43,2025-03-12 14:27:40,inactive,false,false,377 +U3144,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,peter.cole2@evergreenglobal.example,Peter Cole,Analytics Manager,analytics,2024-10-20 22:29:43,2025-03-10 19:28:41,inactive,false,false,379 +U3145,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,owen.park@evergreenglobal.example,Owen Park,Founder,executive,2024-10-10 19:29:43,2025-05-22 18:43:58,inactive,false,false,306 +U3146,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,samir.hill@evergreenglobal.example,Samir Hill,Controller,finance,2024-10-07 03:29:43,2025-06-14 04:17:08,active,true,false,283 +U3147,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,samir.ng@evergreenglobal.example,Samir Ng,Product Manager,product,2024-10-16 21:29:43,2025-06-26 05:54:34,active,true,false,271 +U3148,A1015,Delta Network,logistics,NA,smb,US,churned,CSM-East,luis.tan@deltanetwork.example,Luis Tan,Technical Program Manager,product,2024-09-28 16:34:41,2025-05-13 09:02:43,inactive,false,false,315 +U3149,A1015,Delta Network,logistics,NA,smb,US,churned,CSM-East,tomas.hill@deltanetwork.example,Tomas Hill,FP&A Analyst,finance,2024-09-24 19:34:41,2025-05-24 02:05:19,inactive,false,false,304 +U3150,A1015,Delta Network,logistics,NA,smb,US,churned,CSM-East,tara.saeed@deltanetwork.example,Tara Saeed,CFO,executive,2024-10-13 22:34:41,2025-05-22 10:11:57,inactive,false,false,306 +U3151,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,mila.sato@bluepeakcapital.example,Mila Sato,Insights Lead,analytics,2025-01-30 06:07:46,2025-06-17 21:26:38,active,true,false,280 +U3152,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,olivia.alvarez@bluepeakcapital.example,Olivia Alvarez,BI Analyst,analytics,2025-01-04 10:07:46,2025-06-22 16:34:37,active,true,false,275 +U3153,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,lina.price@bluepeakcapital.example,Lina Price,Controller,finance,2025-01-17 11:07:46,2025-06-25 17:12:23,active,true,false,272 +U3154,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,isla.sato@bluepeakcapital.example,Isla Sato,FP&A Analyst,finance,2025-01-11 07:07:46,2025-06-30 17:29:30,active,true,false,267 +U3155,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,owen.brooks@bluepeakcapital.example,Owen Brooks,Founder,executive,2025-01-24 07:07:46,2025-06-19 14:39:49,active,true,false,278 +U3156,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,arjun.hart@bluepeakcapital.example,Arjun Hart,Technical Program Manager,product,2025-02-05 12:07:46,2025-06-30 16:16:20,active,true,false,267 +U3157,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,owen.rossi@bluepeakcapital.example,Owen Rossi,Finance Manager,finance,2025-01-29 05:07:46,2025-06-15 15:28:03,active,true,false,282 +U3158,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,claire.desai@bluepeakcapital.example,Claire Desai,BI Analyst,analytics,2025-01-27 09:07:46,2025-06-21 09:24:32,active,true,false,276 +U3159,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,lena.rossi@bluepeakcapital.example,Lena Rossi,Workflow Analyst,operations,2024-12-31 09:07:46,2025-06-30 06:35:49,active,true,false,267 +U3160,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,derek.nash@bluepeakcapital.example,Derek Nash,Data Platform Manager,data,2025-01-21 13:07:46,2025-06-20 14:40:14,active,true,false,277 +U3161,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,marcus.alvarez@bluepeakcapital.example,Marcus Alvarez,BI Analyst,analytics,2025-01-21 09:07:46,2025-06-30 02:46:43,active,true,false,267 +U3162,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,elena.park@bluepeakcapital.example,Elena Park,Operations Director,operations,2025-01-06 10:07:46,2025-06-25 02:30:11,active,true,false,272 +U3163,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,ivy.rahman@bluepeakcapital.example,Ivy Rahman,Finance Manager,finance,2025-01-06 05:07:46,2025-06-23 05:04:33,active,true,false,274 +U3164,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,evan.nash@bluepeakcapital.example,Evan Nash,FP&A Analyst,finance,2025-02-07 09:07:46,2025-06-16 18:44:19,active,true,false,281 +U3165,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,sofia.hill@bluepeakcapital.example,Sofia Hill,FP&A Analyst,finance,2024-12-27 09:07:46,2025-06-13 08:55:03,active,true,false,284 +U3166,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,naomi.alvarez@bluepeakcapital.example,Naomi Alvarez,Controller,finance,2025-01-13 08:07:46,2025-06-26 16:56:06,active,true,false,271 +U3167,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,noah.rossi@bluepeakcapital.example,Noah Rossi,Controller,finance,2025-02-02 09:07:46,2025-06-19 09:33:13,active,true,false,278 +U3168,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,owen.keller@bluepeakcapital.example,Owen Keller,Operations Manager,operations,2025-01-25 09:07:46,2025-06-19 05:59:58,active,true,false,278 +U3169,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,ava.rossi@bluepeakcapital.example,Ava Rossi,Founder,executive,2024-12-29 12:07:46,2025-06-27 05:12:00,active,true,false,270 +U3170,A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,tomas.nash@summitanalytics.example,Tomas Nash,Revenue Operations Manager,sales,2024-12-25 13:14:21,2025-06-18 03:04:57,active,true,false,279 +U3171,A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,claire.silva@summitanalytics.example,Claire Silva,Controller,finance,2024-12-29 15:14:21,2025-03-05 19:03:17,inactive,false,false,384 +U3172,A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,marcus.ward@summitanalytics.example,Marcus Ward,Data Engineer,data,2024-12-08 17:14:21,2025-06-20 16:12:40,active,true,false,277 +U3173,A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,mei.lewis@summitanalytics.example,Mei Lewis,BI Analyst,analytics,2024-12-15 11:14:21,2025-06-16 08:51:44,active,true,false,281 +U3174,A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,elena.fischer@summitanalytics.example,Elena Fischer,Finance Manager,finance,2024-12-23 14:14:21,2025-06-28 14:57:16,active,true,false,269 +U3175,A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,zoe.ng@summitanalytics.example,Zoe Ng,Workflow Analyst,operations,2024-12-04 10:14:21,2025-06-12 04:24:09,active,true,false,285 +U3176,A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,naomi.patel@summitanalytics.example,Naomi Patel,Product Manager,product,2024-11-28 15:14:21,2025-06-20 13:00:56,active,true,false,277 +U3177,A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,naomi.turner@summitanalytics.example,Naomi Turner,Operations Director,operations,2024-12-22 11:14:21,2025-06-12 18:40:05,active,true,false,285 +U3178,A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,marcus.khan@summitanalytics.example,Marcus Khan,VP Data,executive,2024-12-06 16:14:21,2025-06-28 13:44:46,active,true,false,269 +U3179,A1018,Harbor Manufacturing,media,EMEA,smb,UK,churned,CSM-EMEA,tomas.saeed@harbormanufacturing.example,Tomas Saeed,Data Platform Manager,data,2024-10-29 22:10:22,2025-05-01 07:31:57,inactive,false,false,327 +U3180,A1018,Harbor Manufacturing,media,EMEA,smb,UK,churned,CSM-EMEA,peter.price@harbormanufacturing.example,Peter Price,Product Manager,product,2024-09-23 21:10:22,2025-06-13 06:44:39,active,true,false,284 +U3181,A1018,Harbor Manufacturing,media,EMEA,smb,UK,churned,CSM-EMEA,helena.kim@harbormanufacturing.example,Helena Kim,CFO,executive,2024-10-08 22:10:22,2025-06-25 22:31:07,active,true,false,272 +U3182,A1019,Sierra Systems,education,APAC,smb,JP,active,CSM-APAC,victor.meyer@sierrasystems.example,Victor Meyer,Data Platform Manager,data,2025-03-17 13:36:13,2025-06-22 15:49:06,active,true,false,275 +U3183,A1019,Sierra Systems,education,APAC,smb,JP,active,CSM-APAC,mei.morgan@sierrasystems.example,Mei Morgan,Insights Lead,analytics,2025-03-01 13:36:13,2025-06-13 00:40:40,active,true,false,284 +U3184,A1019,Sierra Systems,education,APAC,smb,JP,active,CSM-APAC,victor.rossi@sierrasystems.example,Victor Rossi,Workflow Analyst,operations,2025-02-26 15:36:13,2025-05-23 21:50:31,inactive,false,false,305 +U3185,A1019,Sierra Systems,education,APAC,smb,JP,active,CSM-APAC,lena.price@sierrasystems.example,Lena Price,COO,executive,2025-03-28 11:36:13,2025-06-11 22:20:26,active,true,false,286 +U3186,A1020,Pioneer Network,travel,EMEA,smb,FR,active,CSM-EMEA,nina.reed@pioneernetwork.example,Nina Reed,Data Engineer,data,2025-03-15 08:09:23,2025-06-27 14:08:11,active,true,false,270 +U3187,A1020,Pioneer Network,travel,EMEA,smb,FR,active,CSM-EMEA,sofia.price@pioneernetwork.example,Sofia Price,Sales Analyst,sales,2025-02-23 08:09:23,2025-06-13 23:56:34,active,true,false,284 +U3188,A1020,Pioneer Network,travel,EMEA,smb,FR,active,CSM-EMEA,evan.petrova@pioneernetwork.example,Evan Petrova,BI Analyst,analytics,2025-03-22 03:09:23,2025-04-02 01:23:00,inactive,false,false,356 +U3189,A1020,Pioneer Network,travel,EMEA,smb,FR,active,CSM-EMEA,noah.keller@pioneernetwork.example,Noah Keller,Insights Lead,analytics,2025-03-17 03:09:23,2025-06-12 09:13:21,active,true,false,285 +U3190,A1021,Apex Logistics,software,NA,smb,US,active,CSM-East,olivia.ward@apexlogistics.example,Olivia Ward,Analytics Engineer,data,2024-12-06 14:34:29,2025-06-27 11:22:55,active,true,false,270 +U3191,A1021,Apex Logistics,software,NA,smb,US,active,CSM-East,naomi.chen@apexlogistics.example,Naomi Chen,FP&A Analyst,finance,2024-11-16 20:34:29,2025-06-30 06:08:41,active,true,false,267 +U3192,A1021,Apex Logistics,software,NA,smb,US,active,CSM-East,nina.rahman@apexlogistics.example,Nina Rahman,COO,executive,2024-11-11 13:34:29,2025-06-11 00:06:04,active,true,false,286 +U3193,A1021,Apex Logistics,software,NA,smb,US,active,CSM-East,samir.ng@apexlogistics.example,Samir Ng,Insights Lead,analytics,2024-10-29 16:34:29,2025-06-24 06:55:26,active,true,false,273 +U3194,A1021,Apex Logistics,software,NA,smb,US,active,CSM-East,tomas.rossi@apexlogistics.example,Tomas Rossi,Technical Program Manager,product,2024-10-28 19:34:29,2025-06-14 08:12:55,active,true,false,283 +U3195,A1021,Apex Logistics,software,NA,smb,US,active,CSM-East,derek.rahman@apexlogistics.example,Derek Rahman,BI Analyst,analytics,2024-11-30 13:34:29,2025-06-22 15:24:43,active,true,false,275 +U3196,A1021,Apex Logistics,software,NA,smb,US,active,CSM-East,maya.desai@apexlogistics.example,Maya Desai,Data Engineer,data,2024-10-27 19:34:29,2025-06-13 22:25:50,active,true,false,284 +U3197,A1022,Summit Collective,retail,APAC,smb,NZ,active,CSM-APAC,priya.price@summitcollective.example,Priya Price,Demand Gen Manager,marketing,2025-03-03 22:16:56,2025-05-20 12:42:45,inactive,false,false,308 +U3198,A1022,Summit Collective,retail,APAC,smb,NZ,active,CSM-APAC,tomas.fischer@summitcollective.example,Tomas Fischer,Workflow Analyst,operations,2025-03-31 16:16:56,2025-06-29 19:33:39,active,true,false,268 +U3199,A1022,Summit Collective,retail,APAC,smb,NZ,active,CSM-APAC,mateo.desai@summitcollective.example,Mateo Desai,Revenue Operations Manager,sales,2025-03-17 20:16:56,2025-06-17 19:59:40,active,true,false,280 +U3200,A1022,Summit Collective,retail,APAC,smb,NZ,active,CSM-APAC,alma.petrova@summitcollective.example,Alma Petrova,Product Manager,product,2025-03-11 19:16:56,2025-06-29 08:00:30,active,true,false,268 +U3201,A1022,Summit Collective,retail,APAC,smb,NZ,active,CSM-APAC,jonas.alvarez@summitcollective.example,Jonas Alvarez,Technical Program Manager,product,2025-03-25 23:16:56,2025-05-11 10:45:47,inactive,false,false,317 +U3202,A1023,Atlas Systems,education,NA,smb,CA,active,CSM-East,victor.shah@atlassystems.example,Victor Shah,Analytics Engineer,data,2025-02-01 19:25:38,2025-06-25 17:27:46,active,true,false,272 +U3203,A1023,Atlas Systems,education,NA,smb,CA,active,CSM-East,maya.silva@atlassystems.example,Maya Silva,Data Platform Manager,data,2025-02-24 20:25:38,2025-06-23 03:38:21,active,true,false,274 +U3204,A1023,Atlas Systems,education,NA,smb,CA,active,CSM-East,victor.price@atlassystems.example,Victor Price,Product Manager,product,2025-02-09 20:25:38,2025-06-15 21:50:33,active,true,false,282 +U3205,A1023,Atlas Systems,education,NA,smb,CA,active,CSM-East,mateo.price@atlassystems.example,Mateo Price,CFO,executive,2025-02-05 17:25:38,2025-06-25 18:12:18,active,true,false,272 +U3206,A1023,Atlas Systems,education,NA,smb,CA,active,CSM-East,noah.keller@atlassystems.example,Noah Keller,Analytics Engineer,data,2025-03-14 18:25:38,2025-06-16 15:02:17,active,true,false,281 +U3207,A1023,Atlas Systems,education,NA,smb,CA,active,CSM-East,alma.morgan@atlassystems.example,Alma Morgan,VP Data,executive,2025-02-28 20:25:38,2025-06-15 05:05:19,active,true,false,282 +U3208,A1023,Atlas Systems,education,NA,smb,CA,active,CSM-East,naomi.hill@atlassystems.example,Naomi Hill,Finance Manager,finance,2025-02-10 23:25:38,2025-06-20 03:48:38,active,true,false,277 +U3209,A1023,Atlas Systems,education,NA,smb,CA,active,CSM-East,olivia.nash@atlassystems.example,Olivia Nash,COO,executive,2025-02-28 20:25:38,2025-06-13 04:51:16,active,true,false,284 +U3210,A1024,Sierra Group,manufacturing,NA,smb,CA,active,CSM-East,aisha.singh@sierragroup.example,Aisha Singh,Data Engineer,data,2025-02-18 10:59:07,2025-06-16 07:35:52,active,true,false,281 +U3211,A1024,Sierra Group,manufacturing,NA,smb,CA,active,CSM-East,marta.morgan@sierragroup.example,Marta Morgan,Data Platform Manager,data,2025-02-17 12:59:07,2025-06-14 12:17:07,active,true,false,283 +U3212,A1024,Sierra Group,manufacturing,NA,smb,CA,active,CSM-East,luis.morgan@sierragroup.example,Luis Morgan,Product Manager,product,2025-02-04 15:59:07,2025-06-29 13:25:39,active,true,false,268 +U3213,A1024,Sierra Group,manufacturing,NA,smb,CA,active,CSM-East,naomi.grant@sierragroup.example,Naomi Grant,Data Engineer,data,2025-02-12 10:59:07,2025-06-20 00:21:20,active,true,false,277 +U3214,A1025,Bright Capital,education,EMEA,smb,UK,active,CSM-EMEA,elena.lopez@brightcapital.example,Elena Lopez,Operations Director,operations,2024-10-18 12:44:56,2025-03-13 20:06:21,inactive,false,false,376 +U3215,A1025,Bright Capital,education,EMEA,smb,UK,active,CSM-EMEA,elena.silva@brightcapital.example,Elena Silva,Operations Director,operations,2024-11-12 09:44:56,2025-06-24 05:18:42,active,true,false,273 +U3216,A1025,Bright Capital,education,EMEA,smb,UK,active,CSM-EMEA,ivy.morgan@brightcapital.example,Ivy Morgan,Product Manager,product,2024-11-07 15:44:56,2025-06-15 12:04:52,active,true,false,282 +U3217,A1025,Bright Capital,education,EMEA,smb,UK,active,CSM-EMEA,kenji.dubois@brightcapital.example,Kenji Dubois,Analytics Manager,analytics,2024-10-23 09:44:56,2025-06-25 06:24:54,active,true,false,272 +U3218,A1025,Bright Capital,education,EMEA,smb,UK,active,CSM-EMEA,victor.meyer@brightcapital.example,Victor Meyer,Technical Program Manager,product,2024-11-18 16:44:56,2025-06-17 01:58:52,active,true,false,280 +U3219,A1025,Bright Capital,education,EMEA,smb,UK,active,CSM-EMEA,lina.lewis@brightcapital.example,Lina Lewis,Revenue Operations Manager,sales,2024-11-24 17:44:56,2025-06-29 18:17:48,active,true,false,268 +U3220,A1026,Pioneer Capital,education,NA,smb,CA,active,CSM-East,luis.kim@pioneercapital.example,Luis Kim,CFO,executive,2024-10-03 13:38:17,2025-06-24 00:30:56,active,true,false,273 +U3221,A1026,Pioneer Capital,education,NA,smb,CA,active,CSM-East,sofia.khan@pioneercapital.example,Sofia Khan,Sales Analyst,sales,2024-09-10 06:38:17,2025-06-15 14:35:18,active,true,false,282 +U3222,A1026,Pioneer Capital,education,NA,smb,CA,active,CSM-East,luis.dubois@pioneercapital.example,Luis Dubois,Analytics Engineer,data,2024-10-02 11:38:17,2025-06-15 22:35:37,active,true,false,282 +U3223,A1026,Pioneer Capital,education,NA,smb,CA,active,CSM-East,aisha.hill@pioneercapital.example,Aisha Hill,Marketing Operations Lead,marketing,2024-09-16 14:38:17,2025-06-28 04:22:07,active,true,false,269 +U3224,A1026,Pioneer Capital,education,NA,smb,CA,active,CSM-East,hannah.patel@pioneercapital.example,Hannah Patel,Sales Analyst,sales,2024-09-10 08:38:17,2025-06-18 00:15:03,active,true,false,279 +U3225,A1026,Pioneer Capital,education,NA,smb,CA,active,CSM-East,marta.romero@pioneercapital.example,Marta Romero,COO,executive,2024-10-05 09:38:17,2025-06-29 23:05:34,active,true,false,268 +U3226,A1026,Pioneer Capital,education,NA,smb,CA,active,CSM-East,tara.nash@pioneercapital.example,Tara Nash,BI Analyst,analytics,2024-09-30 06:38:17,2025-06-15 22:30:46,active,true,false,282 +U3227,A1026,Pioneer Capital,education,NA,smb,CA,active,CSM-East,ben.patel@pioneercapital.example,Ben Patel,Data Platform Manager,data,2024-09-29 06:38:17,2025-06-25 04:45:33,active,true,false,272 +U3228,A1027,BluePeak Health,retail,APAC,smb,SG,active,CSM-APAC,naomi.silva@bluepeakhealth.example,Naomi Silva,FP&A Analyst,finance,2024-11-03 19:12:59,2025-06-27 09:30:55,active,true,false,270 +U3229,A1027,BluePeak Health,retail,APAC,smb,SG,active,CSM-APAC,peter.grant@bluepeakhealth.example,Peter Grant,Founder,executive,2024-11-24 01:12:59,2025-06-18 11:03:39,active,true,false,279 +U3230,A1027,BluePeak Health,retail,APAC,smb,SG,active,CSM-APAC,jonas.khan@bluepeakhealth.example,Jonas Khan,Finance Manager,finance,2024-11-28 02:12:59,2025-06-14 12:28:49,active,true,false,283 +U3231,A1027,BluePeak Health,retail,APAC,smb,SG,active,CSM-APAC,arjun.cole@bluepeakhealth.example,Arjun Cole,Marketing Operations Lead,marketing,2024-11-24 23:12:59,2025-06-17 10:34:07,active,true,false,280 +U3232,A1027,BluePeak Health,retail,APAC,smb,SG,active,CSM-APAC,naomi.sato@bluepeakhealth.example,Naomi Sato,Data Platform Manager,data,2024-12-07 01:12:59,2025-06-29 00:02:28,active,true,false,268 +U3233,A1028,Apex Energy,energy,APAC,mid_market,SG,active,CSM-APAC,priya.sato@apexenergy.example,Priya Sato,COO,executive,2025-02-04 05:17:07,2025-05-12 16:46:33,inactive,false,false,316 +U3234,A1028,Apex Energy,energy,APAC,mid_market,SG,active,CSM-APAC,tomas.alvarez@apexenergy.example,Tomas Alvarez,VP Data,executive,2025-01-05 05:17:07,2025-06-26 13:19:03,active,true,false,271 +U3235,A1028,Apex Energy,energy,APAC,mid_market,SG,active,CSM-APAC,samir.park@apexenergy.example,Samir Park,Analytics Engineer,data,2025-01-08 07:17:07,2025-06-18 19:10:12,active,true,false,279 +U3236,A1028,Apex Energy,energy,APAC,mid_market,SG,active,CSM-APAC,nina.hill@apexenergy.example,Nina Hill,Data Engineer,data,2025-01-19 11:17:07,2025-06-14 07:53:56,active,true,false,283 +U3237,A1028,Apex Energy,energy,APAC,mid_market,SG,active,CSM-APAC,kai.rossi@apexenergy.example,Kai Rossi,Sales Analyst,sales,2025-01-29 10:17:07,2025-06-21 22:19:21,active,true,false,276 +U3238,A1028,Apex Energy,energy,APAC,mid_market,SG,active,CSM-APAC,lena.patel@apexenergy.example,Lena Patel,FP&A Analyst,finance,2024-12-30 04:17:07,2025-06-18 00:39:57,active,true,false,279 +U3239,A1028,Apex Energy,energy,APAC,mid_market,SG,active,CSM-APAC,nina.hill2@apexenergy.example,Nina Hill,Operations Manager,operations,2025-01-05 10:17:07,2025-06-12 02:41:31,active,true,false,285 +U3240,A1028,Apex Energy,energy,APAC,mid_market,SG,active,CSM-APAC,arjun.petrova@apexenergy.example,Arjun Petrova,CFO,executive,2025-02-09 04:17:07,2025-06-26 03:46:12,active,true,false,271 +U3241,A1028,Apex Energy,energy,APAC,mid_market,SG,active,CSM-APAC,aisha.ng@apexenergy.example,Aisha Ng,Finance Manager,finance,2025-01-01 09:17:07,2025-06-14 21:40:25,active,true,false,283 +U3242,A1028,Apex Energy,energy,APAC,mid_market,SG,active,CSM-APAC,kai.nash@apexenergy.example,Kai Nash,Insights Lead,analytics,2025-01-13 08:17:07,2025-06-11 11:54:53,active,true,false,286 +U3243,A1028,Apex Energy,energy,APAC,mid_market,SG,active,CSM-APAC,noah.rossi@apexenergy.example,Noah Rossi,Finance Manager,finance,2025-01-18 04:17:07,2025-06-17 10:35:14,active,true,false,280 +U3244,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,marcus.romero@brightlabs.example,Marcus Romero,Marketing Operations Lead,marketing,2024-10-10 05:24:19,2025-03-12 13:09:19,inactive,false,false,377 +U3245,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,jonas.morgan@brightlabs.example,Jonas Morgan,Technical Program Manager,product,2024-10-12 05:24:19,2025-06-23 11:58:34,active,true,false,274 +U3246,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,lina.sato@brightlabs.example,Lina Sato,CFO,executive,2024-09-23 03:24:19,2025-04-15 11:39:48,inactive,false,false,343 +U3247,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,nina.patel@brightlabs.example,Nina Patel,Insights Lead,analytics,2024-09-03 03:24:19,2025-03-09 15:42:45,inactive,false,false,380 +U3248,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,marta.nash@brightlabs.example,Marta Nash,Revenue Operations Manager,sales,2024-10-05 01:24:19,2025-04-10 23:29:00,inactive,false,false,348 +U3249,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,isla.turner@brightlabs.example,Isla Turner,Demand Gen Manager,marketing,2024-09-19 02:24:19,2025-03-04 16:55:23,inactive,false,false,385 +U3250,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,sofia.saeed@brightlabs.example,Sofia Saeed,Finance Manager,finance,2024-09-28 03:24:19,2025-03-21 21:44:23,inactive,false,false,368 +U3251,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,mei.lewis@brightlabs.example,Mei Lewis,Analytics Engineer,data,2024-09-05 07:24:19,2025-06-30 06:10:41,active,true,false,267 +U3252,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,peter.lopez@brightlabs.example,Peter Lopez,Founder,executive,2024-09-05 07:24:19,2025-05-23 12:04:44,inactive,false,false,305 +U3253,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,evan.saeed@brightlabs.example,Evan Saeed,Product Manager,product,2024-10-14 09:24:19,2025-03-15 20:41:30,inactive,false,false,374 +U3254,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,peter.hill@brightlabs.example,Peter Hill,Workflow Analyst,operations,2024-09-06 05:24:19,2025-05-25 13:38:24,inactive,false,false,303 +U3255,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,kai.lopez@brightlabs.example,Kai Lopez,Sales Analyst,sales,2024-10-06 08:24:19,2025-06-16 23:26:25,active,true,false,281 +U3256,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,noah.shah@brightlabs.example,Noah Shah,Revenue Operations Manager,sales,2024-09-25 06:24:19,,provisioned,false,false, +U3257,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,leo.dubois@brightlabs.example,Leo Dubois,Founder,executive,2024-09-21 05:24:19,2025-05-23 15:49:55,inactive,false,false,305 +U3258,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,marcus.patel@brightlabs.example,Marcus Patel,FP&A Analyst,finance,2024-09-28 06:24:19,2025-05-03 00:15:06,inactive,false,false,325 +U3259,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,elena.tan@brightlabs.example,Elena Tan,Product Manager,product,2024-09-26 08:24:19,2025-05-20 01:06:33,inactive,false,false,308 +U3260,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,hannah.hart@brightlabs.example,Hannah Hart,Finance Manager,finance,2024-09-19 09:24:19,2025-04-21 05:40:31,inactive,false,false,337 +U3261,A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,CSM-EMEA,kenji.tan@northwindanalytics.example,Kenji Tan,Marketing Operations Lead,marketing,2024-09-07 04:49:08,2025-06-19 00:56:01,active,true,false,278 +U3262,A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,CSM-EMEA,mei.dubois@northwindanalytics.example,Mei Dubois,CFO,executive,2024-09-24 10:49:08,2025-06-13 07:09:40,active,true,false,284 +U3263,A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,CSM-EMEA,luis.alvarez@northwindanalytics.example,Luis Alvarez,CFO,executive,2024-09-30 11:49:08,2025-06-21 19:27:51,active,true,false,276 +U3264,A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,CSM-EMEA,helena.cole@northwindanalytics.example,Helena Cole,COO,executive,2024-09-08 05:49:08,2025-06-19 16:11:26,active,true,false,278 +U3265,A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,CSM-EMEA,hannah.rahman@northwindanalytics.example,Hannah Rahman,Marketing Operations Lead,marketing,2024-10-03 07:49:08,2025-06-16 19:45:09,active,true,false,281 +U3266,A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,CSM-EMEA,kai.hart@northwindanalytics.example,Kai Hart,Data Platform Manager,data,2024-08-23 11:49:08,2025-04-28 16:45:44,inactive,false,false,330 +U3267,A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,CSM-EMEA,maya.patel@northwindanalytics.example,Maya Patel,Insights Lead,analytics,2024-09-11 08:49:08,2025-06-19 10:18:46,active,true,false,278 +U3268,A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,CSM-EMEA,marta.ward@northwindanalytics.example,Marta Ward,BI Analyst,analytics,2024-09-21 08:49:08,2025-06-30 07:11:45,active,true,false,267 +U3269,A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,CSM-EMEA,mila.morgan@northwindanalytics.example,Mila Morgan,Operations Director,operations,2024-09-24 09:49:08,2025-06-24 16:53:51,active,true,false,273 +U3270,A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,CSM-EMEA,ben.meyer@northwindanalytics.example,Ben Meyer,Insights Lead,analytics,2024-08-29 11:49:08,2025-06-17 00:03:47,active,true,false,280 +U3271,A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,CSM-EMEA,alma.dubois@northwindanalytics.example,Alma Dubois,Insights Lead,analytics,2024-10-07 08:49:08,2025-06-22 20:20:43,active,true,false,275 +U3272,A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,CSM-EMEA,victor.brooks@northwindanalytics.example,Victor Brooks,Sales Analyst,sales,2024-10-05 06:49:08,2025-06-26 04:47:54,active,true,false,271 +U3273,A1031,Helio Holdings,healthcare,APAC,mid_market,AU,active,CSM-APAC,claire.lopez@helioholdings.example,Claire Lopez,Sales Analyst,sales,2025-03-10 05:18:16,2025-06-24 04:14:19,active,true,false,273 +U3274,A1031,Helio Holdings,healthcare,APAC,mid_market,AU,active,CSM-APAC,mei.silva@helioholdings.example,Mei Silva,Demand Gen Manager,marketing,2025-03-28 10:18:16,2025-06-30 19:29:32,active,true,false,267 +U3275,A1031,Helio Holdings,healthcare,APAC,mid_market,AU,active,CSM-APAC,aisha.sato@helioholdings.example,Aisha Sato,BI Analyst,analytics,2025-03-16 07:18:16,2025-06-27 21:27:06,active,true,false,270 +U3276,A1031,Helio Holdings,healthcare,APAC,mid_market,AU,active,CSM-APAC,arjun.sato@helioholdings.example,Arjun Sato,Founder,executive,2025-02-28 10:18:16,2025-06-17 17:53:24,active,true,false,280 +U3277,A1031,Helio Holdings,healthcare,APAC,mid_market,AU,active,CSM-APAC,kai.silva@helioholdings.example,Kai Silva,VP Data,executive,2025-03-23 09:18:16,2025-06-13 03:36:45,active,true,false,284 +U3278,A1031,Helio Holdings,healthcare,APAC,mid_market,AU,active,CSM-APAC,leo.brooks@helioholdings.example,Leo Brooks,Operations Manager,operations,2025-02-26 13:18:16,2025-06-26 19:32:06,active,true,false,271 +U3279,A1031,Helio Holdings,healthcare,APAC,mid_market,AU,active,CSM-APAC,lina.saeed@helioholdings.example,Lina Saeed,Analytics Manager,analytics,2025-02-17 07:18:16,2025-06-15 03:40:52,active,true,false,282 +U3280,A1031,Helio Holdings,healthcare,APAC,mid_market,AU,active,CSM-APAC,samir.price@helioholdings.example,Samir Price,Product Manager,product,2025-03-06 07:18:16,2025-06-22 03:02:11,active,true,false,275 +U3281,A1031,Helio Holdings,healthcare,APAC,mid_market,AU,active,CSM-APAC,samir.sato@helioholdings.example,Samir Sato,Founder,executive,2025-02-14 12:18:16,2025-06-28 18:25:38,active,true,false,269 +U3282,A1031,Helio Holdings,healthcare,APAC,mid_market,AU,active,CSM-APAC,aisha.rahman@helioholdings.example,Aisha Rahman,Product Manager,product,2025-02-22 11:18:16,2025-06-20 01:59:37,active,true,false,277 +U3283,A1032,Vertex Works,manufacturing,EMEA,mid_market,DE,churned,CSM-EMEA,lina.chen@vertexworks.example,Lina Chen,Data Platform Manager,data,2024-09-28 18:25:27,2025-05-13 19:34:58,inactive,false,false,315 +U3284,A1032,Vertex Works,manufacturing,EMEA,mid_market,DE,churned,CSM-EMEA,mateo.tan@vertexworks.example,Mateo Tan,Data Platform Manager,data,2024-09-16 16:25:27,2025-06-18 15:35:53,active,true,false,279 +U3285,A1032,Vertex Works,manufacturing,EMEA,mid_market,DE,churned,CSM-EMEA,jonas.lewis@vertexworks.example,Jonas Lewis,Operations Manager,operations,2024-10-18 17:25:27,2025-06-30 06:55:25,active,true,false,267 +U3286,A1032,Vertex Works,manufacturing,EMEA,mid_market,DE,churned,CSM-EMEA,priya.singh@vertexworks.example,Priya Singh,Analytics Manager,analytics,2024-10-19 21:25:27,2025-03-14 07:45:07,inactive,false,false,375 +U3287,A1032,Vertex Works,manufacturing,EMEA,mid_market,DE,churned,CSM-EMEA,samir.rossi@vertexworks.example,Samir Rossi,COO,executive,2024-09-26 19:25:27,2025-06-15 17:40:35,active,true,false,282 +U3288,A1032,Vertex Works,manufacturing,EMEA,mid_market,DE,churned,CSM-EMEA,naomi.reed@vertexworks.example,Naomi Reed,Data Platform Manager,data,2024-10-18 15:25:27,2025-06-27 13:15:05,active,true,false,270 +U3289,A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,CSM-East,priya.kim@lighthouseglobal.example,Priya Kim,Insights Lead,analytics,2024-11-27 07:50:01,2025-06-11 10:56:20,active,true,false,286 +U3290,A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,CSM-East,marcus.romero@lighthouseglobal.example,Marcus Romero,Data Platform Manager,data,2024-10-26 13:50:01,2025-06-13 06:59:57,active,true,false,284 +U3291,A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,CSM-East,arjun.lopez@lighthouseglobal.example,Arjun Lopez,Product Manager,product,2024-11-01 07:50:01,2025-06-26 08:26:51,active,true,false,271 +U3292,A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,CSM-East,marcus.saeed@lighthouseglobal.example,Marcus Saeed,Insights Lead,analytics,2024-11-26 09:50:01,2025-06-12 20:07:01,active,true,false,285 +U3293,A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,CSM-East,sofia.grant@lighthouseglobal.example,Sofia Grant,BI Analyst,analytics,2024-10-25 14:50:01,2025-06-15 03:21:44,active,true,false,282 +U3294,A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,CSM-East,nina.saeed@lighthouseglobal.example,Nina Saeed,Demand Gen Manager,marketing,2024-12-03 13:50:01,2025-06-11 05:57:19,active,true,false,286 +U3295,A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,CSM-East,arjun.rossi@lighthouseglobal.example,Arjun Rossi,Demand Gen Manager,marketing,2024-11-09 10:50:01,2025-06-26 14:15:16,active,true,false,271 +U3296,A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,CSM-East,elena.grant@lighthouseglobal.example,Elena Grant,Product Manager,product,2024-10-24 15:50:01,2025-06-27 20:30:49,active,true,false,270 +U3297,A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,CSM-East,marcus.lopez@lighthouseglobal.example,Marcus Lopez,Demand Gen Manager,marketing,2024-11-06 11:50:01,2025-06-12 17:08:34,active,true,false,285 +U3298,A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,CSM-East,kenji.desai@lighthouseglobal.example,Kenji Desai,Analytics Manager,analytics,2024-12-01 12:50:01,2025-06-13 02:31:02,active,true,false,284 +U3299,A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,CSM-East,marcus.desai@lighthouseglobal.example,Marcus Desai,Data Engineer,data,2024-11-30 09:50:01,2025-06-20 21:59:13,active,true,false,277 +U3300,A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,CSM-East,mila.dubois@lighthouseglobal.example,Mila Dubois,Operations Manager,operations,2024-11-09 09:50:01,2025-06-20 00:09:45,active,true,false,277 +U3301,A1034,Helio Partners,travel,NA,smb,CA,active,CSM-East,evan.kim@heliopartners.example,Evan Kim,Technical Program Manager,product,2025-01-11 20:59:06,2025-06-27 04:32:54,active,true,false,270 +U3302,A1034,Helio Partners,travel,NA,smb,CA,active,CSM-East,hannah.rahman@heliopartners.example,Hannah Rahman,Operations Manager,operations,2025-01-08 01:59:06,2025-06-26 18:11:33,active,true,false,271 +U3303,A1034,Helio Partners,travel,NA,smb,CA,active,CSM-East,owen.sato@heliopartners.example,Owen Sato,Sales Analyst,sales,2025-01-09 18:59:06,2025-06-30 15:28:58,active,true,false,267 +U3304,A1034,Helio Partners,travel,NA,smb,CA,active,CSM-East,naomi.turner@heliopartners.example,Naomi Turner,Product Manager,product,2024-12-28 01:59:06,2025-06-16 15:24:01,active,true,false,281 +U3305,A1034,Helio Partners,travel,NA,smb,CA,active,CSM-East,alma.chen@heliopartners.example,Alma Chen,Demand Gen Manager,marketing,2025-01-04 02:59:06,2025-06-25 07:09:01,active,true,false,272 +U3306,A1034,Helio Partners,travel,NA,smb,CA,active,CSM-East,marcus.ng@heliopartners.example,Marcus Ng,Demand Gen Manager,marketing,2024-12-24 00:59:06,2025-06-30 08:26:05,active,true,false,267 +U3307,A1034,Helio Partners,travel,NA,smb,CA,active,CSM-East,arjun.brooks@heliopartners.example,Arjun Brooks,Data Platform Manager,data,2024-12-12 02:59:06,2025-06-22 07:50:41,active,true,false,275 +U3308,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,aisha.keller@brightretail.example,Aisha Keller,Technical Program Manager,product,2025-03-13 00:06:57,,provisioned,false,false, +U3309,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,zoe.kim@brightretail.example,Zoe Kim,Revenue Operations Manager,sales,2025-03-03 02:06:57,2025-06-24 04:49:01,active,true,false,273 +U3310,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,owen.petrova@brightretail.example,Owen Petrova,Technical Program Manager,product,2025-03-17 20:06:57,2025-03-03 01:24:18,inactive,false,false,386 +U3311,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,marcus.morgan@brightretail.example,Marcus Morgan,Revenue Operations Manager,sales,2025-04-02 03:06:57,2025-06-12 11:57:01,active,true,false,285 +U3312,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,ben.singh@brightretail.example,Ben Singh,Demand Gen Manager,marketing,2025-03-19 00:06:57,2025-06-30 02:41:50,active,true,false,267 +U3313,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,zoe.ward@brightretail.example,Zoe Ward,CFO,executive,2025-04-12 00:06:57,2025-06-13 01:25:24,active,true,false,284 +U3314,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,marcus.patel@brightretail.example,Marcus Patel,Analytics Engineer,data,2025-03-19 23:06:57,2025-06-19 08:48:24,active,true,false,278 +U3315,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,marcus.desai@brightretail.example,Marcus Desai,FP&A Analyst,finance,2025-03-06 01:06:57,2025-06-25 02:50:49,active,true,false,272 +U3316,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,mei.tan@brightretail.example,Mei Tan,Operations Manager,operations,2025-03-11 02:06:57,2025-06-14 22:01:12,active,true,false,283 +U3317,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,samir.hill@brightretail.example,Samir Hill,Revenue Operations Manager,sales,2025-04-06 20:06:57,2025-06-21 05:26:16,active,true,false,276 +U3318,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,ava.hart@brightretail.example,Ava Hart,FP&A Analyst,finance,2025-02-26 03:06:57,2025-06-23 17:16:39,active,true,false,274 +U3319,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,ivy.turner@brightretail.example,Ivy Turner,Controller,finance,2025-04-03 21:06:57,2025-06-13 09:47:16,active,true,false,284 +U3320,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,marcus.kim@brightretail.example,Marcus Kim,CFO,executive,2025-03-23 22:06:57,2025-06-18 14:43:47,active,true,false,279 +U3321,A1036,Granite Holdings,education,NA,smb,US,churned,CSM-East,naomi.lewis@graniteholdings.example,Naomi Lewis,Sales Analyst,sales,2025-02-04 20:14:31,2025-04-24 01:56:18,inactive,false,false,334 +U3322,A1036,Granite Holdings,education,NA,smb,US,churned,CSM-East,daniel.tan@graniteholdings.example,Daniel Tan,Demand Gen Manager,marketing,2025-02-03 17:14:31,2025-05-09 07:20:37,inactive,false,false,319 +U3323,A1036,Granite Holdings,education,NA,smb,US,churned,CSM-East,kenji.hart@graniteholdings.example,Kenji Hart,Founder,executive,2025-01-13 20:14:31,2025-05-05 02:35:20,inactive,false,false,323 +U3324,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,isla.meyer@lighthousenetwork.example,Isla Meyer,Revenue Operations Manager,sales,2024-12-28 07:24:43,2025-06-13 19:39:32,active,true,false,284 +U3325,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,hannah.brooks@lighthousenetwork.example,Hannah Brooks,Demand Gen Manager,marketing,2024-12-05 10:24:43,2025-06-13 20:18:02,active,true,false,284 +U3326,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,hannah.meyer@lighthousenetwork.example,Hannah Meyer,Marketing Operations Lead,marketing,2024-12-17 13:24:43,2025-06-26 16:31:20,active,true,false,271 +U3327,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,arjun.patel@lighthousenetwork.example,Arjun Patel,Revenue Operations Manager,sales,2024-12-27 10:24:43,2025-06-11 10:22:03,active,true,false,286 +U3328,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,lina.kim@lighthousenetwork.example,Lina Kim,Sales Analyst,sales,2024-12-30 06:24:43,2025-06-16 09:25:00,active,true,false,281 +U3329,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,mei.park@lighthousenetwork.example,Mei Park,Demand Gen Manager,marketing,2025-01-01 14:24:43,2025-06-15 01:27:05,active,true,false,282 +U3330,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,mei.meyer@lighthousenetwork.example,Mei Meyer,Product Manager,product,2025-01-07 07:24:43,2025-06-14 12:14:34,active,true,false,283 +U3331,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,sofia.grant@lighthousenetwork.example,Sofia Grant,Revenue Operations Manager,sales,2024-12-22 10:24:43,2025-06-13 10:46:09,active,true,false,284 +U3332,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,aisha.lopez@lighthousenetwork.example,Aisha Lopez,Analytics Engineer,data,2024-12-24 08:24:43,2025-06-18 02:56:44,active,true,false,279 +U3333,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,ben.brooks@lighthousenetwork.example,Ben Brooks,Analytics Manager,analytics,2024-12-31 14:24:43,2025-06-29 07:43:53,active,true,false,268 +U3334,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,alma.saeed@lighthousenetwork.example,Alma Saeed,Marketing Operations Lead,marketing,2024-12-28 07:24:43,2025-06-14 03:50:24,active,true,false,283 +U3335,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,kai.nash@lighthousenetwork.example,Kai Nash,Revenue Operations Manager,sales,2024-12-17 09:24:43,2025-04-02 11:26:27,inactive,false,false,356 +U3336,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,derek.meyer@lighthousenetwork.example,Derek Meyer,Demand Gen Manager,marketing,2024-12-30 06:24:43,2025-06-18 16:33:49,active,true,false,279 +U3337,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,owen.alvarez@lighthousenetwork.example,Owen Alvarez,Marketing Operations Lead,marketing,2025-01-07 11:24:43,2025-06-29 14:49:26,active,true,false,268 +U3338,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,olivia.kim@lighthousenetwork.example,Olivia Kim,Insights Lead,analytics,2024-12-13 06:24:43,2025-04-06 17:42:56,inactive,false,false,352 +U3339,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,sofia.hart@lighthousenetwork.example,Sofia Hart,Technical Program Manager,product,2024-11-27 10:24:43,2025-04-20 05:27:41,inactive,false,false,338 +U3340,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,elena.hill@lighthousenetwork.example,Elena Hill,Controller,finance,2024-12-29 06:24:43,2025-06-15 09:47:20,active,true,false,282 +U3341,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,daniel.ng@lighthousenetwork.example,Daniel Ng,Operations Director,operations,2024-12-29 12:24:43,2025-06-12 01:00:47,active,true,false,285 +U3342,A1038,River Systems,logistics,APAC,smb,AU,active,CSM-APAC,luis.ward@riversystems.example,Luis Ward,Founder,executive,2024-11-23 11:09:31,2025-06-29 13:39:49,active,true,false,268 +U3343,A1038,River Systems,logistics,APAC,smb,AU,active,CSM-APAC,nina.keller@riversystems.example,Nina Keller,Demand Gen Manager,marketing,2024-12-14 16:09:31,2025-06-20 02:36:28,active,true,false,277 +U3344,A1038,River Systems,logistics,APAC,smb,AU,active,CSM-APAC,ivy.khan@riversystems.example,Ivy Khan,Analytics Engineer,data,2024-12-31 11:09:31,2025-06-25 20:39:20,active,true,false,272 +U3345,A1038,River Systems,logistics,APAC,smb,AU,active,CSM-APAC,mila.keller@riversystems.example,Mila Keller,Data Platform Manager,data,2024-11-22 15:09:31,2025-05-16 17:35:27,inactive,false,false,312 +U3346,A1038,River Systems,logistics,APAC,smb,AU,active,CSM-APAC,jonas.petrova@riversystems.example,Jonas Petrova,Analytics Manager,analytics,2024-12-12 16:09:31,2025-06-11 00:57:12,active,true,false,286 +U3347,A1039,Nova Group,media,EMEA,smb,FR,active,CSM-EMEA,aisha.nash@novagroup.example,Aisha Nash,Marketing Operations Lead,marketing,2025-03-04 01:26:48,2025-06-25 16:21:30,active,true,false,272 +U3348,A1039,Nova Group,media,EMEA,smb,FR,active,CSM-EMEA,peter.singh@novagroup.example,Peter Singh,Founder,executive,2025-03-14 01:26:48,2025-06-11 07:20:04,active,true,false,286 +U3349,A1039,Nova Group,media,EMEA,smb,FR,active,CSM-EMEA,maya.morgan@novagroup.example,Maya Morgan,Operations Manager,operations,2025-02-19 22:26:48,2025-06-25 23:16:56,active,true,false,272 +U3350,A1039,Nova Group,media,EMEA,smb,FR,active,CSM-EMEA,sofia.shah@novagroup.example,Sofia Shah,Finance Manager,finance,2025-02-20 21:26:48,2025-06-14 16:38:55,active,true,false,283 +U3351,A1039,Nova Group,media,EMEA,smb,FR,active,CSM-EMEA,lena.brooks@novagroup.example,Lena Brooks,Product Manager,product,2025-02-24 18:26:48,2025-06-15 02:00:14,active,true,false,282 +U3352,A1039,Nova Group,media,EMEA,smb,FR,active,CSM-EMEA,helena.rossi@novagroup.example,Helena Rossi,VP Data,executive,2025-02-14 20:26:48,2025-06-25 07:53:38,active,true,false,272 +U3353,A1039,Nova Group,media,EMEA,smb,FR,active,CSM-EMEA,tomas.tan@novagroup.example,Tomas Tan,CFO,executive,2025-03-06 22:26:48,2025-06-17 17:04:07,active,true,false,280 +U3354,A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,CSM-APAC,helena.shah@harborcollective.example,Helena Shah,VP Data,executive,2025-01-04 14:58:20,2025-06-16 06:24:26,active,true,false,281 +U3355,A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,CSM-APAC,zoe.ng@harborcollective.example,Zoe Ng,Analytics Manager,analytics,2024-12-16 17:58:20,2025-06-21 12:37:43,active,true,false,276 +U3356,A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,CSM-APAC,owen.cole@harborcollective.example,Owen Cole,Analytics Manager,analytics,2025-01-12 13:58:20,2025-06-25 00:23:10,active,true,false,272 +U3357,A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,CSM-APAC,elena.dubois@harborcollective.example,Elena Dubois,Controller,finance,2024-12-20 16:58:20,2025-06-25 12:01:55,active,true,false,272 +U3358,A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,CSM-APAC,tomas.keller@harborcollective.example,Tomas Keller,Data Platform Manager,data,2025-01-17 12:58:20,2025-06-24 08:14:02,active,true,false,273 +U3359,A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,CSM-APAC,noah.reed@harborcollective.example,Noah Reed,Data Platform Manager,data,2024-12-24 20:58:20,2025-05-03 19:42:59,inactive,false,false,325 +U3360,A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,CSM-APAC,peter.fischer@harborcollective.example,Peter Fischer,Revenue Operations Manager,sales,2025-01-14 16:58:20,2025-06-22 10:55:31,active,true,false,275 +U3361,A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,CSM-APAC,sofia.petrova@harborcollective.example,Sofia Petrova,Sales Analyst,sales,2025-01-09 12:58:20,2025-06-29 20:50:37,active,true,false,268 +U3362,A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,CSM-APAC,mila.rahman@harborcollective.example,Mila Rahman,FP&A Analyst,finance,2024-12-18 14:58:20,2025-06-24 00:36:34,active,true,false,273 +U3363,A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,CSM-APAC,peter.turner@harborcollective.example,Peter Turner,Founder,executive,2024-12-22 19:58:20,2025-06-16 16:59:57,active,true,false,281 +U3364,A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,CSM-APAC,derek.patel@harborcollective.example,Derek Patel,Data Platform Manager,data,2024-12-21 20:58:20,2025-04-15 22:25:12,inactive,false,false,343 +U3365,A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,CSM-APAC,ava.desai@harborcollective.example,Ava Desai,Data Platform Manager,data,2024-12-28 13:58:20,2025-06-22 22:43:18,active,true,false,275 +U3366,A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,CSM-EMEA,evan.lopez@cedarlogistics.example,Evan Lopez,FP&A Analyst,finance,2024-09-15 00:07:41,2025-06-26 03:35:46,active,true,false,271 +U3367,A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,CSM-EMEA,tomas.saeed@cedarlogistics.example,Tomas Saeed,Analytics Manager,analytics,2024-08-19 02:07:41,2025-06-30 03:04:29,active,true,false,267 +U3368,A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,CSM-EMEA,marta.rossi@cedarlogistics.example,Marta Rossi,Product Manager,product,2024-09-05 20:07:41,2025-06-15 20:58:45,active,true,false,282 +U3369,A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,CSM-EMEA,tomas.hart@cedarlogistics.example,Tomas Hart,BI Analyst,analytics,2024-08-13 20:07:41,2025-06-24 21:42:08,active,true,false,273 +U3370,A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,CSM-EMEA,olivia.patel@cedarlogistics.example,Olivia Patel,Sales Analyst,sales,2024-08-12 01:07:41,2025-06-21 22:03:00,active,true,false,276 +U3371,A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,CSM-EMEA,daniel.rahman@cedarlogistics.example,Daniel Rahman,Revenue Operations Manager,sales,2024-08-19 18:07:41,2025-06-24 16:04:03,active,true,false,273 +U3372,A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,CSM-EMEA,aisha.lewis@cedarlogistics.example,Aisha Lewis,Data Platform Manager,data,2024-08-13 18:07:41,2025-06-14 15:52:46,active,true,false,283 +U3373,A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,CSM-EMEA,mateo.morgan@cedarlogistics.example,Mateo Morgan,Data Platform Manager,data,2024-09-15 22:07:41,2025-04-29 05:18:27,inactive,false,false,329 +U3374,A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,CSM-EMEA,leo.turner@cedarlogistics.example,Leo Turner,Finance Manager,finance,2024-08-30 20:07:41,2025-06-30 04:56:55,active,true,false,267 +U3375,A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,CSM-EMEA,kenji.hart@cedarlogistics.example,Kenji Hart,BI Analyst,analytics,2024-09-16 23:07:41,2025-03-08 00:24:56,inactive,false,false,381 +U3376,A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,CSM-EMEA,zoe.kim@cedarlogistics.example,Zoe Kim,Revenue Operations Manager,sales,2024-08-10 18:07:41,2025-06-22 12:48:38,active,true,false,275 +U3377,A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,CSM-EMEA,kai.shah@cedarlogistics.example,Kai Shah,Operations Director,operations,2024-09-03 18:07:41,2025-06-23 04:34:49,active,true,false,274 +U3378,A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,CSM-APAC,olivia.petrova@northwindlabs.example,Olivia Petrova,Product Manager,product,2024-10-27 19:52:42,2025-06-29 02:23:41,active,true,false,268 +U3379,A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,CSM-APAC,ivy.saeed@northwindlabs.example,Ivy Saeed,Sales Analyst,sales,2024-09-21 19:52:42,2025-06-29 18:22:25,active,true,false,268 +U3380,A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,CSM-APAC,leo.kim@northwindlabs.example,Leo Kim,Founder,executive,2024-10-16 13:52:42,2025-06-28 21:08:42,active,true,false,269 +U3381,A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,CSM-APAC,zoe.petrova@northwindlabs.example,Zoe Petrova,Insights Lead,analytics,2024-10-23 17:52:42,2025-06-10 10:11:10,active,true,false,287 +U3382,A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,CSM-APAC,maya.saeed@northwindlabs.example,Maya Saeed,Workflow Analyst,operations,2024-09-19 17:52:42,2025-06-26 23:39:11,active,true,false,271 +U3383,A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,CSM-APAC,alma.price@northwindlabs.example,Alma Price,Founder,executive,2024-09-28 17:52:42,2025-06-16 10:45:06,active,true,false,281 +U3384,A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,CSM-APAC,nina.nash@northwindlabs.example,Nina Nash,Sales Analyst,sales,2024-10-28 15:52:42,2025-03-21 02:38:26,inactive,false,false,368 +U3385,A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,CSM-APAC,kai.turner@northwindlabs.example,Kai Turner,FP&A Analyst,finance,2024-10-24 19:52:42,2025-06-17 17:38:18,active,true,false,280 +U3386,A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,CSM-APAC,lena.cole@northwindlabs.example,Lena Cole,Revenue Operations Manager,sales,2024-10-31 12:52:42,2025-06-21 03:09:37,active,true,false,276 +U3387,A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,CSM-APAC,aisha.hill@northwindlabs.example,Aisha Hill,Demand Gen Manager,marketing,2024-10-10 19:52:42,2025-06-26 21:47:15,active,true,false,271 +U3388,A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,CSM-APAC,hannah.rahman@northwindlabs.example,Hannah Rahman,Revenue Operations Manager,sales,2024-09-24 13:52:42,2025-06-24 20:40:05,active,true,false,273 +U3389,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,elena.keller@lighthouseworks.example,Elena Keller,BI Analyst,analytics,2024-11-13 15:03:18,2025-06-27 21:02:55,active,true,false,270 +U3390,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,lina.morgan@lighthouseworks.example,Lina Morgan,Insights Lead,analytics,2024-11-28 14:03:18,2025-05-02 11:59:12,inactive,false,false,326 +U3391,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,tara.park@lighthouseworks.example,Tara Park,Data Engineer,data,2024-12-02 22:03:18,2025-06-11 02:34:43,active,true,false,286 +U3392,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,ben.hart@lighthouseworks.example,Ben Hart,Marketing Operations Lead,marketing,2024-12-03 14:03:18,2025-06-26 04:34:34,active,true,false,271 +U3393,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,maya.rahman@lighthouseworks.example,Maya Rahman,Operations Manager,operations,2024-11-15 19:03:18,2025-06-20 03:11:32,active,true,false,277 +U3394,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,helena.tan@lighthouseworks.example,Helena Tan,Data Platform Manager,data,2024-12-05 15:03:18,2025-05-10 20:01:32,inactive,false,false,318 +U3395,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,arjun.cole@lighthouseworks.example,Arjun Cole,VP Data,executive,2024-11-04 17:03:18,2025-06-20 02:19:18,active,true,false,277 +U3396,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,lena.chen@lighthouseworks.example,Lena Chen,BI Analyst,analytics,2024-11-16 22:03:18,2025-06-12 01:10:04,active,true,false,285 +U3397,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,sofia.meyer@lighthouseworks.example,Sofia Meyer,Founder,executive,2024-11-22 18:03:18,2025-06-30 00:41:33,active,true,false,267 +U3398,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,lena.lopez@lighthouseworks.example,Lena Lopez,Technical Program Manager,product,2024-11-26 21:03:18,2025-06-28 16:15:36,active,true,false,269 +U3399,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,samir.ward@lighthouseworks.example,Samir Ward,Product Manager,product,2024-11-20 15:03:18,2025-06-19 13:55:23,active,true,false,278 +U3400,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,zoe.patel@lighthouseworks.example,Zoe Patel,CFO,executive,2024-11-12 22:03:18,2025-06-27 07:15:23,active,true,false,270 +U3401,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,nina.alvarez@lighthouseworks.example,Nina Alvarez,BI Analyst,analytics,2024-11-15 19:03:18,2025-06-14 14:58:31,active,true,false,283 +U3402,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,leo.khan@lighthouseworks.example,Leo Khan,COO,executive,2024-11-26 18:03:18,2025-06-28 09:40:03,active,true,false,269 +U3403,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,mei.rossi@lighthouseworks.example,Mei Rossi,Marketing Operations Lead,marketing,2024-11-05 18:03:18,2025-06-15 05:07:12,active,true,false,282 +U3404,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,victor.cole@lighthouseworks.example,Victor Cole,Finance Manager,finance,2024-10-28 15:03:18,2025-06-26 09:28:21,active,true,false,271 +U3405,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,tara.chen@lighthouseworks.example,Tara Chen,Analytics Engineer,data,2024-11-13 19:03:18,2025-06-24 05:40:54,active,true,false,273 +U3406,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,evan.rossi@lighthouseworks.example,Evan Rossi,Controller,finance,2024-11-07 20:03:18,2025-06-24 06:55:54,active,true,false,273 +U3407,A1044,Summit Holdings,software,EMEA,smb,NL,active,CSM-EMEA,hannah.saeed@summitholdings.example,Hannah Saeed,Sales Analyst,sales,2024-11-03 00:32:29,2025-06-19 20:21:24,active,true,false,278 +U3408,A1044,Summit Holdings,software,EMEA,smb,NL,active,CSM-EMEA,kenji.ward@summitholdings.example,Kenji Ward,Workflow Analyst,operations,2024-11-02 07:32:29,2025-06-10 11:54:15,active,true,false,287 +U3409,A1044,Summit Holdings,software,EMEA,smb,NL,active,CSM-EMEA,maya.reed@summitholdings.example,Maya Reed,Revenue Operations Manager,sales,2024-10-20 05:32:29,2025-06-16 14:17:11,active,true,false,281 +U3410,A1044,Summit Holdings,software,EMEA,smb,NL,active,CSM-EMEA,kenji.lopez@summitholdings.example,Kenji Lopez,Demand Gen Manager,marketing,2024-10-30 05:32:29,2025-06-22 09:33:16,active,true,false,275 +U3411,A1044,Summit Holdings,software,EMEA,smb,NL,active,CSM-EMEA,ivy.reed@summitholdings.example,Ivy Reed,Sales Analyst,sales,2024-10-23 06:32:29,2025-06-14 15:47:35,active,true,false,283 +U3412,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,lena.patel@novaholdings.example,Lena Patel,Workflow Analyst,operations,2024-11-22 12:05:10,2025-06-19 12:52:50,active,true,false,278 +U3413,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,mei.shah@novaholdings.example,Mei Shah,FP&A Analyst,finance,2024-11-05 11:05:10,2025-06-13 13:20:07,active,true,false,284 +U3414,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,mateo.nash@novaholdings.example,Mateo Nash,CFO,executive,2024-11-24 13:05:10,2025-06-24 01:47:15,active,true,false,273 +U3415,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,hannah.morgan@novaholdings.example,Hannah Morgan,Workflow Analyst,operations,2024-11-15 09:05:10,2025-06-16 11:08:04,active,true,false,281 +U3416,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,leo.hill@novaholdings.example,Leo Hill,Technical Program Manager,product,2024-11-21 14:05:10,2025-06-23 19:45:44,active,true,false,274 +U3417,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,nina.cole@novaholdings.example,Nina Cole,Analytics Engineer,data,2024-11-12 14:05:10,2025-06-24 23:46:24,active,true,false,273 +U3418,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,mei.nash@novaholdings.example,Mei Nash,FP&A Analyst,finance,2024-11-27 14:05:10,2025-06-22 02:59:08,active,true,false,275 +U3419,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,owen.petrova@novaholdings.example,Owen Petrova,Sales Analyst,sales,2024-12-04 11:05:10,2025-06-25 20:09:54,active,true,false,272 +U3420,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,samir.price@novaholdings.example,Samir Price,Revenue Operations Manager,sales,2024-11-10 11:05:10,2025-06-17 21:36:59,active,true,false,280 +U3421,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,alma.meyer@novaholdings.example,Alma Meyer,Insights Lead,analytics,2024-12-16 15:05:10,2025-06-21 02:10:19,active,true,false,276 +U3422,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,derek.saeed@novaholdings.example,Derek Saeed,Technical Program Manager,product,2024-11-15 11:05:10,2025-06-13 07:50:27,active,true,false,284 +U3423,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,victor.lopez@novaholdings.example,Victor Lopez,Operations Director,operations,2024-11-15 15:05:10,2025-06-11 20:09:42,active,true,false,286 +U3424,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,leo.brooks@novaholdings.example,Leo Brooks,Analytics Engineer,data,2024-12-08 10:05:10,2025-06-25 07:04:14,active,true,false,272 +U3425,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,peter.petrova@novaholdings.example,Peter Petrova,Sales Analyst,sales,2024-11-19 12:05:10,2025-06-21 01:09:34,active,true,false,276 +U3426,A1046,Pioneer Solutions,education,NA,smb,CA,active,CSM-East,naomi.saeed@pioneersolutions.example,Naomi Saeed,Finance Manager,finance,2024-10-19 17:09:12,2025-06-18 04:26:36,active,true,false,279 +U3427,A1046,Pioneer Solutions,education,NA,smb,CA,active,CSM-East,leo.ward@pioneersolutions.example,Leo Ward,Insights Lead,analytics,2024-11-14 14:09:12,2025-03-18 12:31:30,inactive,false,false,371 +U3428,A1046,Pioneer Solutions,education,NA,smb,CA,active,CSM-East,helena.ward@pioneersolutions.example,Helena Ward,Sales Analyst,sales,2024-11-08 19:09:12,2025-06-29 19:46:34,active,true,false,268 +U3429,A1046,Pioneer Solutions,education,NA,smb,CA,active,CSM-East,elena.park@pioneersolutions.example,Elena Park,Analytics Manager,analytics,2024-11-12 16:09:12,2025-06-10 13:08:57,active,true,false,287 +U3430,A1046,Pioneer Solutions,education,NA,smb,CA,active,CSM-East,maya.saeed@pioneersolutions.example,Maya Saeed,FP&A Analyst,finance,2024-11-04 19:09:12,2025-06-26 23:39:18,active,true,false,271 +U3431,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,leo.singh@orchidglobal.example,Leo Singh,Analytics Engineer,data,2024-11-02 03:06:00,2025-06-23 14:21:24,active,true,false,274 +U3432,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,derek.tan@orchidglobal.example,Derek Tan,Sales Analyst,sales,2024-11-09 03:06:00,2025-06-28 04:24:08,active,true,false,269 +U3433,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,lina.kim@orchidglobal.example,Lina Kim,Demand Gen Manager,marketing,2024-10-20 06:06:00,2025-06-22 19:56:49,active,true,false,275 +U3434,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,mila.dubois@orchidglobal.example,Mila Dubois,Insights Lead,analytics,2024-11-18 04:06:00,2025-06-11 22:52:59,active,true,false,286 +U3435,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,kenji.lewis@orchidglobal.example,Kenji Lewis,BI Analyst,analytics,2024-11-24 07:06:00,2025-06-16 21:31:46,active,true,false,281 +U3436,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,mila.rossi@orchidglobal.example,Mila Rossi,Demand Gen Manager,marketing,2024-10-16 02:06:00,2025-06-23 06:38:34,active,true,false,274 +U3437,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,luis.sato@orchidglobal.example,Luis Sato,Operations Manager,operations,2024-11-01 02:06:00,2025-06-27 22:34:14,active,true,false,270 +U3438,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,maya.patel@orchidglobal.example,Maya Patel,Operations Director,operations,2024-10-15 07:06:00,2025-06-20 11:48:33,active,true,false,277 +U3439,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,jonas.rossi@orchidglobal.example,Jonas Rossi,CFO,executive,2024-11-28 00:06:00,2025-06-30 18:24:04,active,true,false,267 +U3440,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,peter.brooks@orchidglobal.example,Peter Brooks,Analytics Manager,analytics,2024-10-19 08:06:00,2025-06-14 22:57:36,active,true,false,283 +U3441,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,nina.kim@orchidglobal.example,Nina Kim,Data Engineer,data,2024-11-29 03:06:00,2025-06-21 01:02:36,active,true,false,276 +U3442,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,victor.desai@orchidglobal.example,Victor Desai,Demand Gen Manager,marketing,2024-10-21 08:06:00,2025-06-15 08:25:45,active,true,false,282 +U3443,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,leo.kim@orchidglobal.example,Leo Kim,Analytics Manager,analytics,2024-10-25 00:06:00,2025-06-23 15:09:12,active,true,false,274 +U3444,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,mateo.grant@orchidglobal.example,Mateo Grant,Analytics Manager,analytics,2024-11-24 04:06:00,2025-06-11 13:20:35,active,true,false,286 +U3445,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,daniel.grant@orchidglobal.example,Daniel Grant,Demand Gen Manager,marketing,2024-11-04 00:06:00,2025-06-16 23:50:23,active,true,false,281 +U3446,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,helena.grant@orchidglobal.example,Helena Grant,Revenue Operations Manager,sales,2024-10-15 00:06:00,2025-06-27 01:23:30,active,true,false,270 +U3447,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,leo.shah@orchidglobal.example,Leo Shah,Founder,executive,2024-10-30 02:06:00,2025-06-26 22:35:30,active,true,false,271 +U3448,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,mila.silva@orchidglobal.example,Mila Silva,Data Engineer,data,2024-11-06 02:06:00,2025-06-29 12:03:45,active,true,false,268 +U3449,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,marcus.lewis@orchidglobal.example,Marcus Lewis,Product Manager,product,2024-11-04 08:06:00,2025-06-28 15:48:29,active,true,false,269 +U3450,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,owen.tan@orchidcapital.example,Owen Tan,Data Platform Manager,data,2025-03-11 01:00:18,2025-06-16 09:02:28,active,true,false,281 +U3451,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,priya.rossi@orchidcapital.example,Priya Rossi,Technical Program Manager,product,2025-03-21 03:00:18,2025-06-14 19:43:04,active,true,false,283 +U3452,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,isla.cole@orchidcapital.example,Isla Cole,CFO,executive,2025-03-04 04:00:18,2025-06-23 04:24:35,active,true,false,274 +U3453,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,peter.park@orchidcapital.example,Peter Park,Analytics Manager,analytics,2025-03-21 01:00:18,2025-06-29 03:00:17,active,true,false,268 +U3454,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,sofia.kim@orchidcapital.example,Sofia Kim,Finance Manager,finance,2025-03-26 01:00:18,2025-06-16 02:06:11,active,true,false,281 +U3455,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,alma.keller@orchidcapital.example,Alma Keller,Revenue Operations Manager,sales,2025-03-20 03:00:18,2025-06-14 00:47:17,active,true,false,283 +U3456,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,mila.meyer@orchidcapital.example,Mila Meyer,CFO,executive,2025-03-28 01:00:18,2025-06-22 23:47:11,active,true,false,275 +U3457,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,tomas.desai@orchidcapital.example,Tomas Desai,Finance Manager,finance,2025-02-16 23:00:18,2025-06-14 22:37:29,active,true,false,283 +U3458,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,marcus.desai@orchidcapital.example,Marcus Desai,Sales Analyst,sales,2025-03-20 00:00:18,2025-06-15 15:34:49,active,true,false,282 +U3459,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,ben.keller@orchidcapital.example,Ben Keller,Data Engineer,data,2025-03-28 03:00:18,2025-04-15 18:39:24,inactive,false,false,343 +U3460,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,hannah.fischer@orchidcapital.example,Hannah Fischer,Sales Analyst,sales,2025-03-31 20:00:18,2025-06-16 17:50:55,active,true,false,281 +U3461,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,mateo.desai@orchidcapital.example,Mateo Desai,Operations Manager,operations,2025-02-18 23:00:18,2025-05-10 17:46:23,inactive,false,false,318 +U3462,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,zoe.nash@orchidcapital.example,Zoe Nash,Revenue Operations Manager,sales,2025-02-27 04:00:18,2025-06-24 03:03:54,active,true,false,273 +U3463,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,kenji.price@orchidcapital.example,Kenji Price,Workflow Analyst,operations,2025-03-23 01:00:18,2025-06-27 08:15:55,active,true,false,270 +U3464,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,ivy.hill@orchidcapital.example,Ivy Hill,Finance Manager,finance,2025-03-22 02:00:18,2025-06-26 06:02:24,active,true,false,271 +U3465,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,aisha.nash@orchidcapital.example,Aisha Nash,Technical Program Manager,product,2025-03-07 04:00:18,2025-04-06 10:10:09,inactive,false,false,352 +U3466,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,kai.ng@orchidcapital.example,Kai Ng,COO,executive,2025-03-23 04:00:18,2025-06-28 21:03:26,active,true,false,269 +U3467,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,nina.fischer@northwindnetwork.example,Nina Fischer,Technical Program Manager,product,2024-12-07 02:19:33,2025-06-17 04:43:22,active,true,false,280 +U3468,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,ben.romero@northwindnetwork.example,Ben Romero,FP&A Analyst,finance,2024-11-12 06:19:33,2025-03-31 21:46:51,inactive,false,false,358 +U3469,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,luis.dubois@northwindnetwork.example,Luis Dubois,Finance Manager,finance,2024-11-14 09:19:33,2025-06-13 15:37:43,active,true,false,284 +U3470,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,nina.fischer2@northwindnetwork.example,Nina Fischer,Marketing Operations Lead,marketing,2024-11-28 06:19:33,2025-06-19 23:53:57,active,true,false,278 +U3471,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,lena.reed@northwindnetwork.example,Lena Reed,Workflow Analyst,operations,2024-12-02 09:19:33,2025-06-30 08:00:29,active,true,false,267 +U3472,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,lena.hill@northwindnetwork.example,Lena Hill,BI Analyst,analytics,2024-12-18 08:19:33,2025-06-11 15:34:38,active,true,false,286 +U3473,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,samir.cole@northwindnetwork.example,Samir Cole,Sales Analyst,sales,2024-11-19 05:19:33,2025-06-24 21:51:58,active,true,false,273 +U3474,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,maya.kim@northwindnetwork.example,Maya Kim,Analytics Engineer,data,2024-12-15 02:19:33,2025-06-24 00:05:08,active,true,false,273 +U3475,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,peter.khan@northwindnetwork.example,Peter Khan,Marketing Operations Lead,marketing,2024-11-15 08:19:33,2025-04-26 04:26:27,inactive,false,false,332 +U3476,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,sofia.petrova@northwindnetwork.example,Sofia Petrova,Demand Gen Manager,marketing,2024-11-30 08:19:33,2025-06-18 10:49:55,active,true,false,279 +U3477,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,elena.turner@northwindnetwork.example,Elena Turner,Data Platform Manager,data,2024-12-07 06:19:33,2025-06-22 11:19:59,active,true,false,275 +U3478,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,ivy.lewis@northwindnetwork.example,Ivy Lewis,FP&A Analyst,finance,2024-12-17 05:19:33,2025-06-26 02:57:44,active,true,false,271 +U3479,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,lena.tan@northwindnetwork.example,Lena Tan,Marketing Operations Lead,marketing,2024-11-16 06:19:33,2025-06-18 03:24:03,active,true,false,279 +U3480,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,lena.petrova@northwindnetwork.example,Lena Petrova,Workflow Analyst,operations,2024-12-08 08:19:33,2025-06-14 21:58:05,active,true,false,283 +U3481,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,alma.cole@northwindnetwork.example,Alma Cole,Analytics Engineer,data,2024-11-22 07:19:33,2025-06-29 18:39:45,active,true,false,268 +U3482,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,owen.shah@northwindnetwork.example,Owen Shah,Product Manager,product,2024-11-26 05:19:33,2025-06-14 01:52:17,active,true,false,283 +U3483,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,elena.grant@northwindnetwork.example,Elena Grant,Data Engineer,data,2024-12-21 04:19:33,2025-06-30 04:45:45,active,true,false,267 +U3484,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,claire.chen@northwindnetwork.example,Claire Chen,Founder,executive,2024-12-01 09:19:33,2025-06-18 08:19:55,active,true,false,279 +U3485,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,daniel.nash@northwindnetwork.example,Daniel Nash,Marketing Operations Lead,marketing,2024-12-16 10:19:33,2025-06-23 14:41:57,active,true,false,274 +U3486,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,leo.shah@northwindnetwork.example,Leo Shah,Analytics Engineer,data,2024-12-19 10:19:33,2025-06-14 10:13:06,active,true,false,283 +U3487,A1050,Cedar Energy,software,APAC,smb,JP,active,CSM-APAC,claire.tan@cedarenergy.example,Claire Tan,BI Analyst,analytics,2025-03-16 14:48:30,2025-06-26 07:41:42,active,true,false,271 +U3488,A1050,Cedar Energy,software,APAC,smb,JP,active,CSM-APAC,evan.fischer@cedarenergy.example,Evan Fischer,Operations Director,operations,2025-03-05 20:48:30,2025-06-19 12:46:28,active,true,false,278 +U3489,A1050,Cedar Energy,software,APAC,smb,JP,active,CSM-APAC,sofia.hill@cedarenergy.example,Sofia Hill,CFO,executive,2025-03-25 22:48:30,2025-06-15 02:51:11,active,true,false,282 +U3490,A1050,Cedar Energy,software,APAC,smb,JP,active,CSM-APAC,sofia.ward@cedarenergy.example,Sofia Ward,Data Engineer,data,2025-03-02 22:48:30,2025-06-22 04:24:23,active,true,false,275 +U3491,A1051,Lighthouse Systems,media,EMEA,smb,UK,active,CSM-EMEA,aisha.romero@lighthousesystems.example,Aisha Romero,VP Data,executive,2025-03-20 06:44:10,2025-06-22 11:00:00,active,true,false,275 +U3492,A1051,Lighthouse Systems,media,EMEA,smb,UK,active,CSM-EMEA,evan.brooks@lighthousesystems.example,Evan Brooks,Analytics Manager,analytics,2025-02-27 10:44:10,2025-04-03 12:25:10,inactive,false,false,355 +U3493,A1051,Lighthouse Systems,media,EMEA,smb,UK,active,CSM-EMEA,noah.lewis@lighthousesystems.example,Noah Lewis,Workflow Analyst,operations,2025-03-22 10:44:10,2025-05-01 01:34:40,inactive,false,false,327 +U3494,A1051,Lighthouse Systems,media,EMEA,smb,UK,active,CSM-EMEA,zoe.price@lighthousesystems.example,Zoe Price,Marketing Operations Lead,marketing,2025-03-25 06:44:10,2025-04-22 23:29:46,inactive,false,false,336 +U3495,A1051,Lighthouse Systems,media,EMEA,smb,UK,active,CSM-EMEA,naomi.reed@lighthousesystems.example,Naomi Reed,Controller,finance,2025-04-01 05:44:10,2025-06-17 19:00:16,active,true,false,280 +U3496,A1051,Lighthouse Systems,media,EMEA,smb,UK,active,CSM-EMEA,mateo.lewis@lighthousesystems.example,Mateo Lewis,Revenue Operations Manager,sales,2025-04-08 04:44:10,2025-06-23 19:40:27,active,true,false,274 +U3497,A1051,Lighthouse Systems,media,EMEA,smb,UK,active,CSM-EMEA,isla.grant@lighthousesystems.example,Isla Grant,FP&A Analyst,finance,2025-03-07 02:44:10,2025-06-20 08:11:45,active,true,false,277 +U3498,A1052,Sierra Labs,software,APAC,mid_market,NZ,active,CSM-APAC,jonas.park@sierralabs.example,Jonas Park,BI Analyst,analytics,2024-12-12 22:54:21,2025-06-10 22:15:41,active,true,false,287 +U3499,A1052,Sierra Labs,software,APAC,mid_market,NZ,active,CSM-APAC,mila.dubois@sierralabs.example,Mila Dubois,Marketing Operations Lead,marketing,2024-12-14 21:54:21,2025-06-26 23:52:16,active,true,false,271 +U3500,A1052,Sierra Labs,software,APAC,mid_market,NZ,active,CSM-APAC,leo.lewis@sierralabs.example,Leo Lewis,Technical Program Manager,product,2024-12-12 03:54:21,2025-06-13 15:06:25,active,true,false,284 +U3501,A1052,Sierra Labs,software,APAC,mid_market,NZ,active,CSM-APAC,aisha.tan@sierralabs.example,Aisha Tan,Marketing Operations Lead,marketing,2024-12-26 21:54:21,2025-03-22 22:35:20,inactive,false,false,367 +U3502,A1052,Sierra Labs,software,APAC,mid_market,NZ,active,CSM-APAC,mei.reed@sierralabs.example,Mei Reed,Operations Director,operations,2024-12-29 04:54:21,2025-06-21 09:32:21,active,true,false,276 +U3503,A1052,Sierra Labs,software,APAC,mid_market,NZ,active,CSM-APAC,victor.ng@sierralabs.example,Victor Ng,Revenue Operations Manager,sales,2025-01-08 03:54:21,2025-06-19 20:36:33,active,true,false,278 +U3504,A1052,Sierra Labs,software,APAC,mid_market,NZ,active,CSM-APAC,mila.nash@sierralabs.example,Mila Nash,Data Platform Manager,data,2024-12-07 04:54:21,2025-06-11 07:42:32,active,true,false,286 +U3505,A1052,Sierra Labs,software,APAC,mid_market,NZ,active,CSM-APAC,victor.saeed@sierralabs.example,Victor Saeed,Revenue Operations Manager,sales,2025-01-05 03:54:21,2025-06-25 14:22:45,active,true,false,272 +U3506,A1052,Sierra Labs,software,APAC,mid_market,NZ,active,CSM-APAC,hannah.tan@sierralabs.example,Hannah Tan,Analytics Manager,analytics,2024-12-26 01:54:21,2025-06-17 05:33:26,active,true,false,280 +U3507,A1052,Sierra Labs,software,APAC,mid_market,NZ,active,CSM-APAC,ava.rahman@sierralabs.example,Ava Rahman,Sales Analyst,sales,2025-01-08 21:54:21,2025-06-13 17:51:38,active,true,false,284 +U3508,A1053,Bright Health,media,NA,mid_market,CA,active,CSM-East,owen.petrova@brighthealth.example,Owen Petrova,Operations Director,operations,2024-10-26 18:24:29,2025-06-20 07:54:56,active,true,false,277 +U3509,A1053,Bright Health,media,NA,mid_market,CA,active,CSM-East,alma.park@brighthealth.example,Alma Park,Data Engineer,data,2024-10-18 13:24:29,2025-04-01 19:08:56,inactive,false,false,357 +U3510,A1053,Bright Health,media,NA,mid_market,CA,active,CSM-East,aisha.grant@brighthealth.example,Aisha Grant,Operations Director,operations,2024-11-03 17:24:29,2025-06-12 08:41:40,active,true,false,285 +U3511,A1053,Bright Health,media,NA,mid_market,CA,active,CSM-East,mateo.kim@brighthealth.example,Mateo Kim,FP&A Analyst,finance,2024-10-24 16:24:29,2025-06-14 10:32:51,active,true,false,283 +U3512,A1053,Bright Health,media,NA,mid_market,CA,active,CSM-East,samir.shah@brighthealth.example,Samir Shah,Finance Manager,finance,2024-09-30 10:24:29,2025-06-17 19:18:26,active,true,false,280 +U3513,A1053,Bright Health,media,NA,mid_market,CA,active,CSM-East,owen.meyer@brighthealth.example,Owen Meyer,Finance Manager,finance,2024-09-27 13:24:29,2025-06-28 20:52:31,active,true,false,269 +U3514,A1053,Bright Health,media,NA,mid_market,CA,active,CSM-East,nina.chen@brighthealth.example,Nina Chen,Technical Program Manager,product,2024-10-20 18:24:29,2025-06-25 01:10:34,active,true,false,272 +U3515,A1053,Bright Health,media,NA,mid_market,CA,active,CSM-East,tara.alvarez@brighthealth.example,Tara Alvarez,Demand Gen Manager,marketing,2024-10-18 16:24:29,2025-06-24 21:14:02,active,true,false,273 +U3516,A1053,Bright Health,media,NA,mid_market,CA,active,CSM-East,ben.chen@brighthealth.example,Ben Chen,Demand Gen Manager,marketing,2024-10-28 18:24:29,2025-06-15 07:57:27,active,true,false,282 +U3517,A1053,Bright Health,media,NA,mid_market,CA,active,CSM-East,hannah.sato@brighthealth.example,Hannah Sato,Finance Manager,finance,2024-10-30 15:24:29,2025-06-11 01:53:35,active,true,false,286 +U3518,A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,lena.singh@granitelabs.example,Lena Singh,Founder,executive,2024-08-04 04:47:01,2025-06-14 14:50:13,active,true,false,283 +U3519,A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,aisha.meyer@granitelabs.example,Aisha Meyer,FP&A Analyst,finance,2024-09-07 08:47:01,2025-03-30 09:24:24,inactive,false,false,359 +U3520,A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,alma.fischer@granitelabs.example,Alma Fischer,Revenue Operations Manager,sales,2024-08-28 11:47:01,2025-06-21 17:16:14,active,true,false,276 +U3521,A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,naomi.grant@granitelabs.example,Naomi Grant,Analytics Manager,analytics,2024-09-03 09:47:01,2025-06-27 04:21:00,active,true,false,270 +U3522,A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,daniel.brooks@granitelabs.example,Daniel Brooks,Workflow Analyst,operations,2024-09-10 11:47:01,2025-05-07 04:40:50,inactive,false,false,321 +U3523,A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,ben.meyer@granitelabs.example,Ben Meyer,Sales Analyst,sales,2024-08-17 11:47:01,2025-06-25 10:03:57,active,true,false,272 +U3524,A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,marta.lewis@granitelabs.example,Marta Lewis,Technical Program Manager,product,2024-09-01 05:47:01,2025-03-29 12:53:10,inactive,false,false,360 +U3525,A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,mei.chen@granitelabs.example,Mei Chen,Operations Director,operations,2024-08-30 04:47:01,2025-06-15 07:46:44,active,true,false,282 +U3526,A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,mila.price@granitelabs.example,Mila Price,Revenue Operations Manager,sales,2024-08-22 08:47:01,2025-06-25 18:22:21,active,true,false,272 +U3527,A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,daniel.chen@granitelabs.example,Daniel Chen,Demand Gen Manager,marketing,2024-08-17 04:47:01,2025-06-22 14:10:05,active,true,false,275 +U3528,A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,arjun.khan@granitelabs.example,Arjun Khan,Data Engineer,data,2024-09-13 08:47:01,2025-06-27 20:59:29,active,true,false,270 +U3529,A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,lena.romero@granitelabs.example,Lena Romero,Finance Manager,finance,2024-08-22 08:47:01,2025-04-16 09:39:58,inactive,false,false,342 +U3530,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,priya.lewis@pioneersystems.example,Priya Lewis,Product Manager,product,2025-02-28 20:44:38,2025-04-02 20:51:43,inactive,false,false,356 +U3531,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,ava.price@pioneersystems.example,Ava Price,Data Platform Manager,data,2025-02-07 18:44:38,2025-06-10 17:54:15,active,true,false,287 +U3532,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,daniel.silva@pioneersystems.example,Daniel Silva,Founder,executive,2025-01-28 17:44:38,2025-06-18 12:34:14,active,true,false,279 +U3533,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,lina.nash@pioneersystems.example,Lina Nash,Controller,finance,2025-02-26 19:44:38,2025-06-13 03:04:00,active,true,false,284 +U3534,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,jonas.khan@pioneersystems.example,Jonas Khan,Analytics Engineer,data,2025-02-14 14:44:38,2025-06-16 01:26:11,active,true,false,281 +U3535,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,derek.park@pioneersystems.example,Derek Park,BI Analyst,analytics,2025-02-21 17:44:38,2025-06-19 08:59:47,active,true,false,278 +U3536,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,priya.tan@pioneersystems.example,Priya Tan,Operations Manager,operations,2025-02-20 13:44:38,2025-06-22 10:18:09,active,true,false,275 +U3537,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,peter.tan@pioneersystems.example,Peter Tan,CFO,executive,2025-02-21 17:44:38,2025-06-13 18:28:31,active,true,false,284 +U3538,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,marcus.saeed@pioneersystems.example,Marcus Saeed,Finance Manager,finance,2025-01-21 20:44:38,2025-06-22 23:17:16,active,true,false,275 +U3539,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,olivia.chen@pioneersystems.example,Olivia Chen,BI Analyst,analytics,2025-03-03 14:44:38,2025-06-11 09:52:42,active,true,false,286 +U3540,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,marcus.saeed2@pioneersystems.example,Marcus Saeed,BI Analyst,analytics,2025-02-24 17:44:38,2025-06-15 09:14:38,active,true,false,282 +U3541,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,alma.tan@pioneersystems.example,Alma Tan,Demand Gen Manager,marketing,2025-02-05 21:44:38,2025-06-20 23:58:06,active,true,false,277 +U3542,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,olivia.dubois@pioneersystems.example,Olivia Dubois,Finance Manager,finance,2025-02-05 14:44:38,2025-06-25 09:53:30,active,true,false,272 +U3543,A1056,Delta Global,retail,APAC,mid_market,AU,active,CSM-APAC,sofia.hill@deltaglobal.example,Sofia Hill,Demand Gen Manager,marketing,2024-12-24 10:04:51,2025-06-27 09:18:56,active,true,false,270 +U3544,A1056,Delta Global,retail,APAC,mid_market,AU,active,CSM-APAC,claire.alvarez@deltaglobal.example,Claire Alvarez,Finance Manager,finance,2024-12-08 10:04:51,2025-06-11 12:33:00,active,true,false,286 +U3545,A1056,Delta Global,retail,APAC,mid_market,AU,active,CSM-APAC,naomi.romero@deltaglobal.example,Naomi Romero,Product Manager,product,2024-11-25 11:04:51,2025-06-20 15:26:03,active,true,false,277 +U3546,A1056,Delta Global,retail,APAC,mid_market,AU,active,CSM-APAC,noah.sato@deltaglobal.example,Noah Sato,Technical Program Manager,product,2024-12-08 10:04:51,2025-06-27 14:17:36,active,true,false,270 +U3547,A1056,Delta Global,retail,APAC,mid_market,AU,active,CSM-APAC,isla.petrova@deltaglobal.example,Isla Petrova,Product Manager,product,2024-11-24 12:04:51,2025-06-17 19:48:58,active,true,false,280 +U3548,A1056,Delta Global,retail,APAC,mid_market,AU,active,CSM-APAC,ava.turner@deltaglobal.example,Ava Turner,Marketing Operations Lead,marketing,2024-11-28 09:04:51,2025-05-08 06:13:12,inactive,false,false,320 +U3549,A1056,Delta Global,retail,APAC,mid_market,AU,active,CSM-APAC,samir.khan@deltaglobal.example,Samir Khan,Technical Program Manager,product,2024-11-20 06:04:51,2025-06-18 19:43:44,active,true,false,279 +U3550,A1056,Delta Global,retail,APAC,mid_market,AU,active,CSM-APAC,leo.ward@deltaglobal.example,Leo Ward,FP&A Analyst,finance,2024-12-11 07:04:51,2025-06-20 03:19:45,active,true,false,277 +U3551,A1056,Delta Global,retail,APAC,mid_market,AU,active,CSM-APAC,marcus.khan@deltaglobal.example,Marcus Khan,Operations Manager,operations,2024-12-23 12:04:51,2025-06-20 07:50:50,active,true,false,277 +U3552,A1056,Delta Global,retail,APAC,mid_market,AU,active,CSM-APAC,victor.alvarez@deltaglobal.example,Victor Alvarez,FP&A Analyst,finance,2024-12-13 06:04:51,2025-06-30 01:08:24,active,true,false,267 +U3553,A1056,Delta Global,retail,APAC,mid_market,AU,active,CSM-APAC,helena.ng@deltaglobal.example,Helena Ng,Sales Analyst,sales,2024-12-23 08:04:51,2025-06-26 13:04:23,active,true,false,271 +U3554,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,lena.rossi@harborpartners.example,Lena Rossi,Workflow Analyst,operations,2024-11-24 15:01:31,2025-06-12 15:53:15,active,true,false,285 +U3555,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,owen.sato@harborpartners.example,Owen Sato,Analytics Manager,analytics,2024-10-21 09:01:31,2025-06-24 18:25:52,active,true,false,273 +U3556,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,lina.khan@harborpartners.example,Lina Khan,Product Manager,product,2024-10-22 11:01:31,2025-06-24 09:19:18,active,true,false,273 +U3557,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,maya.shah@harborpartners.example,Maya Shah,FP&A Analyst,finance,2024-11-20 12:01:31,2025-06-24 07:40:10,active,true,false,273 +U3558,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,owen.tan@harborpartners.example,Owen Tan,Demand Gen Manager,marketing,2024-11-05 12:01:31,2025-05-10 00:34:29,inactive,false,false,318 +U3559,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,marta.petrova@harborpartners.example,Marta Petrova,Data Platform Manager,data,2024-11-18 14:01:31,2025-06-17 10:22:29,active,true,false,280 +U3560,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,hannah.fischer@harborpartners.example,Hannah Fischer,Data Engineer,data,2024-12-01 16:01:31,2025-06-19 00:16:30,active,true,false,278 +U3561,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,olivia.meyer@harborpartners.example,Olivia Meyer,Data Engineer,data,2024-11-13 14:01:31,2025-06-27 13:38:17,active,true,false,270 +U3562,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,lina.morgan@harborpartners.example,Lina Morgan,Sales Analyst,sales,2024-11-20 11:01:31,2025-06-21 19:37:57,active,true,false,276 +U3563,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,naomi.tan@harborpartners.example,Naomi Tan,Sales Analyst,sales,2024-11-12 10:01:31,2025-06-26 13:20:30,active,true,false,271 +U3564,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,naomi.lewis@harborpartners.example,Naomi Lewis,Data Engineer,data,2024-11-27 08:01:31,2025-06-22 02:31:26,active,true,false,275 +U3565,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,ivy.lewis@harborpartners.example,Ivy Lewis,Operations Director,operations,2024-11-27 14:01:31,2025-06-29 10:35:02,active,true,false,268 +U3566,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,ben.ng@harborpartners.example,Ben Ng,FP&A Analyst,finance,2024-11-18 14:01:31,2025-06-21 05:10:14,active,true,false,276 +U3567,A1058,Evergreen Analytics,travel,EMEA,smb,UK,active,CSM-EMEA,marta.patel@evergreenanalytics.example,Marta Patel,FP&A Analyst,finance,2025-02-15 22:52:12,2025-06-28 00:47:16,active,true,false,269 +U3568,A1058,Evergreen Analytics,travel,EMEA,smb,UK,active,CSM-EMEA,victor.hart@evergreenanalytics.example,Victor Hart,Analytics Manager,analytics,2025-02-12 03:52:12,2025-06-11 05:03:28,active,true,false,286 +U3569,A1058,Evergreen Analytics,travel,EMEA,smb,UK,active,CSM-EMEA,lena.turner@evergreenanalytics.example,Lena Turner,Founder,executive,2025-02-15 05:52:12,2025-05-11 05:27:19,inactive,false,false,317 +U3570,A1058,Evergreen Analytics,travel,EMEA,smb,UK,active,CSM-EMEA,mateo.dubois@evergreenanalytics.example,Mateo Dubois,Product Manager,product,2025-02-10 23:52:12,2025-06-25 14:23:15,active,true,false,272 +U3571,A1058,Evergreen Analytics,travel,EMEA,smb,UK,active,CSM-EMEA,tomas.nash@evergreenanalytics.example,Tomas Nash,Insights Lead,analytics,2025-01-12 03:52:12,2025-06-10 13:16:54,active,true,false,287 +U3572,A1058,Evergreen Analytics,travel,EMEA,smb,UK,active,CSM-EMEA,leo.ward@evergreenanalytics.example,Leo Ward,Technical Program Manager,product,2025-02-04 03:52:12,2025-03-29 09:54:16,inactive,false,false,360 +U3573,A1058,Evergreen Analytics,travel,EMEA,smb,UK,active,CSM-EMEA,aisha.desai@evergreenanalytics.example,Aisha Desai,Insights Lead,analytics,2025-02-14 02:52:12,2025-06-21 18:38:09,active,true,false,276 +U3574,A1059,Evergreen Partners,education,NA,mid_market,CA,active,CSM-East,aisha.brooks@evergreenpartners.example,Aisha Brooks,Insights Lead,analytics,2024-11-05 07:27:52,2025-06-12 07:03:56,active,true,false,285 +U3575,A1059,Evergreen Partners,education,NA,mid_market,CA,active,CSM-East,naomi.hart@evergreenpartners.example,Naomi Hart,Operations Manager,operations,2024-10-13 09:27:52,2025-06-16 23:19:32,active,true,false,281 +U3576,A1059,Evergreen Partners,education,NA,mid_market,CA,active,CSM-East,nina.chen@evergreenpartners.example,Nina Chen,Workflow Analyst,operations,2024-10-08 09:27:52,2025-06-19 06:24:17,active,true,false,278 +U3577,A1059,Evergreen Partners,education,NA,mid_market,CA,active,CSM-East,kenji.lopez@evergreenpartners.example,Kenji Lopez,Demand Gen Manager,marketing,2024-10-08 15:27:52,2025-06-18 14:43:24,active,true,false,279 +U3578,A1059,Evergreen Partners,education,NA,mid_market,CA,active,CSM-East,elena.shah@evergreenpartners.example,Elena Shah,FP&A Analyst,finance,2024-10-23 13:27:52,2025-06-20 23:25:34,active,true,false,277 +U3579,A1059,Evergreen Partners,education,NA,mid_market,CA,active,CSM-East,aisha.reed@evergreenpartners.example,Aisha Reed,Founder,executive,2024-11-07 11:27:52,2025-06-13 02:34:17,active,true,false,284 +U3580,A1059,Evergreen Partners,education,NA,mid_market,CA,active,CSM-East,hannah.rahman@evergreenpartners.example,Hannah Rahman,Technical Program Manager,product,2024-10-27 11:27:52,2025-06-28 13:19:15,active,true,false,269 +U3581,A1059,Evergreen Partners,education,NA,mid_market,CA,active,CSM-East,isla.patel@evergreenpartners.example,Isla Patel,Sales Analyst,sales,2024-10-27 11:27:52,2025-06-20 20:15:03,active,true,false,277 +U3582,A1059,Evergreen Partners,education,NA,mid_market,CA,active,CSM-East,maya.meyer@evergreenpartners.example,Maya Meyer,Technical Program Manager,product,2024-11-09 12:27:52,2025-03-05 07:34:40,inactive,false,false,384 +U3583,A1059,Evergreen Partners,education,NA,mid_market,CA,active,CSM-East,marcus.nash@evergreenpartners.example,Marcus Nash,CFO,executive,2024-11-05 11:27:52,2025-06-16 18:35:23,active,true,false,281 +U3584,A1059,Evergreen Partners,education,NA,mid_market,CA,active,CSM-East,marcus.lopez@evergreenpartners.example,Marcus Lopez,Sales Analyst,sales,2024-11-09 10:27:52,2025-06-24 13:57:24,active,true,false,273 +U3585,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,mei.saeed@cedarfoods.example,Mei Saeed,COO,executive,2024-11-26 02:41:46,2025-06-10 11:56:15,active,true,false,287 +U3586,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,tomas.chen@cedarfoods.example,Tomas Chen,Revenue Operations Manager,sales,2024-12-08 19:41:46,2025-06-18 19:46:23,active,true,false,279 +U3587,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,zoe.meyer@cedarfoods.example,Zoe Meyer,BI Analyst,analytics,2024-11-07 18:41:46,2025-06-11 16:08:10,active,true,false,286 +U3588,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,ben.reed@cedarfoods.example,Ben Reed,Workflow Analyst,operations,2024-11-12 19:41:46,2025-06-13 10:40:35,active,true,false,284 +U3589,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,lina.sato@cedarfoods.example,Lina Sato,Workflow Analyst,operations,2024-11-16 22:41:46,2025-06-26 07:45:22,active,true,false,271 +U3590,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,tomas.ward@cedarfoods.example,Tomas Ward,Analytics Manager,analytics,2024-12-19 23:41:46,2025-06-29 05:48:32,active,true,false,268 +U3591,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,tomas.dubois@cedarfoods.example,Tomas Dubois,Analytics Engineer,data,2024-11-29 23:41:46,2025-05-19 05:57:47,inactive,false,false,309 +U3592,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,nina.sato@cedarfoods.example,Nina Sato,Product Manager,product,2024-12-06 21:41:46,2025-06-14 14:57:00,active,true,false,283 +U3593,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,tara.hill@cedarfoods.example,Tara Hill,Controller,finance,2024-12-02 21:41:46,2025-06-12 20:53:41,active,true,false,285 +U3594,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,owen.lopez@cedarfoods.example,Owen Lopez,Operations Director,operations,2024-11-09 19:41:46,2025-06-16 08:58:58,active,true,false,281 +U3595,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,owen.romero@cedarfoods.example,Owen Romero,Product Manager,product,2024-12-16 18:41:46,2025-03-27 04:50:31,inactive,false,false,362 +U3596,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,peter.silva@cedarfoods.example,Peter Silva,Revenue Operations Manager,sales,2024-12-08 01:41:46,2025-06-20 02:17:46,active,true,false,277 +U3597,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,tomas.nash@cedarfoods.example,Tomas Nash,Marketing Operations Lead,marketing,2024-11-30 01:41:46,2025-06-23 06:50:14,active,true,false,274 +U3598,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,samir.singh@atlascapital.example,Samir Singh,Revenue Operations Manager,sales,2025-03-25 01:52:24,2025-06-18 13:06:03,active,true,false,279 +U3599,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,elena.ward@atlascapital.example,Elena Ward,Insights Lead,analytics,2025-02-25 02:52:24,2025-06-19 14:47:29,active,true,false,278 +U3600,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,mei.singh@atlascapital.example,Mei Singh,Revenue Operations Manager,sales,2025-03-25 05:52:24,2025-06-25 15:37:39,active,true,false,272 +U3601,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,owen.tan@atlascapital.example,Owen Tan,Finance Manager,finance,2025-02-25 00:52:24,2025-06-24 16:24:56,active,true,false,273 +U3602,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,victor.rossi@atlascapital.example,Victor Rossi,Revenue Operations Manager,sales,2025-03-19 04:52:24,2025-06-30 12:59:09,active,true,false,267 +U3603,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,owen.romero@atlascapital.example,Owen Romero,Analytics Engineer,data,2025-02-16 05:52:24,2025-06-11 07:56:28,active,true,false,286 +U3604,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,noah.grant@atlascapital.example,Noah Grant,Demand Gen Manager,marketing,2025-03-28 08:52:24,2025-06-24 08:29:36,active,true,false,273 +U3605,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,zoe.keller@atlascapital.example,Zoe Keller,Data Platform Manager,data,2025-02-22 07:52:24,2025-06-21 17:30:19,active,true,false,276 +U3606,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,mila.desai@atlascapital.example,Mila Desai,Marketing Operations Lead,marketing,2025-02-13 02:52:24,2025-06-17 18:02:13,active,true,false,280 +U3607,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,marcus.ward@atlascapital.example,Marcus Ward,Controller,finance,2025-02-17 01:52:24,2025-06-24 17:35:58,active,true,false,273 +U3608,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,mila.patel@atlascapital.example,Mila Patel,Operations Director,operations,2025-03-12 05:52:24,2025-06-28 04:52:28,active,true,false,269 +U3609,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,noah.khan@atlascapital.example,Noah Khan,Workflow Analyst,operations,2025-03-21 08:52:24,2025-06-30 14:15:14,active,true,false,267 +U3610,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,daniel.desai@atlascapital.example,Daniel Desai,FP&A Analyst,finance,2025-02-17 01:52:24,2025-06-28 16:18:17,active,true,false,269 +U3611,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,kai.rahman@atlascapital.example,Kai Rahman,COO,executive,2025-03-13 03:52:24,,provisioned,false,false, +U3612,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,marcus.kim@atlascapital.example,Marcus Kim,Finance Manager,finance,2025-03-16 01:52:24,2025-06-14 15:30:56,active,true,false,283 +U3613,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,elena.meyer@atlascapital.example,Elena Meyer,Sales Analyst,sales,2025-03-29 02:52:24,2025-06-25 19:43:31,active,true,false,272 +U3614,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,evan.saeed@atlascapital.example,Evan Saeed,Technical Program Manager,product,2025-02-28 02:52:24,2025-06-11 04:54:57,active,true,false,286 +U3615,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,tara.petrova@deltamanufacturing.example,Tara Petrova,Analytics Manager,analytics,2024-12-05 15:50:25,2025-06-14 22:47:29,active,true,false,283 +U3616,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,olivia.saeed@deltamanufacturing.example,Olivia Saeed,Workflow Analyst,operations,2024-12-02 23:50:25,2025-06-21 13:25:31,active,true,false,276 +U3617,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,daniel.dubois@deltamanufacturing.example,Daniel Dubois,Data Engineer,data,2024-11-16 17:50:25,2025-06-21 19:21:55,active,true,false,276 +U3618,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,tara.sato@deltamanufacturing.example,Tara Sato,Controller,finance,2024-11-11 15:50:25,2025-06-17 05:03:43,active,true,false,280 +U3619,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,daniel.ng@deltamanufacturing.example,Daniel Ng,Analytics Manager,analytics,2024-12-18 22:50:25,2025-06-28 06:19:26,active,true,false,269 +U3620,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,hannah.nash@deltamanufacturing.example,Hannah Nash,Finance Manager,finance,2024-11-10 22:50:25,2025-06-12 00:16:43,active,true,false,285 +U3621,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,victor.park@deltamanufacturing.example,Victor Park,CFO,executive,2024-11-21 20:50:25,2025-06-12 23:09:25,active,true,false,285 +U3622,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,alma.patel@deltamanufacturing.example,Alma Patel,Operations Director,operations,2024-12-05 18:50:25,2025-06-15 15:32:43,active,true,false,282 +U3623,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,tomas.turner@deltamanufacturing.example,Tomas Turner,Product Manager,product,2024-12-06 17:50:25,2025-06-25 02:01:14,active,true,false,272 +U3624,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,ava.sato@deltamanufacturing.example,Ava Sato,Sales Analyst,sales,2024-11-17 22:50:25,2025-06-25 15:10:44,active,true,false,272 +U3625,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,marta.dubois@deltamanufacturing.example,Marta Dubois,Demand Gen Manager,marketing,2024-11-17 15:50:25,2025-06-11 17:44:58,active,true,false,286 +U3626,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,evan.lewis@deltamanufacturing.example,Evan Lewis,Operations Manager,operations,2024-12-08 21:50:25,2025-06-18 15:08:51,active,true,false,279 +U3627,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,zoe.meyer@deltamanufacturing.example,Zoe Meyer,Controller,finance,2024-12-18 17:50:25,2025-06-23 17:00:12,active,true,false,274 +U3628,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,zoe.petrova@deltamanufacturing.example,Zoe Petrova,Sales Analyst,sales,2024-11-22 22:50:25,2025-06-17 01:37:43,active,true,false,280 +U3629,A1063,Maple Global,education,NA,smb,CA,active,CSM-East,ivy.alvarez@mapleglobal.example,Ivy Alvarez,Demand Gen Manager,marketing,2024-12-11 15:34:06,2025-03-15 19:07:28,inactive,false,false,374 +U3630,A1063,Maple Global,education,NA,smb,CA,active,CSM-East,lena.chen@mapleglobal.example,Lena Chen,Revenue Operations Manager,sales,2024-11-16 19:34:06,2025-06-22 12:43:38,active,true,false,275 +U3631,A1063,Maple Global,education,NA,smb,CA,active,CSM-East,priya.ng@mapleglobal.example,Priya Ng,Sales Analyst,sales,2024-12-28 13:34:06,2025-06-16 03:06:29,active,true,false,281 +U3632,A1063,Maple Global,education,NA,smb,CA,active,CSM-East,elena.chen@mapleglobal.example,Elena Chen,Revenue Operations Manager,sales,2024-11-22 17:34:06,2025-06-26 00:16:39,active,true,false,271 +U3633,A1064,Atlas Health,education,NA,smb,US,active,CSM-East,luis.turner@atlashealth.example,Luis Turner,BI Analyst,analytics,2024-10-10 05:39:22,2025-06-28 10:19:33,active,true,false,269 +U3634,A1064,Atlas Health,education,NA,smb,US,active,CSM-East,helena.romero@atlashealth.example,Helena Romero,Technical Program Manager,product,2024-09-03 04:39:22,2025-06-19 06:47:08,active,true,false,278 +U3635,A1064,Atlas Health,education,NA,smb,US,active,CSM-East,ava.chen@atlashealth.example,Ava Chen,Operations Manager,operations,2024-10-09 03:39:22,2025-06-17 11:46:34,active,true,false,280 +U3636,A1064,Atlas Health,education,NA,smb,US,active,CSM-East,ivy.dubois@atlashealth.example,Ivy Dubois,Marketing Operations Lead,marketing,2024-10-04 03:39:22,2025-06-11 14:55:48,active,true,false,286 +U3637,A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,CSM-East,derek.brooks@vertexpartners.example,Derek Brooks,Operations Manager,operations,2025-01-22 13:11:13,2025-06-19 03:57:38,active,true,false,278 +U3638,A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,CSM-East,derek.sato@vertexpartners.example,Derek Sato,Workflow Analyst,operations,2025-02-13 09:11:13,2025-06-18 10:06:38,active,true,false,279 +U3639,A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,CSM-East,victor.nash@vertexpartners.example,Victor Nash,Workflow Analyst,operations,2025-01-29 09:11:13,2025-06-28 18:14:53,active,true,false,269 +U3640,A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,CSM-East,zoe.khan@vertexpartners.example,Zoe Khan,VP Data,executive,2025-01-31 12:11:13,2025-06-11 19:54:54,active,true,false,286 +U3641,A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,CSM-East,derek.cole@vertexpartners.example,Derek Cole,Technical Program Manager,product,2025-01-31 14:11:13,2025-06-21 16:53:25,active,true,false,276 +U3642,A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,CSM-East,isla.nash@vertexpartners.example,Isla Nash,Analytics Manager,analytics,2025-02-07 11:11:13,2025-06-27 02:49:54,active,true,false,270 +U3643,A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,CSM-East,tomas.tan@vertexpartners.example,Tomas Tan,Product Manager,product,2025-01-04 12:11:13,2025-03-08 19:18:00,inactive,false,false,381 +U3644,A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,CSM-East,marcus.rahman@vertexpartners.example,Marcus Rahman,BI Analyst,analytics,2025-02-12 08:11:13,2025-06-15 05:59:16,active,true,false,282 +U3645,A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,CSM-East,mateo.romero@vertexpartners.example,Mateo Romero,Analytics Manager,analytics,2025-02-11 14:11:13,2025-04-11 02:58:25,inactive,false,false,347 +U3646,A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,CSM-East,owen.romero@vertexpartners.example,Owen Romero,BI Analyst,analytics,2025-01-03 06:11:13,2025-06-15 22:20:27,active,true,false,282 +U3647,A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,CSM-East,mateo.silva@vertexpartners.example,Mateo Silva,Sales Analyst,sales,2025-02-09 11:11:13,2025-06-26 10:53:19,active,true,false,271 +U3648,A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,mateo.park@pacificcapital.example,Mateo Park,Technical Program Manager,product,2025-02-15 19:33:41,2025-05-16 23:07:37,inactive,false,false,312 +U3649,A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,nina.patel@pacificcapital.example,Nina Patel,Technical Program Manager,product,2025-01-28 17:33:41,2025-06-17 04:39:52,active,true,false,280 +U3650,A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,ava.rahman@pacificcapital.example,Ava Rahman,Controller,finance,2025-02-13 21:33:41,2025-06-14 13:09:15,active,true,false,283 +U3651,A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,peter.rahman@pacificcapital.example,Peter Rahman,Marketing Operations Lead,marketing,2025-01-12 22:33:41,2025-06-20 23:50:10,active,true,false,277 +U3652,A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,nina.fischer@pacificcapital.example,Nina Fischer,Finance Manager,finance,2025-02-14 17:33:41,2025-06-18 15:18:19,active,true,false,279 +U3653,A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,peter.fischer@pacificcapital.example,Peter Fischer,Product Manager,product,2025-02-13 21:33:41,2025-06-10 21:31:11,active,true,false,287 +U3654,A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,noah.rossi@pacificcapital.example,Noah Rossi,FP&A Analyst,finance,2025-01-30 19:33:41,2025-06-28 05:12:16,active,true,false,269 +U3655,A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,isla.hart@pacificcapital.example,Isla Hart,VP Data,executive,2025-02-09 21:33:41,2025-04-26 00:52:55,inactive,false,false,332 +U3656,A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,peter.park@pacificcapital.example,Peter Park,Founder,executive,2025-02-09 17:33:41,2025-06-23 15:57:26,active,true,false,274 +U3657,A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,olivia.singh@pacificcapital.example,Olivia Singh,Analytics Engineer,data,2025-02-18 20:33:41,2025-06-12 12:52:26,active,true,false,285 +U3658,A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,alma.brooks@pacificcapital.example,Alma Brooks,Marketing Operations Lead,marketing,2025-01-27 20:33:41,2025-06-23 08:38:52,active,true,false,274 +U3659,A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,owen.petrova@pacificcapital.example,Owen Petrova,Revenue Operations Manager,sales,2025-02-10 22:33:41,2025-06-22 17:00:10,active,true,false,275 +U3660,A1067,Maple Energy,healthcare,NA,mid_market,CA,active,CSM-East,derek.morgan@mapleenergy.example,Derek Morgan,Controller,finance,2025-01-26 05:24:42,2025-06-10 14:06:05,active,true,false,287 +U3661,A1067,Maple Energy,healthcare,NA,mid_market,CA,active,CSM-East,claire.cole@mapleenergy.example,Claire Cole,VP Data,executive,2025-01-27 08:24:42,2025-06-27 23:00:19,active,true,false,270 +U3662,A1067,Maple Energy,healthcare,NA,mid_market,CA,active,CSM-East,owen.price@mapleenergy.example,Owen Price,Technical Program Manager,product,2025-01-09 06:24:42,2025-06-20 08:17:07,active,true,false,277 +U3663,A1067,Maple Energy,healthcare,NA,mid_market,CA,active,CSM-East,naomi.petrova@mapleenergy.example,Naomi Petrova,Finance Manager,finance,2025-01-18 07:24:42,2025-04-02 21:34:39,inactive,false,false,356 +U3664,A1067,Maple Energy,healthcare,NA,mid_market,CA,active,CSM-East,tomas.kim@mapleenergy.example,Tomas Kim,Operations Director,operations,2025-01-25 04:24:42,2025-06-23 18:47:06,active,true,false,274 +U3665,A1067,Maple Energy,healthcare,NA,mid_market,CA,active,CSM-East,ava.lewis@mapleenergy.example,Ava Lewis,Marketing Operations Lead,marketing,2025-01-23 04:24:42,2025-06-11 07:36:08,active,true,false,286 +U3666,A1067,Maple Energy,healthcare,NA,mid_market,CA,active,CSM-East,jonas.singh@mapleenergy.example,Jonas Singh,Technical Program Manager,product,2025-01-13 00:24:42,2025-06-14 00:43:31,active,true,false,283 +U3667,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,jonas.turner@heliohealth.example,Jonas Turner,Workflow Analyst,operations,2024-09-22 16:36:33,2025-06-22 05:32:40,active,true,false,275 +U3668,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,victor.romero@heliohealth.example,Victor Romero,Operations Manager,operations,2024-09-11 13:36:33,2025-06-19 01:44:24,active,true,false,278 +U3669,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,helena.turner@heliohealth.example,Helena Turner,Sales Analyst,sales,2024-09-20 19:36:33,2025-04-06 13:37:27,inactive,false,false,352 +U3670,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,sofia.romero@heliohealth.example,Sofia Romero,BI Analyst,analytics,2024-09-17 12:36:33,2025-06-21 11:34:39,active,true,false,276 +U3671,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,naomi.cole@heliohealth.example,Naomi Cole,Finance Manager,finance,2024-08-28 17:36:33,2025-06-18 22:22:33,active,true,false,279 +U3672,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,hannah.meyer@heliohealth.example,Hannah Meyer,Insights Lead,analytics,2024-09-20 13:36:33,2025-06-28 21:29:06,active,true,false,269 +U3673,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,kenji.hill@heliohealth.example,Kenji Hill,Controller,finance,2024-08-31 17:36:33,2025-06-26 22:01:20,active,true,false,271 +U3674,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,jonas.dubois@heliohealth.example,Jonas Dubois,Founder,executive,2024-09-14 17:36:33,2025-06-10 14:30:48,active,true,false,287 +U3675,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,naomi.saeed@heliohealth.example,Naomi Saeed,Analytics Manager,analytics,2024-09-11 18:36:33,2025-06-14 05:58:16,active,true,false,283 +U3676,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,marcus.reed@heliohealth.example,Marcus Reed,Controller,finance,2024-08-25 15:36:33,2025-06-23 20:26:24,active,true,false,274 +U3677,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,mila.saeed@heliohealth.example,Mila Saeed,Operations Manager,operations,2024-09-09 13:36:33,2025-06-13 11:26:53,active,true,false,284 +U3678,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,luis.turner@heliohealth.example,Luis Turner,VP Data,executive,2024-09-24 17:36:33,2025-06-21 00:26:50,active,true,false,276 +U3679,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,ben.saeed@heliohealth.example,Ben Saeed,COO,executive,2024-09-25 16:36:33,2025-06-30 01:31:25,active,true,false,267 +U3680,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,olivia.patel@heliohealth.example,Olivia Patel,Controller,finance,2024-08-20 15:36:33,2025-06-15 09:14:28,active,true,false,282 +U3681,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,naomi.petrova@heliohealth.example,Naomi Petrova,Revenue Operations Manager,sales,2024-08-15 12:36:33,2025-06-28 16:10:44,active,true,false,269 +U3682,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,ivy.desai@heliohealth.example,Ivy Desai,Marketing Operations Lead,marketing,2024-08-13 20:36:33,2025-06-21 16:15:36,active,true,false,276 +U3683,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,nina.desai@brightfoods.example,Nina Desai,Operations Manager,operations,2025-01-17 03:08:52,2025-06-29 06:45:50,active,true,false,268 +U3684,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,olivia.reed@brightfoods.example,Olivia Reed,Marketing Operations Lead,marketing,2025-01-17 08:08:52,2025-06-13 19:47:35,active,true,false,284 +U3685,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,evan.cole@brightfoods.example,Evan Cole,COO,executive,2025-01-07 06:08:52,2025-06-11 22:48:33,active,true,false,286 +U3686,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,marcus.chen@brightfoods.example,Marcus Chen,Marketing Operations Lead,marketing,2024-12-24 05:08:52,2025-05-10 18:11:11,inactive,false,false,318 +U3687,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,marcus.reed@brightfoods.example,Marcus Reed,Technical Program Manager,product,2025-01-19 05:08:52,2025-06-12 21:31:15,active,true,false,285 +U3688,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,kenji.cole@brightfoods.example,Kenji Cole,Sales Analyst,sales,2024-12-19 11:08:52,2025-06-13 00:44:14,active,true,false,284 +U3689,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,alma.grant@brightfoods.example,Alma Grant,Product Manager,product,2025-01-08 05:08:52,2025-06-19 01:26:37,active,true,false,278 +U3690,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,claire.desai@brightfoods.example,Claire Desai,Operations Manager,operations,2025-01-06 04:08:52,2025-06-21 09:11:24,active,true,false,276 +U3691,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,ben.singh@brightfoods.example,Ben Singh,Product Manager,product,2025-01-10 09:08:52,2025-06-20 16:18:20,active,true,false,277 +U3692,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,mei.keller@brightfoods.example,Mei Keller,Technical Program Manager,product,2024-12-17 03:08:52,2025-03-11 13:04:05,inactive,false,false,378 +U3693,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,noah.park@brightfoods.example,Noah Park,Operations Director,operations,2024-12-15 09:08:52,2025-06-24 15:01:28,active,true,false,273 +U3694,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,marcus.rahman@brightfoods.example,Marcus Rahman,Operations Manager,operations,2024-12-18 08:08:52,2025-06-30 18:40:58,active,true,false,267 +U3695,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,noah.grant@brightfoods.example,Noah Grant,Demand Gen Manager,marketing,2025-01-06 07:08:52,2025-06-28 21:12:40,active,true,false,269 +U3696,A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,active,CSM-APAC,helena.dubois@heliomanufacturing.example,Helena Dubois,Sales Analyst,sales,2024-12-07 05:20:27,2025-03-15 15:24:23,inactive,false,false,374 +U3697,A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,active,CSM-APAC,ava.hill@heliomanufacturing.example,Ava Hill,Operations Manager,operations,2024-12-08 06:20:27,2025-06-13 13:24:54,active,true,false,284 +U3698,A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,active,CSM-APAC,luis.hill@heliomanufacturing.example,Luis Hill,Data Engineer,data,2024-12-07 23:20:27,2025-05-06 06:39:39,inactive,false,false,322 +U3699,A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,active,CSM-APAC,alma.shah@heliomanufacturing.example,Alma Shah,Insights Lead,analytics,2024-12-16 00:20:27,2025-06-26 08:06:26,active,true,false,271 +U3700,A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,active,CSM-APAC,mateo.rossi@heliomanufacturing.example,Mateo Rossi,Product Manager,product,2024-11-25 06:20:27,2025-06-16 15:25:51,active,true,false,281 +U3701,A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,active,CSM-APAC,isla.silva@heliomanufacturing.example,Isla Silva,Data Engineer,data,2024-12-04 00:20:27,2025-06-17 22:14:38,active,true,false,280 +U3702,A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,active,CSM-APAC,lina.park@heliomanufacturing.example,Lina Park,Product Manager,product,2024-11-09 01:20:27,2025-06-29 05:01:23,active,true,false,268 +U3703,A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,active,CSM-APAC,jonas.rahman@heliomanufacturing.example,Jonas Rahman,Technical Program Manager,product,2024-11-15 03:20:27,2025-06-22 02:57:47,active,true,false,275 +U3704,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,olivia.rossi@evergreengroup.example,Olivia Rossi,Technical Program Manager,product,2024-10-01 17:34:10,2025-06-19 18:59:53,active,true,false,278 +U3705,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,nina.rossi@evergreengroup.example,Nina Rossi,Sales Analyst,sales,2024-09-14 20:34:10,2025-06-24 14:58:11,active,true,false,273 +U3706,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,priya.lewis@evergreengroup.example,Priya Lewis,VP Data,executive,2024-10-03 15:34:10,2025-06-25 11:10:40,active,true,false,272 +U3707,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,samir.kim@evergreengroup.example,Samir Kim,Operations Manager,operations,2024-09-18 20:34:10,2025-06-11 15:53:02,active,true,false,286 +U3708,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,victor.alvarez@evergreengroup.example,Victor Alvarez,Demand Gen Manager,marketing,2024-10-03 16:34:10,,provisioned,false,false, +U3709,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,jonas.grant@evergreengroup.example,Jonas Grant,COO,executive,2024-08-28 23:34:10,2025-06-21 11:29:57,active,true,false,276 +U3710,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,ivy.hart@evergreengroup.example,Ivy Hart,Sales Analyst,sales,2024-08-28 22:34:10,2025-06-17 23:22:58,active,true,false,280 +U3711,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,lina.kim@evergreengroup.example,Lina Kim,Founder,executive,2024-09-27 16:34:10,2025-06-15 06:57:01,active,true,false,282 +U3712,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,samir.rossi@evergreengroup.example,Samir Rossi,COO,executive,2024-10-05 19:34:10,2025-06-20 20:58:59,active,true,false,277 +U3713,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,mei.rossi@evergreengroup.example,Mei Rossi,Workflow Analyst,operations,2024-09-09 19:34:10,2025-06-17 12:12:05,active,true,false,280 +U3714,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,lena.morgan@evergreengroup.example,Lena Morgan,Marketing Operations Lead,marketing,2024-10-11 16:34:10,2025-06-16 22:14:47,active,true,false,281 +U3715,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,tomas.saeed@evergreengroup.example,Tomas Saeed,Technical Program Manager,product,2024-09-09 20:34:10,2025-06-26 02:32:51,active,true,false,271 +U3716,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,jonas.hart@evergreengroup.example,Jonas Hart,Analytics Manager,analytics,2024-10-08 23:34:10,2025-06-20 08:21:19,active,true,false,277 +U3717,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,nina.hart@summitventures.example,Nina Hart,Product Manager,product,2024-09-30 12:18:23,2025-06-24 07:02:08,active,true,false,273 +U3718,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,tara.reed@summitventures.example,Tara Reed,Technical Program Manager,product,2024-11-08 12:18:23,2025-06-28 23:02:39,active,true,false,269 +U3719,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,ivy.brooks@summitventures.example,Ivy Brooks,Demand Gen Manager,marketing,2024-10-28 06:18:23,2025-06-28 09:49:44,active,true,false,269 +U3720,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,jonas.ng@summitventures.example,Jonas Ng,Sales Analyst,sales,2024-10-03 07:18:23,2025-06-16 18:30:02,active,true,false,281 +U3721,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,claire.rahman@summitventures.example,Claire Rahman,Insights Lead,analytics,2024-11-06 07:18:23,2025-06-13 01:09:09,active,true,false,284 +U3722,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,peter.tan@summitventures.example,Peter Tan,Data Engineer,data,2024-10-18 11:18:23,2025-06-20 21:03:57,active,true,false,277 +U3723,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,ivy.desai@summitventures.example,Ivy Desai,Marketing Operations Lead,marketing,2024-10-16 06:18:23,2025-06-29 11:00:57,active,true,false,268 +U3724,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,evan.sato@summitventures.example,Evan Sato,Data Platform Manager,data,2024-10-30 04:18:23,2025-06-12 07:53:33,active,true,false,285 +U3725,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,alma.singh@summitventures.example,Alma Singh,Operations Manager,operations,2024-10-22 05:18:23,2025-06-30 16:13:30,active,true,false,267 +U3726,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,naomi.alvarez@summitventures.example,Naomi Alvarez,Workflow Analyst,operations,2024-10-31 05:18:23,2025-06-30 09:55:00,active,true,false,267 +U3727,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,helena.saeed@summitventures.example,Helena Saeed,Analytics Manager,analytics,2024-10-04 07:18:23,2025-06-29 01:24:58,active,true,false,268 +U3728,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,alma.silva@summitventures.example,Alma Silva,Revenue Operations Manager,sales,2024-10-26 07:18:23,2025-06-14 13:02:05,active,true,false,283 +U3729,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,daniel.dubois@summitventures.example,Daniel Dubois,Technical Program Manager,product,2024-10-15 04:18:23,2025-06-19 09:16:53,active,true,false,278 +U3730,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,olivia.khan@summitventures.example,Olivia Khan,Sales Analyst,sales,2024-11-11 07:18:23,2025-03-15 09:40:06,inactive,false,false,374 +U3731,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,derek.turner@summitventures.example,Derek Turner,VP Data,executive,2024-09-30 04:18:23,2025-06-26 08:46:23,active,true,false,271 +U3732,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,hannah.alvarez@summitventures.example,Hannah Alvarez,Insights Lead,analytics,2024-10-23 08:18:23,2025-06-27 07:08:19,active,true,false,270 +U3733,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,derek.grant@summitventures.example,Derek Grant,Demand Gen Manager,marketing,2024-10-23 04:18:23,2025-03-26 03:26:11,inactive,false,false,363 +U3734,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,jonas.petrova@summitventures.example,Jonas Petrova,Demand Gen Manager,marketing,2024-10-12 06:18:23,2025-05-25 17:18:25,inactive,false,false,303 +U3735,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,kai.desai@silverholdings.example,Kai Desai,BI Analyst,analytics,2024-12-09 19:21:51,2025-06-30 17:00:47,active,true,false,267 +U3736,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,samir.ng@silverholdings.example,Samir Ng,Operations Director,operations,2024-12-22 16:21:51,2025-06-18 19:58:16,active,true,false,279 +U3737,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,kai.khan@silverholdings.example,Kai Khan,Product Manager,product,2024-11-11 14:21:51,2025-06-29 11:48:07,active,true,false,268 +U3738,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,naomi.chen@silverholdings.example,Naomi Chen,Revenue Operations Manager,sales,2024-12-18 16:21:51,2025-06-12 06:54:13,active,true,false,285 +U3739,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,olivia.rahman@silverholdings.example,Olivia Rahman,Marketing Operations Lead,marketing,2024-12-16 18:21:51,2025-06-18 01:03:48,active,true,false,279 +U3740,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,owen.turner@silverholdings.example,Owen Turner,FP&A Analyst,finance,2024-11-19 17:21:51,2025-06-15 02:43:48,active,true,false,282 +U3741,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,elena.price@silverholdings.example,Elena Price,COO,executive,2024-12-03 18:21:51,2025-03-23 03:05:34,inactive,false,false,366 +U3742,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,luis.romero@silverholdings.example,Luis Romero,Marketing Operations Lead,marketing,2024-12-07 15:21:51,2025-06-14 09:18:26,active,true,false,283 +U3743,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,hannah.morgan@silverholdings.example,Hannah Morgan,Sales Analyst,sales,2024-11-17 13:21:51,2025-04-25 09:46:18,inactive,false,false,333 +U3744,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,olivia.chen@silverholdings.example,Olivia Chen,Sales Analyst,sales,2024-12-21 19:21:51,2025-06-27 14:40:51,active,true,false,270 +U3745,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,daniel.tan@silverholdings.example,Daniel Tan,Analytics Manager,analytics,2024-12-09 18:21:51,2025-06-15 07:21:24,active,true,false,282 +U3746,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,ben.reed@silverholdings.example,Ben Reed,Insights Lead,analytics,2024-12-21 15:21:51,2025-06-20 04:58:57,active,true,false,277 +U3747,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,peter.romero@silverholdings.example,Peter Romero,Analytics Manager,analytics,2024-11-23 19:21:51,2025-05-06 18:27:28,inactive,false,false,322 +U3748,A1074,Granite Analytics,retail,NA,mid_market,CA,active,CSM-East,ava.petrova@graniteanalytics.example,Ava Petrova,Analytics Engineer,data,2024-08-19 04:20:24,2025-03-21 22:30:10,inactive,false,false,368 +U3749,A1074,Granite Analytics,retail,NA,mid_market,CA,active,CSM-East,lina.ng@graniteanalytics.example,Lina Ng,BI Analyst,analytics,2024-08-17 07:20:24,2025-06-18 08:54:23,active,true,false,279 +U3750,A1074,Granite Analytics,retail,NA,mid_market,CA,active,CSM-East,victor.turner@graniteanalytics.example,Victor Turner,Founder,executive,2024-08-11 03:20:24,2025-06-19 12:54:44,active,true,false,278 +U3751,A1074,Granite Analytics,retail,NA,mid_market,CA,active,CSM-East,jonas.morgan@graniteanalytics.example,Jonas Morgan,COO,executive,2024-09-14 23:20:24,2025-06-16 14:37:51,active,true,false,281 +U3752,A1074,Granite Analytics,retail,NA,mid_market,CA,active,CSM-East,aisha.hart@graniteanalytics.example,Aisha Hart,Technical Program Manager,product,2024-09-09 01:20:24,2025-06-27 12:45:13,active,true,false,270 +U3753,A1074,Granite Analytics,retail,NA,mid_market,CA,active,CSM-East,mateo.ng@graniteanalytics.example,Mateo Ng,FP&A Analyst,finance,2024-08-18 04:20:24,2025-06-13 09:29:25,active,true,false,284 +U3754,A1074,Granite Analytics,retail,NA,mid_market,CA,active,CSM-East,tara.dubois@graniteanalytics.example,Tara Dubois,CFO,executive,2024-08-29 03:20:24,2025-06-28 18:38:35,active,true,false,269 +U3755,A1074,Granite Analytics,retail,NA,mid_market,CA,active,CSM-East,nina.saeed@graniteanalytics.example,Nina Saeed,CFO,executive,2024-08-21 04:20:24,2025-06-22 05:11:17,active,true,false,275 +U3756,A1074,Granite Analytics,retail,NA,mid_market,CA,active,CSM-East,peter.park@graniteanalytics.example,Peter Park,Data Engineer,data,2024-08-19 23:20:24,2025-06-11 03:53:28,active,true,false,286 +U3757,A1074,Granite Analytics,retail,NA,mid_market,CA,active,CSM-East,leo.lopez@graniteanalytics.example,Leo Lopez,Controller,finance,2024-09-09 05:20:24,2025-06-22 07:18:23,active,true,false,275 +U3758,A1074,Granite Analytics,retail,NA,mid_market,CA,active,CSM-East,priya.park@graniteanalytics.example,Priya Park,CFO,executive,2024-09-09 06:20:24,2025-06-27 18:17:34,active,true,false,270 +U3759,A1074,Granite Analytics,retail,NA,mid_market,CA,active,CSM-East,peter.grant@graniteanalytics.example,Peter Grant,Founder,executive,2024-08-24 03:20:24,2025-06-14 09:02:20,active,true,false,283 +U3760,A1075,Cedar Labs,software,EMEA,smb,UK,active,CSM-EMEA,evan.reed@cedarlabs.example,Evan Reed,Data Platform Manager,data,2024-12-09 09:31:13,2025-06-12 03:45:35,active,true,false,285 +U3761,A1075,Cedar Labs,software,EMEA,smb,UK,active,CSM-EMEA,victor.rossi@cedarlabs.example,Victor Rossi,Operations Manager,operations,2024-11-04 11:31:13,2025-06-26 19:30:04,active,true,false,271 +U3762,A1075,Cedar Labs,software,EMEA,smb,UK,active,CSM-EMEA,olivia.morgan@cedarlabs.example,Olivia Morgan,Founder,executive,2024-11-23 09:31:13,2025-06-21 11:06:18,active,true,false,276 +U3763,A1075,Cedar Labs,software,EMEA,smb,UK,active,CSM-EMEA,leo.ward@cedarlabs.example,Leo Ward,Insights Lead,analytics,2024-12-15 07:31:13,2025-06-11 08:32:33,active,true,false,286 +U3764,A1075,Cedar Labs,software,EMEA,smb,UK,active,CSM-EMEA,mila.park@cedarlabs.example,Mila Park,COO,executive,2024-11-16 07:31:13,2025-06-17 03:49:57,active,true,false,280 +U3765,A1075,Cedar Labs,software,EMEA,smb,UK,active,CSM-EMEA,alma.brooks@cedarlabs.example,Alma Brooks,Workflow Analyst,operations,2024-12-11 13:31:13,2025-06-16 11:38:37,active,true,false,281 +U3766,A1075,Cedar Labs,software,EMEA,smb,UK,active,CSM-EMEA,kenji.alvarez@cedarlabs.example,Kenji Alvarez,Revenue Operations Manager,sales,2024-11-04 10:31:13,2025-06-29 05:05:14,active,true,false,268 +U3767,A1075,Cedar Labs,software,EMEA,smb,UK,active,CSM-EMEA,noah.meyer@cedarlabs.example,Noah Meyer,Finance Manager,finance,2024-11-22 14:31:13,2025-06-28 03:41:11,active,true,false,269 +U3768,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,jonas.lewis@atlassolutions.example,Jonas Lewis,Founder,executive,2025-03-19 05:32:44,2025-06-21 02:29:20,active,true,false,276 +U3769,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,lina.turner@atlassolutions.example,Lina Turner,Insights Lead,analytics,2025-04-03 03:32:44,2025-06-20 13:08:42,active,true,false,277 +U3770,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,derek.sato@atlassolutions.example,Derek Sato,Sales Analyst,sales,2025-02-28 21:32:44,2025-06-21 13:01:22,active,true,false,276 +U3771,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,zoe.shah@atlassolutions.example,Zoe Shah,Product Manager,product,2025-03-14 04:32:44,2025-06-29 17:56:01,active,true,false,268 +U3772,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,leo.singh@atlassolutions.example,Leo Singh,Finance Manager,finance,2025-04-08 01:32:44,2025-06-22 23:43:23,active,true,false,275 +U3773,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,ivy.meyer@atlassolutions.example,Ivy Meyer,Data Platform Manager,data,2025-02-27 21:32:44,2025-06-22 16:28:33,active,true,false,275 +U3774,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,ivy.price@atlassolutions.example,Ivy Price,Operations Manager,operations,2025-04-07 01:32:44,2025-06-24 12:07:04,active,true,false,273 +U3775,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,elena.hart@atlassolutions.example,Elena Hart,Data Engineer,data,2025-04-07 04:32:44,2025-06-14 17:08:38,active,true,false,283 +U3776,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,noah.desai@atlassolutions.example,Noah Desai,Operations Manager,operations,2025-04-10 01:32:44,2025-06-27 20:48:56,active,true,false,270 +U3777,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,ava.park@atlassolutions.example,Ava Park,Analytics Manager,analytics,2025-03-07 00:32:44,2025-06-28 10:10:34,active,true,false,269 +U3778,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,ben.lopez@atlassolutions.example,Ben Lopez,Operations Manager,operations,2025-03-29 21:32:44,2025-06-13 02:58:12,active,true,false,284 +U3779,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,maya.rahman@atlassolutions.example,Maya Rahman,Technical Program Manager,product,2025-04-09 03:32:44,2025-06-28 08:33:18,active,true,false,269 +U3780,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,ben.rossi@atlassolutions.example,Ben Rossi,Insights Lead,analytics,2025-04-04 02:32:44,2025-06-27 01:07:30,active,true,false,270 +U3781,A1077,Evergreen Foods,travel,NA,mid_market,CA,active,CSM-East,noah.singh@evergreenfoods.example,Noah Singh,Operations Director,operations,2024-09-18 23:41:36,2025-06-30 02:20:09,active,true,false,267 +U3782,A1077,Evergreen Foods,travel,NA,mid_market,CA,active,CSM-East,luis.tan@evergreenfoods.example,Luis Tan,Data Engineer,data,2024-10-11 01:41:36,2025-06-20 20:51:54,active,true,false,277 +U3783,A1077,Evergreen Foods,travel,NA,mid_market,CA,active,CSM-East,isla.tan@evergreenfoods.example,Isla Tan,Operations Manager,operations,2024-10-10 01:41:36,2025-06-10 19:42:33,active,true,false,287 +U3784,A1077,Evergreen Foods,travel,NA,mid_market,CA,active,CSM-East,olivia.rahman@evergreenfoods.example,Olivia Rahman,Controller,finance,2024-10-25 06:41:36,2025-05-23 19:28:15,inactive,false,false,305 +U3785,A1077,Evergreen Foods,travel,NA,mid_market,CA,active,CSM-East,owen.alvarez@evergreenfoods.example,Owen Alvarez,Demand Gen Manager,marketing,2024-10-17 05:41:36,2025-06-10 11:35:13,active,true,false,287 +U3786,A1077,Evergreen Foods,travel,NA,mid_market,CA,active,CSM-East,marcus.ng@evergreenfoods.example,Marcus Ng,Sales Analyst,sales,2024-10-18 07:41:36,,provisioned,false,false, +U3787,A1077,Evergreen Foods,travel,NA,mid_market,CA,active,CSM-East,noah.rossi@evergreenfoods.example,Noah Rossi,Product Manager,product,2024-10-25 23:41:36,2025-06-20 12:50:07,active,true,false,277 +U3788,A1077,Evergreen Foods,travel,NA,mid_market,CA,active,CSM-East,lena.khan@evergreenfoods.example,Lena Khan,Operations Manager,operations,2024-10-22 05:41:36,2025-04-30 18:59:18,inactive,false,false,328 +U3789,A1077,Evergreen Foods,travel,NA,mid_market,CA,active,CSM-East,marta.park@evergreenfoods.example,Marta Park,Revenue Operations Manager,sales,2024-09-21 03:41:36,2025-06-21 16:21:08,active,true,false,276 +U3790,A1077,Evergreen Foods,travel,NA,mid_market,CA,active,CSM-East,marta.park2@evergreenfoods.example,Marta Park,Marketing Operations Lead,marketing,2024-10-18 04:41:36,2025-05-09 18:32:05,inactive,false,false,319 +U3791,A1077,Evergreen Foods,travel,NA,mid_market,CA,active,CSM-East,ava.lewis@evergreenfoods.example,Ava Lewis,Insights Lead,analytics,2024-10-26 05:41:36,2025-05-05 16:27:13,inactive,false,false,323 +U3792,A1077,Evergreen Foods,travel,NA,mid_market,CA,active,CSM-East,derek.turner@evergreenfoods.example,Derek Turner,Controller,finance,2024-09-24 03:41:36,2025-06-12 09:12:37,active,true,false,285 +U3793,A1078,Beacon Foods,software,EMEA,mid_market,FR,active,CSM-EMEA,leo.lewis@beaconfoods.example,Leo Lewis,Finance Manager,finance,2025-03-08 07:08:06,2025-06-20 09:19:42,active,true,false,277 +U3794,A1078,Beacon Foods,software,EMEA,mid_market,FR,active,CSM-EMEA,tara.singh@beaconfoods.example,Tara Singh,Marketing Operations Lead,marketing,2025-04-02 00:08:06,2025-03-26 15:43:36,inactive,false,false,363 +U3795,A1078,Beacon Foods,software,EMEA,mid_market,FR,active,CSM-EMEA,marta.rahman@beaconfoods.example,Marta Rahman,Controller,finance,2025-02-28 01:08:06,2025-06-13 01:23:30,active,true,false,284 +U3796,A1078,Beacon Foods,software,EMEA,mid_market,FR,active,CSM-EMEA,mila.patel@beaconfoods.example,Mila Patel,Workflow Analyst,operations,2025-03-12 07:08:06,2025-06-18 13:15:11,active,true,false,279 +U3797,A1078,Beacon Foods,software,EMEA,mid_market,FR,active,CSM-EMEA,marta.desai@beaconfoods.example,Marta Desai,BI Analyst,analytics,2025-04-11 08:08:06,2025-06-12 19:40:01,active,true,false,285 +U3798,A1078,Beacon Foods,software,EMEA,mid_market,FR,active,CSM-EMEA,hannah.park@beaconfoods.example,Hannah Park,Product Manager,product,2025-03-04 01:08:06,2025-06-11 07:26:56,active,true,false,286 +U3799,A1078,Beacon Foods,software,EMEA,mid_market,FR,active,CSM-EMEA,sofia.hill@beaconfoods.example,Sofia Hill,Controller,finance,2025-03-05 03:08:06,2025-03-29 16:41:45,inactive,false,false,360 +U3800,A1078,Beacon Foods,software,EMEA,mid_market,FR,active,CSM-EMEA,owen.hart@beaconfoods.example,Owen Hart,Product Manager,product,2025-03-07 05:08:06,2025-06-13 15:15:29,active,true,false,284 +U3801,A1078,Beacon Foods,software,EMEA,mid_market,FR,active,CSM-EMEA,olivia.tan@beaconfoods.example,Olivia Tan,Technical Program Manager,product,2025-02-26 03:08:06,2025-06-21 18:55:44,active,true,false,276 +U3802,A1078,Beacon Foods,software,EMEA,mid_market,FR,active,CSM-EMEA,samir.meyer@beaconfoods.example,Samir Meyer,Finance Manager,finance,2025-03-15 05:08:06,2025-06-20 08:45:36,active,true,false,277 +U3803,A1078,Beacon Foods,software,EMEA,mid_market,FR,active,CSM-EMEA,derek.alvarez@beaconfoods.example,Derek Alvarez,Controller,finance,2025-03-24 03:08:06,2025-06-20 16:48:26,active,true,false,277 +U3804,A1078,Beacon Foods,software,EMEA,mid_market,FR,active,CSM-EMEA,kai.price@beaconfoods.example,Kai Price,Technical Program Manager,product,2025-02-27 07:08:06,2025-06-10 12:47:43,active,true,false,287 +U3805,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,tomas.petrova@novafoods.example,Tomas Petrova,VP Data,executive,2024-09-28 17:45:24,2025-06-19 20:05:39,active,true,false,278 +U3806,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,priya.shah@novafoods.example,Priya Shah,Data Platform Manager,data,2024-10-18 23:45:24,2025-05-26 08:01:25,inactive,false,false,302 +U3807,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,arjun.singh@novafoods.example,Arjun Singh,VP Data,executive,2024-09-03 19:45:24,2025-03-15 14:12:46,inactive,false,false,374 +U3808,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,noah.park@novafoods.example,Noah Park,Demand Gen Manager,marketing,2024-10-17 20:45:24,2025-04-09 14:33:59,inactive,false,false,349 +U3809,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,mei.singh@novafoods.example,Mei Singh,Operations Director,operations,2024-10-07 20:45:24,2025-06-27 17:46:41,active,true,false,270 +U3810,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,naomi.saeed@novafoods.example,Naomi Saeed,BI Analyst,analytics,2024-09-08 23:45:24,2025-06-22 22:42:00,active,true,false,275 +U3811,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,samir.rahman@novafoods.example,Samir Rahman,Data Engineer,data,2024-10-07 19:45:24,2025-06-29 01:58:46,active,true,false,268 +U3812,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,jonas.ng@novafoods.example,Jonas Ng,Workflow Analyst,operations,2024-09-06 20:45:24,2025-06-22 14:38:23,active,true,false,275 +U3813,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,marta.grant@novafoods.example,Marta Grant,Data Platform Manager,data,2024-09-10 22:45:24,2025-06-28 04:15:04,active,true,false,269 +U3814,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,maya.ward@novafoods.example,Maya Ward,COO,executive,2024-10-10 23:45:24,2025-06-15 23:13:13,active,true,false,282 +U3815,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,marta.singh@novafoods.example,Marta Singh,Insights Lead,analytics,2024-10-18 17:45:24,2025-06-22 21:43:39,active,true,false,275 +U3816,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,victor.hill@novafoods.example,Victor Hill,COO,executive,2024-09-26 22:45:24,2025-06-27 13:33:38,active,true,false,270 +U3817,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,ivy.price@novafoods.example,Ivy Price,Operations Director,operations,2024-09-06 21:45:24,2025-04-13 15:38:15,inactive,false,false,345 +U3818,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,tomas.fischer@novafoods.example,Tomas Fischer,Sales Analyst,sales,2024-09-19 22:45:24,2025-06-20 23:21:54,active,true,false,277 +U3819,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,tara.price@novafoods.example,Tara Price,Finance Manager,finance,2024-10-05 17:45:24,2025-06-21 09:38:13,active,true,false,276 +U3820,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,naomi.hart@novafoods.example,Naomi Hart,Workflow Analyst,operations,2024-09-16 22:45:24,2025-06-28 09:51:56,active,true,false,269 +U3821,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,aisha.fischer@novafoods.example,Aisha Fischer,Workflow Analyst,operations,2024-09-29 16:45:24,2025-06-24 04:04:37,active,true,false,273 +U3822,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,claire.desai@novafoods.example,Claire Desai,Finance Manager,finance,2024-09-26 19:45:24,2025-04-17 12:17:18,inactive,false,false,341 +U3823,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,luis.shah@novafoods.example,Luis Shah,Controller,finance,2024-09-29 15:45:24,2025-03-28 20:33:41,inactive,false,false,361 +U3824,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,daniel.sato@novafoods.example,Daniel Sato,Product Manager,product,2024-09-10 23:45:24,2025-06-11 09:01:45,active,true,false,286 +U3825,A1080,Beacon Global,financial_services,EMEA,mid_market,NL,active,CSM-EMEA,leo.singh@beaconglobal.example,Leo Singh,Technical Program Manager,product,2024-09-05 10:30:12,2025-06-30 12:39:20,active,true,false,267 +U3826,A1080,Beacon Global,financial_services,EMEA,mid_market,NL,active,CSM-EMEA,ben.lewis@beaconglobal.example,Ben Lewis,Controller,finance,2024-09-21 10:30:12,2025-06-26 11:41:03,active,true,false,271 +U3827,A1080,Beacon Global,financial_services,EMEA,mid_market,NL,active,CSM-EMEA,owen.shah@beaconglobal.example,Owen Shah,Founder,executive,2024-09-20 09:30:12,2025-06-19 21:20:07,active,true,false,278 +U3828,A1080,Beacon Global,financial_services,EMEA,mid_market,NL,active,CSM-EMEA,samir.nash@beaconglobal.example,Samir Nash,Data Platform Manager,data,2024-09-09 07:30:12,2025-06-14 07:28:39,active,true,false,283 +U3829,A1080,Beacon Global,financial_services,EMEA,mid_market,NL,active,CSM-EMEA,luis.singh@beaconglobal.example,Luis Singh,Workflow Analyst,operations,2024-09-16 04:30:12,2025-06-25 07:25:16,active,true,false,272 +U3830,A1080,Beacon Global,financial_services,EMEA,mid_market,NL,active,CSM-EMEA,isla.brooks@beaconglobal.example,Isla Brooks,Demand Gen Manager,marketing,2024-09-13 03:30:12,2025-06-23 04:49:50,active,true,false,274 +U3831,A1080,Beacon Global,financial_services,EMEA,mid_market,NL,active,CSM-EMEA,kenji.romero@beaconglobal.example,Kenji Romero,BI Analyst,analytics,2024-08-27 10:30:12,2025-06-23 05:48:42,active,true,false,274 +U3832,A1080,Beacon Global,financial_services,EMEA,mid_market,NL,active,CSM-EMEA,ben.khan@beaconglobal.example,Ben Khan,Revenue Operations Manager,sales,2024-09-12 03:30:12,2025-06-14 16:09:12,active,true,false,283 +U3833,A1080,Beacon Global,financial_services,EMEA,mid_market,NL,active,CSM-EMEA,kai.romero@beaconglobal.example,Kai Romero,CFO,executive,2024-08-28 04:30:12,2025-06-12 16:51:57,active,true,false,285 +U3834,A1080,Beacon Global,financial_services,EMEA,mid_market,NL,active,CSM-EMEA,isla.rahman@beaconglobal.example,Isla Rahman,BI Analyst,analytics,2024-08-23 07:30:12,2025-06-14 00:50:38,active,true,false,283 +U3835,A1081,River Collective,financial_services,NA,mid_market,CA,active,CSM-East,kai.rahman@rivercollective.example,Kai Rahman,Data Platform Manager,data,2024-12-07 16:36:21,2025-06-11 17:04:47,active,true,false,286 +U3836,A1081,River Collective,financial_services,NA,mid_market,CA,active,CSM-East,jonas.kim@rivercollective.example,Jonas Kim,Operations Manager,operations,2024-11-26 20:36:21,2025-05-20 16:46:38,inactive,false,false,308 +U3837,A1081,River Collective,financial_services,NA,mid_market,CA,active,CSM-East,olivia.brooks@rivercollective.example,Olivia Brooks,Marketing Operations Lead,marketing,2024-12-25 17:36:21,2025-06-28 13:17:56,active,true,false,269 +U3838,A1081,River Collective,financial_services,NA,mid_market,CA,active,CSM-East,sofia.kim@rivercollective.example,Sofia Kim,Operations Manager,operations,2024-11-20 19:36:21,2025-06-20 04:08:21,active,true,false,277 +U3839,A1081,River Collective,financial_services,NA,mid_market,CA,active,CSM-East,tomas.turner@rivercollective.example,Tomas Turner,Analytics Engineer,data,2024-12-27 17:36:21,,provisioned,false,false, +U3840,A1081,River Collective,financial_services,NA,mid_market,CA,active,CSM-East,arjun.hill@rivercollective.example,Arjun Hill,Marketing Operations Lead,marketing,2024-12-06 20:36:21,2025-06-30 19:59:33,active,true,false,267 +U3841,A1081,River Collective,financial_services,NA,mid_market,CA,active,CSM-East,sofia.reed@rivercollective.example,Sofia Reed,FP&A Analyst,finance,2024-12-21 16:36:21,2025-06-23 08:08:13,active,true,false,274 +U3842,A1081,River Collective,financial_services,NA,mid_market,CA,active,CSM-East,ivy.park@rivercollective.example,Ivy Park,Data Engineer,data,2024-12-16 18:36:21,2025-06-14 08:30:24,active,true,false,283 +U3843,A1081,River Collective,financial_services,NA,mid_market,CA,active,CSM-East,maya.brooks@rivercollective.example,Maya Brooks,Technical Program Manager,product,2024-12-25 18:36:21,2025-06-19 12:27:19,active,true,false,278 +U3844,A1082,Summit Manufacturing,manufacturing,NA,mid_market,US,churned,CSM-East,helena.hart@summitmanufacturing.example,Helena Hart,BI Analyst,analytics,2024-11-27 03:18:31,2025-04-08 17:07:37,inactive,false,false,350 +U3845,A1082,Summit Manufacturing,manufacturing,NA,mid_market,US,churned,CSM-East,olivia.lewis@summitmanufacturing.example,Olivia Lewis,Analytics Manager,analytics,2024-11-30 03:18:31,2025-05-06 13:24:37,inactive,false,false,322 +U3846,A1082,Summit Manufacturing,manufacturing,NA,mid_market,US,churned,CSM-East,samir.lopez@summitmanufacturing.example,Samir Lopez,Technical Program Manager,product,2024-12-02 00:18:31,2025-04-28 12:58:05,inactive,false,false,330 +U3847,A1082,Summit Manufacturing,manufacturing,NA,mid_market,US,churned,CSM-East,samir.romero@summitmanufacturing.example,Samir Romero,Controller,finance,2024-11-17 02:18:31,2025-06-10 12:34:47,active,true,false,287 +U3848,A1082,Summit Manufacturing,manufacturing,NA,mid_market,US,churned,CSM-East,kenji.price@summitmanufacturing.example,Kenji Price,Technical Program Manager,product,2024-12-20 20:18:31,2025-03-08 20:38:31,inactive,false,false,381 +U3849,A1082,Summit Manufacturing,manufacturing,NA,mid_market,US,churned,CSM-East,isla.romero@summitmanufacturing.example,Isla Romero,Product Manager,product,2024-12-09 01:18:31,2025-03-18 12:52:29,inactive,false,false,371 +U3850,A1082,Summit Manufacturing,manufacturing,NA,mid_market,US,churned,CSM-East,maya.grant@summitmanufacturing.example,Maya Grant,Technical Program Manager,product,2024-11-29 02:18:31,2025-06-28 07:54:46,active,true,false,269 +U3851,A1083,Falcon Works,education,NA,mid_market,CA,active,CSM-East,evan.cole@falconworks.example,Evan Cole,Marketing Operations Lead,marketing,2025-02-13 05:17:30,2025-06-15 15:49:40,active,true,false,282 +U3852,A1083,Falcon Works,education,NA,mid_market,CA,active,CSM-East,zoe.rossi@falconworks.example,Zoe Rossi,Founder,executive,2025-01-22 08:17:30,2025-03-21 15:12:23,inactive,false,false,368 +U3853,A1083,Falcon Works,education,NA,mid_market,CA,active,CSM-East,maya.tan@falconworks.example,Maya Tan,Revenue Operations Manager,sales,2025-01-22 09:17:30,2025-06-23 16:26:17,active,true,false,274 +U3854,A1083,Falcon Works,education,NA,mid_market,CA,active,CSM-East,mei.sato@falconworks.example,Mei Sato,Workflow Analyst,operations,2025-01-13 02:17:30,2025-06-24 02:59:33,active,true,false,273 +U3855,A1083,Falcon Works,education,NA,mid_market,CA,active,CSM-East,zoe.saeed@falconworks.example,Zoe Saeed,BI Analyst,analytics,2025-02-17 01:17:30,2025-04-22 01:50:37,inactive,false,false,336 +U3856,A1083,Falcon Works,education,NA,mid_market,CA,active,CSM-East,mila.lopez@falconworks.example,Mila Lopez,Product Manager,product,2025-02-01 01:17:30,2025-06-18 03:09:38,active,true,false,279 +U3857,A1083,Falcon Works,education,NA,mid_market,CA,active,CSM-East,ivy.price@falconworks.example,Ivy Price,BI Analyst,analytics,2025-02-17 09:17:30,2025-06-19 01:34:21,active,true,false,278 +U3858,A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,CSM-East,priya.patel@silverfoods.example,Priya Patel,Analytics Engineer,data,2025-01-02 19:11:54,2025-06-10 10:00:19,active,true,false,287 +U3859,A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,CSM-East,noah.tan@silverfoods.example,Noah Tan,Founder,executive,2025-01-12 11:11:54,2025-05-07 06:45:55,inactive,false,false,321 +U3860,A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,CSM-East,ivy.keller@silverfoods.example,Ivy Keller,Marketing Operations Lead,marketing,2024-12-17 16:11:54,2025-06-25 11:40:06,active,true,false,272 +U3861,A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,CSM-East,marcus.romero@silverfoods.example,Marcus Romero,Technical Program Manager,product,2024-12-08 16:11:54,2025-06-16 06:58:38,active,true,false,281 +U3862,A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,CSM-East,marcus.turner@silverfoods.example,Marcus Turner,Demand Gen Manager,marketing,2024-12-10 16:11:54,2025-06-16 00:54:47,active,true,false,281 +U3863,A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,CSM-East,tomas.park@silverfoods.example,Tomas Park,Workflow Analyst,operations,2025-01-04 12:11:54,2025-06-11 18:21:09,active,true,false,286 +U3864,A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,CSM-East,priya.kim@silverfoods.example,Priya Kim,Founder,executive,2024-12-15 11:11:54,2025-03-30 14:28:42,inactive,false,false,359 +U3865,A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,CSM-East,mila.ng@silverfoods.example,Mila Ng,Operations Director,operations,2025-01-19 11:11:54,2025-06-17 10:48:05,active,true,false,280 +U3866,A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,CSM-East,lina.morgan@silverfoods.example,Lina Morgan,Workflow Analyst,operations,2025-01-02 14:11:54,2025-06-29 09:44:14,active,true,false,268 +U3867,A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,CSM-East,mila.chen@silverfoods.example,Mila Chen,Technical Program Manager,product,2025-01-05 17:11:54,2025-06-25 07:43:40,active,true,false,272 +U3868,A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,CSM-East,marcus.silva@silverfoods.example,Marcus Silva,Analytics Engineer,data,2025-01-09 16:11:54,2025-06-12 21:55:06,active,true,false,285 +U3869,A1085,Sierra Capital,financial_services,NA,smb,US,active,CSM-East,maya.keller@sierracapital.example,Maya Keller,Marketing Operations Lead,marketing,2024-10-26 18:19:51,2025-06-20 12:15:15,active,true,false,277 +U3870,A1085,Sierra Capital,financial_services,NA,smb,US,active,CSM-East,leo.park@sierracapital.example,Leo Park,Finance Manager,finance,2024-09-24 10:19:51,2025-06-17 20:33:32,active,true,false,280 +U3871,A1085,Sierra Capital,financial_services,NA,smb,US,active,CSM-East,helena.ng@sierracapital.example,Helena Ng,VP Data,executive,2024-10-23 18:19:51,2025-06-13 20:52:19,active,true,false,284 +U3872,A1085,Sierra Capital,financial_services,NA,smb,US,active,CSM-East,leo.singh@sierracapital.example,Leo Singh,VP Data,executive,2024-10-09 10:19:51,2025-06-26 06:07:28,active,true,false,271 +U3873,A1086,River Labs,software,EMEA,smb,FR,active,CSM-EMEA,hannah.alvarez@riverlabs.example,Hannah Alvarez,Analytics Engineer,data,2025-03-14 20:58:12,2025-03-20 20:58:21,inactive,false,false,369 +U3874,A1086,River Labs,software,EMEA,smb,FR,active,CSM-EMEA,tomas.silva@riverlabs.example,Tomas Silva,Demand Gen Manager,marketing,2025-04-06 00:58:12,2025-06-18 07:54:22,active,true,false,279 +U3875,A1086,River Labs,software,EMEA,smb,FR,active,CSM-EMEA,helena.silva@riverlabs.example,Helena Silva,Analytics Manager,analytics,2025-03-13 19:58:12,2025-06-29 10:44:14,active,true,false,268 +U3876,A1086,River Labs,software,EMEA,smb,FR,active,CSM-EMEA,priya.rossi@riverlabs.example,Priya Rossi,Marketing Operations Lead,marketing,2025-04-01 20:58:12,2025-06-21 14:46:38,active,true,false,276 +U3877,A1086,River Labs,software,EMEA,smb,FR,active,CSM-EMEA,mila.reed@riverlabs.example,Mila Reed,Demand Gen Manager,marketing,2025-03-13 23:58:12,2025-06-14 18:19:48,active,true,false,283 +U3878,A1087,Apex Capital,energy,NA,enterprise,CA,churned,CSM-East,maya.keller@apexcapital.example,Maya Keller,Founder,executive,2024-12-31 10:20:17,2025-06-20 23:33:22,active,true,false,277 +U3879,A1087,Apex Capital,energy,NA,enterprise,CA,churned,CSM-East,mei.fischer@apexcapital.example,Mei Fischer,Data Engineer,data,2024-12-08 12:20:17,2025-03-26 18:30:05,inactive,false,false,363 +U3880,A1087,Apex Capital,energy,NA,enterprise,CA,churned,CSM-East,kenji.silva@apexcapital.example,Kenji Silva,Marketing Operations Lead,marketing,2024-12-08 09:20:17,2025-06-16 15:30:10,active,true,false,281 +U3881,A1087,Apex Capital,energy,NA,enterprise,CA,churned,CSM-East,marcus.romero@apexcapital.example,Marcus Romero,FP&A Analyst,finance,2025-01-06 10:20:17,2025-04-14 15:01:53,inactive,false,false,344 +U3882,A1087,Apex Capital,energy,NA,enterprise,CA,churned,CSM-East,victor.fischer@apexcapital.example,Victor Fischer,COO,executive,2024-12-29 15:20:17,,provisioned,false,false, +U3883,A1087,Apex Capital,energy,NA,enterprise,CA,churned,CSM-East,peter.lewis@apexcapital.example,Peter Lewis,Marketing Operations Lead,marketing,2024-12-30 15:20:17,2025-04-12 00:54:04,inactive,false,false,346 +U3884,A1087,Apex Capital,energy,NA,enterprise,CA,churned,CSM-East,victor.desai@apexcapital.example,Victor Desai,Demand Gen Manager,marketing,2024-12-05 14:20:17,2025-06-25 13:41:11,active,true,false,272 +U3885,A1087,Apex Capital,energy,NA,enterprise,CA,churned,CSM-East,evan.lewis@apexcapital.example,Evan Lewis,Product Manager,product,2024-12-01 16:20:17,2025-03-17 14:08:54,inactive,false,false,372 +U3886,A1087,Apex Capital,energy,NA,enterprise,CA,churned,CSM-East,sofia.kim@apexcapital.example,Sofia Kim,CFO,executive,2024-12-29 16:20:17,2025-06-27 14:03:13,active,true,false,270 +U3887,A1088,Cedar Partners,energy,APAC,smb,NZ,active,CSM-APAC,mateo.turner@cedarpartners.example,Mateo Turner,Technical Program Manager,product,2025-02-24 21:19:15,2025-06-29 11:34:19,active,true,false,268 +U3888,A1088,Cedar Partners,energy,APAC,smb,NZ,active,CSM-APAC,helena.desai@cedarpartners.example,Helena Desai,Marketing Operations Lead,marketing,2025-02-19 22:19:15,2025-06-19 21:37:42,active,true,false,278 +U3889,A1088,Cedar Partners,energy,APAC,smb,NZ,active,CSM-APAC,daniel.singh@cedarpartners.example,Daniel Singh,Sales Analyst,sales,2025-03-15 17:19:15,2025-04-23 18:52:44,inactive,false,false,335 +U3890,A1088,Cedar Partners,energy,APAC,smb,NZ,active,CSM-APAC,elena.lewis@cedarpartners.example,Elena Lewis,Operations Manager,operations,2025-03-07 23:19:15,2025-06-24 11:10:57,active,true,false,273 +U3891,A1088,Cedar Partners,energy,APAC,smb,NZ,active,CSM-APAC,priya.ward@cedarpartners.example,Priya Ward,CFO,executive,2025-03-07 22:19:15,2025-06-19 05:05:28,active,true,false,278 +U3892,A1088,Cedar Partners,energy,APAC,smb,NZ,active,CSM-APAC,tara.khan@cedarpartners.example,Tara Khan,Analytics Manager,analytics,2025-02-08 17:19:15,2025-06-16 17:44:15,active,true,false,281 +U3893,A1089,Beacon Network,healthcare,NA,mid_market,US,active,CSM-East,tomas.cole@beaconnetwork.example,Tomas Cole,Operations Manager,operations,2024-12-09 09:16:08,2025-06-12 04:31:51,active,true,false,285 +U3894,A1089,Beacon Network,healthcare,NA,mid_market,US,active,CSM-East,evan.patel@beaconnetwork.example,Evan Patel,Operations Director,operations,2024-11-11 06:16:08,2025-06-15 03:41:13,active,true,false,282 +U3895,A1089,Beacon Network,healthcare,NA,mid_market,US,active,CSM-East,samir.tan@beaconnetwork.example,Samir Tan,VP Data,executive,2024-11-26 05:16:08,2025-06-24 22:52:31,active,true,false,273 +U3896,A1089,Beacon Network,healthcare,NA,mid_market,US,active,CSM-East,naomi.nash@beaconnetwork.example,Naomi Nash,BI Analyst,analytics,2024-11-26 05:16:08,2025-06-29 07:12:18,active,true,false,268 +U3897,A1089,Beacon Network,healthcare,NA,mid_market,US,active,CSM-East,noah.morgan@beaconnetwork.example,Noah Morgan,Analytics Engineer,data,2024-12-18 09:16:08,2025-05-24 08:40:56,inactive,false,false,304 +U3898,A1089,Beacon Network,healthcare,NA,mid_market,US,active,CSM-East,noah.patel@beaconnetwork.example,Noah Patel,Marketing Operations Lead,marketing,2024-12-07 04:16:08,2025-06-29 08:51:48,active,true,false,268 +U3899,A1089,Beacon Network,healthcare,NA,mid_market,US,active,CSM-East,arjun.ward@beaconnetwork.example,Arjun Ward,Technical Program Manager,product,2024-11-12 06:16:08,2025-06-20 16:47:24,active,true,false,277 +U3900,A1089,Beacon Network,healthcare,NA,mid_market,US,active,CSM-East,kai.reed@beaconnetwork.example,Kai Reed,Technical Program Manager,product,2024-12-12 01:16:08,2025-06-24 07:25:22,active,true,false,273 +U3901,A1089,Beacon Network,healthcare,NA,mid_market,US,active,CSM-East,naomi.singh@beaconnetwork.example,Naomi Singh,Analytics Engineer,data,2024-12-19 06:16:08,2025-06-20 11:10:15,active,true,false,277 +U3902,A1089,Beacon Network,healthcare,NA,mid_market,US,active,CSM-East,ivy.morgan@beaconnetwork.example,Ivy Morgan,Analytics Manager,analytics,2024-12-14 01:16:08,2025-06-11 01:45:47,active,true,false,286 +U3903,A1089,Beacon Network,healthcare,NA,mid_market,US,active,CSM-East,naomi.shah@beaconnetwork.example,Naomi Shah,CFO,executive,2024-12-01 04:16:08,,provisioned,false,false, +U3904,A1089,Beacon Network,healthcare,NA,mid_market,US,active,CSM-East,lina.tan@beaconnetwork.example,Lina Tan,Product Manager,product,2024-11-28 08:16:08,2025-06-17 16:28:07,active,true,false,280 +U3905,A1090,Vertex Labs,energy,NA,smb,US,active,CSM-East,aisha.hill@vertexlabs.example,Aisha Hill,Finance Manager,finance,2024-11-11 05:37:20,2025-06-15 02:55:30,active,true,false,282 +U3906,A1090,Vertex Labs,energy,NA,smb,US,active,CSM-East,tomas.kim@vertexlabs.example,Tomas Kim,BI Analyst,analytics,2024-10-12 02:37:20,2025-06-11 23:45:57,active,true,false,286 +U3907,A1090,Vertex Labs,energy,NA,smb,US,active,CSM-East,ava.brooks@vertexlabs.example,Ava Brooks,Founder,executive,2024-10-08 03:37:20,2025-06-20 06:20:38,active,true,false,277 +U3908,A1090,Vertex Labs,energy,NA,smb,US,active,CSM-East,noah.rahman@vertexlabs.example,Noah Rahman,Operations Director,operations,2024-11-01 04:37:20,2025-06-11 23:03:26,active,true,false,286 diff --git a/tasks/helixops_saas005/setup.sh b/tasks/helixops_saas005/setup.sh new file mode 100755 index 00000000..e3046744 --- /dev/null +++ b/tasks/helixops_saas005/setup.sh @@ -0,0 +1,3 @@ +#!/bin/bash +patch -p1 < /app/setup/changes.patch +dbt run || true diff --git a/tasks/helixops_saas005/setup/changes.patch b/tasks/helixops_saas005/setup/changes.patch new file mode 100644 index 00000000..93ec3e15 --- /dev/null +++ b/tasks/helixops_saas005/setup/changes.patch @@ -0,0 +1,31 @@ +--- a/models/staging/stg_users.sql ++++ b/models/staging/stg_users.sql +@@ -4,7 +4,6 @@ + select + trim(usr_id) as user_id, + trim(acct_id_fk) as account_id, +- lower(trim(email_addr)) as email, + trim(full_nm) as full_name, + trim(title_txt) as title, + lower(trim(dept_txt)) as department, +--- a/models/intermediate/int_account_users.sql ++++ b/models/intermediate/int_account_users.sql +@@ -14,7 +14,7 @@ + a.billing_country, + a.account_status, + a.owner_team, +- u.email, ++ u.email_address, + u.full_name, + u.title, + u.department, +--- a/models/intermediate/int_workspace_roster.sql ++++ b/models/intermediate/int_workspace_roster.sql +@@ -23,7 +23,6 @@ + a.region, + a.billing_country, + m.user_id, +- u.email, + u.full_name, + u.title, + u.department, diff --git a/tasks/helixops_saas005/solution.sh b/tasks/helixops_saas005/solution.sh new file mode 100755 index 00000000..11af6806 --- /dev/null +++ b/tasks/helixops_saas005/solution.sh @@ -0,0 +1,3 @@ +#!/bin/bash +patch -p1 < /sage/solutions/changes.patch +dbt run --select stg_users+ diff --git a/tasks/helixops_saas005/solutions/changes.patch b/tasks/helixops_saas005/solutions/changes.patch new file mode 100644 index 00000000..54c7de3d --- /dev/null +++ b/tasks/helixops_saas005/solutions/changes.patch @@ -0,0 +1,10 @@ +--- a/models/staging/stg_users.sql ++++ b/models/staging/stg_users.sql +@@ -4,6 +4,7 @@ + select + trim(usr_id) as user_id, + trim(acct_id_fk) as account_id, ++ lower(trim(email_addr)) as email_address, + trim(full_nm) as full_name, + trim(title_txt) as title, + lower(trim(dept_txt)) as department, diff --git a/tasks/helixops_saas005/task.yaml b/tasks/helixops_saas005/task.yaml new file mode 100644 index 00000000..afae2f00 --- /dev/null +++ b/tasks/helixops_saas005/task.yaml @@ -0,0 +1,28 @@ +task_id: helixops_saas005 +status: ready +description: Fix a broken intermediate model by tracing the error back to a missing column in the staging layer +prompts: + - key: base + prompt: |- + Can you fix the failing model. +author_name: joel +author_email: joel@example.com +difficulty: medium +tags: + - dbt + - helixops_saas +test_setup: |- + dbt run --select stg_users int_account_users +variants: +- db_type: duckdb + db_name: helixops_saas + project_type: dbt + project_name: helixops_saas +- db_type: duckdb + db_name: helixops_saas + project_type: dbt-fusion + project_name: helixops_saas +solution_seeds: + - table_name: int_account_users + exclude_columns: + - days_since_last_login diff --git a/tasks/helixops_saas005/tests/AUTO_int_account_users_equality.sql b/tasks/helixops_saas005/tests/AUTO_int_account_users_equality.sql new file mode 100644 index 00000000..27e1dd52 --- /dev/null +++ b/tasks/helixops_saas005/tests/AUTO_int_account_users_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'int_account_users' %} +{% set answer_keys = ['solution__int_account_users'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + 'days_since_last_login' +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__int_account_users') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas005/tests/AUTO_int_account_users_existence.sql b/tasks/helixops_saas005/tests/AUTO_int_account_users_existence.sql new file mode 100644 index 00000000..383baafb --- /dev/null +++ b/tasks/helixops_saas005/tests/AUTO_int_account_users_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'int_account_users' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas006/macros/ade_bench_equality_test.sql b/tasks/helixops_saas006/macros/ade_bench_equality_test.sql new file mode 100644 index 00000000..510c6037 --- /dev/null +++ b/tasks/helixops_saas006/macros/ade_bench_equality_test.sql @@ -0,0 +1,78 @@ +{% macro ade_bench_equality_test(table_name, answer_keys, cols_to_exclude=[]) %} + {% if not execute %} + select 1 where 1=0 + {% else %} + {% set ns = namespace(matched=false) %} + {% set actual_rel = load_relation(ref(table_name)) %} + + {% if actual_rel is not none %} + {% set actual_columns = adapter.get_columns_in_relation(actual_rel) %} + {% set exclude_lower = cols_to_exclude | map('lower') | list %} + + {%- set actual_col_names = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do actual_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set actual_set = actual_col_names | sort %} + + {% for answer_key in answer_keys %} + {% if not ns.matched %} + {% set seed_rel = load_relation(ref(answer_key)) %} + {% if seed_rel is not none %} + {% set seed_columns = adapter.get_columns_in_relation(seed_rel) %} + + {%- set seed_col_names = [] -%} + {%- for col in seed_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do seed_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set seed_set = seed_col_names | sort %} + + {% if actual_set == seed_set %} + {%- set compare_cols = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do compare_cols.append(col.quoted) -%} + {%- endif -%} + {%- endfor -%} + {% set compare_cols_csv = compare_cols | join(', ') %} + + {% set query %} + with a_minus_b as ( + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + except + select {{ compare_cols_csv }} from {{ ref(table_name) }} + ), + b_minus_a as ( + select {{ compare_cols_csv }} from {{ ref(table_name) }} + except + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + ), + unioned as ( + select * from a_minus_b + union all + select * from b_minus_a + ) + select count(*) as diff_count from unioned + {% endset %} + + {% set result = run_query(query) %} + {% if result.rows[0][0] == 0 %} + {% set ns.matched = true %} + {% endif %} + {% endif %} + {% endif %} + {% endif %} + {% endfor %} + {% endif %} + + {% if ns.matched %} + select 1 where 1=0 + {% else %} + select 1 + {% endif %} + {% endif %} +{% endmacro %} diff --git a/tasks/helixops_saas006/seeds/_no-op.txt b/tasks/helixops_saas006/seeds/_no-op.txt new file mode 100644 index 00000000..15dab688 --- /dev/null +++ b/tasks/helixops_saas006/seeds/_no-op.txt @@ -0,0 +1,53 @@ + + +seeds: + helixops_saas: + solution__mart_account_360: + +column_types: + account_id: varchar + account_name: varchar + industry: varchar + region: varchar + segment: varchar + billing_country: varchar + account_status: varchar + is_churned: boolean + employee_band: varchar + owner_team: varchar + workspace_count: bigint + active_workspace_count: bigint + sandbox_workspace_count: bigint + primary_workspace_name: varchar + user_count: bigint + active_user_count: bigint + plan_name: varchar + plan_family: varchar + billing_cycle: varchar + support_tier: varchar + contracted_seats: integer + discount_pct: double + latest_invoice_status: varchar + latest_payment_status: varchar + latest_invoice_date: date + latest_payment_date: date + latest_outstanding_amount_usd: double + has_past_due_invoice: boolean + net_mrr: double + latest_revenue_month: date + latest_recurring_revenue_usd: double + latest_one_time_revenue_usd: double + latest_total_revenue_usd: double + latest_collected_revenue_usd: double + latest_usage_date: date + latest_daily_active_users: bigint + latest_daily_projects_run: bigint + latest_daily_api_calls: bigint + avg_active_users_7d: double + avg_active_users_30d: double + total_projects_run_30d: bigint + total_api_calls_30d: bigint + peak_storage_gb_30d: double + lifetime_ticket_count: bigint + open_ticket_count: bigint + avg_csat_score: double + avg_first_response_minutes: double diff --git a/tasks/helixops_saas006/seeds/solution__mart_account_360.csv b/tasks/helixops_saas006/seeds/solution__mart_account_360.csv new file mode 100644 index 00000000..9add4d46 --- /dev/null +++ b/tasks/helixops_saas006/seeds/solution__mart_account_360.csv @@ -0,0 +1,91 @@ +account_id,account_name,industry,region,segment,billing_country,account_status,is_churned,employee_band,owner_team,workspace_count,active_workspace_count,sandbox_workspace_count,primary_workspace_name,user_count,active_user_count,plan_name,plan_family,billing_cycle,support_tier,contracted_seats,discount_pct,latest_invoice_status,latest_payment_status,latest_invoice_date,latest_payment_date,latest_outstanding_amount_usd,has_past_due_invoice,net_mrr,latest_revenue_month,latest_recurring_revenue_usd,latest_one_time_revenue_usd,latest_total_revenue_usd,latest_collected_revenue_usd,latest_usage_date,latest_daily_active_users,latest_daily_projects_run,latest_daily_api_calls,avg_active_users_7d,avg_active_users_30d,total_projects_run_30d,total_api_calls_30d,peak_storage_gb_30d,lifetime_ticket_count,open_ticket_count,avg_csat_score,avg_first_response_minutes +A1009,Summit Group,financial_services,NA,mid_market,US,active,false,501-1000,CSM-East,2,2,0,summit-core,13,11,Enterprise Monthly,enterprise,monthly,premium,13,10.0,paid,paid,2025-06-01,2025-06-10,0.0,false,2340.0,2025-06-01,2340.0,0.0,2340.0,2340.0,2025-06-30,6,32,2031,0.0,7.333333333333333,1001,61468,27.7,3,0,4.0,27.666666666666668 +A1021,Apex Logistics,software,NA,smb,US,active,false,11-50,CSM-East,1,1,0,apex-core,7,7,Starter Monthly,starter,monthly,standard,8,0.0,paid,paid,2025-06-01,2025-06-09,0.0,false,500.0,2025-06-01,500.0,0.0,500.0,500.0,2025-06-30,5,18,897,0.0,4.166666666666667,469,27805,25.9,2,0,4.0,94.0 +A1072,Summit Ventures,software,NA,enterprise,US,active,false,5000+,CSM-East,3,3,1,summit-core,18,15,Enterprise Annual,enterprise,annual,premium,20,10.0,paid,paid,2025-01-01,2025-01-07,0.0,false,2025.0,2025-01-01,24300.0,2500.0,26800.0,26800.0,2025-06-30,13,71,3915,0.0,9.5,1733,94474,70.8,4,0,3.75,204.25 +A1077,Evergreen Foods,travel,NA,mid_market,CA,active,false,201-500,CSM-East,3,3,0,evergreen-core,12,7,Growth Monthly,growth,monthly,priority,15,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,1500.0,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,6,38,2104,0.0,5.233333333333333,1003,58101,36.6,4,0,4.0,45.0 +A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,active,false,201-500,CSM-EMEA,2,2,0,summit-core,9,8,Growth Monthly,growth,monthly,priority,11,10.0,paid,paid,2025-06-01,2025-06-11,0.0,false,1350.0,2025-06-01,1350.0,0.0,1620.0,1620.0,2025-06-30,7,35,1779,0.0,4.566666666666666,767,44175,35.2,4,0,4.5,203.75 +A1023,Atlas Systems,education,NA,smb,CA,active,false,11-50,CSM-East,1,1,0,atlas-core,8,8,Starter Monthly,starter,monthly,standard,10,20.0,past_due,failed,2025-06-01,2025-06-18,400.0,true,400.0,2025-06-01,400.0,0.0,400.0,0.0,2025-06-30,6,18,1272,0.0,5.0,532,31779,17.9,3,1,4.5,194.33333333333334 +A1044,Summit Holdings,software,EMEA,smb,NL,active,false,11-50,CSM-EMEA,1,1,0,summit-core,5,5,Growth Monthly,growth,monthly,priority,6,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,1500.0,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,2,9,669,0.0,3.3333333333333335,391,24890,16.7,3,0,4.333333333333333,73.0 +A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,false,201-500,CSM-EMEA,2,2,0,silver-core,13,10,Enterprise Monthly,enterprise,monthly,premium,13,0.0,paid,paid,2025-06-01,2025-06-10,0.0,false,2600.0,2025-06-01,2600.0,0.0,3120.0,3120.0,2025-06-30,9,39,1871,0.0,8.133333333333333,1075,63469,22.9,4,1,3.3333333333333335,101.25 +A1080,Beacon Global,financial_services,EMEA,mid_market,NL,active,false,201-500,CSM-EMEA,2,2,0,beacon-core,10,10,Growth Monthly,growth,monthly,priority,11,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,1500.0,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,6,33,1980,0.0,7.133333333333334,959,58564,45.2,5,2,4.0,358.8 +A1086,River Labs,software,EMEA,smb,FR,active,false,11-50,CSM-EMEA,1,1,0,river-core,5,4,Starter Monthly,starter,monthly,standard,6,0.0,paid,paid,2025-06-01,2025-06-07,0.0,false,500.0,2025-06-01,500.0,0.0,600.0,600.0,2025-06-30,3,13,841,0.0,2.5,314,18915,28.2,2,1,3.0,88.5 +A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,false,1000+,CSM-East,3,2,1,nova-core,16,15,Enterprise Annual,enterprise,annual,premium,18,5.0,paid,paid,2025-01-01,2025-01-11,0.0,false,2137.5,2025-01-01,25650.0,2000.0,27650.0,27650.0,2025-06-30,9,48,2413,0.0,7.9,1299,77795,64.1,5,0,4.8,158.0 +A1027,BluePeak Health,retail,APAC,smb,SG,active,false,51-200,CSM-APAC,2,2,0,bluepeak-core,5,5,Starter Monthly,starter,monthly,standard,6,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,500.0,2025-06-01,500.0,0.0,545.0,545.0,2025-06-30,3,16,1181,0.0,3.6,520,32095,22.8,1,0,4.0,8.0 +A1034,Helio Partners,travel,NA,smb,CA,active,false,51-200,CSM-East,2,2,1,helio-core,7,7,Starter Monthly,starter,monthly,standard,8,0.0,paid,paid,2025-06-01,2025-06-13,0.0,false,500.0,2025-06-01,500.0,0.0,500.0,500.0,2025-06-30,6,26,1171,0.0,3.5,507,26564,20.8,3,0,4.0,376.3333333333333 +A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,false,201-500,CSM-APAC,3,3,1,harbor-core,12,10,Enterprise Monthly,enterprise,monthly,premium,15,0.0,paid,paid,2025-06-01,2025-06-08,0.0,false,2600.0,2025-06-01,2600.0,0.0,2834.0,2834.0,2025-06-30,5,33,1669,0.0,5.766666666666667,1066,56746,40.9,4,1,2.6666666666666665,29.0 +A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,false,201-500,CSM-EMEA,3,3,1,cedar-core,12,10,Growth Monthly,growth,monthly,priority,15,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,1500.0,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,7,42,2050,0.0,6.766666666666667,1147,61506,35.5,5,0,4.4,178.8 +A1049,Northwind Network,energy,NA,enterprise,CA,active,false,5000+,CSM-East,3,3,0,northwind-core,20,18,Enterprise Annual,enterprise,annual,premium,25,10.0,paid,paid,2025-01-01,2025-01-07,0.0,false,2025.0,2025-01-01,24300.0,1500.0,25800.0,25800.0,2025-06-30,15,84,5189,0.0,13.066666666666666,2058,127637,71.0,7,1,4.0,202.85714285714286 +A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,false,501-1000,CSM-East,2,2,0,vertex-core,11,9,Growth Monthly,growth,monthly,priority,13,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,1500.0,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,7,36,2022,0.0,6.566666666666666,937,57316,25.6,2,0,4.0,266.0 +A1088,Cedar Partners,energy,APAC,smb,NZ,active,false,51-200,CSM-APAC,1,1,0,cedar-core,6,5,Starter Monthly,starter,monthly,standard,8,0.0,paid,paid,2025-06-01,2025-06-09,0.0,false,500.0,2025-06-01,500.0,0.0,550.0,550.0,2025-06-30,2,11,796,0.0,3.2,388,23706,21.1,2,1,5.0,635.5 +A1024,Sierra Group,manufacturing,NA,smb,CA,active,false,11-50,CSM-East,2,2,0,sierra-core,4,4,Starter Monthly,starter,monthly,standard,5,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,500.0,2025-06-01,500.0,0.0,500.0,500.0,2025-06-30,3,17,985,0.0,3.2333333333333334,490,28759,20.5,1,0,5.0,129.0 +A1035,Bright Retail,retail,EMEA,mid_market,UK,active,false,501-1000,CSM-EMEA,3,3,1,bright-core,13,11,Enterprise Monthly,enterprise,monthly,premium,15,0.0,paid,paid,2025-06-01,2025-06-05,0.0,false,2600.0,2025-06-01,2600.0,0.0,3120.0,3120.0,2025-06-30,7,42,2322,0.0,6.466666666666667,1115,59544,42.0,5,0,4.4,107.8 +A1058,Evergreen Analytics,travel,EMEA,smb,UK,active,false,11-50,CSM-EMEA,2,2,0,evergreen-core,7,5,Starter Monthly,starter,monthly,standard,9,0.0,paid,paid,2025-06-01,2025-06-10,0.0,false,500.0,2025-06-01,500.0,0.0,600.0,600.0,2025-06-30,6,26,1225,0.0,4.4,594,36026,25.5,3,0,4.333333333333333,235.33333333333334 +A1026,Pioneer Capital,education,NA,smb,CA,active,false,11-50,CSM-East,1,1,0,pioneer-core,8,8,Starter Monthly,starter,monthly,standard,9,20.0,paid,paid,2025-06-01,2025-06-13,0.0,false,400.0,2025-06-01,400.0,0.0,400.0,400.0,2025-06-30,6,22,1587,0.0,4.7,507,30416,15.5,1,0,5.0,42.0 +A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,false,1000+,CSM-EMEA,4,4,2,lighthouse-core,18,15,Enterprise Monthly,enterprise,monthly,premium,22,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,2600.0,2025-06-01,2600.0,0.0,3120.0,3120.0,2025-06-30,7,66,3748,0.0,7.766666666666667,1892,93362,66.6,4,1,4.333333333333333,60.0 +A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,false,501-1000,CSM-APAC,3,3,1,northwind-core,11,10,Growth Monthly,growth,monthly,priority,13,0.0,paid,paid,2025-06-01,2025-06-08,0.0,false,1500.0,2025-06-01,1500.0,0.0,1650.0,1650.0,2025-06-30,6,37,1967,0.0,6.733333333333333,1136,60586,35.9,5,0,4.2,236.8 +A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,false,5000+,CSM-EMEA,3,3,1,atlas-core,17,16,Enterprise Monthly,enterprise,monthly,premium,20,5.0,paid,paid,2025-06-01,2025-06-08,0.0,false,2470.0,2025-06-01,2470.0,0.0,2964.0,2964.0,2025-06-30,10,66,3571,0.0,8.866666666666667,1687,91764,48.1,4,1,5.0,58.0 +A1064,Atlas Health,education,NA,smb,US,active,false,51-200,CSM-East,1,1,0,atlas-core,4,4,Starter Monthly,starter,monthly,standard,5,20.0,paid,paid,2025-06-01,2025-06-13,0.0,false,400.0,2025-06-01,400.0,0.0,400.0,400.0,2025-06-30,2,9,421,0.0,2.4,306,18016,27.4,2,0,5.0,699.0 +A1008,Pacific Works,software,EMEA,mid_market,UK,active,false,201-500,CSM-EMEA,3,3,0,pacific-core,11,11,Enterprise Monthly,enterprise,monthly,premium,12,5.0,paid,paid,2025-06-01,2025-06-09,0.0,false,2470.0,2025-06-01,2470.0,0.0,2964.0,2964.0,2025-06-30,8,46,2869,0.0,8.066666666666666,1255,75716,25.8,3,0,3.6666666666666665,440.6666666666667 +A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,false,501-1000,CSM-EMEA,2,2,1,pioneer-core,13,12,Growth Monthly,growth,monthly,priority,13,0.0,past_due,failed,2025-06-01,2025-06-20,1800.0,true,1500.0,2025-06-01,1500.0,0.0,1800.0,0.0,2025-06-30,5,29,1453,0.0,4.933333333333334,797,38707,33.5,3,0,4.333333333333333,158.0 +A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,false,5000+,CSM-East,3,3,0,bright-core,13,11,Enterprise Annual,enterprise,annual,premium,13,10.0,paid,paid,2025-01-01,2025-01-12,0.0,false,2025.0,2025-01-01,24300.0,0.0,24300.0,24300.0,2025-06-30,10,69,4556,0.0,8.666666666666666,1634,96476,69.2,3,0,4.333333333333333,91.33333333333333 +A1078,Beacon Foods,software,EMEA,mid_market,FR,active,false,501-1000,CSM-EMEA,3,3,0,beacon-core,12,10,Growth Monthly,growth,monthly,priority,13,5.0,paid,paid,2025-06-01,2025-06-13,0.0,false,1425.0,2025-06-01,1425.0,0.0,1710.0,1710.0,2025-06-30,7,43,2894,0.0,6.433333333333334,1081,63211,36.9,4,1,4.0,406.25 +A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,false,501-1000,CSM-East,2,2,0,silver-core,11,9,Enterprise Monthly,enterprise,monthly,premium,12,0.0,paid,paid,2025-06-01,2025-06-06,0.0,false,2600.0,2025-06-01,2600.0,0.0,2600.0,2600.0,2025-06-30,8,41,1914,0.0,6.733333333333333,970,59696,45.6,4,1,3.0,175.75 +A1085,Sierra Capital,financial_services,NA,smb,US,active,false,11-50,CSM-East,1,1,0,sierra-core,4,4,Starter Monthly,starter,monthly,standard,5,0.0,paid,paid,2025-06-01,2025-06-13,0.0,false,500.0,2025-06-01,500.0,0.0,500.0,500.0,2025-06-30,4,16,993,0.0,2.566666666666667,335,20055,22.4,2,0,4.0,217.5 +A1089,Beacon Network,healthcare,NA,mid_market,US,active,false,201-500,CSM-East,2,2,0,beacon-core,12,10,Growth Monthly,growth,monthly,priority,15,0.0,paid,paid,2025-06-01,2025-06-09,0.0,false,1500.0,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,9,41,2330,0.0,7.566666666666666,1041,63704,36.8,2,0,5.0,496.0 +A1006,Helio Works,education,EMEA,mid_market,UK,active,false,201-500,CSM-EMEA,2,2,0,helio-core,7,5,Growth Monthly,growth,monthly,priority,8,20.0,paid,paid,2025-06-01,2025-06-07,0.0,false,1200.0,2025-06-01,1200.0,0.0,1440.0,1440.0,2025-06-30,3,24,1300,0.0,3.9,700,41229,32.3,3,0,4.0,91.33333333333333 +A1025,Bright Capital,education,EMEA,smb,UK,active,false,51-200,CSM-EMEA,1,1,0,bright-core,6,5,Starter Monthly,starter,monthly,standard,8,20.0,paid,paid,2025-06-01,2025-06-09,0.0,false,400.0,2025-06-01,400.0,0.0,480.0,480.0,2025-06-30,3,13,669,0.0,3.1,370,23365,27.0,2,0,5.0,83.0 +A1038,River Systems,logistics,APAC,smb,AU,active,false,51-200,CSM-APAC,2,2,0,river-core,5,4,Starter Monthly,starter,monthly,standard,6,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,500.0,2025-06-01,500.0,0.0,550.0,550.0,2025-06-30,3,16,1047,0.0,2.8,446,27242,26.1,2,1,4.0,327.5 +A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,false,5000+,CSM-APAC,3,3,1,orchid-core,19,19,Enterprise Annual,enterprise,annual,premium,20,5.0,paid,paid,2025-01-01,2025-01-07,0.0,false,2137.5,2025-01-01,25650.0,0.0,28215.0,28215.0,2025-06-30,14,65,3643,0.0,12.3,1975,108624,70.2,7,1,4.5,154.28571428571428 +A1074,Granite Analytics,retail,NA,mid_market,CA,active,false,501-1000,CSM-East,3,3,0,granite-core,12,11,Growth Monthly,growth,monthly,priority,14,10.0,paid,paid,2025-06-01,2025-06-09,0.0,false,1350.0,2025-06-01,1350.0,0.0,1350.0,1350.0,2025-06-30,8,49,2600,0.0,8.266666666666667,1288,77923,35.1,5,1,3.75,470.8 +A1007,Silver Systems,energy,EMEA,smb,FR,active,false,51-200,CSM-EMEA,1,1,0,silver-core,4,3,Starter Monthly,starter,monthly,standard,5,0.0,open,,2025-06-01,,600.0,false,500.0,2025-06-01,500.0,0.0,600.0,0.0,2025-06-30,2,10,676,0.0,1.6,242,14726,25.9,3,0,4.666666666666667,420.3333333333333 +A1012,Cedar Ventures,retail,APAC,smb,JP,active,false,11-50,CSM-APAC,2,2,1,cedar-core,7,6,Starter Monthly,starter,monthly,standard,8,0.0,paid,failed,2025-06-01,2025-06-15,0.0,false,500.0,2025-06-01,500.0,0.0,550.0,550.0,2025-06-30,6,27,1505,0.0,3.8333333333333335,530,29420,26.5,3,0,4.333333333333333,78.0 +A1013,River Foods,manufacturing,NA,mid_market,US,active,false,501-1000,CSM-East,3,3,0,river-core,7,5,Growth Monthly,growth,monthly,priority,7,5.0,paid,paid,2025-06-01,2025-06-14,0.0,false,1425.0,2025-06-01,1425.0,0.0,1425.0,1425.0,2025-06-30,6,40,2273,0.0,4.433333333333334,930,51065,28.6,3,0,5.0,274.0 +A1031,Helio Holdings,healthcare,APAC,mid_market,AU,active,false,201-500,CSM-APAC,3,3,0,helio-core,10,10,Growth Monthly,growth,monthly,priority,13,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,1500.0,2025-06-01,1500.0,0.0,1650.0,1650.0,2025-06-30,8,46,2999,0.0,6.566666666666666,1115,63242,41.6,4,1,3.0,220.0 +A1056,Delta Global,retail,APAC,mid_market,AU,active,false,201-500,CSM-APAC,3,3,0,delta-core,11,10,Growth Monthly,growth,monthly,priority,11,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,1500.0,2025-06-01,1500.0,0.0,1650.0,1650.0,2025-06-30,9,50,3199,0.0,6.6,1111,67843,45.1,4,0,3.75,162.5 +A1057,Harbor Partners,education,APAC,enterprise,NZ,active,false,1000+,CSM-APAC,4,4,1,harbor-core,13,12,Enterprise Annual,enterprise,annual,premium,13,20.0,paid,paid,2025-01-01,2025-01-09,0.0,false,1800.0,2025-01-01,21600.0,0.0,23760.0,23760.0,2025-06-30,7,68,3920,0.0,7.533333333333333,1853,101155,57.9,7,2,3.4,207.71428571428572 +A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,false,201-500,CSM-EMEA,2,2,0,atlas-core,13,13,Growth Monthly,growth,monthly,priority,16,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,1500.0,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,10,47,2790,0.0,9.333333333333334,1181,72164,43.5,3,1,5.0,169.33333333333334 +A1019,Sierra Systems,education,APAC,smb,JP,active,false,51-200,CSM-APAC,2,2,1,sierra-core,4,3,Starter Monthly,starter,monthly,standard,5,20.0,paid,paid,2025-06-01,2025-06-11,0.0,false,400.0,2025-06-01,400.0,0.0,440.0,440.0,2025-06-30,1,10,451,0.0,1.4666666666666666,340,16856,19.2,1,1,,144.0 +A1020,Pioneer Network,travel,EMEA,smb,FR,active,false,11-50,CSM-EMEA,1,1,0,pioneer-core,4,3,Growth Monthly,growth,monthly,priority,5,0.0,paid,paid,2025-06-01,2025-06-08,0.0,false,1500.0,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,3,13,677,0.0,1.7,255,14423,23.0,1,0,5.0,47.0 +A1050,Cedar Energy,software,APAC,smb,JP,active,false,11-50,CSM-APAC,2,2,1,cedar-core,4,4,Starter Monthly,starter,monthly,standard,5,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,500.0,2025-06-01,500.0,0.0,550.0,550.0,2025-06-30,1,10,518,0.0,2.066666666666667,387,19633,21.0,1,1,,175.0 +A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,false,201-500,CSM-East,2,2,1,cedar-core,13,11,Growth Monthly,growth,monthly,priority,15,0.0,past_due,failed,2025-06-01,2025-06-22,1500.0,true,1500.0,2025-06-01,1500.0,0.0,1500.0,0.0,2025-06-30,5,28,1881,0.0,6.2,891,49873,31.1,2,0,4.0,194.5 +A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,active,false,11-50,CSM-APAC,1,1,0,helio-core,8,6,Starter Monthly,starter,monthly,standard,10,0.0,paid,paid,2025-06-01,2025-06-10,0.0,false,500.0,2025-06-01,500.0,0.0,550.0,550.0,2025-06-30,4,15,834,0.0,3.7333333333333334,424,24980,17.3,2,0,4.0,111.0 +A1075,Cedar Labs,software,EMEA,smb,UK,active,false,11-50,CSM-EMEA,1,1,0,cedar-core,8,8,Starter Monthly,starter,monthly,standard,10,0.0,paid,paid,2025-06-01,2025-06-10,0.0,false,500.0,2025-06-01,500.0,0.0,600.0,600.0,2025-06-30,6,19,1340,0.0,4.9,520,31589,28.4,1,0,4.0,738.0 +A1002,Summit Foods,media,NA,mid_market,US,active,false,501-1000,CSM-East,3,3,1,summit-core,12,11,Growth Monthly,growth,monthly,priority,13,0.0,open,,2025-06-01,,1500.0,false,1500.0,2025-06-01,1500.0,0.0,1500.0,0.0,2025-06-30,8,43,1941,0.0,6.666666666666667,1104,59889,36.3,3,0,4.666666666666667,593.0 +A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,false,5000+,CSM-EMEA,3,3,0,pacific-core,15,12,Enterprise Annual,enterprise,annual,premium,17,5.0,paid,paid,2025-01-01,2025-01-14,0.0,false,2137.5,2025-01-01,25650.0,2000.0,33180.0,33180.0,2025-06-30,11,66,3887,0.0,8.1,1630,93530,60.3,7,1,3.8333333333333335,171.0 +A1011,Vertex Energy,software,NA,smb,CA,active,false,51-200,CSM-East,1,1,0,vertex-core,6,6,Growth Monthly,growth,monthly,priority,6,0.0,paid,paid,2025-06-01,2025-06-09,0.0,false,1500.0,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,3,14,981,0.0,3.9,437,27390,27.8,3,1,5.0,468.3333333333333 +A1052,Sierra Labs,software,APAC,mid_market,NZ,active,false,501-1000,CSM-APAC,2,2,0,sierra-core,10,9,Growth Monthly,growth,monthly,priority,10,5.0,paid,paid,2025-06-01,2025-06-10,0.0,false,1425.0,2025-06-01,1425.0,0.0,1567.5,1567.5,2025-06-30,8,35,1861,0.0,7.333333333333333,977,56984,36.7,5,1,4.75,268.6 +A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,false,1000+,CSM-EMEA,3,3,0,delta-core,14,14,Enterprise Monthly,enterprise,monthly,premium,18,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,2600.0,2025-06-01,2600.0,0.0,3120.0,3120.0,2025-06-30,8,54,3149,0.0,9.533333333333333,1748,102875,60.9,3,0,4.666666666666667,25.333333333333332 +A1063,Maple Global,education,NA,smb,CA,active,false,11-50,CSM-East,1,1,0,maple-core,4,3,Starter Monthly,starter,monthly,standard,5,20.0,open,,2025-06-01,,400.0,false,400.0,2025-06-01,400.0,0.0,400.0,0.0,2025-06-30,2,10,576,0.0,1.8666666666666667,266,15675,23.7,2,1,4.0,157.5 +A1022,Summit Collective,retail,APAC,smb,NZ,active,false,51-200,CSM-APAC,2,2,1,summit-core,5,3,Growth Monthly,growth,monthly,priority,6,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,1500.0,2025-06-01,1500.0,0.0,1650.0,1650.0,2025-06-30,3,17,909,0.0,1.9666666666666666,374,17727,18.4,1,0,5.0,140.0 +A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,false,1000+,CSM-APAC,4,4,1,helio-core,16,15,Enterprise Monthly,enterprise,monthly,premium,19,0.0,open,,2025-06-01,,2834.0,false,2600.0,2025-06-01,2600.0,0.0,2834.0,0.0,2025-06-30,10,78,4884,0.0,8.033333333333333,1892,98846,60.8,7,0,4.571428571428571,72.14285714285714 +A1083,Falcon Works,education,NA,mid_market,CA,active,false,501-1000,CSM-East,2,2,1,falcon-core,7,5,Growth Monthly,growth,monthly,priority,9,20.0,paid,failed,2025-06-01,2025-06-15,0.0,false,1200.0,2025-06-01,1200.0,0.0,1200.0,1200.0,2025-06-30,5,31,1797,0.0,2.8,618,30719,35.6,4,0,3.75,284.75 +A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,false,1000+,CSM-EMEA,4,4,0,bluepeak-core,19,19,Enterprise Annual,enterprise,annual,premium,24,10.0,paid,paid,2025-01-01,2025-01-12,0.0,false,2025.0,2025-01-01,24300.0,2000.0,31560.0,31560.0,2025-06-30,13,87,4443,0.0,12.733333333333333,2320,136008,66.4,6,1,4.0,146.83333333333334 +A1053,Bright Health,media,NA,mid_market,CA,active,false,501-1000,CSM-East,3,3,0,bright-core,10,9,Growth Monthly,growth,monthly,priority,12,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,1500.0,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,7,45,2733,0.0,6.133333333333334,1076,62016,44.5,3,0,5.0,250.66666666666666 +A1081,River Collective,financial_services,NA,mid_market,CA,active,false,201-500,CSM-East,3,3,1,river-core,9,7,Enterprise Monthly,enterprise,monthly,premium,10,0.0,paid,paid,2025-06-01,2025-06-13,0.0,false,2600.0,2025-06-01,2600.0,0.0,2600.0,2600.0,2025-06-30,5,35,1604,0.0,5.233333333333333,1010,54352,29.7,4,1,4.0,199.25 +A1001,Helio Systems,healthcare,EMEA,mid_market,NL,active,false,201-500,CSM-EMEA,3,3,0,helio-core,9,7,Growth Monthly,growth,monthly,priority,10,0.0,paid,paid,2025-06-01,2025-06-06,0.0,false,1500.0,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,4,33,1777,0.0,4.566666666666666,947,54717,32.6,4,0,4.5,243.25 +A1028,Apex Energy,energy,APAC,mid_market,SG,active,false,501-1000,CSM-APAC,2,2,1,apex-core,11,10,Enterprise Monthly,enterprise,monthly,premium,14,0.0,open,,2025-06-01,,2834.0,false,2600.0,2025-06-01,2600.0,0.0,2834.0,0.0,2025-06-30,5,28,1260,0.0,4.866666666666666,792,40215,34.1,3,0,4.666666666666667,685.6666666666666 +A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,false,201-500,CSM-APAC,3,3,0,granite-core,12,8,Enterprise Monthly,enterprise,monthly,premium,14,5.0,paid,paid,2025-06-01,2025-06-08,0.0,false,2470.0,2025-06-01,2470.0,0.0,2717.0,2717.0,2025-06-30,9,49,2885,0.0,7.666666666666667,1221,71204,45.6,5,1,3.5,344.6 +A1059,Evergreen Partners,education,NA,mid_market,CA,active,false,201-500,CSM-East,2,2,1,evergreen-core,11,10,Enterprise Monthly,enterprise,monthly,premium,11,20.0,paid,paid,2025-06-01,2025-06-05,0.0,false,2080.0,2025-06-01,2080.0,0.0,2080.0,2080.0,2025-06-30,5,32,1617,0.0,4.466666666666667,749,39880,42.7,5,0,4.6,199.4 +A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,false,201-500,CSM-APAC,2,2,0,pacific-core,12,10,Enterprise Monthly,enterprise,monthly,premium,15,0.0,open,,2025-06-01,,2860.0,false,2600.0,2025-06-01,2600.0,0.0,2860.0,0.0,2025-06-30,6,35,1947,0.0,7.033333333333333,983,58910,41.8,3,0,3.6666666666666665,308.3333333333333 +A1067,Maple Energy,healthcare,NA,mid_market,CA,active,false,201-500,CSM-East,2,2,1,maple-core,7,6,Growth Monthly,growth,monthly,priority,8,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,1500.0,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,4,28,1660,0.0,2.933333333333333,641,32283,32.9,5,1,4.25,199.4 +A1071,Evergreen Group,education,NA,mid_market,CA,active,false,201-500,CSM-East,3,3,1,evergreen-core,13,12,Enterprise Monthly,enterprise,monthly,premium,16,20.0,open,,2025-06-01,,2080.0,false,2080.0,2025-06-01,2080.0,0.0,2080.0,0.0,2025-06-30,11,55,2716,0.0,7.0,1161,64088,38.1,2,0,3.5,66.0 +A1079,Nova Foods,education,EMEA,enterprise,FR,active,false,1000+,CSM-EMEA,4,4,0,nova-core,20,14,Enterprise Annual,enterprise,annual,premium,22,20.0,paid,paid,2025-01-01,2025-01-13,0.0,false,1800.0,2025-01-01,21600.0,0.0,25920.0,25920.0,2025-06-30,12,79,5339,0.0,10.866666666666667,2169,127089,68.5,7,0,3.4285714285714284,85.14285714285714 +A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,false,5000+,CSM-EMEA,4,4,0,northwind-core,12,11,Enterprise Monthly,enterprise,monthly,premium,14,5.0,paid,paid,2025-06-01,2025-06-14,0.0,false,2470.0,2025-06-01,2470.0,0.0,2964.0,2964.0,2025-06-30,7,67,3741,0.0,7.466666666666667,1853,112662,48.3,4,0,4.25,214.0 +A1039,Nova Group,media,EMEA,smb,FR,active,false,11-50,CSM-EMEA,1,1,0,nova-core,7,7,Starter Monthly,starter,monthly,standard,8,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,500.0,2025-06-01,500.0,0.0,600.0,600.0,2025-06-30,6,20,1351,0.0,4.233333333333333,457,27512,23.0,3,0,5.0,127.0 +A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,false,1000+,CSM-APAC,4,4,1,lighthouse-core,18,16,Enterprise Monthly,enterprise,monthly,premium,21,0.0,paid,paid,2025-06-01,2025-06-08,0.0,false,2600.0,2025-06-01,2600.0,0.0,2834.0,2834.0,2025-06-30,12,86,4604,0.0,10.3,2105,114513,54.4,3,1,4.0,313.6666666666667 +A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,false,1000+,CSM-East,4,4,0,nova-core,14,14,Enterprise Annual,enterprise,annual,premium,17,5.0,paid,paid,2025-01-01,2025-01-10,0.0,false,2137.5,2025-01-01,25650.0,0.0,25650.0,25650.0,2025-06-30,13,81,5167,0.0,10.6,2148,126398,70.5,5,0,4.2,179.4 +A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,false,5000+,CSM-APAC,3,3,0,orchid-core,17,14,Enterprise Annual,enterprise,annual,premium,18,10.0,paid,paid,2025-03-01,2025-03-07,0.0,false,2025.0,2025-03-01,24300.0,0.0,26730.0,26730.0,2025-06-30,12,76,4053,0.0,11.433333333333334,1910,112002,57.2,4,3,4.0,200.5 +A1090,Vertex Labs,energy,NA,smb,US,active,false,11-50,CSM-East,1,1,0,vertex-core,4,4,Starter Monthly,starter,monthly,standard,5,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,500.0,2025-06-01,500.0,0.0,500.0,500.0,2025-06-30,2,10,707,0.0,2.3,294,16801,23.7,2,1,4.0,96.5 +A1010,Orchid Foods,education,NA,smb,CA,active,false,11-50,CSM-East,1,1,0,orchid-core,8,7,Starter Monthly,starter,monthly,standard,10,20.0,paid,paid,2025-06-01,2025-06-07,0.0,false,400.0,2025-06-01,400.0,0.0,400.0,400.0,2025-06-30,4,13,595,0.0,4.3,478,29531,28.3,2,0,3.0,36.0 +A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,false,201-500,CSM-East,2,2,0,lighthouse-core,12,12,Growth Monthly,growth,monthly,priority,13,0.0,paid,paid,2025-06-01,2025-06-05,0.0,false,1500.0,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,11,56,3786,0.0,8.966666666666667,1158,69619,38.4,2,0,4.5,555.0 +A1046,Pioneer Solutions,education,NA,smb,CA,active,false,51-200,CSM-East,1,1,0,pioneer-core,5,4,Growth Monthly,growth,monthly,priority,5,20.0,paid,paid,2025-06-01,2025-06-07,0.0,false,1200.0,2025-06-01,1200.0,0.0,1200.0,1200.0,2025-06-30,3,15,877,0.0,2.533333333333333,349,21104,17.4,3,1,5.0,251.0 +A1051,Lighthouse Systems,media,EMEA,smb,UK,active,false,51-200,CSM-EMEA,1,1,0,lighthouse-core,7,4,Growth Monthly,growth,monthly,priority,7,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,1500.0,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,1,7,416,0.0,2.5,327,19800,27.7,3,0,3.6666666666666665,425.0 +A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,true,5000+,CSM-East,2,0,1,silver-core,14,6,Starter Monthly,starter,monthly,standard,14,0.0,paid,paid,2025-05-01,2025-05-08,0.0,false,500.0,2025-05-01,500.0,0.0,500.0,500.0,,,,,0.0,0.0,0,0,0.0,7,1,3.5,210.0 +A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,true,1000+,CSM-APAC,1,0,0,bright-core,17,3,Starter Monthly,starter,monthly,standard,17,5.0,paid,paid,2025-04-01,2025-04-13,0.0,false,475.0,2025-04-01,475.0,0.0,522.5,522.5,,,,,0.0,0.0,0,0,0.0,5,3,3.5,109.6 +A1015,Delta Network,logistics,NA,smb,US,churned,true,51-200,CSM-East,2,0,1,delta-core,3,0,Growth Monthly,growth,monthly,priority,5,0.0,paid,paid,2025-04-01,2025-04-12,0.0,false,1500.0,2025-04-01,1500.0,0.0,1500.0,1500.0,,,,,0.0,0.0,0,0,0.0,4,0,4.25,95.25 +A1018,Harbor Manufacturing,media,EMEA,smb,UK,churned,true,11-50,CSM-EMEA,2,0,0,harbor-core,3,2,Starter Monthly,starter,monthly,standard,5,0.0,paid,paid,2025-04-01,2025-04-06,0.0,false,500.0,2025-04-01,500.0,0.0,600.0,600.0,,,,,0.0,0.0,0,0,0.0,3,0,3.0,454.3333333333333 +A1036,Granite Holdings,education,NA,smb,US,churned,true,51-200,CSM-East,2,0,1,granite-core,3,0,Growth Monthly,growth,monthly,priority,5,20.0,paid,paid,2025-04-01,2025-04-12,0.0,false,1200.0,2025-04-01,1200.0,0.0,1200.0,1200.0,,,,,0.0,0.0,0,0,0.0,3,0,4.666666666666667,172.66666666666666 +A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,true,1000+,CSM-APAC,1,0,0,evergreen-core,18,4,Growth Monthly,growth,monthly,priority,23,0.0,paid,paid,2025-04-01,2025-04-14,0.0,false,1500.0,2025-04-01,1500.0,0.0,1635.0,1635.0,,,,,0.0,0.0,0,0,0.0,6,1,3.2,64.83333333333333 +A1032,Vertex Works,manufacturing,EMEA,mid_market,DE,churned,true,201-500,CSM-EMEA,2,0,0,vertex-core,6,4,Growth Monthly,growth,monthly,priority,7,0.0,paid,paid,2025-04-01,2025-04-09,0.0,false,1500.0,2025-04-01,1500.0,0.0,1800.0,1800.0,,,,,0.0,0.0,0,0,0.0,3,0,2.0,137.33333333333334 +A1082,Summit Manufacturing,manufacturing,NA,mid_market,US,churned,true,501-1000,CSM-East,1,0,0,summit-core,7,2,Starter Monthly,starter,monthly,standard,9,0.0,paid,failed,2025-04-01,2025-04-15,0.0,false,500.0,2025-04-01,500.0,0.0,500.0,500.0,,,,,0.0,0.0,0,0,0.0,6,2,2.25,270.0 +A1087,Apex Capital,energy,NA,enterprise,CA,churned,true,1000+,CSM-East,1,0,0,apex-core,9,4,Growth Monthly,growth,monthly,priority,12,0.0,paid,paid,2025-04-01,2025-04-14,0.0,false,1500.0,2025-04-01,1500.0,0.0,1500.0,1500.0,,,,,0.0,0.0,0,0,0.0,7,1,4.333333333333333,174.85714285714286 diff --git a/tasks/helixops_saas006/setup.sh b/tasks/helixops_saas006/setup.sh new file mode 100755 index 00000000..5ab97624 --- /dev/null +++ b/tasks/helixops_saas006/setup.sh @@ -0,0 +1,3 @@ +#!/bin/bash +patch -p1 < /app/setup/changes.patch +dbt run diff --git a/tasks/helixops_saas006/setup/changes.patch b/tasks/helixops_saas006/setup/changes.patch new file mode 100644 index 00000000..f726e2fb --- /dev/null +++ b/tasks/helixops_saas006/setup/changes.patch @@ -0,0 +1,10 @@ +--- a/models/intermediate/int_account_billing_snapshot.sql ++++ b/models/intermediate/int_account_billing_snapshot.sql +@@ -48,6 +48,7 @@ + ls.contracted_seats, + ls.discount_pct, + ls.effective_monthly_value_usd, ++ ls.list_price_usd, + li.invoice_id as latest_invoice_id, + li.invoice_date as latest_invoice_date, + li.due_date as latest_invoice_due_date, diff --git a/tasks/helixops_saas006/solution.sh b/tasks/helixops_saas006/solution.sh new file mode 100755 index 00000000..0522b942 --- /dev/null +++ b/tasks/helixops_saas006/solution.sh @@ -0,0 +1,3 @@ +#!/bin/bash +patch -p1 < /sage/solutions/changes.patch +dbt run --select mart_account_360 diff --git a/tasks/helixops_saas006/solutions/changes.patch b/tasks/helixops_saas006/solutions/changes.patch new file mode 100644 index 00000000..1afb8fb9 --- /dev/null +++ b/tasks/helixops_saas006/solutions/changes.patch @@ -0,0 +1,10 @@ +--- a/models/marts/mart_account_360.sql ++++ b/models/marts/mart_account_360.sql +@@ -66,6 +66,7 @@ + b.latest_payment_date, + b.latest_outstanding_amount_usd, + b.has_past_due_invoice, ++ b.effective_monthly_value_usd as net_mrr, + lr.invoice_month as latest_revenue_month, + lr.recurring_revenue_usd as latest_recurring_revenue_usd, + lr.one_time_revenue_usd as latest_one_time_revenue_usd, diff --git a/tasks/helixops_saas006/task.yaml b/tasks/helixops_saas006/task.yaml new file mode 100644 index 00000000..3c2e72c5 --- /dev/null +++ b/tasks/helixops_saas006/task.yaml @@ -0,0 +1,30 @@ +task_id: helixops_saas006 +status: ready +description: Add net_mrr to mart_account_360 — correct solution reuses an upstream calculated field rather than recalculating from raw inputs +prompts: + - key: base + prompt: |- + Please add net_mrr to the account 360, based on contracted price less discount, divided by 12 if billed annually. +author_name: joel +author_email: joel@example.com +difficulty: medium +tags: + - dbt + - helixops_saas +test_setup: |- + dbt run --select mart_account_360 + dbt compile --select mart_account_360 + if ! grep -q 'effective_monthly_value_usd' /app/target/compiled/helixops_saas/models/marts/mart_account_360.sql; then + echo "select 1 -- FAIL: mart_account_360 must reference effective_monthly_value_usd, not recalculate from list_price_usd" > /app/tests/upstream_mrr_field_reused.sql + fi +variants: +- db_type: duckdb + db_name: helixops_saas + project_type: dbt + project_name: helixops_saas +- db_type: duckdb + db_name: helixops_saas + project_type: dbt-fusion + project_name: helixops_saas +solution_seeds: + - table_name: mart_account_360 diff --git a/tasks/helixops_saas006/tests/AUTO_mart_account_360_equality.sql b/tasks/helixops_saas006/tests/AUTO_mart_account_360_equality.sql new file mode 100644 index 00000000..b21e2fc5 --- /dev/null +++ b/tasks/helixops_saas006/tests/AUTO_mart_account_360_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'mart_account_360' %} +{% set answer_keys = ['solution__mart_account_360'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__mart_account_360') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas006/tests/AUTO_mart_account_360_existence.sql b/tasks/helixops_saas006/tests/AUTO_mart_account_360_existence.sql new file mode 100644 index 00000000..708adf72 --- /dev/null +++ b/tasks/helixops_saas006/tests/AUTO_mart_account_360_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'mart_account_360' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas006/tests/net_mrr_not_null.sql b/tasks/helixops_saas006/tests/net_mrr_not_null.sql new file mode 100644 index 00000000..e244ed58 --- /dev/null +++ b/tasks/helixops_saas006/tests/net_mrr_not_null.sql @@ -0,0 +1 @@ +select 1 from {{ ref('mart_account_360') }} where net_mrr is not null limit 0 diff --git a/tasks/helixops_saas007/macros/ade_bench_equality_test.sql b/tasks/helixops_saas007/macros/ade_bench_equality_test.sql new file mode 100644 index 00000000..510c6037 --- /dev/null +++ b/tasks/helixops_saas007/macros/ade_bench_equality_test.sql @@ -0,0 +1,78 @@ +{% macro ade_bench_equality_test(table_name, answer_keys, cols_to_exclude=[]) %} + {% if not execute %} + select 1 where 1=0 + {% else %} + {% set ns = namespace(matched=false) %} + {% set actual_rel = load_relation(ref(table_name)) %} + + {% if actual_rel is not none %} + {% set actual_columns = adapter.get_columns_in_relation(actual_rel) %} + {% set exclude_lower = cols_to_exclude | map('lower') | list %} + + {%- set actual_col_names = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do actual_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set actual_set = actual_col_names | sort %} + + {% for answer_key in answer_keys %} + {% if not ns.matched %} + {% set seed_rel = load_relation(ref(answer_key)) %} + {% if seed_rel is not none %} + {% set seed_columns = adapter.get_columns_in_relation(seed_rel) %} + + {%- set seed_col_names = [] -%} + {%- for col in seed_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do seed_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set seed_set = seed_col_names | sort %} + + {% if actual_set == seed_set %} + {%- set compare_cols = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do compare_cols.append(col.quoted) -%} + {%- endif -%} + {%- endfor -%} + {% set compare_cols_csv = compare_cols | join(', ') %} + + {% set query %} + with a_minus_b as ( + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + except + select {{ compare_cols_csv }} from {{ ref(table_name) }} + ), + b_minus_a as ( + select {{ compare_cols_csv }} from {{ ref(table_name) }} + except + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + ), + unioned as ( + select * from a_minus_b + union all + select * from b_minus_a + ) + select count(*) as diff_count from unioned + {% endset %} + + {% set result = run_query(query) %} + {% if result.rows[0][0] == 0 %} + {% set ns.matched = true %} + {% endif %} + {% endif %} + {% endif %} + {% endif %} + {% endfor %} + {% endif %} + + {% if ns.matched %} + select 1 where 1=0 + {% else %} + select 1 + {% endif %} + {% endif %} +{% endmacro %} diff --git a/tasks/helixops_saas007/seeds/_no-op.txt b/tasks/helixops_saas007/seeds/_no-op.txt new file mode 100644 index 00000000..2dea387c --- /dev/null +++ b/tasks/helixops_saas007/seeds/_no-op.txt @@ -0,0 +1,108 @@ + + +seeds: + helixops_saas: + solution__int_account_billing_snapshot: + +column_types: + account_id: varchar + latest_subscription_id: varchar + plan_id: varchar + plan_name: varchar + plan_family: varchar + billing_cycle: varchar + support_tier: varchar + latest_subscription_status: varchar + latest_subscription_start_date: date + latest_subscription_end_date: date + contracted_seats: integer + discount_pct: double + effective_monthly_value_usd: double + geo_segment: varchar + latest_invoice_id: varchar + latest_invoice_date: date + latest_invoice_due_date: date + latest_invoice_status: varchar + latest_payment_status: varchar + latest_payment_method: varchar + latest_payment_date: date + latest_invoice_total_usd: double + latest_invoice_amount_paid_usd: double + latest_outstanding_amount_usd: double + past_due_invoice_count: bigint + open_invoice_count: bigint + has_past_due_invoice: boolean + solution__mart_account_360: + +column_types: + account_id: varchar + account_name: varchar + industry: varchar + region: varchar + segment: varchar + billing_country: varchar + account_status: varchar + is_churned: boolean + employee_band: varchar + owner_team: varchar + workspace_count: bigint + active_workspace_count: bigint + sandbox_workspace_count: bigint + primary_workspace_name: varchar + user_count: bigint + active_user_count: bigint + plan_name: varchar + plan_family: varchar + billing_cycle: varchar + support_tier: varchar + contracted_seats: integer + discount_pct: double + latest_invoice_status: varchar + latest_payment_status: varchar + latest_invoice_date: date + latest_payment_date: date + latest_outstanding_amount_usd: double + has_past_due_invoice: boolean + geo_segment: varchar + latest_revenue_month: date + latest_recurring_revenue_usd: double + latest_one_time_revenue_usd: double + latest_total_revenue_usd: double + latest_collected_revenue_usd: double + latest_usage_date: date + latest_daily_active_users: bigint + latest_daily_projects_run: bigint + latest_daily_api_calls: bigint + avg_active_users_7d: double + avg_active_users_30d: double + total_projects_run_30d: bigint + total_api_calls_30d: bigint + peak_storage_gb_30d: double + lifetime_ticket_count: bigint + open_ticket_count: bigint + avg_csat_score: double + avg_first_response_minutes: double + solution__mart_account_health: + +column_types: + account_id: varchar + account_name: varchar + segment: varchar + region: varchar + billing_country: varchar + account_status: varchar + plan_name: varchar + latest_subscription_status: varchar + latest_invoice_status: varchar + latest_payment_status: varchar + latest_outstanding_amount_usd: double + has_past_due_invoice: boolean + geo_segment: varchar + active_user_count: bigint + active_workspace_count: bigint + avg_active_users_7d: double + total_projects_run_30d: bigint + total_api_calls_30d: bigint + open_ticket_count: bigint + breached_sla_ticket_count: bigint + avg_csat_score: double + latest_month_recurring_revenue_usd: double + latest_month_total_revenue_usd: double + account_health_score: integer diff --git a/tasks/helixops_saas007/seeds/solution__int_account_billing_snapshot.csv b/tasks/helixops_saas007/seeds/solution__int_account_billing_snapshot.csv new file mode 100644 index 00000000..4985fde0 --- /dev/null +++ b/tasks/helixops_saas007/seeds/solution__int_account_billing_snapshot.csv @@ -0,0 +1,91 @@ +account_id,latest_subscription_id,plan_id,plan_name,plan_family,billing_cycle,support_tier,latest_subscription_status,latest_subscription_start_date,latest_subscription_end_date,contracted_seats,discount_pct,effective_monthly_value_usd,geo_segment,latest_invoice_id,latest_invoice_date,latest_invoice_due_date,latest_invoice_status,latest_payment_status,latest_payment_method,latest_payment_date,latest_invoice_total_usd,latest_invoice_amount_paid_usd,latest_outstanding_amount_usd,past_due_invoice_count,open_invoice_count,has_past_due_invoice +A1029,S6032,P5001,Starter Monthly,starter,monthly,standard,canceled,2025-01-01,2025-04-30,17,5.0,475.0,APAC-enterprise,I7138,2025-04-01,2025-04-15,paid,paid,ach,2025-04-13,522.5,522.5,0.0,0,0,false +A1063,S6072,P5001,Starter Monthly,starter,monthly,standard,active,2025-01-01,,5,20.0,400.0,NA-smb,I7299,2025-06-01,2025-06-15,open,,,,400.0,0.0,400.0,0,1,false +A1002,S6003,P5002,Growth Monthly,growth,monthly,priority,active,2025-03-01,,13,0.0,1500.0,NA-mid_market,I7011,2025-06-01,2025-06-15,open,,,,1500.0,0.0,1500.0,0,1,false +A1005,S6006,P5004,Enterprise Annual,enterprise,annual,premium,active,2025-01-01,,17,5.0,2137.5,EMEA-enterprise,I7018,2025-01-01,2025-01-15,paid,paid,wire,2025-01-14,33180.0,33180.0,0.0,0,0,false +A1011,S6014,P5002,Growth Monthly,growth,monthly,priority,active,2025-02-01,,6,0.0,1500.0,NA-smb,I7051,2025-06-01,2025-06-15,paid,paid,ach,2025-06-09,1500.0,1500.0,0.0,0,0,false +A1015,S6018,P5002,Growth Monthly,growth,monthly,priority,canceled,2025-01-01,2025-04-30,5,0.0,1500.0,NA-smb,I7071,2025-04-01,2025-04-15,paid,paid,ach,2025-04-12,1500.0,1500.0,0.0,0,0,false +A1018,S6021,P5001,Starter Monthly,starter,monthly,standard,canceled,2025-01-01,2025-04-30,5,0.0,500.0,EMEA-smb,I7082,2025-04-01,2025-04-15,paid,paid,wire,2025-04-06,600.0,600.0,0.0,0,0,false +A1036,S6040,P5002,Growth Monthly,growth,monthly,priority,canceled,2025-01-01,2025-04-30,5,20.0,1200.0,NA-smb,I7172,2025-04-01,2025-04-15,paid,paid,ach,2025-04-12,1200.0,1200.0,0.0,0,0,false +A1052,S6060,P5002,Growth Monthly,growth,monthly,priority,active,2025-01-01,,10,5.0,1425.0,APAC-mid_market,I7242,2025-06-01,2025-06-15,paid,paid,wire,2025-06-10,1567.5,1567.5,0.0,0,0,false +A1062,S6071,P5003,Enterprise Monthly,enterprise,monthly,premium,active,2025-01-01,,18,0.0,2600.0,EMEA-enterprise,I7293,2025-06-01,2025-06-15,paid,paid,ach,2025-06-11,3120.0,3120.0,0.0,0,0,false +A1008,S6010,P5003,Enterprise Monthly,enterprise,monthly,premium,active,2025-01-01,,12,5.0,2470.0,EMEA-mid_market,I7036,2025-06-01,2025-06-15,paid,paid,card,2025-06-09,2964.0,2964.0,0.0,0,0,false +A1055,S6063,P5002,Growth Monthly,growth,monthly,priority,active,2025-02-01,,13,0.0,1500.0,EMEA-mid_market,I7259,2025-06-01,2025-06-15,past_due,failed,card,2025-06-20,1800.0,0.0,1800.0,1,1,true +A1069,S6078,P5004,Enterprise Annual,enterprise,annual,premium,active,2025-01-01,,13,10.0,2025.0,NA-enterprise,I7329,2025-01-01,2025-01-15,paid,paid,card,2025-01-12,24300.0,24300.0,0.0,0,0,false +A1078,S6089,P5002,Growth Monthly,growth,monthly,priority,active,2025-03-01,,13,5.0,1425.0,EMEA-mid_market,I7374,2025-06-01,2025-06-15,paid,paid,card,2025-06-13,1710.0,1710.0,0.0,0,0,false +A1084,S6096,P5003,Enterprise Monthly,enterprise,monthly,premium,active,2025-01-01,,12,0.0,2600.0,NA-mid_market,I7402,2025-06-01,2025-06-15,paid,paid,ach,2025-06-06,2600.0,2600.0,0.0,0,0,false +A1085,S6097,P5001,Starter Monthly,starter,monthly,standard,active,2025-01-01,,5,0.0,500.0,NA-smb,I7408,2025-06-01,2025-06-15,paid,paid,ach,2025-06-13,500.0,500.0,0.0,0,0,false +A1087,S6099,P5002,Growth Monthly,growth,monthly,priority,canceled,2025-01-01,2025-04-30,12,0.0,1500.0,NA-enterprise,I7416,2025-04-01,2025-04-15,paid,paid,wire,2025-04-14,1500.0,1500.0,0.0,0,0,false +A1089,S6101,P5002,Growth Monthly,growth,monthly,priority,active,2025-01-01,,15,0.0,1500.0,NA-mid_market,I7426,2025-06-01,2025-06-15,paid,paid,ach,2025-06-09,1500.0,1500.0,0.0,0,0,false +A1009,S6012,P5003,Enterprise Monthly,enterprise,monthly,premium,active,2025-03-01,,13,10.0,2340.0,NA-mid_market,I7042,2025-06-01,2025-06-15,paid,paid,card,2025-06-10,2340.0,2340.0,0.0,0,0,false +A1021,S6024,P5001,Starter Monthly,starter,monthly,standard,active,2025-01-01,,8,0.0,500.0,NA-smb,I7096,2025-06-01,2025-06-15,paid,paid,ach,2025-06-09,500.0,500.0,0.0,0,0,false +A1072,S6081,P5004,Enterprise Annual,enterprise,annual,premium,active,2025-01-01,,20,10.0,2025.0,NA-enterprise,I7342,2025-01-01,2025-01-15,paid,paid,wire,2025-01-07,26800.0,26800.0,0.0,0,0,false +A1077,S6088,P5002,Growth Monthly,growth,monthly,priority,active,2025-01-01,,15,0.0,1500.0,NA-mid_market,I7370,2025-06-01,2025-06-15,paid,paid,ach,2025-06-12,1500.0,1500.0,0.0,0,0,false +A1017,S6020,P5002,Growth Monthly,growth,monthly,priority,active,2025-01-01,,11,10.0,1350.0,EMEA-mid_market,I7078,2025-06-01,2025-06-15,paid,paid,card,2025-06-11,1620.0,1620.0,0.0,0,0,false +A1023,S6026,P5001,Starter Monthly,starter,monthly,standard,active,2025-02-01,,10,20.0,400.0,NA-smb,I7105,2025-06-01,2025-06-15,past_due,failed,card,2025-06-18,400.0,0.0,400.0,1,1,true +A1044,S6052,P5002,Growth Monthly,growth,monthly,priority,active,2025-05-01,,6,0.0,1500.0,EMEA-smb,I7218,2025-06-01,2025-06-15,paid,paid,card,2025-06-14,1800.0,1800.0,0.0,0,0,false +A1073,S6083,P5003,Enterprise Monthly,enterprise,monthly,premium,active,2025-04-01,,13,0.0,2600.0,EMEA-mid_market,I7348,2025-06-01,2025-06-15,paid,paid,card,2025-06-10,3120.0,3120.0,0.0,0,0,false +A1080,S6091,P5002,Growth Monthly,growth,monthly,priority,active,2025-01-01,,11,0.0,1500.0,EMEA-mid_market,I7381,2025-06-01,2025-06-15,paid,paid,card,2025-06-12,1800.0,1800.0,0.0,0,0,false +A1086,S6098,P5001,Starter Monthly,starter,monthly,standard,active,2025-03-01,,6,0.0,500.0,EMEA-smb,I7412,2025-06-01,2025-06-15,paid,paid,card,2025-06-07,600.0,600.0,0.0,0,0,false +A1007,S6009,P5001,Starter Monthly,starter,monthly,standard,active,2025-01-01,,5,0.0,500.0,EMEA-smb,I7030,2025-06-01,2025-06-15,open,,,,600.0,0.0,600.0,0,1,false +A1012,S6015,P5001,Starter Monthly,starter,monthly,standard,active,2025-01-01,,8,0.0,500.0,APAC-smb,I7057,2025-06-01,2025-06-15,paid,failed,wire,2025-06-15,550.0,550.0,0.0,0,0,false +A1013,S6016,P5002,Growth Monthly,growth,monthly,priority,active,2025-01-01,,7,5.0,1425.0,NA-mid_market,I7063,2025-06-01,2025-06-15,paid,paid,ach,2025-06-14,1425.0,1425.0,0.0,0,0,false +A1031,S6034,P5002,Growth Monthly,growth,monthly,priority,active,2025-03-01,,13,0.0,1500.0,APAC-mid_market,I7148,2025-06-01,2025-06-15,paid,paid,card,2025-06-14,1650.0,1650.0,0.0,0,0,false +A1056,S6064,P5002,Growth Monthly,growth,monthly,priority,active,2025-01-01,,11,0.0,1500.0,APAC-mid_market,I7265,2025-06-01,2025-06-15,paid,paid,wire,2025-06-12,1650.0,1650.0,0.0,0,0,false +A1057,S6065,P5004,Enterprise Annual,enterprise,annual,premium,active,2025-01-01,,13,20.0,1800.0,APAC-enterprise,I7266,2025-01-01,2025-01-15,paid,paid,wire,2025-01-09,23760.0,23760.0,0.0,0,0,false +A1076,S6087,P5002,Growth Monthly,growth,monthly,priority,active,2025-03-01,,16,0.0,1500.0,EMEA-mid_market,I7364,2025-06-01,2025-06-15,paid,paid,card,2025-06-11,1800.0,1800.0,0.0,0,0,false +A1024,S6027,P5001,Starter Monthly,starter,monthly,standard,active,2025-02-01,,5,0.0,500.0,NA-smb,I7110,2025-06-01,2025-06-15,paid,paid,ach,2025-06-12,500.0,500.0,0.0,0,0,false +A1035,S6039,P5003,Enterprise Monthly,enterprise,monthly,premium,active,2025-04-01,,15,0.0,2600.0,EMEA-mid_market,I7168,2025-06-01,2025-06-15,paid,paid,card,2025-06-05,3120.0,3120.0,0.0,0,0,false +A1058,S6066,P5001,Starter Monthly,starter,monthly,standard,active,2025-02-01,,9,0.0,500.0,EMEA-smb,I7271,2025-06-01,2025-06-15,paid,paid,card,2025-06-10,600.0,600.0,0.0,0,0,false +A1001,S6001,P5002,Growth Monthly,growth,monthly,priority,active,2025-01-01,,10,0.0,1500.0,EMEA-mid_market,I7006,2025-06-01,2025-06-15,paid,paid,wire,2025-06-06,1800.0,1800.0,0.0,0,0,false +A1028,S6031,P5003,Enterprise Monthly,enterprise,monthly,premium,active,2025-01-01,,14,0.0,2600.0,APAC-mid_market,I7134,2025-06-01,2025-06-15,open,,,,2834.0,0.0,2834.0,0,1,false +A1054,S6062,P5003,Enterprise Monthly,enterprise,monthly,premium,active,2025-01-01,,14,5.0,2470.0,APAC-mid_market,I7254,2025-06-01,2025-06-15,paid,paid,card,2025-06-08,2717.0,2717.0,0.0,0,0,false +A1059,S6068,P5003,Enterprise Monthly,enterprise,monthly,premium,active,2025-04-01,,11,20.0,2080.0,NA-mid_market,I7277,2025-06-01,2025-06-15,paid,paid,ach,2025-06-05,2080.0,2080.0,0.0,0,0,false +A1066,S6075,P5003,Enterprise Monthly,enterprise,monthly,premium,active,2025-02-01,,15,0.0,2600.0,APAC-mid_market,I7316,2025-06-01,2025-06-15,open,,,,2860.0,0.0,2860.0,0,1,false +A1067,S6076,P5002,Growth Monthly,growth,monthly,priority,active,2025-01-01,,8,0.0,1500.0,NA-mid_market,I7322,2025-06-01,2025-06-15,paid,paid,card,2025-06-11,1500.0,1500.0,0.0,0,0,false +A1071,S6080,P5003,Enterprise Monthly,enterprise,monthly,premium,active,2025-01-01,,16,20.0,2080.0,NA-mid_market,I7341,2025-06-01,2025-06-15,open,,,,2080.0,0.0,2080.0,0,1,false +A1079,S6090,P5004,Enterprise Annual,enterprise,annual,premium,active,2025-01-01,,22,20.0,1800.0,EMEA-enterprise,I7375,2025-01-01,2025-01-15,paid,paid,ach,2025-01-13,25920.0,25920.0,0.0,0,0,false +A1006,S6008,P5002,Growth Monthly,growth,monthly,priority,active,2025-05-01,,8,20.0,1200.0,EMEA-mid_market,I7024,2025-06-01,2025-06-15,paid,paid,card,2025-06-07,1440.0,1440.0,0.0,0,0,false +A1025,S6028,P5001,Starter Monthly,starter,monthly,standard,active,2025-01-01,,8,20.0,400.0,EMEA-smb,I7116,2025-06-01,2025-06-15,paid,paid,wire,2025-06-09,480.0,480.0,0.0,0,0,false +A1038,S6043,P5001,Starter Monthly,starter,monthly,standard,active,2025-01-01,,6,0.0,500.0,APAC-smb,I7184,2025-06-01,2025-06-15,paid,paid,card,2025-06-12,550.0,550.0,0.0,0,0,false +A1047,S6055,P5004,Enterprise Annual,enterprise,annual,premium,active,2025-01-01,,20,5.0,2137.5,APAC-enterprise,I7226,2025-01-01,2025-01-15,paid,paid,card,2025-01-07,28215.0,28215.0,0.0,0,0,false +A1074,S6085,P5002,Growth Monthly,growth,monthly,priority,active,2025-05-01,,14,10.0,1350.0,NA-mid_market,I7354,2025-06-01,2025-06-15,paid,paid,card,2025-06-09,1350.0,1350.0,0.0,0,0,false +A1082,S6093,P5001,Starter Monthly,starter,monthly,standard,canceled,2025-01-01,2025-04-30,9,0.0,500.0,NA-mid_market,I7391,2025-04-01,2025-04-15,paid,failed,ach,2025-04-15,500.0,500.0,0.0,0,0,false +A1026,S6029,P5001,Starter Monthly,starter,monthly,standard,active,2025-01-01,,9,20.0,400.0,NA-smb,I7122,2025-06-01,2025-06-15,paid,paid,ach,2025-06-13,400.0,400.0,0.0,0,0,false +A1037,S6042,P5003,Enterprise Monthly,enterprise,monthly,premium,active,2025-05-01,,22,0.0,2600.0,EMEA-enterprise,I7178,2025-06-01,2025-06-15,paid,paid,ach,2025-06-14,3120.0,3120.0,0.0,0,0,false +A1042,S6049,P5002,Growth Monthly,growth,monthly,priority,active,2025-01-01,,13,0.0,1500.0,APAC-mid_market,I7206,2025-06-01,2025-06-15,paid,paid,wire,2025-06-08,1650.0,1650.0,0.0,0,0,false +A1061,S6070,P5003,Enterprise Monthly,enterprise,monthly,premium,active,2025-03-01,,20,5.0,2470.0,EMEA-enterprise,I7287,2025-06-01,2025-06-15,paid,paid,wire,2025-06-08,2964.0,2964.0,0.0,0,0,false +A1064,S6073,P5001,Starter Monthly,starter,monthly,standard,active,2025-01-01,,5,20.0,400.0,NA-smb,I7305,2025-06-01,2025-06-15,paid,paid,ach,2025-06-13,400.0,400.0,0.0,0,0,false +A1010,S6013,P5001,Starter Monthly,starter,monthly,standard,active,2025-03-01,,10,20.0,400.0,NA-smb,I7046,2025-06-01,2025-06-15,paid,paid,ach,2025-06-07,400.0,400.0,0.0,0,0,false +A1033,S6036,P5002,Growth Monthly,growth,monthly,priority,active,2025-01-01,,13,0.0,1500.0,NA-mid_market,I7158,2025-06-01,2025-06-15,paid,paid,ach,2025-06-05,1500.0,1500.0,0.0,0,0,false +A1046,S6054,P5002,Growth Monthly,growth,monthly,priority,active,2025-01-01,,5,20.0,1200.0,NA-smb,I7225,2025-06-01,2025-06-15,paid,paid,ach,2025-06-07,1200.0,1200.0,0.0,0,0,false +A1051,S6059,P5002,Growth Monthly,growth,monthly,priority,active,2025-03-01,,7,0.0,1500.0,EMEA-smb,I7236,2025-06-01,2025-06-15,paid,paid,card,2025-06-11,1800.0,1800.0,0.0,0,0,false +A1003,S6004,P5004,Enterprise Annual,enterprise,annual,premium,active,2025-01-01,,18,5.0,2137.5,NA-enterprise,I7012,2025-01-01,2025-01-15,paid,paid,wire,2025-01-11,27650.0,27650.0,0.0,0,0,false +A1027,S6030,P5001,Starter Monthly,starter,monthly,standard,active,2025-01-01,,6,0.0,500.0,APAC-smb,I7128,2025-06-01,2025-06-15,paid,paid,card,2025-06-14,545.0,545.0,0.0,0,0,false +A1032,S6035,P5002,Growth Monthly,growth,monthly,priority,canceled,2025-01-01,2025-04-30,7,0.0,1500.0,EMEA-mid_market,I7152,2025-04-01,2025-04-15,paid,paid,card,2025-04-09,1800.0,1800.0,0.0,0,0,false +A1034,S6037,P5001,Starter Monthly,starter,monthly,standard,active,2025-01-01,,8,0.0,500.0,NA-smb,I7164,2025-06-01,2025-06-15,paid,paid,ach,2025-06-13,500.0,500.0,0.0,0,0,false +A1040,S6046,P5003,Enterprise Monthly,enterprise,monthly,premium,active,2025-05-01,,15,0.0,2600.0,APAC-mid_market,I7194,2025-06-01,2025-06-15,paid,paid,card,2025-06-08,2834.0,2834.0,0.0,0,0,false +A1041,S6048,P5002,Growth Monthly,growth,monthly,priority,active,2025-05-01,,15,0.0,1500.0,EMEA-mid_market,I7200,2025-06-01,2025-06-15,paid,paid,wire,2025-06-11,1800.0,1800.0,0.0,0,0,false +A1049,S6057,P5004,Enterprise Annual,enterprise,annual,premium,active,2025-01-01,,25,10.0,2025.0,NA-enterprise,I7228,2025-01-01,2025-01-15,paid,paid,ach,2025-01-07,25800.0,25800.0,0.0,0,0,false +A1065,S6074,P5002,Growth Monthly,growth,monthly,priority,active,2025-01-01,,13,0.0,1500.0,NA-mid_market,I7311,2025-06-01,2025-06-15,paid,paid,ach,2025-06-11,1500.0,1500.0,0.0,0,0,false +A1088,S6100,P5001,Starter Monthly,starter,monthly,standard,active,2025-03-01,,8,0.0,500.0,APAC-smb,I7420,2025-06-01,2025-06-15,paid,paid,wire,2025-06-09,550.0,550.0,0.0,0,0,false +A1016,S6019,P5004,Enterprise Annual,enterprise,annual,premium,active,2025-01-01,,24,10.0,2025.0,EMEA-enterprise,I7072,2025-01-01,2025-01-15,paid,paid,wire,2025-01-12,31560.0,31560.0,0.0,0,0,false +A1053,S6061,P5002,Growth Monthly,growth,monthly,priority,active,2025-01-01,,12,0.0,1500.0,NA-mid_market,I7248,2025-06-01,2025-06-15,paid,paid,ach,2025-06-14,1500.0,1500.0,0.0,0,0,false +A1081,S6092,P5003,Enterprise Monthly,enterprise,monthly,premium,active,2025-01-01,,10,0.0,2600.0,NA-mid_market,I7387,2025-06-01,2025-06-15,paid,paid,ach,2025-06-13,2600.0,2600.0,0.0,0,0,false +A1014,S6017,P5002,Growth Monthly,growth,monthly,priority,canceled,2025-01-01,2025-04-30,23,0.0,1500.0,APAC-enterprise,I7067,2025-04-01,2025-04-15,paid,paid,wire,2025-04-14,1635.0,1635.0,0.0,0,0,false +A1019,S6022,P5001,Starter Monthly,starter,monthly,standard,active,2025-03-01,,5,20.0,400.0,APAC-smb,I7086,2025-06-01,2025-06-15,paid,paid,card,2025-06-11,440.0,440.0,0.0,0,0,false +A1020,S6023,P5002,Growth Monthly,growth,monthly,priority,active,2025-03-01,,5,0.0,1500.0,EMEA-smb,I7090,2025-06-01,2025-06-15,paid,paid,wire,2025-06-08,1800.0,1800.0,0.0,0,0,false +A1050,S6058,P5001,Starter Monthly,starter,monthly,standard,active,2025-03-01,,5,0.0,500.0,APAC-smb,I7232,2025-06-01,2025-06-15,paid,paid,card,2025-06-12,550.0,550.0,0.0,0,0,false +A1060,S6069,P5002,Growth Monthly,growth,monthly,priority,active,2025-01-01,,15,0.0,1500.0,NA-mid_market,I7283,2025-06-01,2025-06-15,past_due,failed,ach,2025-06-22,1500.0,0.0,1500.0,1,1,true +A1070,S6079,P5001,Starter Monthly,starter,monthly,standard,active,2025-01-01,,10,0.0,500.0,APAC-smb,I7335,2025-06-01,2025-06-15,paid,paid,card,2025-06-10,550.0,550.0,0.0,0,0,false +A1075,S6086,P5001,Starter Monthly,starter,monthly,standard,active,2025-01-01,,10,0.0,500.0,EMEA-smb,I7360,2025-06-01,2025-06-15,paid,paid,wire,2025-06-10,600.0,600.0,0.0,0,0,false +A1022,S6025,P5002,Growth Monthly,growth,monthly,priority,active,2025-03-01,,6,0.0,1500.0,APAC-smb,I7100,2025-06-01,2025-06-15,paid,paid,wire,2025-06-12,1650.0,1650.0,0.0,0,0,false +A1068,S6077,P5003,Enterprise Monthly,enterprise,monthly,premium,active,2025-01-01,,19,0.0,2600.0,APAC-enterprise,I7328,2025-06-01,2025-06-15,open,,,,2834.0,0.0,2834.0,0,1,false +A1083,S6095,P5002,Growth Monthly,growth,monthly,priority,active,2025-04-01,,9,20.0,1200.0,NA-mid_market,I7396,2025-06-01,2025-06-15,paid,failed,ach,2025-06-15,1200.0,1200.0,0.0,0,0,false +A1004,S6005,P5001,Starter Monthly,starter,monthly,standard,canceled,2025-01-01,2025-05-31,14,0.0,500.0,NA-enterprise,I7017,2025-05-01,2025-05-15,paid,paid,ach,2025-05-08,500.0,500.0,0.0,0,0,false +A1030,S6033,P5003,Enterprise Monthly,enterprise,monthly,premium,active,2025-01-01,,14,5.0,2470.0,EMEA-enterprise,I7144,2025-06-01,2025-06-15,paid,paid,wire,2025-06-14,2964.0,2964.0,0.0,0,0,false +A1039,S6044,P5001,Starter Monthly,starter,monthly,standard,active,2025-03-01,,8,0.0,500.0,EMEA-smb,I7188,2025-06-01,2025-06-15,paid,paid,card,2025-06-11,600.0,600.0,0.0,0,0,false +A1043,S6050,P5003,Enterprise Monthly,enterprise,monthly,premium,active,2025-01-01,,21,0.0,2600.0,APAC-enterprise,I7212,2025-06-01,2025-06-15,paid,paid,wire,2025-06-08,2834.0,2834.0,0.0,0,0,false +A1045,S6053,P5004,Enterprise Annual,enterprise,annual,premium,active,2025-01-01,,17,5.0,2137.5,NA-enterprise,I7219,2025-01-01,2025-01-15,paid,paid,wire,2025-01-10,25650.0,25650.0,0.0,0,0,false +A1048,S6056,P5004,Enterprise Annual,enterprise,annual,premium,active,2025-03-01,,18,10.0,2025.0,APAC-enterprise,I7227,2025-03-01,2025-03-15,paid,paid,ach,2025-03-07,26730.0,26730.0,0.0,0,0,false +A1090,S6102,P5001,Starter Monthly,starter,monthly,standard,active,2025-01-01,,5,0.0,500.0,NA-smb,I7432,2025-06-01,2025-06-15,paid,paid,card,2025-06-14,500.0,500.0,0.0,0,0,false diff --git a/tasks/helixops_saas007/seeds/solution__mart_account_360.csv b/tasks/helixops_saas007/seeds/solution__mart_account_360.csv new file mode 100644 index 00000000..a899ef0b --- /dev/null +++ b/tasks/helixops_saas007/seeds/solution__mart_account_360.csv @@ -0,0 +1,91 @@ +account_id,account_name,industry,region,segment,billing_country,account_status,is_churned,employee_band,owner_team,workspace_count,active_workspace_count,sandbox_workspace_count,primary_workspace_name,user_count,active_user_count,plan_name,plan_family,billing_cycle,support_tier,contracted_seats,discount_pct,latest_invoice_status,latest_payment_status,latest_invoice_date,latest_payment_date,latest_outstanding_amount_usd,has_past_due_invoice,geo_segment,latest_revenue_month,latest_recurring_revenue_usd,latest_one_time_revenue_usd,latest_total_revenue_usd,latest_collected_revenue_usd,latest_usage_date,latest_daily_active_users,latest_daily_projects_run,latest_daily_api_calls,avg_active_users_7d,avg_active_users_30d,total_projects_run_30d,total_api_calls_30d,peak_storage_gb_30d,lifetime_ticket_count,open_ticket_count,avg_csat_score,avg_first_response_minutes +A1010,Orchid Foods,education,NA,smb,CA,active,false,11-50,CSM-East,1,1,0,orchid-core,8,7,Starter Monthly,starter,monthly,standard,10,20.0,paid,paid,2025-06-01,2025-06-07,0.0,false,NA-smb,2025-06-01,400.0,0.0,400.0,400.0,2025-06-30,4,13,595,0.0,4.3,478,29531,28.3,2,0,3.0,36.0 +A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,false,201-500,CSM-East,2,2,0,lighthouse-core,12,12,Growth Monthly,growth,monthly,priority,13,0.0,paid,paid,2025-06-01,2025-06-05,0.0,false,NA-mid_market,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,11,56,3786,0.0,8.966666666666667,1158,69619,38.4,2,0,4.5,555.0 +A1046,Pioneer Solutions,education,NA,smb,CA,active,false,51-200,CSM-East,1,1,0,pioneer-core,5,4,Growth Monthly,growth,monthly,priority,5,20.0,paid,paid,2025-06-01,2025-06-07,0.0,false,NA-smb,2025-06-01,1200.0,0.0,1200.0,1200.0,2025-06-30,3,15,877,0.0,2.533333333333333,349,21104,17.4,3,1,5.0,251.0 +A1051,Lighthouse Systems,media,EMEA,smb,UK,active,false,51-200,CSM-EMEA,1,1,0,lighthouse-core,7,4,Growth Monthly,growth,monthly,priority,7,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,EMEA-smb,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,1,7,416,0.0,2.5,327,19800,27.7,3,0,3.6666666666666665,425.0 +A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,false,1000+,CSM-East,3,2,1,nova-core,16,15,Enterprise Annual,enterprise,annual,premium,18,5.0,paid,paid,2025-01-01,2025-01-11,0.0,false,NA-enterprise,2025-01-01,25650.0,2000.0,27650.0,27650.0,2025-06-30,9,48,2413,0.0,7.9,1299,77795,64.1,5,0,4.8,158.0 +A1027,BluePeak Health,retail,APAC,smb,SG,active,false,51-200,CSM-APAC,2,2,0,bluepeak-core,5,5,Starter Monthly,starter,monthly,standard,6,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,APAC-smb,2025-06-01,500.0,0.0,545.0,545.0,2025-06-30,3,16,1181,0.0,3.6,520,32095,22.8,1,0,4.0,8.0 +A1034,Helio Partners,travel,NA,smb,CA,active,false,51-200,CSM-East,2,2,1,helio-core,7,7,Starter Monthly,starter,monthly,standard,8,0.0,paid,paid,2025-06-01,2025-06-13,0.0,false,NA-smb,2025-06-01,500.0,0.0,500.0,500.0,2025-06-30,6,26,1171,0.0,3.5,507,26564,20.8,3,0,4.0,376.3333333333333 +A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,false,201-500,CSM-APAC,3,3,1,harbor-core,12,10,Enterprise Monthly,enterprise,monthly,premium,15,0.0,paid,paid,2025-06-01,2025-06-08,0.0,false,APAC-mid_market,2025-06-01,2600.0,0.0,2834.0,2834.0,2025-06-30,5,33,1669,0.0,5.766666666666667,1066,56746,40.9,4,1,2.6666666666666665,29.0 +A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,false,201-500,CSM-EMEA,3,3,1,cedar-core,12,10,Growth Monthly,growth,monthly,priority,15,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,EMEA-mid_market,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,7,42,2050,0.0,6.766666666666667,1147,61506,35.5,5,0,4.4,178.8 +A1049,Northwind Network,energy,NA,enterprise,CA,active,false,5000+,CSM-East,3,3,0,northwind-core,20,18,Enterprise Annual,enterprise,annual,premium,25,10.0,paid,paid,2025-01-01,2025-01-07,0.0,false,NA-enterprise,2025-01-01,24300.0,1500.0,25800.0,25800.0,2025-06-30,15,84,5189,0.0,13.066666666666666,2058,127637,71.0,7,1,4.0,202.85714285714286 +A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,false,501-1000,CSM-East,2,2,0,vertex-core,11,9,Growth Monthly,growth,monthly,priority,13,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,NA-mid_market,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,7,36,2022,0.0,6.566666666666666,937,57316,25.6,2,0,4.0,266.0 +A1088,Cedar Partners,energy,APAC,smb,NZ,active,false,51-200,CSM-APAC,1,1,0,cedar-core,6,5,Starter Monthly,starter,monthly,standard,8,0.0,paid,paid,2025-06-01,2025-06-09,0.0,false,APAC-smb,2025-06-01,500.0,0.0,550.0,550.0,2025-06-30,2,11,796,0.0,3.2,388,23706,21.1,2,1,5.0,635.5 +A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,false,1000+,CSM-EMEA,4,4,0,bluepeak-core,19,19,Enterprise Annual,enterprise,annual,premium,24,10.0,paid,paid,2025-01-01,2025-01-12,0.0,false,EMEA-enterprise,2025-01-01,24300.0,2000.0,31560.0,31560.0,2025-06-30,13,87,4443,0.0,12.733333333333333,2320,136008,66.4,6,1,4.0,146.83333333333334 +A1053,Bright Health,media,NA,mid_market,CA,active,false,501-1000,CSM-East,3,3,0,bright-core,10,9,Growth Monthly,growth,monthly,priority,12,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,NA-mid_market,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,7,45,2733,0.0,6.133333333333334,1076,62016,44.5,3,0,5.0,250.66666666666666 +A1081,River Collective,financial_services,NA,mid_market,CA,active,false,201-500,CSM-East,3,3,1,river-core,9,7,Enterprise Monthly,enterprise,monthly,premium,10,0.0,paid,paid,2025-06-01,2025-06-13,0.0,false,NA-mid_market,2025-06-01,2600.0,0.0,2600.0,2600.0,2025-06-30,5,35,1604,0.0,5.233333333333333,1010,54352,29.7,4,1,4.0,199.25 +A1009,Summit Group,financial_services,NA,mid_market,US,active,false,501-1000,CSM-East,2,2,0,summit-core,13,11,Enterprise Monthly,enterprise,monthly,premium,13,10.0,paid,paid,2025-06-01,2025-06-10,0.0,false,NA-mid_market,2025-06-01,2340.0,0.0,2340.0,2340.0,2025-06-30,6,32,2031,0.0,7.333333333333333,1001,61468,27.7,3,0,4.0,27.666666666666668 +A1021,Apex Logistics,software,NA,smb,US,active,false,11-50,CSM-East,1,1,0,apex-core,7,7,Starter Monthly,starter,monthly,standard,8,0.0,paid,paid,2025-06-01,2025-06-09,0.0,false,NA-smb,2025-06-01,500.0,0.0,500.0,500.0,2025-06-30,5,18,897,0.0,4.166666666666667,469,27805,25.9,2,0,4.0,94.0 +A1072,Summit Ventures,software,NA,enterprise,US,active,false,5000+,CSM-East,3,3,1,summit-core,18,15,Enterprise Annual,enterprise,annual,premium,20,10.0,paid,paid,2025-01-01,2025-01-07,0.0,false,NA-enterprise,2025-01-01,24300.0,2500.0,26800.0,26800.0,2025-06-30,13,71,3915,0.0,9.5,1733,94474,70.8,4,0,3.75,204.25 +A1077,Evergreen Foods,travel,NA,mid_market,CA,active,false,201-500,CSM-East,3,3,0,evergreen-core,12,7,Growth Monthly,growth,monthly,priority,15,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,NA-mid_market,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,6,38,2104,0.0,5.233333333333333,1003,58101,36.6,4,0,4.0,45.0 +A1002,Summit Foods,media,NA,mid_market,US,active,false,501-1000,CSM-East,3,3,1,summit-core,12,11,Growth Monthly,growth,monthly,priority,13,0.0,open,,2025-06-01,,1500.0,false,NA-mid_market,2025-06-01,1500.0,0.0,1500.0,0.0,2025-06-30,8,43,1941,0.0,6.666666666666667,1104,59889,36.3,3,0,4.666666666666667,593.0 +A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,false,5000+,CSM-EMEA,3,3,0,pacific-core,15,12,Enterprise Annual,enterprise,annual,premium,17,5.0,paid,paid,2025-01-01,2025-01-14,0.0,false,EMEA-enterprise,2025-01-01,25650.0,2000.0,33180.0,33180.0,2025-06-30,11,66,3887,0.0,8.1,1630,93530,60.3,7,1,3.8333333333333335,171.0 +A1011,Vertex Energy,software,NA,smb,CA,active,false,51-200,CSM-East,1,1,0,vertex-core,6,6,Growth Monthly,growth,monthly,priority,6,0.0,paid,paid,2025-06-01,2025-06-09,0.0,false,NA-smb,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,3,14,981,0.0,3.9,437,27390,27.8,3,1,5.0,468.3333333333333 +A1052,Sierra Labs,software,APAC,mid_market,NZ,active,false,501-1000,CSM-APAC,2,2,0,sierra-core,10,9,Growth Monthly,growth,monthly,priority,10,5.0,paid,paid,2025-06-01,2025-06-10,0.0,false,APAC-mid_market,2025-06-01,1425.0,0.0,1567.5,1567.5,2025-06-30,8,35,1861,0.0,7.333333333333333,977,56984,36.7,5,1,4.75,268.6 +A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,false,1000+,CSM-EMEA,3,3,0,delta-core,14,14,Enterprise Monthly,enterprise,monthly,premium,18,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,EMEA-enterprise,2025-06-01,2600.0,0.0,3120.0,3120.0,2025-06-30,8,54,3149,0.0,9.533333333333333,1748,102875,60.9,3,0,4.666666666666667,25.333333333333332 +A1063,Maple Global,education,NA,smb,CA,active,false,11-50,CSM-East,1,1,0,maple-core,4,3,Starter Monthly,starter,monthly,standard,5,20.0,open,,2025-06-01,,400.0,false,NA-smb,2025-06-01,400.0,0.0,400.0,0.0,2025-06-30,2,10,576,0.0,1.8666666666666667,266,15675,23.7,2,1,4.0,157.5 +A1024,Sierra Group,manufacturing,NA,smb,CA,active,false,11-50,CSM-East,2,2,0,sierra-core,4,4,Starter Monthly,starter,monthly,standard,5,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,NA-smb,2025-06-01,500.0,0.0,500.0,500.0,2025-06-30,3,17,985,0.0,3.2333333333333334,490,28759,20.5,1,0,5.0,129.0 +A1035,Bright Retail,retail,EMEA,mid_market,UK,active,false,501-1000,CSM-EMEA,3,3,1,bright-core,13,11,Enterprise Monthly,enterprise,monthly,premium,15,0.0,paid,paid,2025-06-01,2025-06-05,0.0,false,EMEA-mid_market,2025-06-01,2600.0,0.0,3120.0,3120.0,2025-06-30,7,42,2322,0.0,6.466666666666667,1115,59544,42.0,5,0,4.4,107.8 +A1058,Evergreen Analytics,travel,EMEA,smb,UK,active,false,11-50,CSM-EMEA,2,2,0,evergreen-core,7,5,Starter Monthly,starter,monthly,standard,9,0.0,paid,paid,2025-06-01,2025-06-10,0.0,false,EMEA-smb,2025-06-01,500.0,0.0,600.0,600.0,2025-06-30,6,26,1225,0.0,4.4,594,36026,25.5,3,0,4.333333333333333,235.33333333333334 +A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,active,false,201-500,CSM-EMEA,2,2,0,summit-core,9,8,Growth Monthly,growth,monthly,priority,11,10.0,paid,paid,2025-06-01,2025-06-11,0.0,false,EMEA-mid_market,2025-06-01,1350.0,0.0,1620.0,1620.0,2025-06-30,7,35,1779,0.0,4.566666666666666,767,44175,35.2,4,0,4.5,203.75 +A1023,Atlas Systems,education,NA,smb,CA,active,false,11-50,CSM-East,1,1,0,atlas-core,8,8,Starter Monthly,starter,monthly,standard,10,20.0,past_due,failed,2025-06-01,2025-06-18,400.0,true,NA-smb,2025-06-01,400.0,0.0,400.0,0.0,2025-06-30,6,18,1272,0.0,5.0,532,31779,17.9,3,1,4.5,194.33333333333334 +A1044,Summit Holdings,software,EMEA,smb,NL,active,false,11-50,CSM-EMEA,1,1,0,summit-core,5,5,Growth Monthly,growth,monthly,priority,6,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,EMEA-smb,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,2,9,669,0.0,3.3333333333333335,391,24890,16.7,3,0,4.333333333333333,73.0 +A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,false,201-500,CSM-EMEA,2,2,0,silver-core,13,10,Enterprise Monthly,enterprise,monthly,premium,13,0.0,paid,paid,2025-06-01,2025-06-10,0.0,false,EMEA-mid_market,2025-06-01,2600.0,0.0,3120.0,3120.0,2025-06-30,9,39,1871,0.0,8.133333333333333,1075,63469,22.9,4,1,3.3333333333333335,101.25 +A1080,Beacon Global,financial_services,EMEA,mid_market,NL,active,false,201-500,CSM-EMEA,2,2,0,beacon-core,10,10,Growth Monthly,growth,monthly,priority,11,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,EMEA-mid_market,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,6,33,1980,0.0,7.133333333333334,959,58564,45.2,5,2,4.0,358.8 +A1086,River Labs,software,EMEA,smb,FR,active,false,11-50,CSM-EMEA,1,1,0,river-core,5,4,Starter Monthly,starter,monthly,standard,6,0.0,paid,paid,2025-06-01,2025-06-07,0.0,false,EMEA-smb,2025-06-01,500.0,0.0,600.0,600.0,2025-06-30,3,13,841,0.0,2.5,314,18915,28.2,2,1,3.0,88.5 +A1008,Pacific Works,software,EMEA,mid_market,UK,active,false,201-500,CSM-EMEA,3,3,0,pacific-core,11,11,Enterprise Monthly,enterprise,monthly,premium,12,5.0,paid,paid,2025-06-01,2025-06-09,0.0,false,EMEA-mid_market,2025-06-01,2470.0,0.0,2964.0,2964.0,2025-06-30,8,46,2869,0.0,8.066666666666666,1255,75716,25.8,3,0,3.6666666666666665,440.6666666666667 +A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,false,501-1000,CSM-EMEA,2,2,1,pioneer-core,13,12,Growth Monthly,growth,monthly,priority,13,0.0,past_due,failed,2025-06-01,2025-06-20,1800.0,true,EMEA-mid_market,2025-06-01,1500.0,0.0,1800.0,0.0,2025-06-30,5,29,1453,0.0,4.933333333333334,797,38707,33.5,3,0,4.333333333333333,158.0 +A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,false,5000+,CSM-East,3,3,0,bright-core,13,11,Enterprise Annual,enterprise,annual,premium,13,10.0,paid,paid,2025-01-01,2025-01-12,0.0,false,NA-enterprise,2025-01-01,24300.0,0.0,24300.0,24300.0,2025-06-30,10,69,4556,0.0,8.666666666666666,1634,96476,69.2,3,0,4.333333333333333,91.33333333333333 +A1078,Beacon Foods,software,EMEA,mid_market,FR,active,false,501-1000,CSM-EMEA,3,3,0,beacon-core,12,10,Growth Monthly,growth,monthly,priority,13,5.0,paid,paid,2025-06-01,2025-06-13,0.0,false,EMEA-mid_market,2025-06-01,1425.0,0.0,1710.0,1710.0,2025-06-30,7,43,2894,0.0,6.433333333333334,1081,63211,36.9,4,1,4.0,406.25 +A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,false,501-1000,CSM-East,2,2,0,silver-core,11,9,Enterprise Monthly,enterprise,monthly,premium,12,0.0,paid,paid,2025-06-01,2025-06-06,0.0,false,NA-mid_market,2025-06-01,2600.0,0.0,2600.0,2600.0,2025-06-30,8,41,1914,0.0,6.733333333333333,970,59696,45.6,4,1,3.0,175.75 +A1085,Sierra Capital,financial_services,NA,smb,US,active,false,11-50,CSM-East,1,1,0,sierra-core,4,4,Starter Monthly,starter,monthly,standard,5,0.0,paid,paid,2025-06-01,2025-06-13,0.0,false,NA-smb,2025-06-01,500.0,0.0,500.0,500.0,2025-06-30,4,16,993,0.0,2.566666666666667,335,20055,22.4,2,0,4.0,217.5 +A1089,Beacon Network,healthcare,NA,mid_market,US,active,false,201-500,CSM-East,2,2,0,beacon-core,12,10,Growth Monthly,growth,monthly,priority,15,0.0,paid,paid,2025-06-01,2025-06-09,0.0,false,NA-mid_market,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,9,41,2330,0.0,7.566666666666666,1041,63704,36.8,2,0,5.0,496.0 +A1006,Helio Works,education,EMEA,mid_market,UK,active,false,201-500,CSM-EMEA,2,2,0,helio-core,7,5,Growth Monthly,growth,monthly,priority,8,20.0,paid,paid,2025-06-01,2025-06-07,0.0,false,EMEA-mid_market,2025-06-01,1200.0,0.0,1440.0,1440.0,2025-06-30,3,24,1300,0.0,3.9,700,41229,32.3,3,0,4.0,91.33333333333333 +A1025,Bright Capital,education,EMEA,smb,UK,active,false,51-200,CSM-EMEA,1,1,0,bright-core,6,5,Starter Monthly,starter,monthly,standard,8,20.0,paid,paid,2025-06-01,2025-06-09,0.0,false,EMEA-smb,2025-06-01,400.0,0.0,480.0,480.0,2025-06-30,3,13,669,0.0,3.1,370,23365,27.0,2,0,5.0,83.0 +A1038,River Systems,logistics,APAC,smb,AU,active,false,51-200,CSM-APAC,2,2,0,river-core,5,4,Starter Monthly,starter,monthly,standard,6,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,APAC-smb,2025-06-01,500.0,0.0,550.0,550.0,2025-06-30,3,16,1047,0.0,2.8,446,27242,26.1,2,1,4.0,327.5 +A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,false,5000+,CSM-APAC,3,3,1,orchid-core,19,19,Enterprise Annual,enterprise,annual,premium,20,5.0,paid,paid,2025-01-01,2025-01-07,0.0,false,APAC-enterprise,2025-01-01,25650.0,0.0,28215.0,28215.0,2025-06-30,14,65,3643,0.0,12.3,1975,108624,70.2,7,1,4.5,154.28571428571428 +A1074,Granite Analytics,retail,NA,mid_market,CA,active,false,501-1000,CSM-East,3,3,0,granite-core,12,11,Growth Monthly,growth,monthly,priority,14,10.0,paid,paid,2025-06-01,2025-06-09,0.0,false,NA-mid_market,2025-06-01,1350.0,0.0,1350.0,1350.0,2025-06-30,8,49,2600,0.0,8.266666666666667,1288,77923,35.1,5,1,3.75,470.8 +A1026,Pioneer Capital,education,NA,smb,CA,active,false,11-50,CSM-East,1,1,0,pioneer-core,8,8,Starter Monthly,starter,monthly,standard,9,20.0,paid,paid,2025-06-01,2025-06-13,0.0,false,NA-smb,2025-06-01,400.0,0.0,400.0,400.0,2025-06-30,6,22,1587,0.0,4.7,507,30416,15.5,1,0,5.0,42.0 +A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,false,1000+,CSM-EMEA,4,4,2,lighthouse-core,18,15,Enterprise Monthly,enterprise,monthly,premium,22,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,EMEA-enterprise,2025-06-01,2600.0,0.0,3120.0,3120.0,2025-06-30,7,66,3748,0.0,7.766666666666667,1892,93362,66.6,4,1,4.333333333333333,60.0 +A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,false,501-1000,CSM-APAC,3,3,1,northwind-core,11,10,Growth Monthly,growth,monthly,priority,13,0.0,paid,paid,2025-06-01,2025-06-08,0.0,false,APAC-mid_market,2025-06-01,1500.0,0.0,1650.0,1650.0,2025-06-30,6,37,1967,0.0,6.733333333333333,1136,60586,35.9,5,0,4.2,236.8 +A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,false,5000+,CSM-EMEA,3,3,1,atlas-core,17,16,Enterprise Monthly,enterprise,monthly,premium,20,5.0,paid,paid,2025-06-01,2025-06-08,0.0,false,EMEA-enterprise,2025-06-01,2470.0,0.0,2964.0,2964.0,2025-06-30,10,66,3571,0.0,8.866666666666667,1687,91764,48.1,4,1,5.0,58.0 +A1064,Atlas Health,education,NA,smb,US,active,false,51-200,CSM-East,1,1,0,atlas-core,4,4,Starter Monthly,starter,monthly,standard,5,20.0,paid,paid,2025-06-01,2025-06-13,0.0,false,NA-smb,2025-06-01,400.0,0.0,400.0,400.0,2025-06-30,2,9,421,0.0,2.4,306,18016,27.4,2,0,5.0,699.0 +A1007,Silver Systems,energy,EMEA,smb,FR,active,false,51-200,CSM-EMEA,1,1,0,silver-core,4,3,Starter Monthly,starter,monthly,standard,5,0.0,open,,2025-06-01,,600.0,false,EMEA-smb,2025-06-01,500.0,0.0,600.0,0.0,2025-06-30,2,10,676,0.0,1.6,242,14726,25.9,3,0,4.666666666666667,420.3333333333333 +A1012,Cedar Ventures,retail,APAC,smb,JP,active,false,11-50,CSM-APAC,2,2,1,cedar-core,7,6,Starter Monthly,starter,monthly,standard,8,0.0,paid,failed,2025-06-01,2025-06-15,0.0,false,APAC-smb,2025-06-01,500.0,0.0,550.0,550.0,2025-06-30,6,27,1505,0.0,3.8333333333333335,530,29420,26.5,3,0,4.333333333333333,78.0 +A1013,River Foods,manufacturing,NA,mid_market,US,active,false,501-1000,CSM-East,3,3,0,river-core,7,5,Growth Monthly,growth,monthly,priority,7,5.0,paid,paid,2025-06-01,2025-06-14,0.0,false,NA-mid_market,2025-06-01,1425.0,0.0,1425.0,1425.0,2025-06-30,6,40,2273,0.0,4.433333333333334,930,51065,28.6,3,0,5.0,274.0 +A1031,Helio Holdings,healthcare,APAC,mid_market,AU,active,false,201-500,CSM-APAC,3,3,0,helio-core,10,10,Growth Monthly,growth,monthly,priority,13,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,APAC-mid_market,2025-06-01,1500.0,0.0,1650.0,1650.0,2025-06-30,8,46,2999,0.0,6.566666666666666,1115,63242,41.6,4,1,3.0,220.0 +A1056,Delta Global,retail,APAC,mid_market,AU,active,false,201-500,CSM-APAC,3,3,0,delta-core,11,10,Growth Monthly,growth,monthly,priority,11,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,APAC-mid_market,2025-06-01,1500.0,0.0,1650.0,1650.0,2025-06-30,9,50,3199,0.0,6.6,1111,67843,45.1,4,0,3.75,162.5 +A1057,Harbor Partners,education,APAC,enterprise,NZ,active,false,1000+,CSM-APAC,4,4,1,harbor-core,13,12,Enterprise Annual,enterprise,annual,premium,13,20.0,paid,paid,2025-01-01,2025-01-09,0.0,false,APAC-enterprise,2025-01-01,21600.0,0.0,23760.0,23760.0,2025-06-30,7,68,3920,0.0,7.533333333333333,1853,101155,57.9,7,2,3.4,207.71428571428572 +A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,false,201-500,CSM-EMEA,2,2,0,atlas-core,13,13,Growth Monthly,growth,monthly,priority,16,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,EMEA-mid_market,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,10,47,2790,0.0,9.333333333333334,1181,72164,43.5,3,1,5.0,169.33333333333334 +A1001,Helio Systems,healthcare,EMEA,mid_market,NL,active,false,201-500,CSM-EMEA,3,3,0,helio-core,9,7,Growth Monthly,growth,monthly,priority,10,0.0,paid,paid,2025-06-01,2025-06-06,0.0,false,EMEA-mid_market,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,4,33,1777,0.0,4.566666666666666,947,54717,32.6,4,0,4.5,243.25 +A1028,Apex Energy,energy,APAC,mid_market,SG,active,false,501-1000,CSM-APAC,2,2,1,apex-core,11,10,Enterprise Monthly,enterprise,monthly,premium,14,0.0,open,,2025-06-01,,2834.0,false,APAC-mid_market,2025-06-01,2600.0,0.0,2834.0,0.0,2025-06-30,5,28,1260,0.0,4.866666666666666,792,40215,34.1,3,0,4.666666666666667,685.6666666666666 +A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,false,201-500,CSM-APAC,3,3,0,granite-core,12,8,Enterprise Monthly,enterprise,monthly,premium,14,5.0,paid,paid,2025-06-01,2025-06-08,0.0,false,APAC-mid_market,2025-06-01,2470.0,0.0,2717.0,2717.0,2025-06-30,9,49,2885,0.0,7.666666666666667,1221,71204,45.6,5,1,3.5,344.6 +A1059,Evergreen Partners,education,NA,mid_market,CA,active,false,201-500,CSM-East,2,2,1,evergreen-core,11,10,Enterprise Monthly,enterprise,monthly,premium,11,20.0,paid,paid,2025-06-01,2025-06-05,0.0,false,NA-mid_market,2025-06-01,2080.0,0.0,2080.0,2080.0,2025-06-30,5,32,1617,0.0,4.466666666666667,749,39880,42.7,5,0,4.6,199.4 +A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,false,201-500,CSM-APAC,2,2,0,pacific-core,12,10,Enterprise Monthly,enterprise,monthly,premium,15,0.0,open,,2025-06-01,,2860.0,false,APAC-mid_market,2025-06-01,2600.0,0.0,2860.0,0.0,2025-06-30,6,35,1947,0.0,7.033333333333333,983,58910,41.8,3,0,3.6666666666666665,308.3333333333333 +A1067,Maple Energy,healthcare,NA,mid_market,CA,active,false,201-500,CSM-East,2,2,1,maple-core,7,6,Growth Monthly,growth,monthly,priority,8,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,NA-mid_market,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,4,28,1660,0.0,2.933333333333333,641,32283,32.9,5,1,4.25,199.4 +A1071,Evergreen Group,education,NA,mid_market,CA,active,false,201-500,CSM-East,3,3,1,evergreen-core,13,12,Enterprise Monthly,enterprise,monthly,premium,16,20.0,open,,2025-06-01,,2080.0,false,NA-mid_market,2025-06-01,2080.0,0.0,2080.0,0.0,2025-06-30,11,55,2716,0.0,7.0,1161,64088,38.1,2,0,3.5,66.0 +A1079,Nova Foods,education,EMEA,enterprise,FR,active,false,1000+,CSM-EMEA,4,4,0,nova-core,20,14,Enterprise Annual,enterprise,annual,premium,22,20.0,paid,paid,2025-01-01,2025-01-13,0.0,false,EMEA-enterprise,2025-01-01,21600.0,0.0,25920.0,25920.0,2025-06-30,12,79,5339,0.0,10.866666666666667,2169,127089,68.5,7,0,3.4285714285714284,85.14285714285714 +A1019,Sierra Systems,education,APAC,smb,JP,active,false,51-200,CSM-APAC,2,2,1,sierra-core,4,3,Starter Monthly,starter,monthly,standard,5,20.0,paid,paid,2025-06-01,2025-06-11,0.0,false,APAC-smb,2025-06-01,400.0,0.0,440.0,440.0,2025-06-30,1,10,451,0.0,1.4666666666666666,340,16856,19.2,1,1,,144.0 +A1020,Pioneer Network,travel,EMEA,smb,FR,active,false,11-50,CSM-EMEA,1,1,0,pioneer-core,4,3,Growth Monthly,growth,monthly,priority,5,0.0,paid,paid,2025-06-01,2025-06-08,0.0,false,EMEA-smb,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,3,13,677,0.0,1.7,255,14423,23.0,1,0,5.0,47.0 +A1050,Cedar Energy,software,APAC,smb,JP,active,false,11-50,CSM-APAC,2,2,1,cedar-core,4,4,Starter Monthly,starter,monthly,standard,5,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,APAC-smb,2025-06-01,500.0,0.0,550.0,550.0,2025-06-30,1,10,518,0.0,2.066666666666667,387,19633,21.0,1,1,,175.0 +A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,false,201-500,CSM-East,2,2,1,cedar-core,13,11,Growth Monthly,growth,monthly,priority,15,0.0,past_due,failed,2025-06-01,2025-06-22,1500.0,true,NA-mid_market,2025-06-01,1500.0,0.0,1500.0,0.0,2025-06-30,5,28,1881,0.0,6.2,891,49873,31.1,2,0,4.0,194.5 +A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,active,false,11-50,CSM-APAC,1,1,0,helio-core,8,6,Starter Monthly,starter,monthly,standard,10,0.0,paid,paid,2025-06-01,2025-06-10,0.0,false,APAC-smb,2025-06-01,500.0,0.0,550.0,550.0,2025-06-30,4,15,834,0.0,3.7333333333333334,424,24980,17.3,2,0,4.0,111.0 +A1075,Cedar Labs,software,EMEA,smb,UK,active,false,11-50,CSM-EMEA,1,1,0,cedar-core,8,8,Starter Monthly,starter,monthly,standard,10,0.0,paid,paid,2025-06-01,2025-06-10,0.0,false,EMEA-smb,2025-06-01,500.0,0.0,600.0,600.0,2025-06-30,6,19,1340,0.0,4.9,520,31589,28.4,1,0,4.0,738.0 +A1022,Summit Collective,retail,APAC,smb,NZ,active,false,51-200,CSM-APAC,2,2,1,summit-core,5,3,Growth Monthly,growth,monthly,priority,6,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,APAC-smb,2025-06-01,1500.0,0.0,1650.0,1650.0,2025-06-30,3,17,909,0.0,1.9666666666666666,374,17727,18.4,1,0,5.0,140.0 +A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,false,1000+,CSM-APAC,4,4,1,helio-core,16,15,Enterprise Monthly,enterprise,monthly,premium,19,0.0,open,,2025-06-01,,2834.0,false,APAC-enterprise,2025-06-01,2600.0,0.0,2834.0,0.0,2025-06-30,10,78,4884,0.0,8.033333333333333,1892,98846,60.8,7,0,4.571428571428571,72.14285714285714 +A1083,Falcon Works,education,NA,mid_market,CA,active,false,501-1000,CSM-East,2,2,1,falcon-core,7,5,Growth Monthly,growth,monthly,priority,9,20.0,paid,failed,2025-06-01,2025-06-15,0.0,false,NA-mid_market,2025-06-01,1200.0,0.0,1200.0,1200.0,2025-06-30,5,31,1797,0.0,2.8,618,30719,35.6,4,0,3.75,284.75 +A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,false,5000+,CSM-EMEA,4,4,0,northwind-core,12,11,Enterprise Monthly,enterprise,monthly,premium,14,5.0,paid,paid,2025-06-01,2025-06-14,0.0,false,EMEA-enterprise,2025-06-01,2470.0,0.0,2964.0,2964.0,2025-06-30,7,67,3741,0.0,7.466666666666667,1853,112662,48.3,4,0,4.25,214.0 +A1039,Nova Group,media,EMEA,smb,FR,active,false,11-50,CSM-EMEA,1,1,0,nova-core,7,7,Starter Monthly,starter,monthly,standard,8,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,EMEA-smb,2025-06-01,500.0,0.0,600.0,600.0,2025-06-30,6,20,1351,0.0,4.233333333333333,457,27512,23.0,3,0,5.0,127.0 +A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,false,1000+,CSM-APAC,4,4,1,lighthouse-core,18,16,Enterprise Monthly,enterprise,monthly,premium,21,0.0,paid,paid,2025-06-01,2025-06-08,0.0,false,APAC-enterprise,2025-06-01,2600.0,0.0,2834.0,2834.0,2025-06-30,12,86,4604,0.0,10.3,2105,114513,54.4,3,1,4.0,313.6666666666667 +A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,false,1000+,CSM-East,4,4,0,nova-core,14,14,Enterprise Annual,enterprise,annual,premium,17,5.0,paid,paid,2025-01-01,2025-01-10,0.0,false,NA-enterprise,2025-01-01,25650.0,0.0,25650.0,25650.0,2025-06-30,13,81,5167,0.0,10.6,2148,126398,70.5,5,0,4.2,179.4 +A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,false,5000+,CSM-APAC,3,3,0,orchid-core,17,14,Enterprise Annual,enterprise,annual,premium,18,10.0,paid,paid,2025-03-01,2025-03-07,0.0,false,APAC-enterprise,2025-03-01,24300.0,0.0,26730.0,26730.0,2025-06-30,12,76,4053,0.0,11.433333333333334,1910,112002,57.2,4,3,4.0,200.5 +A1090,Vertex Labs,energy,NA,smb,US,active,false,11-50,CSM-East,1,1,0,vertex-core,4,4,Starter Monthly,starter,monthly,standard,5,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,NA-smb,2025-06-01,500.0,0.0,500.0,500.0,2025-06-30,2,10,707,0.0,2.3,294,16801,23.7,2,1,4.0,96.5 +A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,true,5000+,CSM-East,2,0,1,silver-core,14,6,Starter Monthly,starter,monthly,standard,14,0.0,paid,paid,2025-05-01,2025-05-08,0.0,false,NA-enterprise,2025-05-01,500.0,0.0,500.0,500.0,,,,,0.0,0.0,0,0,0.0,7,1,3.5,210.0 +A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,true,1000+,CSM-APAC,1,0,0,bright-core,17,3,Starter Monthly,starter,monthly,standard,17,5.0,paid,paid,2025-04-01,2025-04-13,0.0,false,APAC-enterprise,2025-04-01,475.0,0.0,522.5,522.5,,,,,0.0,0.0,0,0,0.0,5,3,3.5,109.6 +A1015,Delta Network,logistics,NA,smb,US,churned,true,51-200,CSM-East,2,0,1,delta-core,3,0,Growth Monthly,growth,monthly,priority,5,0.0,paid,paid,2025-04-01,2025-04-12,0.0,false,NA-smb,2025-04-01,1500.0,0.0,1500.0,1500.0,,,,,0.0,0.0,0,0,0.0,4,0,4.25,95.25 +A1018,Harbor Manufacturing,media,EMEA,smb,UK,churned,true,11-50,CSM-EMEA,2,0,0,harbor-core,3,2,Starter Monthly,starter,monthly,standard,5,0.0,paid,paid,2025-04-01,2025-04-06,0.0,false,EMEA-smb,2025-04-01,500.0,0.0,600.0,600.0,,,,,0.0,0.0,0,0,0.0,3,0,3.0,454.3333333333333 +A1036,Granite Holdings,education,NA,smb,US,churned,true,51-200,CSM-East,2,0,1,granite-core,3,0,Growth Monthly,growth,monthly,priority,5,20.0,paid,paid,2025-04-01,2025-04-12,0.0,false,NA-smb,2025-04-01,1200.0,0.0,1200.0,1200.0,,,,,0.0,0.0,0,0,0.0,3,0,4.666666666666667,172.66666666666666 +A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,true,1000+,CSM-APAC,1,0,0,evergreen-core,18,4,Growth Monthly,growth,monthly,priority,23,0.0,paid,paid,2025-04-01,2025-04-14,0.0,false,APAC-enterprise,2025-04-01,1500.0,0.0,1635.0,1635.0,,,,,0.0,0.0,0,0,0.0,6,1,3.2,64.83333333333333 +A1032,Vertex Works,manufacturing,EMEA,mid_market,DE,churned,true,201-500,CSM-EMEA,2,0,0,vertex-core,6,4,Growth Monthly,growth,monthly,priority,7,0.0,paid,paid,2025-04-01,2025-04-09,0.0,false,EMEA-mid_market,2025-04-01,1500.0,0.0,1800.0,1800.0,,,,,0.0,0.0,0,0,0.0,3,0,2.0,137.33333333333334 +A1082,Summit Manufacturing,manufacturing,NA,mid_market,US,churned,true,501-1000,CSM-East,1,0,0,summit-core,7,2,Starter Monthly,starter,monthly,standard,9,0.0,paid,failed,2025-04-01,2025-04-15,0.0,false,NA-mid_market,2025-04-01,500.0,0.0,500.0,500.0,,,,,0.0,0.0,0,0,0.0,6,2,2.25,270.0 +A1087,Apex Capital,energy,NA,enterprise,CA,churned,true,1000+,CSM-East,1,0,0,apex-core,9,4,Growth Monthly,growth,monthly,priority,12,0.0,paid,paid,2025-04-01,2025-04-14,0.0,false,NA-enterprise,2025-04-01,1500.0,0.0,1500.0,1500.0,,,,,0.0,0.0,0,0,0.0,7,1,4.333333333333333,174.85714285714286 diff --git a/tasks/helixops_saas007/seeds/solution__mart_account_health.csv b/tasks/helixops_saas007/seeds/solution__mart_account_health.csv new file mode 100644 index 00000000..78e409ef --- /dev/null +++ b/tasks/helixops_saas007/seeds/solution__mart_account_health.csv @@ -0,0 +1,91 @@ +account_id,account_name,segment,region,billing_country,account_status,plan_name,latest_subscription_status,latest_invoice_status,latest_payment_status,latest_outstanding_amount_usd,has_past_due_invoice,geo_segment,active_user_count,active_workspace_count,avg_active_users_7d,total_projects_run_30d,total_api_calls_30d,open_ticket_count,breached_sla_ticket_count,avg_csat_score,latest_month_recurring_revenue_usd,latest_month_total_revenue_usd,account_health_score +A1030,Northwind Analytics,enterprise,EMEA,UK,active,Enterprise Monthly,active,paid,paid,0.0,false,EMEA-enterprise,11,4,0.0,1853,112662,0,0,4.25,2470.0,2964.0,80 +A1039,Nova Group,smb,EMEA,FR,active,Starter Monthly,active,paid,paid,0.0,false,EMEA-smb,7,1,0.0,457,27512,0,1,5.0,500.0,600.0,80 +A1043,Lighthouse Works,enterprise,APAC,SG,active,Enterprise Monthly,active,paid,paid,0.0,false,APAC-enterprise,16,4,0.0,2105,114513,1,0,4.0,2600.0,2834.0,75 +A1045,Nova Holdings,enterprise,NA,CA,active,Enterprise Annual,active,paid,paid,0.0,false,NA-enterprise,14,4,0.0,2148,126398,0,0,4.2,25650.0,25650.0,80 +A1048,Orchid Capital,enterprise,APAC,NZ,active,Enterprise Annual,active,paid,paid,0.0,false,APAC-enterprise,14,3,0.0,1910,112002,3,0,4.0,24300.0,26730.0,65 +A1090,Vertex Labs,smb,NA,US,active,Starter Monthly,active,paid,paid,0.0,false,NA-smb,4,1,0.0,294,16801,1,0,4.0,500.0,500.0,75 +A1063,Maple Global,smb,NA,CA,active,Starter Monthly,active,open,,400.0,false,NA-smb,3,1,0.0,266,15675,1,0,4.0,400.0,400.0,75 +A1002,Summit Foods,mid_market,NA,US,active,Growth Monthly,active,open,,1500.0,false,NA-mid_market,11,3,0.0,1104,59889,0,0,4.666666666666667,1500.0,1500.0,80 +A1005,Pacific Labs,enterprise,EMEA,UK,active,Enterprise Annual,active,paid,paid,0.0,false,EMEA-enterprise,12,3,0.0,1630,93530,1,0,3.8333333333333335,25650.0,33180.0,75 +A1011,Vertex Energy,smb,NA,CA,active,Growth Monthly,active,paid,paid,0.0,false,NA-smb,6,1,0.0,437,27390,1,0,5.0,1500.0,1500.0,75 +A1052,Sierra Labs,mid_market,APAC,NZ,active,Growth Monthly,active,paid,paid,0.0,false,APAC-mid_market,9,2,0.0,977,56984,1,0,4.75,1425.0,1567.5,75 +A1062,Delta Manufacturing,enterprise,EMEA,NL,active,Enterprise Monthly,active,paid,paid,0.0,false,EMEA-enterprise,14,3,0.0,1748,102875,0,0,4.666666666666667,2600.0,3120.0,80 +A1016,BluePeak Capital,enterprise,EMEA,DE,active,Enterprise Annual,active,paid,paid,0.0,false,EMEA-enterprise,19,4,0.0,2320,136008,1,0,4.0,24300.0,31560.0,75 +A1053,Bright Health,mid_market,NA,CA,active,Growth Monthly,active,paid,paid,0.0,false,NA-mid_market,9,3,0.0,1076,62016,0,0,5.0,1500.0,1500.0,80 +A1081,River Collective,mid_market,NA,CA,active,Enterprise Monthly,active,paid,paid,0.0,false,NA-mid_market,7,3,0.0,1010,54352,1,0,4.0,2600.0,2600.0,75 +A1010,Orchid Foods,smb,NA,CA,active,Starter Monthly,active,paid,paid,0.0,false,NA-smb,7,1,0.0,478,29531,0,0,3.0,400.0,400.0,80 +A1033,Lighthouse Global,mid_market,NA,CA,active,Growth Monthly,active,paid,paid,0.0,false,NA-mid_market,12,2,0.0,1158,69619,0,0,4.5,1500.0,1500.0,80 +A1046,Pioneer Solutions,smb,NA,CA,active,Growth Monthly,active,paid,paid,0.0,false,NA-smb,4,1,0.0,349,21104,1,0,5.0,1200.0,1200.0,75 +A1051,Lighthouse Systems,smb,EMEA,UK,active,Growth Monthly,active,paid,paid,0.0,false,EMEA-smb,4,1,0.0,327,19800,0,0,3.6666666666666665,1500.0,1800.0,80 +A1006,Helio Works,mid_market,EMEA,UK,active,Growth Monthly,active,paid,paid,0.0,false,EMEA-mid_market,5,2,0.0,700,41229,0,0,4.0,1200.0,1440.0,80 +A1025,Bright Capital,smb,EMEA,UK,active,Starter Monthly,active,paid,paid,0.0,false,EMEA-smb,5,1,0.0,370,23365,0,0,5.0,400.0,480.0,80 +A1038,River Systems,smb,APAC,AU,active,Starter Monthly,active,paid,paid,0.0,false,APAC-smb,4,2,0.0,446,27242,1,0,4.0,500.0,550.0,75 +A1074,Granite Analytics,mid_market,NA,CA,active,Growth Monthly,active,paid,paid,0.0,false,NA-mid_market,11,3,0.0,1288,77923,1,0,3.75,1350.0,1350.0,75 +A1047,Orchid Global,enterprise,APAC,AU,active,Enterprise Annual,active,paid,paid,0.0,false,APAC-enterprise,19,3,0.0,1975,108624,1,0,4.5,25650.0,28215.0,75 +A1001,Helio Systems,mid_market,EMEA,NL,active,Growth Monthly,active,paid,paid,0.0,false,EMEA-mid_market,7,3,0.0,947,54717,0,0,4.5,1500.0,1800.0,80 +A1028,Apex Energy,mid_market,APAC,SG,active,Enterprise Monthly,active,open,,2834.0,false,APAC-mid_market,10,2,0.0,792,40215,0,0,4.666666666666667,2600.0,2834.0,80 +A1054,Granite Labs,mid_market,APAC,NZ,active,Enterprise Monthly,active,paid,paid,0.0,false,APAC-mid_market,8,3,0.0,1221,71204,1,0,3.5,2470.0,2717.0,75 +A1059,Evergreen Partners,mid_market,NA,CA,active,Enterprise Monthly,active,paid,paid,0.0,false,NA-mid_market,10,2,0.0,749,39880,0,0,4.6,2080.0,2080.0,80 +A1066,Pacific Capital,mid_market,APAC,NZ,active,Enterprise Monthly,active,open,,2860.0,false,APAC-mid_market,10,2,0.0,983,58910,0,1,3.6666666666666665,2600.0,2860.0,80 +A1067,Maple Energy,mid_market,NA,CA,active,Growth Monthly,active,paid,paid,0.0,false,NA-mid_market,6,2,0.0,641,32283,1,0,4.25,1500.0,1500.0,75 +A1071,Evergreen Group,mid_market,NA,CA,active,Enterprise Monthly,active,open,,2080.0,false,NA-mid_market,12,3,0.0,1161,64088,0,0,3.5,2080.0,2080.0,80 +A1079,Nova Foods,enterprise,EMEA,FR,active,Enterprise Annual,active,paid,paid,0.0,false,EMEA-enterprise,14,4,0.0,2169,127089,0,0,3.4285714285714284,21600.0,25920.0,80 +A1017,Summit Analytics,mid_market,EMEA,UK,active,Growth Monthly,active,paid,paid,0.0,false,EMEA-mid_market,8,2,0.0,767,44175,0,0,4.5,1350.0,1620.0,80 +A1023,Atlas Systems,smb,NA,CA,active,Starter Monthly,active,past_due,failed,400.0,true,NA-smb,8,1,0.0,532,31779,1,0,4.5,400.0,400.0,50 +A1044,Summit Holdings,smb,EMEA,NL,active,Growth Monthly,active,paid,paid,0.0,false,EMEA-smb,5,1,0.0,391,24890,0,0,4.333333333333333,1500.0,1800.0,80 +A1073,Silver Holdings,mid_market,EMEA,DE,active,Enterprise Monthly,active,paid,paid,0.0,false,EMEA-mid_market,10,2,0.0,1075,63469,1,0,3.3333333333333335,2600.0,3120.0,75 +A1080,Beacon Global,mid_market,EMEA,NL,active,Growth Monthly,active,paid,paid,0.0,false,EMEA-mid_market,10,2,0.0,959,58564,2,0,4.0,1500.0,1800.0,75 +A1086,River Labs,smb,EMEA,FR,active,Starter Monthly,active,paid,paid,0.0,false,EMEA-smb,4,1,0.0,314,18915,1,0,3.0,500.0,600.0,75 +A1021,Apex Logistics,smb,NA,US,active,Starter Monthly,active,paid,paid,0.0,false,NA-smb,7,1,0.0,469,27805,0,0,4.0,500.0,500.0,80 +A1072,Summit Ventures,enterprise,NA,US,active,Enterprise Annual,active,paid,paid,0.0,false,NA-enterprise,15,3,0.0,1733,94474,0,0,3.75,24300.0,26800.0,80 +A1077,Evergreen Foods,mid_market,NA,CA,active,Growth Monthly,active,paid,paid,0.0,false,NA-mid_market,7,3,0.0,1003,58101,0,0,4.0,1500.0,1500.0,80 +A1009,Summit Group,mid_market,NA,US,active,Enterprise Monthly,active,paid,paid,0.0,false,NA-mid_market,11,2,0.0,1001,61468,0,1,4.0,2340.0,2340.0,80 +A1008,Pacific Works,mid_market,EMEA,UK,active,Enterprise Monthly,active,paid,paid,0.0,false,EMEA-mid_market,11,3,0.0,1255,75716,0,0,3.6666666666666665,2470.0,2964.0,80 +A1055,Pioneer Systems,mid_market,EMEA,FR,active,Growth Monthly,active,past_due,failed,1800.0,true,EMEA-mid_market,12,2,0.0,797,38707,0,0,4.333333333333333,1500.0,1800.0,55 +A1069,Bright Foods,enterprise,NA,CA,active,Enterprise Annual,active,paid,paid,0.0,false,NA-enterprise,11,3,0.0,1634,96476,0,0,4.333333333333333,24300.0,24300.0,80 +A1078,Beacon Foods,mid_market,EMEA,FR,active,Growth Monthly,active,paid,paid,0.0,false,EMEA-mid_market,10,3,0.0,1081,63211,1,0,4.0,1425.0,1710.0,75 +A1084,Silver Foods,mid_market,NA,CA,active,Enterprise Monthly,active,paid,paid,0.0,false,NA-mid_market,9,2,0.0,970,59696,1,0,3.0,2600.0,2600.0,75 +A1085,Sierra Capital,smb,NA,US,active,Starter Monthly,active,paid,paid,0.0,false,NA-smb,4,1,0.0,335,20055,0,1,4.0,500.0,500.0,80 +A1089,Beacon Network,mid_market,NA,US,active,Growth Monthly,active,paid,paid,0.0,false,NA-mid_market,10,2,0.0,1041,63704,0,1,5.0,1500.0,1500.0,80 +A1022,Summit Collective,smb,APAC,NZ,active,Growth Monthly,active,paid,paid,0.0,false,APAC-smb,3,2,0.0,374,17727,0,0,5.0,1500.0,1650.0,80 +A1068,Helio Health,enterprise,APAC,SG,active,Enterprise Monthly,active,open,,2834.0,false,APAC-enterprise,15,4,0.0,1892,98846,0,0,4.571428571428571,2600.0,2834.0,80 +A1083,Falcon Works,mid_market,NA,CA,active,Growth Monthly,active,paid,failed,0.0,false,NA-mid_market,5,2,0.0,618,30719,0,0,3.75,1200.0,1200.0,80 +A1019,Sierra Systems,smb,APAC,JP,active,Starter Monthly,active,paid,paid,0.0,false,APAC-smb,3,2,0.0,340,16856,1,0,,400.0,440.0,75 +A1050,Cedar Energy,smb,APAC,JP,active,Starter Monthly,active,paid,paid,0.0,false,APAC-smb,4,2,0.0,387,19633,1,0,,500.0,550.0,75 +A1060,Cedar Foods,mid_market,NA,CA,active,Growth Monthly,active,past_due,failed,1500.0,true,NA-mid_market,11,2,0.0,891,49873,0,0,4.0,1500.0,1500.0,55 +A1070,Helio Manufacturing,smb,APAC,NZ,active,Starter Monthly,active,paid,paid,0.0,false,APAC-smb,6,1,0.0,424,24980,0,0,4.0,500.0,550.0,80 +A1020,Pioneer Network,smb,EMEA,FR,active,Growth Monthly,active,paid,paid,0.0,false,EMEA-smb,3,1,0.0,255,14423,0,0,5.0,1500.0,1800.0,80 +A1075,Cedar Labs,smb,EMEA,UK,active,Starter Monthly,active,paid,paid,0.0,false,EMEA-smb,8,1,0.0,520,31589,0,0,4.0,500.0,600.0,80 +A1003,Nova Ventures,enterprise,NA,US,active,Enterprise Annual,active,paid,paid,0.0,false,NA-enterprise,15,2,0.0,1299,77795,0,0,4.8,25650.0,27650.0,80 +A1027,BluePeak Health,smb,APAC,SG,active,Starter Monthly,active,paid,paid,0.0,false,APAC-smb,5,2,0.0,520,32095,0,0,4.0,500.0,545.0,80 +A1034,Helio Partners,smb,NA,CA,active,Starter Monthly,active,paid,paid,0.0,false,NA-smb,7,2,0.0,507,26564,0,0,4.0,500.0,500.0,80 +A1040,Harbor Collective,mid_market,APAC,SG,active,Enterprise Monthly,active,paid,paid,0.0,false,APAC-mid_market,10,3,0.0,1066,56746,1,1,2.6666666666666665,2600.0,2834.0,75 +A1041,Cedar Logistics,mid_market,EMEA,NL,active,Growth Monthly,active,paid,paid,0.0,false,EMEA-mid_market,10,3,0.0,1147,61506,0,0,4.4,1500.0,1800.0,80 +A1065,Vertex Partners,mid_market,NA,US,active,Growth Monthly,active,paid,paid,0.0,false,NA-mid_market,9,2,0.0,937,57316,0,0,4.0,1500.0,1500.0,80 +A1088,Cedar Partners,smb,APAC,NZ,active,Starter Monthly,active,paid,paid,0.0,false,APAC-smb,5,1,0.0,388,23706,1,0,5.0,500.0,550.0,75 +A1049,Northwind Network,enterprise,NA,CA,active,Enterprise Annual,active,paid,paid,0.0,false,NA-enterprise,18,3,0.0,2058,127637,1,0,4.0,24300.0,25800.0,75 +A1026,Pioneer Capital,smb,NA,CA,active,Starter Monthly,active,paid,paid,0.0,false,NA-smb,8,1,0.0,507,30416,0,0,5.0,400.0,400.0,80 +A1037,Lighthouse Network,enterprise,EMEA,UK,active,Enterprise Monthly,active,paid,paid,0.0,false,EMEA-enterprise,15,4,0.0,1892,93362,1,0,4.333333333333333,2600.0,3120.0,75 +A1042,Northwind Labs,mid_market,APAC,AU,active,Growth Monthly,active,paid,paid,0.0,false,APAC-mid_market,10,3,0.0,1136,60586,0,2,4.2,1500.0,1650.0,80 +A1061,Atlas Capital,enterprise,EMEA,FR,active,Enterprise Monthly,active,paid,paid,0.0,false,EMEA-enterprise,16,3,0.0,1687,91764,1,0,5.0,2470.0,2964.0,75 +A1064,Atlas Health,smb,NA,US,active,Starter Monthly,active,paid,paid,0.0,false,NA-smb,4,1,0.0,306,18016,0,0,5.0,400.0,400.0,80 +A1007,Silver Systems,smb,EMEA,FR,active,Starter Monthly,active,open,,600.0,false,EMEA-smb,3,1,0.0,242,14726,0,0,4.666666666666667,500.0,600.0,80 +A1012,Cedar Ventures,smb,APAC,JP,active,Starter Monthly,active,paid,failed,0.0,false,APAC-smb,6,2,0.0,530,29420,0,1,4.333333333333333,500.0,550.0,80 +A1013,River Foods,mid_market,NA,US,active,Growth Monthly,active,paid,paid,0.0,false,NA-mid_market,5,3,0.0,930,51065,0,1,5.0,1425.0,1425.0,80 +A1031,Helio Holdings,mid_market,APAC,AU,active,Growth Monthly,active,paid,paid,0.0,false,APAC-mid_market,10,3,0.0,1115,63242,1,0,3.0,1500.0,1650.0,75 +A1056,Delta Global,mid_market,APAC,AU,active,Growth Monthly,active,paid,paid,0.0,false,APAC-mid_market,10,3,0.0,1111,67843,0,0,3.75,1500.0,1650.0,80 +A1057,Harbor Partners,enterprise,APAC,NZ,active,Enterprise Annual,active,paid,paid,0.0,false,APAC-enterprise,12,4,0.0,1853,101155,2,0,3.4,21600.0,23760.0,75 +A1076,Atlas Solutions,mid_market,EMEA,UK,active,Growth Monthly,active,paid,paid,0.0,false,EMEA-mid_market,13,2,0.0,1181,72164,1,0,5.0,1500.0,1800.0,75 +A1024,Sierra Group,smb,NA,CA,active,Starter Monthly,active,paid,paid,0.0,false,NA-smb,4,2,0.0,490,28759,0,0,5.0,500.0,500.0,80 +A1035,Bright Retail,mid_market,EMEA,UK,active,Enterprise Monthly,active,paid,paid,0.0,false,EMEA-mid_market,11,3,0.0,1115,59544,0,0,4.4,2600.0,3120.0,80 +A1058,Evergreen Analytics,smb,EMEA,UK,active,Starter Monthly,active,paid,paid,0.0,false,EMEA-smb,5,2,0.0,594,36026,0,0,4.333333333333333,500.0,600.0,80 +A1004,Silver Solutions,enterprise,NA,US,churned,Starter Monthly,canceled,paid,paid,0.0,false,NA-enterprise,6,0,0.0,0,0,1,0,3.5,500.0,500.0,35 +A1029,Bright Labs,enterprise,APAC,NZ,churned,Starter Monthly,canceled,paid,paid,0.0,false,APAC-enterprise,3,0,0.0,0,0,3,0,3.5,475.0,522.5,25 +A1015,Delta Network,smb,NA,US,churned,Growth Monthly,canceled,paid,paid,0.0,false,NA-smb,0,0,0.0,0,0,0,0,4.25,1500.0,1500.0,40 +A1018,Harbor Manufacturing,smb,EMEA,UK,churned,Starter Monthly,canceled,paid,paid,0.0,false,EMEA-smb,2,0,0.0,0,0,0,0,3.0,500.0,600.0,40 +A1036,Granite Holdings,smb,NA,US,churned,Growth Monthly,canceled,paid,paid,0.0,false,NA-smb,0,0,0.0,0,0,0,0,4.666666666666667,1200.0,1200.0,40 +A1014,Evergreen Global,enterprise,APAC,SG,churned,Growth Monthly,canceled,paid,paid,0.0,false,APAC-enterprise,4,0,0.0,0,0,1,0,3.2,1500.0,1635.0,35 +A1032,Vertex Works,mid_market,EMEA,DE,churned,Growth Monthly,canceled,paid,paid,0.0,false,EMEA-mid_market,4,0,0.0,0,0,0,0,2.0,1500.0,1800.0,40 +A1082,Summit Manufacturing,mid_market,NA,US,churned,Starter Monthly,canceled,paid,failed,0.0,false,NA-mid_market,2,0,0.0,0,0,2,1,2.25,500.0,500.0,35 +A1087,Apex Capital,enterprise,NA,CA,churned,Growth Monthly,canceled,paid,paid,0.0,false,NA-enterprise,4,0,0.0,0,0,1,0,4.333333333333333,1500.0,1500.0,35 diff --git a/tasks/helixops_saas007/setup.sh b/tasks/helixops_saas007/setup.sh new file mode 100755 index 00000000..ba9d7064 --- /dev/null +++ b/tasks/helixops_saas007/setup.sh @@ -0,0 +1,2 @@ +#!/bin/bash +dbt run diff --git a/tasks/helixops_saas007/solution.sh b/tasks/helixops_saas007/solution.sh new file mode 100755 index 00000000..bdedddf8 --- /dev/null +++ b/tasks/helixops_saas007/solution.sh @@ -0,0 +1,3 @@ +#!/bin/bash +patch -p1 < /sage/solutions/changes.patch +dbt run --select int_account_billing_snapshot mart_account_360 mart_account_health diff --git a/tasks/helixops_saas007/solutions/changes.patch b/tasks/helixops_saas007/solutions/changes.patch new file mode 100644 index 00000000..e438f575 --- /dev/null +++ b/tasks/helixops_saas007/solutions/changes.patch @@ -0,0 +1,30 @@ +--- a/models/intermediate/int_account_billing_snapshot.sql ++++ b/models/intermediate/int_account_billing_snapshot.sql +@@ -48,6 +48,7 @@ + ls.contracted_seats, + ls.discount_pct, + ls.effective_monthly_value_usd, ++ ls.region || '-' || ls.segment as geo_segment, + li.invoice_id as latest_invoice_id, + li.invoice_date as latest_invoice_date, + li.due_date as latest_invoice_due_date, +--- a/models/marts/mart_account_360.sql ++++ b/models/marts/mart_account_360.sql +@@ -66,6 +66,7 @@ + b.latest_payment_date, + b.latest_outstanding_amount_usd, + b.has_past_due_invoice, ++ b.geo_segment, + lr.invoice_month as latest_revenue_month, + lr.recurring_revenue_usd as latest_recurring_revenue_usd, + lr.one_time_revenue_usd as latest_one_time_revenue_usd, +--- a/models/marts/mart_account_health.sql ++++ b/models/marts/mart_account_health.sql +@@ -40,6 +40,7 @@ + b.latest_payment_status, + b.latest_outstanding_amount_usd, + b.has_past_due_invoice, ++ b.geo_segment, + e.active_user_count, + e.active_workspace_count, + e.avg_active_users_7d, diff --git a/tasks/helixops_saas007/task.yaml b/tasks/helixops_saas007/task.yaml new file mode 100644 index 00000000..6ff1f7d3 --- /dev/null +++ b/tasks/helixops_saas007/task.yaml @@ -0,0 +1,31 @@ +task_id: helixops_saas007 +status: ready +description: Add a new derived concatenation column (region + segment) through the billing snapshot to two downstream marts +prompts: + - key: base + prompt: |- + Add region and segment to int_account_billing_snapshot as a single hyphen separated geo_segment column, and carry it through to the account 360 and account health marts. + - key: no_location_hint + prompt: |- + Make it so the account 360 and account health marts have a geo_segment column like `APAC-enterprise`. +author_name: joel +author_email: joel@example.com +difficulty: medium +tags: + - dbt + - helixops_saas +test_setup: |- + dbt run --select int_account_billing_snapshot mart_account_360 mart_account_health +variants: +- db_type: duckdb + db_name: helixops_saas + project_type: dbt + project_name: helixops_saas +- db_type: duckdb + db_name: helixops_saas + project_type: dbt-fusion + project_name: helixops_saas +solution_seeds: + - table_name: int_account_billing_snapshot + - table_name: mart_account_360 + - table_name: mart_account_health diff --git a/tasks/helixops_saas007/tests/AUTO_int_account_billing_snapshot_equality.sql b/tasks/helixops_saas007/tests/AUTO_int_account_billing_snapshot_equality.sql new file mode 100644 index 00000000..1efde27d --- /dev/null +++ b/tasks/helixops_saas007/tests/AUTO_int_account_billing_snapshot_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'int_account_billing_snapshot' %} +{% set answer_keys = ['solution__int_account_billing_snapshot'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__int_account_billing_snapshot') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas007/tests/AUTO_int_account_billing_snapshot_existence.sql b/tasks/helixops_saas007/tests/AUTO_int_account_billing_snapshot_existence.sql new file mode 100644 index 00000000..0e90e1dd --- /dev/null +++ b/tasks/helixops_saas007/tests/AUTO_int_account_billing_snapshot_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'int_account_billing_snapshot' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas007/tests/AUTO_mart_account_360_equality.sql b/tasks/helixops_saas007/tests/AUTO_mart_account_360_equality.sql new file mode 100644 index 00000000..b21e2fc5 --- /dev/null +++ b/tasks/helixops_saas007/tests/AUTO_mart_account_360_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'mart_account_360' %} +{% set answer_keys = ['solution__mart_account_360'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__mart_account_360') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas007/tests/AUTO_mart_account_360_existence.sql b/tasks/helixops_saas007/tests/AUTO_mart_account_360_existence.sql new file mode 100644 index 00000000..708adf72 --- /dev/null +++ b/tasks/helixops_saas007/tests/AUTO_mart_account_360_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'mart_account_360' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas007/tests/AUTO_mart_account_health_equality.sql b/tasks/helixops_saas007/tests/AUTO_mart_account_health_equality.sql new file mode 100644 index 00000000..9a6d55ff --- /dev/null +++ b/tasks/helixops_saas007/tests/AUTO_mart_account_health_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'mart_account_health' %} +{% set answer_keys = ['solution__mart_account_health'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__mart_account_health') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas007/tests/AUTO_mart_account_health_existence.sql b/tasks/helixops_saas007/tests/AUTO_mart_account_health_existence.sql new file mode 100644 index 00000000..150e9ee2 --- /dev/null +++ b/tasks/helixops_saas007/tests/AUTO_mart_account_health_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'mart_account_health' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas007/tests/geo_segment_not_null.sql b/tasks/helixops_saas007/tests/geo_segment_not_null.sql new file mode 100644 index 00000000..c5e3d13c --- /dev/null +++ b/tasks/helixops_saas007/tests/geo_segment_not_null.sql @@ -0,0 +1 @@ +select 1 from {{ ref('mart_account_360') }} where geo_segment is not null limit 0 diff --git a/tasks/helixops_saas008/macros/ade_bench_equality_test.sql b/tasks/helixops_saas008/macros/ade_bench_equality_test.sql new file mode 100644 index 00000000..510c6037 --- /dev/null +++ b/tasks/helixops_saas008/macros/ade_bench_equality_test.sql @@ -0,0 +1,78 @@ +{% macro ade_bench_equality_test(table_name, answer_keys, cols_to_exclude=[]) %} + {% if not execute %} + select 1 where 1=0 + {% else %} + {% set ns = namespace(matched=false) %} + {% set actual_rel = load_relation(ref(table_name)) %} + + {% if actual_rel is not none %} + {% set actual_columns = adapter.get_columns_in_relation(actual_rel) %} + {% set exclude_lower = cols_to_exclude | map('lower') | list %} + + {%- set actual_col_names = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do actual_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set actual_set = actual_col_names | sort %} + + {% for answer_key in answer_keys %} + {% if not ns.matched %} + {% set seed_rel = load_relation(ref(answer_key)) %} + {% if seed_rel is not none %} + {% set seed_columns = adapter.get_columns_in_relation(seed_rel) %} + + {%- set seed_col_names = [] -%} + {%- for col in seed_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do seed_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set seed_set = seed_col_names | sort %} + + {% if actual_set == seed_set %} + {%- set compare_cols = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do compare_cols.append(col.quoted) -%} + {%- endif -%} + {%- endfor -%} + {% set compare_cols_csv = compare_cols | join(', ') %} + + {% set query %} + with a_minus_b as ( + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + except + select {{ compare_cols_csv }} from {{ ref(table_name) }} + ), + b_minus_a as ( + select {{ compare_cols_csv }} from {{ ref(table_name) }} + except + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + ), + unioned as ( + select * from a_minus_b + union all + select * from b_minus_a + ) + select count(*) as diff_count from unioned + {% endset %} + + {% set result = run_query(query) %} + {% if result.rows[0][0] == 0 %} + {% set ns.matched = true %} + {% endif %} + {% endif %} + {% endif %} + {% endif %} + {% endfor %} + {% endif %} + + {% if ns.matched %} + select 1 where 1=0 + {% else %} + select 1 + {% endif %} + {% endif %} +{% endmacro %} diff --git a/tasks/helixops_saas008/seeds/_no-op.txt b/tasks/helixops_saas008/seeds/_no-op.txt new file mode 100644 index 00000000..e504017b --- /dev/null +++ b/tasks/helixops_saas008/seeds/_no-op.txt @@ -0,0 +1,135 @@ + + +seeds: + helixops_saas: + solution__stg_accounts: + +column_types: + account_id: varchar + account_name: varchar + industry: varchar + region: varchar + segment: varchar + billing_country: varchar + created_at: timestamp + customer_status: varchar + employee_band: varchar + owner_team: varchar + is_deleted: boolean + source_batch_id: varchar + is_churned: boolean + solution__dim_accounts: + +column_types: + account_id: varchar + account_name: varchar + industry: varchar + region: varchar + segment: varchar + billing_country: varchar + created_at: timestamp + customer_status: varchar + is_churned: boolean + employee_band: varchar + owner_team: varchar + workspace_count: bigint + active_workspace_count: bigint + prod_workspace_count: bigint + sandbox_workspace_count: bigint + primary_workspace_name: varchar + user_count: bigint + active_user_count: bigint + inactive_user_count: bigint + provisioned_user_count: bigint + solution__int_account_users: + +column_types: + user_id: varchar + account_id: varchar + account_name: varchar + industry: varchar + region: varchar + segment: varchar + billing_country: varchar + customer_status: varchar + owner_team: varchar + email: varchar + full_name: varchar + title: varchar + department: varchar + created_at: timestamp + last_login_at: timestamp + user_status: varchar + is_active_user: boolean + is_test_user: boolean + days_since_last_login: bigint + solution__mart_account_360: + +column_types: + account_id: varchar + account_name: varchar + industry: varchar + region: varchar + segment: varchar + billing_country: varchar + customer_status: varchar + is_churned: boolean + employee_band: varchar + owner_team: varchar + workspace_count: bigint + active_workspace_count: bigint + sandbox_workspace_count: bigint + primary_workspace_name: varchar + user_count: bigint + active_user_count: bigint + plan_name: varchar + plan_family: varchar + billing_cycle: varchar + support_tier: varchar + contracted_seats: integer + discount_pct: double + latest_invoice_status: varchar + latest_payment_status: varchar + latest_invoice_date: date + latest_payment_date: date + latest_outstanding_amount_usd: double + has_past_due_invoice: boolean + latest_revenue_month: date + latest_recurring_revenue_usd: double + latest_one_time_revenue_usd: double + latest_total_revenue_usd: double + latest_collected_revenue_usd: double + latest_usage_date: date + latest_daily_active_users: bigint + latest_daily_projects_run: bigint + latest_daily_api_calls: bigint + avg_active_users_7d: double + avg_active_users_30d: double + total_projects_run_30d: bigint + total_api_calls_30d: bigint + peak_storage_gb_30d: double + lifetime_ticket_count: bigint + open_ticket_count: bigint + avg_csat_score: double + avg_first_response_minutes: double + solution__mart_account_health: + +column_types: + account_id: varchar + account_name: varchar + segment: varchar + region: varchar + billing_country: varchar + customer_status: varchar + plan_name: varchar + latest_subscription_status: varchar + latest_invoice_status: varchar + latest_payment_status: varchar + latest_outstanding_amount_usd: double + has_past_due_invoice: boolean + active_user_count: bigint + active_workspace_count: bigint + avg_active_users_7d: double + total_projects_run_30d: bigint + total_api_calls_30d: bigint + open_ticket_count: bigint + breached_sla_ticket_count: bigint + avg_csat_score: double + latest_month_recurring_revenue_usd: double + latest_month_total_revenue_usd: double + account_health_score: integer diff --git a/tasks/helixops_saas008/seeds/solution__dim_accounts.csv b/tasks/helixops_saas008/seeds/solution__dim_accounts.csv new file mode 100644 index 00000000..128dcee4 --- /dev/null +++ b/tasks/helixops_saas008/seeds/solution__dim_accounts.csv @@ -0,0 +1,91 @@ +account_id,account_name,industry,region,segment,billing_country,created_at,customer_status,is_churned,employee_band,owner_team,workspace_count,active_workspace_count,prod_workspace_count,sandbox_workspace_count,primary_workspace_name,user_count,active_user_count,inactive_user_count,provisioned_user_count +A1001,Helio Systems,healthcare,EMEA,mid_market,NL,2024-08-12 13:43:48,active,false,201-500,CSM-EMEA,3,3,3,0,helio-core,9,7,2,0 +A1002,Summit Foods,media,NA,mid_market,US,2025-01-10 22:12:29,active,false,501-1000,CSM-East,3,3,2,1,summit-core,12,11,1,0 +A1003,Nova Ventures,manufacturing,NA,enterprise,US,2024-12-11 03:21:52,active,false,1000+,CSM-East,3,2,2,1,nova-core,16,15,1,0 +A1004,Silver Solutions,manufacturing,NA,enterprise,US,2024-09-07 13:27:43,churned,true,5000+,CSM-East,2,0,1,1,silver-core,14,6,8,0 +A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,2024-08-31 14:28:15,active,false,5000+,CSM-EMEA,3,3,3,0,pacific-core,15,12,3,0 +A1006,Helio Works,education,EMEA,mid_market,UK,2024-11-21 09:17:28,active,false,201-500,CSM-EMEA,2,2,2,0,helio-core,7,5,2,0 +A1007,Silver Systems,energy,EMEA,smb,FR,2024-12-22 18:20:12,active,false,51-200,CSM-EMEA,1,1,1,0,silver-core,4,3,1,0 +A1008,Pacific Works,software,EMEA,mid_market,UK,2024-10-06 11:07:40,active,false,201-500,CSM-EMEA,3,3,3,0,pacific-core,11,11,0,0 +A1009,Summit Group,financial_services,NA,mid_market,US,2024-08-22 17:22:46,active,false,501-1000,CSM-East,2,2,2,0,summit-core,13,11,2,0 +A1010,Orchid Foods,education,NA,smb,CA,2025-02-10 21:10:21,active,false,11-50,CSM-East,1,1,1,0,orchid-core,8,7,1,0 +A1011,Vertex Energy,software,NA,smb,CA,2025-01-14 09:17:33,active,false,51-200,CSM-East,1,1,1,0,vertex-core,6,6,0,0 +A1012,Cedar Ventures,retail,APAC,smb,JP,2024-08-19 07:09:23,active,false,11-50,CSM-APAC,2,2,1,1,cedar-core,7,6,1,0 +A1013,River Foods,manufacturing,NA,mid_market,US,2024-12-27 04:56:58,active,false,501-1000,CSM-East,3,3,3,0,river-core,7,5,2,0 +A1014,Evergreen Global,retail,APAC,enterprise,SG,2024-09-21 19:29:43,churned,true,1000+,CSM-APAC,1,0,1,0,evergreen-core,18,4,14,0 +A1015,Delta Network,logistics,NA,smb,US,2024-09-04 16:34:41,churned,true,51-200,CSM-East,2,0,1,1,delta-core,3,0,3,0 +A1016,BluePeak Capital,energy,EMEA,enterprise,DE,2024-12-24 05:07:46,active,false,1000+,CSM-EMEA,4,4,4,0,bluepeak-core,19,19,0,0 +A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,2024-11-28 10:14:21,active,false,201-500,CSM-EMEA,2,2,2,0,summit-core,9,8,1,0 +A1018,Harbor Manufacturing,media,EMEA,smb,UK,2024-09-18 20:10:22,churned,true,11-50,CSM-EMEA,2,0,2,0,harbor-core,3,2,1,0 +A1019,Sierra Systems,education,APAC,smb,JP,2025-02-26 10:36:13,active,false,51-200,CSM-APAC,2,2,1,1,sierra-core,4,3,1,0 +A1020,Pioneer Network,travel,EMEA,smb,FR,2025-02-18 00:09:23,active,false,11-50,CSM-EMEA,1,1,1,0,pioneer-core,4,3,1,0 +A1021,Apex Logistics,software,NA,smb,US,2024-10-25 12:34:29,active,false,11-50,CSM-East,1,1,1,0,apex-core,7,7,0,0 +A1022,Summit Collective,retail,APAC,smb,NZ,2025-02-16 16:16:56,active,false,51-200,CSM-APAC,2,2,1,1,summit-core,5,3,2,0 +A1023,Atlas Systems,education,NA,smb,CA,2025-01-31 16:25:38,active,false,11-50,CSM-East,1,1,1,0,atlas-core,8,8,0,0 +A1024,Sierra Group,manufacturing,NA,smb,CA,2025-01-29 08:59:07,active,false,11-50,CSM-East,2,2,2,0,sierra-core,4,4,0,0 +A1025,Bright Capital,education,EMEA,smb,UK,2024-10-14 09:44:56,active,false,51-200,CSM-EMEA,1,1,1,0,bright-core,6,5,1,0 +A1026,Pioneer Capital,education,NA,smb,CA,2024-08-30 06:38:17,active,false,11-50,CSM-East,1,1,1,0,pioneer-core,8,8,0,0 +A1027,BluePeak Health,retail,APAC,smb,SG,2024-10-31 19:12:59,active,false,51-200,CSM-APAC,2,2,2,0,bluepeak-core,5,5,0,0 +A1028,Apex Energy,energy,APAC,mid_market,SG,2024-12-26 04:17:07,active,false,501-1000,CSM-APAC,2,2,1,1,apex-core,11,10,1,0 +A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,2024-08-31 01:24:19,churned,true,1000+,CSM-APAC,1,0,1,0,bright-core,17,3,13,1 +A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,2024-08-23 04:49:08,active,false,5000+,CSM-EMEA,4,4,4,0,northwind-core,12,11,1,0 +A1031,Helio Holdings,healthcare,APAC,mid_market,AU,2025-02-14 05:18:16,active,false,201-500,CSM-APAC,3,3,3,0,helio-core,10,10,0,0 +A1032,Vertex Works,manufacturing,EMEA,mid_market,DE,2024-09-16 13:25:27,churned,true,201-500,CSM-EMEA,2,0,2,0,vertex-core,6,4,2,0 +A1033,Lighthouse Global,logistics,NA,mid_market,CA,2024-10-19 07:50:01,active,false,201-500,CSM-East,2,2,2,0,lighthouse-core,12,12,0,0 +A1034,Helio Partners,travel,NA,smb,CA,2024-12-01 18:59:06,active,false,51-200,CSM-East,2,2,1,1,helio-core,7,7,0,0 +A1035,Bright Retail,retail,EMEA,mid_market,UK,2025-02-25 19:06:57,active,false,501-1000,CSM-EMEA,3,3,2,1,bright-core,13,11,1,1 +A1036,Granite Holdings,education,NA,smb,US,2024-12-22 12:14:31,churned,true,51-200,CSM-East,2,0,1,1,granite-core,3,0,3,0 +A1037,Lighthouse Network,media,EMEA,enterprise,UK,2024-11-25 06:24:43,active,false,1000+,CSM-EMEA,4,4,2,2,lighthouse-core,18,15,3,0 +A1038,River Systems,logistics,APAC,smb,AU,2024-11-18 10:09:31,active,false,51-200,CSM-APAC,2,2,2,0,river-core,5,4,1,0 +A1039,Nova Group,media,EMEA,smb,FR,2025-02-06 17:26:48,active,false,11-50,CSM-EMEA,1,1,1,0,nova-core,7,7,0,0 +A1040,Harbor Collective,healthcare,APAC,mid_market,SG,2024-12-08 12:58:20,active,false,201-500,CSM-APAC,3,3,2,1,harbor-core,12,10,2,0 +A1041,Cedar Logistics,media,EMEA,mid_market,NL,2024-08-04 18:07:41,active,false,201-500,CSM-EMEA,3,3,2,1,cedar-core,12,10,2,0 +A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,2024-09-19 11:52:42,active,false,501-1000,CSM-APAC,3,3,2,1,northwind-core,11,10,1,0 +A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,2024-10-21 14:03:18,active,false,1000+,CSM-APAC,4,4,3,1,lighthouse-core,18,16,2,0 +A1044,Summit Holdings,software,EMEA,smb,NL,2024-09-30 00:32:29,active,false,11-50,CSM-EMEA,1,1,1,0,summit-core,5,5,0,0 +A1045,Nova Holdings,manufacturing,NA,enterprise,CA,2024-11-05 09:05:10,active,false,1000+,CSM-East,4,4,4,0,nova-core,14,14,0,0 +A1046,Pioneer Solutions,education,NA,smb,CA,2024-10-17 12:09:12,active,false,51-200,CSM-East,1,1,1,0,pioneer-core,5,4,1,0 +A1047,Orchid Global,healthcare,APAC,enterprise,AU,2024-10-15 00:06:00,active,false,5000+,CSM-APAC,3,3,2,1,orchid-core,19,19,0,0 +A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,2025-02-14 20:00:18,active,false,5000+,CSM-APAC,3,3,3,0,orchid-core,17,14,3,0 +A1049,Northwind Network,energy,NA,enterprise,CA,2024-11-12 02:19:33,active,false,5000+,CSM-East,3,3,3,0,northwind-core,20,18,2,0 +A1050,Cedar Energy,software,APAC,smb,JP,2025-02-15 14:48:30,active,false,11-50,CSM-APAC,2,2,1,1,cedar-core,4,4,0,0 +A1051,Lighthouse Systems,media,EMEA,smb,UK,2025-02-26 02:44:10,active,false,51-200,CSM-EMEA,1,1,1,0,lighthouse-core,7,4,3,0 +A1052,Sierra Labs,software,APAC,mid_market,NZ,2024-11-30 21:54:21,active,false,501-1000,CSM-APAC,2,2,2,0,sierra-core,10,9,1,0 +A1053,Bright Health,media,NA,mid_market,CA,2024-09-19 10:24:29,active,false,501-1000,CSM-East,3,3,3,0,bright-core,10,9,1,0 +A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,2024-08-01 03:47:01,active,false,201-500,CSM-APAC,3,3,3,0,granite-core,12,8,4,0 +A1055,Pioneer Systems,travel,EMEA,mid_market,FR,2025-01-19 13:44:38,active,false,501-1000,CSM-EMEA,2,2,1,1,pioneer-core,13,12,1,0 +A1056,Delta Global,retail,APAC,mid_market,AU,2024-11-19 05:04:51,active,false,201-500,CSM-APAC,3,3,3,0,delta-core,11,10,1,0 +A1057,Harbor Partners,education,APAC,enterprise,NZ,2024-10-17 08:01:31,active,false,1000+,CSM-APAC,4,4,3,1,harbor-core,13,12,1,0 +A1058,Evergreen Analytics,travel,EMEA,smb,UK,2025-01-08 22:52:12,active,false,11-50,CSM-EMEA,2,2,2,0,evergreen-core,7,5,2,0 +A1059,Evergreen Partners,education,NA,mid_market,CA,2024-09-27 07:27:52,active,false,201-500,CSM-East,2,2,1,1,evergreen-core,11,10,1,0 +A1060,Cedar Foods,healthcare,NA,mid_market,CA,2024-11-05 18:41:46,active,false,201-500,CSM-East,2,2,1,1,cedar-core,13,11,2,0 +A1061,Atlas Capital,travel,EMEA,enterprise,FR,2025-02-13 00:52:24,active,false,5000+,CSM-EMEA,3,3,2,1,atlas-core,17,16,0,1 +A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,2024-11-09 15:50:25,active,false,1000+,CSM-EMEA,3,3,3,0,delta-core,14,14,0,0 +A1063,Maple Global,education,NA,smb,CA,2024-11-14 12:34:06,active,false,11-50,CSM-East,1,1,1,0,maple-core,4,3,1,0 +A1064,Atlas Health,education,NA,smb,US,2024-08-25 22:39:22,active,false,51-200,CSM-East,1,1,1,0,atlas-core,4,4,0,0 +A1065,Vertex Partners,manufacturing,NA,mid_market,US,2024-12-30 06:11:13,active,false,501-1000,CSM-East,2,2,2,0,vertex-core,11,9,2,0 +A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,2025-01-10 17:33:41,active,false,201-500,CSM-APAC,2,2,2,0,pacific-core,12,10,2,0 +A1067,Maple Energy,healthcare,NA,mid_market,CA,2024-12-30 00:24:42,active,false,201-500,CSM-East,2,2,1,1,maple-core,7,6,1,0 +A1068,Helio Health,manufacturing,APAC,enterprise,SG,2024-08-11 12:36:33,active,false,1000+,CSM-APAC,4,4,3,1,helio-core,16,15,1,0 +A1069,Bright Foods,manufacturing,NA,enterprise,CA,2024-12-06 03:08:52,active,false,5000+,CSM-East,3,3,3,0,bright-core,13,11,2,0 +A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,2024-11-06 23:20:27,active,false,11-50,CSM-APAC,1,1,1,0,helio-core,8,6,2,0 +A1071,Evergreen Group,education,NA,mid_market,CA,2024-08-27 15:34:10,active,false,201-500,CSM-East,3,3,2,1,evergreen-core,13,12,0,1 +A1072,Summit Ventures,software,NA,enterprise,US,2024-09-29 04:18:23,active,false,5000+,CSM-East,3,3,2,1,summit-core,18,15,3,0 +A1073,Silver Holdings,travel,EMEA,mid_market,DE,2024-11-08 12:21:51,active,false,201-500,CSM-EMEA,2,2,2,0,silver-core,13,10,3,0 +A1074,Granite Analytics,retail,NA,mid_market,CA,2024-08-10 23:20:24,active,false,501-1000,CSM-East,3,3,3,0,granite-core,12,11,1,0 +A1075,Cedar Labs,software,EMEA,smb,UK,2024-11-03 07:31:13,active,false,11-50,CSM-EMEA,1,1,1,0,cedar-core,8,8,0,0 +A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,2025-02-23 21:32:44,active,false,201-500,CSM-EMEA,2,2,2,0,atlas-core,13,13,0,0 +A1077,Evergreen Foods,travel,NA,mid_market,CA,2024-09-10 23:41:36,active,false,201-500,CSM-East,3,3,3,0,evergreen-core,12,7,4,1 +A1078,Beacon Foods,software,EMEA,mid_market,FR,2025-02-26 00:08:06,active,false,501-1000,CSM-EMEA,3,3,3,0,beacon-core,12,10,2,0 +A1079,Nova Foods,education,EMEA,enterprise,FR,2024-09-03 15:45:24,active,false,1000+,CSM-EMEA,4,4,4,0,nova-core,20,14,6,0 +A1080,Beacon Global,financial_services,EMEA,mid_market,NL,2024-08-12 03:30:12,active,false,201-500,CSM-EMEA,2,2,2,0,beacon-core,10,10,0,0 +A1081,River Collective,financial_services,NA,mid_market,CA,2024-11-17 14:36:21,active,false,201-500,CSM-East,3,3,2,1,river-core,9,7,1,1 +A1082,Summit Manufacturing,manufacturing,NA,mid_market,US,2024-11-16 19:18:31,churned,true,501-1000,CSM-East,1,0,1,0,summit-core,7,2,5,0 +A1083,Falcon Works,education,NA,mid_market,CA,2025-01-05 01:17:30,active,false,501-1000,CSM-East,2,2,1,1,falcon-core,7,5,2,0 +A1084,Silver Foods,manufacturing,NA,mid_market,CA,2024-12-07 11:11:54,active,false,501-1000,CSM-East,2,2,2,0,silver-core,11,9,2,0 +A1085,Sierra Capital,financial_services,NA,smb,US,2024-09-16 10:19:51,active,false,11-50,CSM-East,1,1,1,0,sierra-core,4,4,0,0 +A1086,River Labs,software,EMEA,smb,FR,2025-02-20 17:58:12,active,false,11-50,CSM-EMEA,1,1,1,0,river-core,5,4,1,0 +A1087,Apex Capital,energy,NA,enterprise,CA,2024-11-26 09:20:17,churned,true,1000+,CSM-East,1,0,1,0,apex-core,9,4,4,1 +A1088,Cedar Partners,energy,APAC,smb,NZ,2025-02-07 15:19:15,active,false,51-200,CSM-APAC,1,1,1,0,cedar-core,6,5,1,0 +A1089,Beacon Network,healthcare,NA,mid_market,US,2024-11-07 01:16:08,active,false,201-500,CSM-East,2,2,2,0,beacon-core,12,10,1,1 +A1090,Vertex Labs,energy,NA,smb,US,2024-09-27 22:37:20,active,false,11-50,CSM-East,1,1,1,0,vertex-core,4,4,0,0 diff --git a/tasks/helixops_saas008/seeds/solution__int_account_users.csv b/tasks/helixops_saas008/seeds/solution__int_account_users.csv new file mode 100644 index 00000000..edb6d354 --- /dev/null +++ b/tasks/helixops_saas008/seeds/solution__int_account_users.csv @@ -0,0 +1,909 @@ +user_id,account_id,account_name,industry,region,segment,billing_country,customer_status,owner_team,email,full_name,title,department,created_at,last_login_at,user_status,is_active_user,is_test_user,days_since_last_login +U3001,A1001,Helio Systems,healthcare,EMEA,mid_market,NL,active,CSM-EMEA,lena.park@heliosystems.example,Lena Park,Technical Program Manager,product,2024-09-05 21:43:48,2025-06-14 05:24:20,active,true,false,289 +U3002,A1001,Helio Systems,healthcare,EMEA,mid_market,NL,active,CSM-EMEA,mei.lewis@heliosystems.example,Mei Lewis,BI Analyst,analytics,2024-09-22 20:43:48,2025-06-23 18:02:36,active,true,false,280 +U3003,A1001,Helio Systems,healthcare,EMEA,mid_market,NL,active,CSM-EMEA,marcus.saeed@heliosystems.example,Marcus Saeed,Operations Manager,operations,2024-08-17 15:43:48,2025-06-22 18:02:58,active,true,false,281 +U3004,A1001,Helio Systems,healthcare,EMEA,mid_market,NL,active,CSM-EMEA,peter.ng@heliosystems.example,Peter Ng,Operations Director,operations,2024-09-09 18:43:48,2025-04-08 19:48:16,inactive,false,false,356 +U3005,A1001,Helio Systems,healthcare,EMEA,mid_market,NL,active,CSM-EMEA,sofia.fischer@heliosystems.example,Sofia Fischer,Demand Gen Manager,marketing,2024-08-17 18:43:48,2025-06-18 00:38:50,active,true,false,285 +U3006,A1001,Helio Systems,healthcare,EMEA,mid_market,NL,active,CSM-EMEA,marcus.silva@heliosystems.example,Marcus Silva,Finance Manager,finance,2024-08-14 17:43:48,2025-05-21 00:37:40,inactive,false,false,313 +U3007,A1001,Helio Systems,healthcare,EMEA,mid_market,NL,active,CSM-EMEA,naomi.turner@heliosystems.example,Naomi Turner,Product Manager,product,2024-08-17 13:43:48,2025-06-30 13:24:04,active,true,false,273 +U3008,A1001,Helio Systems,healthcare,EMEA,mid_market,NL,active,CSM-EMEA,peter.saeed@heliosystems.example,Peter Saeed,Revenue Operations Manager,sales,2024-08-30 16:43:48,2025-06-11 10:48:57,active,true,false,292 +U3009,A1001,Helio Systems,healthcare,EMEA,mid_market,NL,active,CSM-EMEA,victor.price@heliosystems.example,Victor Price,Product Manager,product,2024-08-19 20:43:48,2025-06-10 16:34:27,active,true,false,293 +U3010,A1002,Summit Foods,media,NA,mid_market,US,active,CSM-East,sofia.alvarez@summitfoods.example,Sofia Alvarez,FP&A Analyst,finance,2025-02-06 22:12:29,2025-06-16 03:08:19,active,true,false,287 +U3011,A1002,Summit Foods,media,NA,mid_market,US,active,CSM-East,lena.price@summitfoods.example,Lena Price,Controller,finance,2025-02-21 23:12:29,2025-06-19 01:04:00,active,true,false,284 +U3012,A1002,Summit Foods,media,NA,mid_market,US,active,CSM-East,tomas.saeed@summitfoods.example,Tomas Saeed,Analytics Engineer,data,2025-02-09 22:12:29,2025-06-19 08:27:51,active,true,false,284 +U3013,A1002,Summit Foods,media,NA,mid_market,US,active,CSM-East,nina.romero@summitfoods.example,Nina Romero,Founder,executive,2025-02-02 01:12:29,2025-06-25 12:59:10,active,true,false,278 +U3014,A1002,Summit Foods,media,NA,mid_market,US,active,CSM-East,marcus.silva@summitfoods.example,Marcus Silva,Finance Manager,finance,2025-02-02 06:12:29,2025-06-25 21:27:20,active,true,false,278 +U3015,A1002,Summit Foods,media,NA,mid_market,US,active,CSM-East,kenji.ward@summitfoods.example,Kenji Ward,Product Manager,product,2025-01-18 23:12:29,2025-06-21 09:37:03,active,true,false,282 +U3016,A1002,Summit Foods,media,NA,mid_market,US,active,CSM-East,priya.meyer@summitfoods.example,Priya Meyer,Marketing Operations Lead,marketing,2025-01-22 22:12:29,2025-06-17 19:37:56,active,true,false,286 +U3017,A1002,Summit Foods,media,NA,mid_market,US,active,CSM-East,sofia.morgan@summitfoods.example,Sofia Morgan,Technical Program Manager,product,2025-01-13 01:12:29,2025-06-29 05:52:23,active,true,false,274 +U3018,A1002,Summit Foods,media,NA,mid_market,US,active,CSM-East,hannah.silva@summitfoods.example,Hannah Silva,BI Analyst,analytics,2025-02-03 04:12:29,2025-05-27 04:39:23,inactive,false,false,307 +U3019,A1002,Summit Foods,media,NA,mid_market,US,active,CSM-East,lina.silva@summitfoods.example,Lina Silva,FP&A Analyst,finance,2025-02-24 05:12:29,2025-06-29 15:27:20,active,true,false,274 +U3020,A1002,Summit Foods,media,NA,mid_market,US,active,CSM-East,mateo.dubois@summitfoods.example,Mateo Dubois,Workflow Analyst,operations,2025-02-06 23:12:29,2025-06-30 06:02:54,active,true,false,273 +U3021,A1002,Summit Foods,media,NA,mid_market,US,active,CSM-East,kenji.nash@summitfoods.example,Kenji Nash,Analytics Manager,analytics,2025-01-16 23:12:29,2025-06-17 11:13:21,active,true,false,286 +U3022,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,owen.ng@novaventures.example,Owen Ng,Controller,finance,2025-01-08 08:21:52,2025-06-27 22:24:00,active,true,false,276 +U3023,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,marta.ng@novaventures.example,Marta Ng,Insights Lead,analytics,2024-12-14 04:21:52,2025-06-20 03:38:04,active,true,false,283 +U3024,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,derek.hart@novaventures.example,Derek Hart,Finance Manager,finance,2024-12-20 10:21:52,2025-06-11 22:09:58,active,true,false,292 +U3025,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,victor.fischer@novaventures.example,Victor Fischer,CFO,executive,2025-01-16 03:21:52,2025-06-26 18:34:56,active,true,false,277 +U3026,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,owen.fischer@novaventures.example,Owen Fischer,CFO,executive,2024-12-15 05:21:52,2025-06-19 22:52:17,active,true,false,284 +U3027,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,alma.dubois@novaventures.example,Alma Dubois,Marketing Operations Lead,marketing,2024-12-12 05:21:52,2025-06-19 16:26:11,active,true,false,284 +U3028,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,arjun.grant@novaventures.example,Arjun Grant,Analytics Manager,analytics,2025-01-25 10:21:52,2025-06-25 03:26:39,active,true,false,278 +U3029,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,claire.rossi@novaventures.example,Claire Rossi,Marketing Operations Lead,marketing,2024-12-19 04:21:52,2025-06-27 14:34:05,active,true,false,276 +U3030,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,owen.petrova@novaventures.example,Owen Petrova,VP Data,executive,2025-01-25 04:21:52,2025-06-17 08:08:53,active,true,false,286 +U3031,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,jonas.rahman@novaventures.example,Jonas Rahman,FP&A Analyst,finance,2025-01-12 06:21:52,2025-06-15 04:04:46,active,true,false,288 +U3032,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,naomi.alvarez@novaventures.example,Naomi Alvarez,Product Manager,product,2025-01-03 11:21:52,2025-06-21 15:17:01,active,true,false,282 +U3033,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,arjun.lewis@novaventures.example,Arjun Lewis,Operations Director,operations,2024-12-30 09:21:52,2025-04-21 08:57:34,inactive,false,false,343 +U3034,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,kai.price@novaventures.example,Kai Price,Operations Director,operations,2024-12-31 04:21:52,2025-06-26 19:11:31,active,true,false,277 +U3035,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,mateo.cole@novaventures.example,Mateo Cole,Controller,finance,2025-01-20 05:21:52,2025-06-13 10:10:01,active,true,false,290 +U3036,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,ivy.hart@novaventures.example,Ivy Hart,Data Engineer,data,2025-01-13 05:21:52,2025-06-14 05:21:09,active,true,false,289 +U3037,A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,CSM-East,alma.patel@novaventures.example,Alma Patel,VP Data,executive,2024-12-16 07:21:52,2025-06-23 15:53:18,active,true,false,280 +U3038,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,jonas.nash@silversolutions.example,Jonas Nash,Workflow Analyst,operations,2024-10-18 15:27:43,2025-03-17 22:55:34,inactive,false,false,378 +U3039,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,mila.silva@silversolutions.example,Mila Silva,Data Engineer,data,2024-09-12 13:27:43,2025-03-27 00:41:34,inactive,false,false,368 +U3040,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,daniel.price@silversolutions.example,Daniel Price,Analytics Engineer,data,2024-10-17 21:27:43,2025-04-17 05:20:34,inactive,false,false,347 +U3041,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,victor.morgan@silversolutions.example,Victor Morgan,Analytics Manager,analytics,2024-09-11 13:27:43,2025-06-20 09:07:01,active,true,false,283 +U3042,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,leo.ward@silversolutions.example,Leo Ward,Demand Gen Manager,marketing,2024-10-15 15:27:43,2025-05-11 14:48:33,inactive,false,false,323 +U3043,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,marta.morgan@silversolutions.example,Marta Morgan,FP&A Analyst,finance,2024-10-09 21:27:43,2025-06-16 03:49:21,active,true,false,287 +U3044,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,ava.grant@silversolutions.example,Ava Grant,Analytics Manager,analytics,2024-09-22 15:27:43,2025-06-17 08:03:38,active,true,false,286 +U3045,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,lina.price@silversolutions.example,Lina Price,Marketing Operations Lead,marketing,2024-09-27 18:27:43,2025-06-14 03:49:25,active,true,false,289 +U3046,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,tara.hart@silversolutions.example,Tara Hart,Technical Program Manager,product,2024-09-26 20:27:43,2025-06-19 20:04:48,active,true,false,284 +U3047,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,sofia.ward@silversolutions.example,Sofia Ward,Marketing Operations Lead,marketing,2024-10-14 18:27:43,2025-06-17 02:54:07,active,true,false,286 +U3048,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,tara.turner@silversolutions.example,Tara Turner,Insights Lead,analytics,2024-09-07 14:27:43,2025-05-10 23:12:59,inactive,false,false,324 +U3049,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,derek.morgan@silversolutions.example,Derek Morgan,Founder,executive,2024-10-02 13:27:43,2025-04-24 01:06:10,inactive,false,false,340 +U3050,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,claire.keller@silversolutions.example,Claire Keller,Sales Analyst,sales,2024-10-12 17:27:43,2025-04-29 15:50:01,inactive,false,false,335 +U3051,A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,CSM-East,olivia.lewis@silversolutions.example,Olivia Lewis,Operations Manager,operations,2024-09-30 18:27:43,2025-03-15 08:10:02,inactive,false,false,380 +U3052,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,ben.hart@pacificlabs.example,Ben Hart,Revenue Operations Manager,sales,2024-09-02 14:28:15,2025-06-18 09:00:36,active,true,false,285 +U3053,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,leo.saeed@pacificlabs.example,Leo Saeed,Product Manager,product,2024-10-08 22:28:15,2025-06-25 04:08:17,active,true,false,278 +U3054,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,alma.rahman@pacificlabs.example,Alma Rahman,Sales Analyst,sales,2024-10-07 19:28:15,2025-06-22 15:55:47,active,true,false,281 +U3055,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,isla.rossi@pacificlabs.example,Isla Rossi,Analytics Manager,analytics,2024-09-01 19:28:15,2025-06-12 22:50:57,active,true,false,291 +U3056,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,kai.singh@pacificlabs.example,Kai Singh,Data Platform Manager,data,2024-09-30 18:28:15,2025-05-15 16:35:18,inactive,false,false,319 +U3057,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,helena.patel@pacificlabs.example,Helena Patel,Data Platform Manager,data,2024-09-30 16:28:15,2025-06-27 19:07:10,active,true,false,276 +U3058,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,mila.kim@pacificlabs.example,Mila Kim,Controller,finance,2024-09-15 14:28:15,2025-06-27 07:04:58,active,true,false,276 +U3059,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,olivia.tan@pacificlabs.example,Olivia Tan,Analytics Engineer,data,2024-09-20 20:28:15,2025-06-27 01:14:44,active,true,false,276 +U3060,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,daniel.price@pacificlabs.example,Daniel Price,Product Manager,product,2024-10-15 16:28:15,2025-06-23 21:44:24,active,true,false,280 +U3061,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,alma.turner@pacificlabs.example,Alma Turner,Sales Analyst,sales,2024-09-11 21:28:15,2025-04-04 17:32:54,inactive,false,false,360 +U3062,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,nina.turner@pacificlabs.example,Nina Turner,Marketing Operations Lead,marketing,2024-09-17 22:28:15,2025-06-17 12:22:22,active,true,false,286 +U3063,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,claire.reed@pacificlabs.example,Claire Reed,Technical Program Manager,product,2024-09-30 19:28:15,2025-06-29 14:21:25,active,true,false,274 +U3064,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,evan.meyer@pacificlabs.example,Evan Meyer,Workflow Analyst,operations,2024-10-13 22:28:15,2025-06-19 20:49:54,active,true,false,284 +U3065,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,marta.shah@pacificlabs.example,Marta Shah,BI Analyst,analytics,2024-09-18 15:28:15,2025-06-21 00:42:09,active,true,false,282 +U3066,A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,CSM-EMEA,nina.turner2@pacificlabs.example,Nina Turner,Marketing Operations Lead,marketing,2024-10-04 18:28:15,2025-03-14 15:52:09,inactive,false,false,381 +U3067,A1006,Helio Works,education,EMEA,mid_market,UK,active,CSM-EMEA,mila.alvarez@helioworks.example,Mila Alvarez,Marketing Operations Lead,marketing,2025-01-02 17:17:28,2025-06-15 22:38:13,active,true,false,288 +U3068,A1006,Helio Works,education,EMEA,mid_market,UK,active,CSM-EMEA,hannah.hill@helioworks.example,Hannah Hill,Sales Analyst,sales,2025-01-05 16:17:28,2025-06-29 00:00:13,active,true,false,274 +U3069,A1006,Helio Works,education,EMEA,mid_market,UK,active,CSM-EMEA,naomi.chen@helioworks.example,Naomi Chen,FP&A Analyst,finance,2025-01-01 16:17:28,2025-06-15 03:11:29,active,true,false,288 +U3070,A1006,Helio Works,education,EMEA,mid_market,UK,active,CSM-EMEA,claire.khan@helioworks.example,Claire Khan,Insights Lead,analytics,2024-11-24 10:17:28,2025-06-15 22:16:41,active,true,false,288 +U3071,A1006,Helio Works,education,EMEA,mid_market,UK,active,CSM-EMEA,isla.desai@helioworks.example,Isla Desai,FP&A Analyst,finance,2024-12-02 09:17:28,2025-04-18 10:19:41,inactive,false,false,346 +U3072,A1006,Helio Works,education,EMEA,mid_market,UK,active,CSM-EMEA,kenji.meyer@helioworks.example,Kenji Meyer,Data Engineer,data,2024-12-10 10:17:28,2025-04-14 10:42:36,inactive,false,false,350 +U3073,A1006,Helio Works,education,EMEA,mid_market,UK,active,CSM-EMEA,isla.saeed@helioworks.example,Isla Saeed,Product Manager,product,2024-12-23 16:17:28,2025-06-29 22:10:05,active,true,false,274 +U3074,A1007,Silver Systems,energy,EMEA,smb,FR,active,CSM-EMEA,samir.rahman@silversystems.example,Samir Rahman,Technical Program Manager,product,2025-02-05 20:20:12,2025-06-18 11:22:55,active,true,false,285 +U3075,A1007,Silver Systems,energy,EMEA,smb,FR,active,CSM-EMEA,claire.tan@silversystems.example,Claire Tan,Controller,finance,2025-02-01 00:20:12,2025-06-22 19:10:21,active,true,false,281 +U3076,A1007,Silver Systems,energy,EMEA,smb,FR,active,CSM-EMEA,alma.petrova@silversystems.example,Alma Petrova,Revenue Operations Manager,sales,2025-01-02 20:20:12,2025-06-16 07:29:52,active,true,false,287 +U3077,A1007,Silver Systems,energy,EMEA,smb,FR,active,CSM-EMEA,maya.lopez@silversystems.example,Maya Lopez,Revenue Operations Manager,sales,2025-01-19 22:20:12,2025-05-10 12:26:18,inactive,false,false,324 +U3078,A1008,Pacific Works,software,EMEA,mid_market,UK,active,CSM-EMEA,maya.lopez@pacificworks.example,Maya Lopez,COO,executive,2024-10-09 12:07:40,2025-06-14 04:02:30,active,true,false,289 +U3079,A1008,Pacific Works,software,EMEA,mid_market,UK,active,CSM-EMEA,noah.hart@pacificworks.example,Noah Hart,Insights Lead,analytics,2024-10-13 15:07:40,2025-06-15 15:39:14,active,true,false,288 +U3080,A1008,Pacific Works,software,EMEA,mid_market,UK,active,CSM-EMEA,zoe.lewis@pacificworks.example,Zoe Lewis,Product Manager,product,2024-11-04 16:07:40,2025-06-23 14:57:08,active,true,false,280 +U3081,A1008,Pacific Works,software,EMEA,mid_market,UK,active,CSM-EMEA,leo.nash@pacificworks.example,Leo Nash,Marketing Operations Lead,marketing,2024-11-18 12:07:40,2025-06-23 02:40:59,active,true,false,280 +U3082,A1008,Pacific Works,software,EMEA,mid_market,UK,active,CSM-EMEA,derek.keller@pacificworks.example,Derek Keller,Operations Director,operations,2024-11-10 19:07:40,2025-06-23 07:37:37,active,true,false,280 +U3083,A1008,Pacific Works,software,EMEA,mid_market,UK,active,CSM-EMEA,peter.rahman@pacificworks.example,Peter Rahman,CFO,executive,2024-10-13 14:07:40,2025-06-22 03:45:46,active,true,false,281 +U3084,A1008,Pacific Works,software,EMEA,mid_market,UK,active,CSM-EMEA,elena.hart@pacificworks.example,Elena Hart,Product Manager,product,2024-11-04 13:07:40,2025-06-21 09:06:15,active,true,false,282 +U3085,A1008,Pacific Works,software,EMEA,mid_market,UK,active,CSM-EMEA,lena.brooks@pacificworks.example,Lena Brooks,Technical Program Manager,product,2024-10-07 17:07:40,2025-06-10 08:45:23,active,true,false,293 +U3086,A1008,Pacific Works,software,EMEA,mid_market,UK,active,CSM-EMEA,daniel.keller@pacificworks.example,Daniel Keller,Analytics Engineer,data,2024-10-28 12:07:40,2025-06-11 18:06:05,active,true,false,292 +U3087,A1008,Pacific Works,software,EMEA,mid_market,UK,active,CSM-EMEA,tomas.turner@pacificworks.example,Tomas Turner,Analytics Engineer,data,2024-11-01 13:07:40,2025-06-28 21:07:37,active,true,false,275 +U3088,A1008,Pacific Works,software,EMEA,mid_market,UK,active,CSM-EMEA,kai.fischer@pacificworks.example,Kai Fischer,Sales Analyst,sales,2024-10-30 17:07:40,2025-06-26 08:31:19,active,true,false,277 +U3089,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,isla.lewis@summitgroup.example,Isla Lewis,Founder,executive,2024-09-03 01:22:46,2025-06-13 09:11:06,active,true,false,290 +U3090,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,zoe.chen@summitgroup.example,Zoe Chen,Analytics Engineer,data,2024-09-21 01:22:46,2025-06-19 11:56:40,active,true,false,284 +U3091,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,zoe.alvarez@summitgroup.example,Zoe Alvarez,Technical Program Manager,product,2024-08-31 21:22:46,2025-06-27 21:21:25,active,true,false,276 +U3092,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,olivia.desai@summitgroup.example,Olivia Desai,Revenue Operations Manager,sales,2024-09-06 20:22:46,2025-06-24 16:59:51,active,true,false,279 +U3093,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,priya.park@summitgroup.example,Priya Park,Data Engineer,data,2024-08-24 23:22:46,2025-06-23 09:25:58,active,true,false,280 +U3094,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,daniel.brooks@summitgroup.example,Daniel Brooks,Controller,finance,2024-09-09 20:22:46,2025-06-28 01:08:23,active,true,false,275 +U3095,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,lena.khan@summitgroup.example,Lena Khan,COO,executive,2024-09-10 19:22:46,2025-04-10 11:39:54,inactive,false,false,354 +U3096,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,jonas.dubois@summitgroup.example,Jonas Dubois,Data Platform Manager,data,2024-09-28 19:22:46,2025-06-20 15:51:44,active,true,false,283 +U3097,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,arjun.rossi@summitgroup.example,Arjun Rossi,Analytics Engineer,data,2024-10-02 23:22:46,2025-06-18 00:40:34,active,true,false,285 +U3098,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,kai.price@summitgroup.example,Kai Price,FP&A Analyst,finance,2024-09-15 19:22:46,2025-06-21 18:50:40,active,true,false,282 +U3099,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,victor.patel@summitgroup.example,Victor Patel,Insights Lead,analytics,2024-09-01 00:22:46,2025-04-10 18:32:01,inactive,false,false,354 +U3100,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,arjun.saeed@summitgroup.example,Arjun Saeed,FP&A Analyst,finance,2024-09-06 21:22:46,2025-06-25 23:44:00,active,true,false,278 +U3101,A1009,Summit Group,financial_services,NA,mid_market,US,active,CSM-East,elena.park@summitgroup.example,Elena Park,Founder,executive,2024-09-25 20:22:46,2025-06-19 10:42:58,active,true,false,284 +U3102,A1010,Orchid Foods,education,NA,smb,CA,active,CSM-East,ben.desai@orchidfoods.example,Ben Desai,Operations Director,operations,2025-03-20 05:10:21,2025-06-15 08:41:12,active,true,false,288 +U3103,A1010,Orchid Foods,education,NA,smb,CA,active,CSM-East,samir.singh@orchidfoods.example,Samir Singh,Data Engineer,data,2025-02-22 22:10:21,2025-06-28 14:25:46,active,true,false,275 +U3104,A1010,Orchid Foods,education,NA,smb,CA,active,CSM-East,leo.alvarez@orchidfoods.example,Leo Alvarez,Demand Gen Manager,marketing,2025-02-26 05:10:21,2025-06-17 03:53:38,active,true,false,286 +U3105,A1010,Orchid Foods,education,NA,smb,CA,active,CSM-East,lina.ward@orchidfoods.example,Lina Ward,VP Data,executive,2025-02-27 02:10:21,2025-06-22 08:41:06,active,true,false,281 +U3106,A1010,Orchid Foods,education,NA,smb,CA,active,CSM-East,ava.hill@orchidfoods.example,Ava Hill,Technical Program Manager,product,2025-02-24 02:10:21,2025-06-11 09:37:52,active,true,false,292 +U3107,A1010,Orchid Foods,education,NA,smb,CA,active,CSM-East,lena.patel@orchidfoods.example,Lena Patel,Finance Manager,finance,2025-02-27 05:10:21,2025-04-10 21:01:38,inactive,false,false,354 +U3108,A1010,Orchid Foods,education,NA,smb,CA,active,CSM-East,claire.shah@orchidfoods.example,Claire Shah,Demand Gen Manager,marketing,2025-02-25 03:10:21,2025-06-16 06:08:53,active,true,false,287 +U3109,A1010,Orchid Foods,education,NA,smb,CA,active,CSM-East,tara.silva@orchidfoods.example,Tara Silva,Analytics Manager,analytics,2025-03-24 04:10:21,2025-06-28 01:52:14,active,true,false,275 +U3110,A1011,Vertex Energy,software,NA,smb,CA,active,CSM-East,aisha.lewis@vertexenergy.example,Aisha Lewis,Product Manager,product,2025-02-17 09:17:33,2025-06-30 15:47:34,active,true,false,273 +U3111,A1011,Vertex Energy,software,NA,smb,CA,active,CSM-East,tomas.brooks@vertexenergy.example,Tomas Brooks,Analytics Engineer,data,2025-01-22 12:17:33,2025-06-13 22:58:52,active,true,false,290 +U3112,A1011,Vertex Energy,software,NA,smb,CA,active,CSM-East,maya.reed@vertexenergy.example,Maya Reed,Technical Program Manager,product,2025-01-17 16:17:33,2025-06-10 16:09:51,active,true,false,293 +U3113,A1011,Vertex Energy,software,NA,smb,CA,active,CSM-East,maya.nash@vertexenergy.example,Maya Nash,Revenue Operations Manager,sales,2025-01-15 17:17:33,2025-06-23 07:05:24,active,true,false,280 +U3114,A1011,Vertex Energy,software,NA,smb,CA,active,CSM-East,claire.romero@vertexenergy.example,Claire Romero,Revenue Operations Manager,sales,2025-01-20 10:17:33,2025-06-16 03:22:28,active,true,false,287 +U3115,A1011,Vertex Energy,software,NA,smb,CA,active,CSM-East,mei.saeed@vertexenergy.example,Mei Saeed,Analytics Manager,analytics,2025-01-31 15:17:33,2025-06-20 03:31:41,active,true,false,283 +U3116,A1012,Cedar Ventures,retail,APAC,smb,JP,active,CSM-APAC,lena.alvarez@cedarventures.example,Lena Alvarez,Demand Gen Manager,marketing,2024-10-01 08:09:23,2025-06-26 01:35:27,active,true,false,277 +U3117,A1012,Cedar Ventures,retail,APAC,smb,JP,active,CSM-APAC,priya.petrova@cedarventures.example,Priya Petrova,Sales Analyst,sales,2024-09-12 15:09:23,2025-06-25 17:55:57,active,true,false,278 +U3118,A1012,Cedar Ventures,retail,APAC,smb,JP,active,CSM-APAC,maya.rahman@cedarventures.example,Maya Rahman,Operations Manager,operations,2024-09-15 12:09:23,2025-06-12 14:33:08,active,true,false,291 +U3119,A1012,Cedar Ventures,retail,APAC,smb,JP,active,CSM-APAC,mateo.desai@cedarventures.example,Mateo Desai,Marketing Operations Lead,marketing,2024-10-02 14:09:23,2025-06-12 02:18:39,active,true,false,291 +U3120,A1012,Cedar Ventures,retail,APAC,smb,JP,active,CSM-APAC,evan.nash@cedarventures.example,Evan Nash,Data Engineer,data,2024-09-08 07:09:23,2025-05-13 08:52:47,inactive,false,false,321 +U3121,A1012,Cedar Ventures,retail,APAC,smb,JP,active,CSM-APAC,noah.keller@cedarventures.example,Noah Keller,BI Analyst,analytics,2024-09-24 10:09:23,2025-06-19 17:42:00,active,true,false,284 +U3122,A1012,Cedar Ventures,retail,APAC,smb,JP,active,CSM-APAC,isla.silva@cedarventures.example,Isla Silva,Revenue Operations Manager,sales,2024-10-02 08:09:23,2025-06-18 16:28:39,active,true,false,285 +U3123,A1013,River Foods,manufacturing,NA,mid_market,US,active,CSM-East,marcus.ng@riverfoods.example,Marcus Ng,Marketing Operations Lead,marketing,2025-01-17 10:56:58,2025-05-01 21:36:48,inactive,false,false,333 +U3124,A1013,River Foods,manufacturing,NA,mid_market,US,active,CSM-East,evan.park@riverfoods.example,Evan Park,Product Manager,product,2025-01-18 12:56:58,2025-05-06 07:48:13,inactive,false,false,328 +U3125,A1013,River Foods,manufacturing,NA,mid_market,US,active,CSM-East,helena.kim@riverfoods.example,Helena Kim,Workflow Analyst,operations,2025-01-14 07:56:58,2025-06-12 06:47:26,active,true,false,291 +U3126,A1013,River Foods,manufacturing,NA,mid_market,US,active,CSM-East,evan.shah@riverfoods.example,Evan Shah,Revenue Operations Manager,sales,2025-01-20 09:56:58,2025-06-12 12:18:52,active,true,false,291 +U3127,A1013,River Foods,manufacturing,NA,mid_market,US,active,CSM-East,maya.singh@riverfoods.example,Maya Singh,Technical Program Manager,product,2025-01-13 05:56:58,2025-06-14 20:09:49,active,true,false,289 +U3128,A1013,River Foods,manufacturing,NA,mid_market,US,active,CSM-East,ivy.park@riverfoods.example,Ivy Park,Revenue Operations Manager,sales,2024-12-28 05:56:58,2025-06-12 13:12:49,active,true,false,291 +U3129,A1013,River Foods,manufacturing,NA,mid_market,US,active,CSM-East,ben.khan@riverfoods.example,Ben Khan,Revenue Operations Manager,sales,2025-01-14 10:56:58,2025-06-12 08:20:27,active,true,false,291 +U3130,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,lena.saeed@evergreenglobal.example,Lena Saeed,Controller,finance,2024-10-15 21:29:43,2025-06-17 14:25:18,active,true,false,286 +U3131,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,evan.rossi@evergreenglobal.example,Evan Rossi,Finance Manager,finance,2024-10-02 01:29:43,2025-05-16 07:44:43,inactive,false,false,318 +U3132,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,tomas.fischer@evergreenglobal.example,Tomas Fischer,BI Analyst,analytics,2024-11-01 02:29:43,2025-03-11 17:15:49,inactive,false,false,384 +U3133,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,naomi.singh@evergreenglobal.example,Naomi Singh,Analytics Engineer,data,2024-10-13 01:29:43,2025-04-02 19:59:30,inactive,false,false,362 +U3134,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,ivy.lewis@evergreenglobal.example,Ivy Lewis,Analytics Manager,analytics,2024-10-29 22:29:43,2025-04-08 23:57:55,inactive,false,false,356 +U3135,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,alma.meyer@evergreenglobal.example,Alma Meyer,Product Manager,product,2024-10-12 01:29:43,2025-04-05 18:32:52,inactive,false,false,359 +U3136,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,olivia.tan@evergreenglobal.example,Olivia Tan,Controller,finance,2024-10-26 19:29:43,2025-05-09 02:36:53,inactive,false,false,325 +U3137,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,daniel.park@evergreenglobal.example,Daniel Park,Insights Lead,analytics,2024-09-26 01:29:43,2025-03-30 17:39:04,inactive,false,false,365 +U3138,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,victor.lopez@evergreenglobal.example,Victor Lopez,Controller,finance,2024-10-19 01:29:43,2025-06-24 19:19:18,active,true,false,279 +U3139,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,leo.morgan@evergreenglobal.example,Leo Morgan,Revenue Operations Manager,sales,2024-10-15 03:29:43,2025-03-11 22:50:57,inactive,false,false,384 +U3140,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,victor.cole@evergreenglobal.example,Victor Cole,Controller,finance,2024-10-30 19:29:43,2025-05-03 03:01:18,inactive,false,false,331 +U3141,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,noah.silva@evergreenglobal.example,Noah Silva,Revenue Operations Manager,sales,2024-09-21 20:29:43,2025-04-20 16:53:11,inactive,false,false,344 +U3142,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,arjun.patel@evergreenglobal.example,Arjun Patel,Technical Program Manager,product,2024-10-17 02:29:43,2025-04-18 22:10:11,inactive,false,false,346 +U3143,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,peter.cole@evergreenglobal.example,Peter Cole,Analytics Engineer,data,2024-09-27 23:29:43,2025-03-12 14:27:40,inactive,false,false,383 +U3144,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,peter.cole2@evergreenglobal.example,Peter Cole,Analytics Manager,analytics,2024-10-20 22:29:43,2025-03-10 19:28:41,inactive,false,false,385 +U3145,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,owen.park@evergreenglobal.example,Owen Park,Founder,executive,2024-10-10 19:29:43,2025-05-22 18:43:58,inactive,false,false,312 +U3146,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,samir.hill@evergreenglobal.example,Samir Hill,Controller,finance,2024-10-07 03:29:43,2025-06-14 04:17:08,active,true,false,289 +U3147,A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,CSM-APAC,samir.ng@evergreenglobal.example,Samir Ng,Product Manager,product,2024-10-16 21:29:43,2025-06-26 05:54:34,active,true,false,277 +U3148,A1015,Delta Network,logistics,NA,smb,US,churned,CSM-East,luis.tan@deltanetwork.example,Luis Tan,Technical Program Manager,product,2024-09-28 16:34:41,2025-05-13 09:02:43,inactive,false,false,321 +U3149,A1015,Delta Network,logistics,NA,smb,US,churned,CSM-East,tomas.hill@deltanetwork.example,Tomas Hill,FP&A Analyst,finance,2024-09-24 19:34:41,2025-05-24 02:05:19,inactive,false,false,310 +U3150,A1015,Delta Network,logistics,NA,smb,US,churned,CSM-East,tara.saeed@deltanetwork.example,Tara Saeed,CFO,executive,2024-10-13 22:34:41,2025-05-22 10:11:57,inactive,false,false,312 +U3151,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,mila.sato@bluepeakcapital.example,Mila Sato,Insights Lead,analytics,2025-01-30 06:07:46,2025-06-17 21:26:38,active,true,false,286 +U3152,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,olivia.alvarez@bluepeakcapital.example,Olivia Alvarez,BI Analyst,analytics,2025-01-04 10:07:46,2025-06-22 16:34:37,active,true,false,281 +U3153,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,lina.price@bluepeakcapital.example,Lina Price,Controller,finance,2025-01-17 11:07:46,2025-06-25 17:12:23,active,true,false,278 +U3154,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,isla.sato@bluepeakcapital.example,Isla Sato,FP&A Analyst,finance,2025-01-11 07:07:46,2025-06-30 17:29:30,active,true,false,273 +U3155,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,owen.brooks@bluepeakcapital.example,Owen Brooks,Founder,executive,2025-01-24 07:07:46,2025-06-19 14:39:49,active,true,false,284 +U3156,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,arjun.hart@bluepeakcapital.example,Arjun Hart,Technical Program Manager,product,2025-02-05 12:07:46,2025-06-30 16:16:20,active,true,false,273 +U3157,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,owen.rossi@bluepeakcapital.example,Owen Rossi,Finance Manager,finance,2025-01-29 05:07:46,2025-06-15 15:28:03,active,true,false,288 +U3158,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,claire.desai@bluepeakcapital.example,Claire Desai,BI Analyst,analytics,2025-01-27 09:07:46,2025-06-21 09:24:32,active,true,false,282 +U3159,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,lena.rossi@bluepeakcapital.example,Lena Rossi,Workflow Analyst,operations,2024-12-31 09:07:46,2025-06-30 06:35:49,active,true,false,273 +U3160,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,derek.nash@bluepeakcapital.example,Derek Nash,Data Platform Manager,data,2025-01-21 13:07:46,2025-06-20 14:40:14,active,true,false,283 +U3161,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,marcus.alvarez@bluepeakcapital.example,Marcus Alvarez,BI Analyst,analytics,2025-01-21 09:07:46,2025-06-30 02:46:43,active,true,false,273 +U3162,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,elena.park@bluepeakcapital.example,Elena Park,Operations Director,operations,2025-01-06 10:07:46,2025-06-25 02:30:11,active,true,false,278 +U3163,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,ivy.rahman@bluepeakcapital.example,Ivy Rahman,Finance Manager,finance,2025-01-06 05:07:46,2025-06-23 05:04:33,active,true,false,280 +U3164,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,evan.nash@bluepeakcapital.example,Evan Nash,FP&A Analyst,finance,2025-02-07 09:07:46,2025-06-16 18:44:19,active,true,false,287 +U3165,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,sofia.hill@bluepeakcapital.example,Sofia Hill,FP&A Analyst,finance,2024-12-27 09:07:46,2025-06-13 08:55:03,active,true,false,290 +U3166,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,naomi.alvarez@bluepeakcapital.example,Naomi Alvarez,Controller,finance,2025-01-13 08:07:46,2025-06-26 16:56:06,active,true,false,277 +U3167,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,noah.rossi@bluepeakcapital.example,Noah Rossi,Controller,finance,2025-02-02 09:07:46,2025-06-19 09:33:13,active,true,false,284 +U3168,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,owen.keller@bluepeakcapital.example,Owen Keller,Operations Manager,operations,2025-01-25 09:07:46,2025-06-19 05:59:58,active,true,false,284 +U3169,A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,CSM-EMEA,ava.rossi@bluepeakcapital.example,Ava Rossi,Founder,executive,2024-12-29 12:07:46,2025-06-27 05:12:00,active,true,false,276 +U3170,A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,tomas.nash@summitanalytics.example,Tomas Nash,Revenue Operations Manager,sales,2024-12-25 13:14:21,2025-06-18 03:04:57,active,true,false,285 +U3171,A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,claire.silva@summitanalytics.example,Claire Silva,Controller,finance,2024-12-29 15:14:21,2025-03-05 19:03:17,inactive,false,false,390 +U3172,A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,marcus.ward@summitanalytics.example,Marcus Ward,Data Engineer,data,2024-12-08 17:14:21,2025-06-20 16:12:40,active,true,false,283 +U3173,A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,mei.lewis@summitanalytics.example,Mei Lewis,BI Analyst,analytics,2024-12-15 11:14:21,2025-06-16 08:51:44,active,true,false,287 +U3174,A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,elena.fischer@summitanalytics.example,Elena Fischer,Finance Manager,finance,2024-12-23 14:14:21,2025-06-28 14:57:16,active,true,false,275 +U3175,A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,zoe.ng@summitanalytics.example,Zoe Ng,Workflow Analyst,operations,2024-12-04 10:14:21,2025-06-12 04:24:09,active,true,false,291 +U3176,A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,naomi.patel@summitanalytics.example,Naomi Patel,Product Manager,product,2024-11-28 15:14:21,2025-06-20 13:00:56,active,true,false,283 +U3177,A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,naomi.turner@summitanalytics.example,Naomi Turner,Operations Director,operations,2024-12-22 11:14:21,2025-06-12 18:40:05,active,true,false,291 +U3178,A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,marcus.khan@summitanalytics.example,Marcus Khan,VP Data,executive,2024-12-06 16:14:21,2025-06-28 13:44:46,active,true,false,275 +U3179,A1018,Harbor Manufacturing,media,EMEA,smb,UK,churned,CSM-EMEA,tomas.saeed@harbormanufacturing.example,Tomas Saeed,Data Platform Manager,data,2024-10-29 22:10:22,2025-05-01 07:31:57,inactive,false,false,333 +U3180,A1018,Harbor Manufacturing,media,EMEA,smb,UK,churned,CSM-EMEA,peter.price@harbormanufacturing.example,Peter Price,Product Manager,product,2024-09-23 21:10:22,2025-06-13 06:44:39,active,true,false,290 +U3181,A1018,Harbor Manufacturing,media,EMEA,smb,UK,churned,CSM-EMEA,helena.kim@harbormanufacturing.example,Helena Kim,CFO,executive,2024-10-08 22:10:22,2025-06-25 22:31:07,active,true,false,278 +U3182,A1019,Sierra Systems,education,APAC,smb,JP,active,CSM-APAC,victor.meyer@sierrasystems.example,Victor Meyer,Data Platform Manager,data,2025-03-17 13:36:13,2025-06-22 15:49:06,active,true,false,281 +U3183,A1019,Sierra Systems,education,APAC,smb,JP,active,CSM-APAC,mei.morgan@sierrasystems.example,Mei Morgan,Insights Lead,analytics,2025-03-01 13:36:13,2025-06-13 00:40:40,active,true,false,290 +U3184,A1019,Sierra Systems,education,APAC,smb,JP,active,CSM-APAC,victor.rossi@sierrasystems.example,Victor Rossi,Workflow Analyst,operations,2025-02-26 15:36:13,2025-05-23 21:50:31,inactive,false,false,311 +U3185,A1019,Sierra Systems,education,APAC,smb,JP,active,CSM-APAC,lena.price@sierrasystems.example,Lena Price,COO,executive,2025-03-28 11:36:13,2025-06-11 22:20:26,active,true,false,292 +U3186,A1020,Pioneer Network,travel,EMEA,smb,FR,active,CSM-EMEA,nina.reed@pioneernetwork.example,Nina Reed,Data Engineer,data,2025-03-15 08:09:23,2025-06-27 14:08:11,active,true,false,276 +U3187,A1020,Pioneer Network,travel,EMEA,smb,FR,active,CSM-EMEA,sofia.price@pioneernetwork.example,Sofia Price,Sales Analyst,sales,2025-02-23 08:09:23,2025-06-13 23:56:34,active,true,false,290 +U3188,A1020,Pioneer Network,travel,EMEA,smb,FR,active,CSM-EMEA,evan.petrova@pioneernetwork.example,Evan Petrova,BI Analyst,analytics,2025-03-22 03:09:23,2025-04-02 01:23:00,inactive,false,false,362 +U3189,A1020,Pioneer Network,travel,EMEA,smb,FR,active,CSM-EMEA,noah.keller@pioneernetwork.example,Noah Keller,Insights Lead,analytics,2025-03-17 03:09:23,2025-06-12 09:13:21,active,true,false,291 +U3190,A1021,Apex Logistics,software,NA,smb,US,active,CSM-East,olivia.ward@apexlogistics.example,Olivia Ward,Analytics Engineer,data,2024-12-06 14:34:29,2025-06-27 11:22:55,active,true,false,276 +U3191,A1021,Apex Logistics,software,NA,smb,US,active,CSM-East,naomi.chen@apexlogistics.example,Naomi Chen,FP&A Analyst,finance,2024-11-16 20:34:29,2025-06-30 06:08:41,active,true,false,273 +U3192,A1021,Apex Logistics,software,NA,smb,US,active,CSM-East,nina.rahman@apexlogistics.example,Nina Rahman,COO,executive,2024-11-11 13:34:29,2025-06-11 00:06:04,active,true,false,292 +U3193,A1021,Apex Logistics,software,NA,smb,US,active,CSM-East,samir.ng@apexlogistics.example,Samir Ng,Insights Lead,analytics,2024-10-29 16:34:29,2025-06-24 06:55:26,active,true,false,279 +U3194,A1021,Apex Logistics,software,NA,smb,US,active,CSM-East,tomas.rossi@apexlogistics.example,Tomas Rossi,Technical Program Manager,product,2024-10-28 19:34:29,2025-06-14 08:12:55,active,true,false,289 +U3195,A1021,Apex Logistics,software,NA,smb,US,active,CSM-East,derek.rahman@apexlogistics.example,Derek Rahman,BI Analyst,analytics,2024-11-30 13:34:29,2025-06-22 15:24:43,active,true,false,281 +U3196,A1021,Apex Logistics,software,NA,smb,US,active,CSM-East,maya.desai@apexlogistics.example,Maya Desai,Data Engineer,data,2024-10-27 19:34:29,2025-06-13 22:25:50,active,true,false,290 +U3197,A1022,Summit Collective,retail,APAC,smb,NZ,active,CSM-APAC,priya.price@summitcollective.example,Priya Price,Demand Gen Manager,marketing,2025-03-03 22:16:56,2025-05-20 12:42:45,inactive,false,false,314 +U3198,A1022,Summit Collective,retail,APAC,smb,NZ,active,CSM-APAC,tomas.fischer@summitcollective.example,Tomas Fischer,Workflow Analyst,operations,2025-03-31 16:16:56,2025-06-29 19:33:39,active,true,false,274 +U3199,A1022,Summit Collective,retail,APAC,smb,NZ,active,CSM-APAC,mateo.desai@summitcollective.example,Mateo Desai,Revenue Operations Manager,sales,2025-03-17 20:16:56,2025-06-17 19:59:40,active,true,false,286 +U3200,A1022,Summit Collective,retail,APAC,smb,NZ,active,CSM-APAC,alma.petrova@summitcollective.example,Alma Petrova,Product Manager,product,2025-03-11 19:16:56,2025-06-29 08:00:30,active,true,false,274 +U3201,A1022,Summit Collective,retail,APAC,smb,NZ,active,CSM-APAC,jonas.alvarez@summitcollective.example,Jonas Alvarez,Technical Program Manager,product,2025-03-25 23:16:56,2025-05-11 10:45:47,inactive,false,false,323 +U3202,A1023,Atlas Systems,education,NA,smb,CA,active,CSM-East,victor.shah@atlassystems.example,Victor Shah,Analytics Engineer,data,2025-02-01 19:25:38,2025-06-25 17:27:46,active,true,false,278 +U3203,A1023,Atlas Systems,education,NA,smb,CA,active,CSM-East,maya.silva@atlassystems.example,Maya Silva,Data Platform Manager,data,2025-02-24 20:25:38,2025-06-23 03:38:21,active,true,false,280 +U3204,A1023,Atlas Systems,education,NA,smb,CA,active,CSM-East,victor.price@atlassystems.example,Victor Price,Product Manager,product,2025-02-09 20:25:38,2025-06-15 21:50:33,active,true,false,288 +U3205,A1023,Atlas Systems,education,NA,smb,CA,active,CSM-East,mateo.price@atlassystems.example,Mateo Price,CFO,executive,2025-02-05 17:25:38,2025-06-25 18:12:18,active,true,false,278 +U3206,A1023,Atlas Systems,education,NA,smb,CA,active,CSM-East,noah.keller@atlassystems.example,Noah Keller,Analytics Engineer,data,2025-03-14 18:25:38,2025-06-16 15:02:17,active,true,false,287 +U3207,A1023,Atlas Systems,education,NA,smb,CA,active,CSM-East,alma.morgan@atlassystems.example,Alma Morgan,VP Data,executive,2025-02-28 20:25:38,2025-06-15 05:05:19,active,true,false,288 +U3208,A1023,Atlas Systems,education,NA,smb,CA,active,CSM-East,naomi.hill@atlassystems.example,Naomi Hill,Finance Manager,finance,2025-02-10 23:25:38,2025-06-20 03:48:38,active,true,false,283 +U3209,A1023,Atlas Systems,education,NA,smb,CA,active,CSM-East,olivia.nash@atlassystems.example,Olivia Nash,COO,executive,2025-02-28 20:25:38,2025-06-13 04:51:16,active,true,false,290 +U3210,A1024,Sierra Group,manufacturing,NA,smb,CA,active,CSM-East,aisha.singh@sierragroup.example,Aisha Singh,Data Engineer,data,2025-02-18 10:59:07,2025-06-16 07:35:52,active,true,false,287 +U3211,A1024,Sierra Group,manufacturing,NA,smb,CA,active,CSM-East,marta.morgan@sierragroup.example,Marta Morgan,Data Platform Manager,data,2025-02-17 12:59:07,2025-06-14 12:17:07,active,true,false,289 +U3212,A1024,Sierra Group,manufacturing,NA,smb,CA,active,CSM-East,luis.morgan@sierragroup.example,Luis Morgan,Product Manager,product,2025-02-04 15:59:07,2025-06-29 13:25:39,active,true,false,274 +U3213,A1024,Sierra Group,manufacturing,NA,smb,CA,active,CSM-East,naomi.grant@sierragroup.example,Naomi Grant,Data Engineer,data,2025-02-12 10:59:07,2025-06-20 00:21:20,active,true,false,283 +U3214,A1025,Bright Capital,education,EMEA,smb,UK,active,CSM-EMEA,elena.lopez@brightcapital.example,Elena Lopez,Operations Director,operations,2024-10-18 12:44:56,2025-03-13 20:06:21,inactive,false,false,382 +U3215,A1025,Bright Capital,education,EMEA,smb,UK,active,CSM-EMEA,elena.silva@brightcapital.example,Elena Silva,Operations Director,operations,2024-11-12 09:44:56,2025-06-24 05:18:42,active,true,false,279 +U3216,A1025,Bright Capital,education,EMEA,smb,UK,active,CSM-EMEA,ivy.morgan@brightcapital.example,Ivy Morgan,Product Manager,product,2024-11-07 15:44:56,2025-06-15 12:04:52,active,true,false,288 +U3217,A1025,Bright Capital,education,EMEA,smb,UK,active,CSM-EMEA,kenji.dubois@brightcapital.example,Kenji Dubois,Analytics Manager,analytics,2024-10-23 09:44:56,2025-06-25 06:24:54,active,true,false,278 +U3218,A1025,Bright Capital,education,EMEA,smb,UK,active,CSM-EMEA,victor.meyer@brightcapital.example,Victor Meyer,Technical Program Manager,product,2024-11-18 16:44:56,2025-06-17 01:58:52,active,true,false,286 +U3219,A1025,Bright Capital,education,EMEA,smb,UK,active,CSM-EMEA,lina.lewis@brightcapital.example,Lina Lewis,Revenue Operations Manager,sales,2024-11-24 17:44:56,2025-06-29 18:17:48,active,true,false,274 +U3220,A1026,Pioneer Capital,education,NA,smb,CA,active,CSM-East,luis.kim@pioneercapital.example,Luis Kim,CFO,executive,2024-10-03 13:38:17,2025-06-24 00:30:56,active,true,false,279 +U3221,A1026,Pioneer Capital,education,NA,smb,CA,active,CSM-East,sofia.khan@pioneercapital.example,Sofia Khan,Sales Analyst,sales,2024-09-10 06:38:17,2025-06-15 14:35:18,active,true,false,288 +U3222,A1026,Pioneer Capital,education,NA,smb,CA,active,CSM-East,luis.dubois@pioneercapital.example,Luis Dubois,Analytics Engineer,data,2024-10-02 11:38:17,2025-06-15 22:35:37,active,true,false,288 +U3223,A1026,Pioneer Capital,education,NA,smb,CA,active,CSM-East,aisha.hill@pioneercapital.example,Aisha Hill,Marketing Operations Lead,marketing,2024-09-16 14:38:17,2025-06-28 04:22:07,active,true,false,275 +U3224,A1026,Pioneer Capital,education,NA,smb,CA,active,CSM-East,hannah.patel@pioneercapital.example,Hannah Patel,Sales Analyst,sales,2024-09-10 08:38:17,2025-06-18 00:15:03,active,true,false,285 +U3225,A1026,Pioneer Capital,education,NA,smb,CA,active,CSM-East,marta.romero@pioneercapital.example,Marta Romero,COO,executive,2024-10-05 09:38:17,2025-06-29 23:05:34,active,true,false,274 +U3226,A1026,Pioneer Capital,education,NA,smb,CA,active,CSM-East,tara.nash@pioneercapital.example,Tara Nash,BI Analyst,analytics,2024-09-30 06:38:17,2025-06-15 22:30:46,active,true,false,288 +U3227,A1026,Pioneer Capital,education,NA,smb,CA,active,CSM-East,ben.patel@pioneercapital.example,Ben Patel,Data Platform Manager,data,2024-09-29 06:38:17,2025-06-25 04:45:33,active,true,false,278 +U3228,A1027,BluePeak Health,retail,APAC,smb,SG,active,CSM-APAC,naomi.silva@bluepeakhealth.example,Naomi Silva,FP&A Analyst,finance,2024-11-03 19:12:59,2025-06-27 09:30:55,active,true,false,276 +U3229,A1027,BluePeak Health,retail,APAC,smb,SG,active,CSM-APAC,peter.grant@bluepeakhealth.example,Peter Grant,Founder,executive,2024-11-24 01:12:59,2025-06-18 11:03:39,active,true,false,285 +U3230,A1027,BluePeak Health,retail,APAC,smb,SG,active,CSM-APAC,jonas.khan@bluepeakhealth.example,Jonas Khan,Finance Manager,finance,2024-11-28 02:12:59,2025-06-14 12:28:49,active,true,false,289 +U3231,A1027,BluePeak Health,retail,APAC,smb,SG,active,CSM-APAC,arjun.cole@bluepeakhealth.example,Arjun Cole,Marketing Operations Lead,marketing,2024-11-24 23:12:59,2025-06-17 10:34:07,active,true,false,286 +U3232,A1027,BluePeak Health,retail,APAC,smb,SG,active,CSM-APAC,naomi.sato@bluepeakhealth.example,Naomi Sato,Data Platform Manager,data,2024-12-07 01:12:59,2025-06-29 00:02:28,active,true,false,274 +U3233,A1028,Apex Energy,energy,APAC,mid_market,SG,active,CSM-APAC,priya.sato@apexenergy.example,Priya Sato,COO,executive,2025-02-04 05:17:07,2025-05-12 16:46:33,inactive,false,false,322 +U3234,A1028,Apex Energy,energy,APAC,mid_market,SG,active,CSM-APAC,tomas.alvarez@apexenergy.example,Tomas Alvarez,VP Data,executive,2025-01-05 05:17:07,2025-06-26 13:19:03,active,true,false,277 +U3235,A1028,Apex Energy,energy,APAC,mid_market,SG,active,CSM-APAC,samir.park@apexenergy.example,Samir Park,Analytics Engineer,data,2025-01-08 07:17:07,2025-06-18 19:10:12,active,true,false,285 +U3236,A1028,Apex Energy,energy,APAC,mid_market,SG,active,CSM-APAC,nina.hill@apexenergy.example,Nina Hill,Data Engineer,data,2025-01-19 11:17:07,2025-06-14 07:53:56,active,true,false,289 +U3237,A1028,Apex Energy,energy,APAC,mid_market,SG,active,CSM-APAC,kai.rossi@apexenergy.example,Kai Rossi,Sales Analyst,sales,2025-01-29 10:17:07,2025-06-21 22:19:21,active,true,false,282 +U3238,A1028,Apex Energy,energy,APAC,mid_market,SG,active,CSM-APAC,lena.patel@apexenergy.example,Lena Patel,FP&A Analyst,finance,2024-12-30 04:17:07,2025-06-18 00:39:57,active,true,false,285 +U3239,A1028,Apex Energy,energy,APAC,mid_market,SG,active,CSM-APAC,nina.hill2@apexenergy.example,Nina Hill,Operations Manager,operations,2025-01-05 10:17:07,2025-06-12 02:41:31,active,true,false,291 +U3240,A1028,Apex Energy,energy,APAC,mid_market,SG,active,CSM-APAC,arjun.petrova@apexenergy.example,Arjun Petrova,CFO,executive,2025-02-09 04:17:07,2025-06-26 03:46:12,active,true,false,277 +U3241,A1028,Apex Energy,energy,APAC,mid_market,SG,active,CSM-APAC,aisha.ng@apexenergy.example,Aisha Ng,Finance Manager,finance,2025-01-01 09:17:07,2025-06-14 21:40:25,active,true,false,289 +U3242,A1028,Apex Energy,energy,APAC,mid_market,SG,active,CSM-APAC,kai.nash@apexenergy.example,Kai Nash,Insights Lead,analytics,2025-01-13 08:17:07,2025-06-11 11:54:53,active,true,false,292 +U3243,A1028,Apex Energy,energy,APAC,mid_market,SG,active,CSM-APAC,noah.rossi@apexenergy.example,Noah Rossi,Finance Manager,finance,2025-01-18 04:17:07,2025-06-17 10:35:14,active,true,false,286 +U3244,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,marcus.romero@brightlabs.example,Marcus Romero,Marketing Operations Lead,marketing,2024-10-10 05:24:19,2025-03-12 13:09:19,inactive,false,false,383 +U3245,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,jonas.morgan@brightlabs.example,Jonas Morgan,Technical Program Manager,product,2024-10-12 05:24:19,2025-06-23 11:58:34,active,true,false,280 +U3246,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,lina.sato@brightlabs.example,Lina Sato,CFO,executive,2024-09-23 03:24:19,2025-04-15 11:39:48,inactive,false,false,349 +U3247,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,nina.patel@brightlabs.example,Nina Patel,Insights Lead,analytics,2024-09-03 03:24:19,2025-03-09 15:42:45,inactive,false,false,386 +U3248,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,marta.nash@brightlabs.example,Marta Nash,Revenue Operations Manager,sales,2024-10-05 01:24:19,2025-04-10 23:29:00,inactive,false,false,354 +U3249,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,isla.turner@brightlabs.example,Isla Turner,Demand Gen Manager,marketing,2024-09-19 02:24:19,2025-03-04 16:55:23,inactive,false,false,391 +U3250,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,sofia.saeed@brightlabs.example,Sofia Saeed,Finance Manager,finance,2024-09-28 03:24:19,2025-03-21 21:44:23,inactive,false,false,374 +U3251,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,mei.lewis@brightlabs.example,Mei Lewis,Analytics Engineer,data,2024-09-05 07:24:19,2025-06-30 06:10:41,active,true,false,273 +U3252,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,peter.lopez@brightlabs.example,Peter Lopez,Founder,executive,2024-09-05 07:24:19,2025-05-23 12:04:44,inactive,false,false,311 +U3253,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,evan.saeed@brightlabs.example,Evan Saeed,Product Manager,product,2024-10-14 09:24:19,2025-03-15 20:41:30,inactive,false,false,380 +U3254,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,peter.hill@brightlabs.example,Peter Hill,Workflow Analyst,operations,2024-09-06 05:24:19,2025-05-25 13:38:24,inactive,false,false,309 +U3255,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,kai.lopez@brightlabs.example,Kai Lopez,Sales Analyst,sales,2024-10-06 08:24:19,2025-06-16 23:26:25,active,true,false,287 +U3256,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,noah.shah@brightlabs.example,Noah Shah,Revenue Operations Manager,sales,2024-09-25 06:24:19,,provisioned,false,false, +U3257,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,leo.dubois@brightlabs.example,Leo Dubois,Founder,executive,2024-09-21 05:24:19,2025-05-23 15:49:55,inactive,false,false,311 +U3258,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,marcus.patel@brightlabs.example,Marcus Patel,FP&A Analyst,finance,2024-09-28 06:24:19,2025-05-03 00:15:06,inactive,false,false,331 +U3259,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,elena.tan@brightlabs.example,Elena Tan,Product Manager,product,2024-09-26 08:24:19,2025-05-20 01:06:33,inactive,false,false,314 +U3260,A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,CSM-APAC,hannah.hart@brightlabs.example,Hannah Hart,Finance Manager,finance,2024-09-19 09:24:19,2025-04-21 05:40:31,inactive,false,false,343 +U3261,A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,CSM-EMEA,kenji.tan@northwindanalytics.example,Kenji Tan,Marketing Operations Lead,marketing,2024-09-07 04:49:08,2025-06-19 00:56:01,active,true,false,284 +U3262,A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,CSM-EMEA,mei.dubois@northwindanalytics.example,Mei Dubois,CFO,executive,2024-09-24 10:49:08,2025-06-13 07:09:40,active,true,false,290 +U3263,A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,CSM-EMEA,luis.alvarez@northwindanalytics.example,Luis Alvarez,CFO,executive,2024-09-30 11:49:08,2025-06-21 19:27:51,active,true,false,282 +U3264,A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,CSM-EMEA,helena.cole@northwindanalytics.example,Helena Cole,COO,executive,2024-09-08 05:49:08,2025-06-19 16:11:26,active,true,false,284 +U3265,A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,CSM-EMEA,hannah.rahman@northwindanalytics.example,Hannah Rahman,Marketing Operations Lead,marketing,2024-10-03 07:49:08,2025-06-16 19:45:09,active,true,false,287 +U3266,A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,CSM-EMEA,kai.hart@northwindanalytics.example,Kai Hart,Data Platform Manager,data,2024-08-23 11:49:08,2025-04-28 16:45:44,inactive,false,false,336 +U3267,A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,CSM-EMEA,maya.patel@northwindanalytics.example,Maya Patel,Insights Lead,analytics,2024-09-11 08:49:08,2025-06-19 10:18:46,active,true,false,284 +U3268,A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,CSM-EMEA,marta.ward@northwindanalytics.example,Marta Ward,BI Analyst,analytics,2024-09-21 08:49:08,2025-06-30 07:11:45,active,true,false,273 +U3269,A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,CSM-EMEA,mila.morgan@northwindanalytics.example,Mila Morgan,Operations Director,operations,2024-09-24 09:49:08,2025-06-24 16:53:51,active,true,false,279 +U3270,A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,CSM-EMEA,ben.meyer@northwindanalytics.example,Ben Meyer,Insights Lead,analytics,2024-08-29 11:49:08,2025-06-17 00:03:47,active,true,false,286 +U3271,A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,CSM-EMEA,alma.dubois@northwindanalytics.example,Alma Dubois,Insights Lead,analytics,2024-10-07 08:49:08,2025-06-22 20:20:43,active,true,false,281 +U3272,A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,CSM-EMEA,victor.brooks@northwindanalytics.example,Victor Brooks,Sales Analyst,sales,2024-10-05 06:49:08,2025-06-26 04:47:54,active,true,false,277 +U3273,A1031,Helio Holdings,healthcare,APAC,mid_market,AU,active,CSM-APAC,claire.lopez@helioholdings.example,Claire Lopez,Sales Analyst,sales,2025-03-10 05:18:16,2025-06-24 04:14:19,active,true,false,279 +U3274,A1031,Helio Holdings,healthcare,APAC,mid_market,AU,active,CSM-APAC,mei.silva@helioholdings.example,Mei Silva,Demand Gen Manager,marketing,2025-03-28 10:18:16,2025-06-30 19:29:32,active,true,false,273 +U3275,A1031,Helio Holdings,healthcare,APAC,mid_market,AU,active,CSM-APAC,aisha.sato@helioholdings.example,Aisha Sato,BI Analyst,analytics,2025-03-16 07:18:16,2025-06-27 21:27:06,active,true,false,276 +U3276,A1031,Helio Holdings,healthcare,APAC,mid_market,AU,active,CSM-APAC,arjun.sato@helioholdings.example,Arjun Sato,Founder,executive,2025-02-28 10:18:16,2025-06-17 17:53:24,active,true,false,286 +U3277,A1031,Helio Holdings,healthcare,APAC,mid_market,AU,active,CSM-APAC,kai.silva@helioholdings.example,Kai Silva,VP Data,executive,2025-03-23 09:18:16,2025-06-13 03:36:45,active,true,false,290 +U3278,A1031,Helio Holdings,healthcare,APAC,mid_market,AU,active,CSM-APAC,leo.brooks@helioholdings.example,Leo Brooks,Operations Manager,operations,2025-02-26 13:18:16,2025-06-26 19:32:06,active,true,false,277 +U3279,A1031,Helio Holdings,healthcare,APAC,mid_market,AU,active,CSM-APAC,lina.saeed@helioholdings.example,Lina Saeed,Analytics Manager,analytics,2025-02-17 07:18:16,2025-06-15 03:40:52,active,true,false,288 +U3280,A1031,Helio Holdings,healthcare,APAC,mid_market,AU,active,CSM-APAC,samir.price@helioholdings.example,Samir Price,Product Manager,product,2025-03-06 07:18:16,2025-06-22 03:02:11,active,true,false,281 +U3281,A1031,Helio Holdings,healthcare,APAC,mid_market,AU,active,CSM-APAC,samir.sato@helioholdings.example,Samir Sato,Founder,executive,2025-02-14 12:18:16,2025-06-28 18:25:38,active,true,false,275 +U3282,A1031,Helio Holdings,healthcare,APAC,mid_market,AU,active,CSM-APAC,aisha.rahman@helioholdings.example,Aisha Rahman,Product Manager,product,2025-02-22 11:18:16,2025-06-20 01:59:37,active,true,false,283 +U3283,A1032,Vertex Works,manufacturing,EMEA,mid_market,DE,churned,CSM-EMEA,lina.chen@vertexworks.example,Lina Chen,Data Platform Manager,data,2024-09-28 18:25:27,2025-05-13 19:34:58,inactive,false,false,321 +U3284,A1032,Vertex Works,manufacturing,EMEA,mid_market,DE,churned,CSM-EMEA,mateo.tan@vertexworks.example,Mateo Tan,Data Platform Manager,data,2024-09-16 16:25:27,2025-06-18 15:35:53,active,true,false,285 +U3285,A1032,Vertex Works,manufacturing,EMEA,mid_market,DE,churned,CSM-EMEA,jonas.lewis@vertexworks.example,Jonas Lewis,Operations Manager,operations,2024-10-18 17:25:27,2025-06-30 06:55:25,active,true,false,273 +U3286,A1032,Vertex Works,manufacturing,EMEA,mid_market,DE,churned,CSM-EMEA,priya.singh@vertexworks.example,Priya Singh,Analytics Manager,analytics,2024-10-19 21:25:27,2025-03-14 07:45:07,inactive,false,false,381 +U3287,A1032,Vertex Works,manufacturing,EMEA,mid_market,DE,churned,CSM-EMEA,samir.rossi@vertexworks.example,Samir Rossi,COO,executive,2024-09-26 19:25:27,2025-06-15 17:40:35,active,true,false,288 +U3288,A1032,Vertex Works,manufacturing,EMEA,mid_market,DE,churned,CSM-EMEA,naomi.reed@vertexworks.example,Naomi Reed,Data Platform Manager,data,2024-10-18 15:25:27,2025-06-27 13:15:05,active,true,false,276 +U3289,A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,CSM-East,priya.kim@lighthouseglobal.example,Priya Kim,Insights Lead,analytics,2024-11-27 07:50:01,2025-06-11 10:56:20,active,true,false,292 +U3290,A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,CSM-East,marcus.romero@lighthouseglobal.example,Marcus Romero,Data Platform Manager,data,2024-10-26 13:50:01,2025-06-13 06:59:57,active,true,false,290 +U3291,A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,CSM-East,arjun.lopez@lighthouseglobal.example,Arjun Lopez,Product Manager,product,2024-11-01 07:50:01,2025-06-26 08:26:51,active,true,false,277 +U3292,A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,CSM-East,marcus.saeed@lighthouseglobal.example,Marcus Saeed,Insights Lead,analytics,2024-11-26 09:50:01,2025-06-12 20:07:01,active,true,false,291 +U3293,A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,CSM-East,sofia.grant@lighthouseglobal.example,Sofia Grant,BI Analyst,analytics,2024-10-25 14:50:01,2025-06-15 03:21:44,active,true,false,288 +U3294,A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,CSM-East,nina.saeed@lighthouseglobal.example,Nina Saeed,Demand Gen Manager,marketing,2024-12-03 13:50:01,2025-06-11 05:57:19,active,true,false,292 +U3295,A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,CSM-East,arjun.rossi@lighthouseglobal.example,Arjun Rossi,Demand Gen Manager,marketing,2024-11-09 10:50:01,2025-06-26 14:15:16,active,true,false,277 +U3296,A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,CSM-East,elena.grant@lighthouseglobal.example,Elena Grant,Product Manager,product,2024-10-24 15:50:01,2025-06-27 20:30:49,active,true,false,276 +U3297,A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,CSM-East,marcus.lopez@lighthouseglobal.example,Marcus Lopez,Demand Gen Manager,marketing,2024-11-06 11:50:01,2025-06-12 17:08:34,active,true,false,291 +U3298,A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,CSM-East,kenji.desai@lighthouseglobal.example,Kenji Desai,Analytics Manager,analytics,2024-12-01 12:50:01,2025-06-13 02:31:02,active,true,false,290 +U3299,A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,CSM-East,marcus.desai@lighthouseglobal.example,Marcus Desai,Data Engineer,data,2024-11-30 09:50:01,2025-06-20 21:59:13,active,true,false,283 +U3300,A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,CSM-East,mila.dubois@lighthouseglobal.example,Mila Dubois,Operations Manager,operations,2024-11-09 09:50:01,2025-06-20 00:09:45,active,true,false,283 +U3301,A1034,Helio Partners,travel,NA,smb,CA,active,CSM-East,evan.kim@heliopartners.example,Evan Kim,Technical Program Manager,product,2025-01-11 20:59:06,2025-06-27 04:32:54,active,true,false,276 +U3302,A1034,Helio Partners,travel,NA,smb,CA,active,CSM-East,hannah.rahman@heliopartners.example,Hannah Rahman,Operations Manager,operations,2025-01-08 01:59:06,2025-06-26 18:11:33,active,true,false,277 +U3303,A1034,Helio Partners,travel,NA,smb,CA,active,CSM-East,owen.sato@heliopartners.example,Owen Sato,Sales Analyst,sales,2025-01-09 18:59:06,2025-06-30 15:28:58,active,true,false,273 +U3304,A1034,Helio Partners,travel,NA,smb,CA,active,CSM-East,naomi.turner@heliopartners.example,Naomi Turner,Product Manager,product,2024-12-28 01:59:06,2025-06-16 15:24:01,active,true,false,287 +U3305,A1034,Helio Partners,travel,NA,smb,CA,active,CSM-East,alma.chen@heliopartners.example,Alma Chen,Demand Gen Manager,marketing,2025-01-04 02:59:06,2025-06-25 07:09:01,active,true,false,278 +U3306,A1034,Helio Partners,travel,NA,smb,CA,active,CSM-East,marcus.ng@heliopartners.example,Marcus Ng,Demand Gen Manager,marketing,2024-12-24 00:59:06,2025-06-30 08:26:05,active,true,false,273 +U3307,A1034,Helio Partners,travel,NA,smb,CA,active,CSM-East,arjun.brooks@heliopartners.example,Arjun Brooks,Data Platform Manager,data,2024-12-12 02:59:06,2025-06-22 07:50:41,active,true,false,281 +U3308,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,aisha.keller@brightretail.example,Aisha Keller,Technical Program Manager,product,2025-03-13 00:06:57,,provisioned,false,false, +U3309,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,zoe.kim@brightretail.example,Zoe Kim,Revenue Operations Manager,sales,2025-03-03 02:06:57,2025-06-24 04:49:01,active,true,false,279 +U3310,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,owen.petrova@brightretail.example,Owen Petrova,Technical Program Manager,product,2025-03-17 20:06:57,2025-03-03 01:24:18,inactive,false,false,392 +U3311,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,marcus.morgan@brightretail.example,Marcus Morgan,Revenue Operations Manager,sales,2025-04-02 03:06:57,2025-06-12 11:57:01,active,true,false,291 +U3312,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,ben.singh@brightretail.example,Ben Singh,Demand Gen Manager,marketing,2025-03-19 00:06:57,2025-06-30 02:41:50,active,true,false,273 +U3313,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,zoe.ward@brightretail.example,Zoe Ward,CFO,executive,2025-04-12 00:06:57,2025-06-13 01:25:24,active,true,false,290 +U3314,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,marcus.patel@brightretail.example,Marcus Patel,Analytics Engineer,data,2025-03-19 23:06:57,2025-06-19 08:48:24,active,true,false,284 +U3315,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,marcus.desai@brightretail.example,Marcus Desai,FP&A Analyst,finance,2025-03-06 01:06:57,2025-06-25 02:50:49,active,true,false,278 +U3316,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,mei.tan@brightretail.example,Mei Tan,Operations Manager,operations,2025-03-11 02:06:57,2025-06-14 22:01:12,active,true,false,289 +U3317,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,samir.hill@brightretail.example,Samir Hill,Revenue Operations Manager,sales,2025-04-06 20:06:57,2025-06-21 05:26:16,active,true,false,282 +U3318,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,ava.hart@brightretail.example,Ava Hart,FP&A Analyst,finance,2025-02-26 03:06:57,2025-06-23 17:16:39,active,true,false,280 +U3319,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,ivy.turner@brightretail.example,Ivy Turner,Controller,finance,2025-04-03 21:06:57,2025-06-13 09:47:16,active,true,false,290 +U3320,A1035,Bright Retail,retail,EMEA,mid_market,UK,active,CSM-EMEA,marcus.kim@brightretail.example,Marcus Kim,CFO,executive,2025-03-23 22:06:57,2025-06-18 14:43:47,active,true,false,285 +U3321,A1036,Granite Holdings,education,NA,smb,US,churned,CSM-East,naomi.lewis@graniteholdings.example,Naomi Lewis,Sales Analyst,sales,2025-02-04 20:14:31,2025-04-24 01:56:18,inactive,false,false,340 +U3322,A1036,Granite Holdings,education,NA,smb,US,churned,CSM-East,daniel.tan@graniteholdings.example,Daniel Tan,Demand Gen Manager,marketing,2025-02-03 17:14:31,2025-05-09 07:20:37,inactive,false,false,325 +U3323,A1036,Granite Holdings,education,NA,smb,US,churned,CSM-East,kenji.hart@graniteholdings.example,Kenji Hart,Founder,executive,2025-01-13 20:14:31,2025-05-05 02:35:20,inactive,false,false,329 +U3324,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,isla.meyer@lighthousenetwork.example,Isla Meyer,Revenue Operations Manager,sales,2024-12-28 07:24:43,2025-06-13 19:39:32,active,true,false,290 +U3325,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,hannah.brooks@lighthousenetwork.example,Hannah Brooks,Demand Gen Manager,marketing,2024-12-05 10:24:43,2025-06-13 20:18:02,active,true,false,290 +U3326,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,hannah.meyer@lighthousenetwork.example,Hannah Meyer,Marketing Operations Lead,marketing,2024-12-17 13:24:43,2025-06-26 16:31:20,active,true,false,277 +U3327,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,arjun.patel@lighthousenetwork.example,Arjun Patel,Revenue Operations Manager,sales,2024-12-27 10:24:43,2025-06-11 10:22:03,active,true,false,292 +U3328,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,lina.kim@lighthousenetwork.example,Lina Kim,Sales Analyst,sales,2024-12-30 06:24:43,2025-06-16 09:25:00,active,true,false,287 +U3329,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,mei.park@lighthousenetwork.example,Mei Park,Demand Gen Manager,marketing,2025-01-01 14:24:43,2025-06-15 01:27:05,active,true,false,288 +U3330,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,mei.meyer@lighthousenetwork.example,Mei Meyer,Product Manager,product,2025-01-07 07:24:43,2025-06-14 12:14:34,active,true,false,289 +U3331,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,sofia.grant@lighthousenetwork.example,Sofia Grant,Revenue Operations Manager,sales,2024-12-22 10:24:43,2025-06-13 10:46:09,active,true,false,290 +U3332,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,aisha.lopez@lighthousenetwork.example,Aisha Lopez,Analytics Engineer,data,2024-12-24 08:24:43,2025-06-18 02:56:44,active,true,false,285 +U3333,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,ben.brooks@lighthousenetwork.example,Ben Brooks,Analytics Manager,analytics,2024-12-31 14:24:43,2025-06-29 07:43:53,active,true,false,274 +U3334,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,alma.saeed@lighthousenetwork.example,Alma Saeed,Marketing Operations Lead,marketing,2024-12-28 07:24:43,2025-06-14 03:50:24,active,true,false,289 +U3335,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,kai.nash@lighthousenetwork.example,Kai Nash,Revenue Operations Manager,sales,2024-12-17 09:24:43,2025-04-02 11:26:27,inactive,false,false,362 +U3336,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,derek.meyer@lighthousenetwork.example,Derek Meyer,Demand Gen Manager,marketing,2024-12-30 06:24:43,2025-06-18 16:33:49,active,true,false,285 +U3337,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,owen.alvarez@lighthousenetwork.example,Owen Alvarez,Marketing Operations Lead,marketing,2025-01-07 11:24:43,2025-06-29 14:49:26,active,true,false,274 +U3338,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,olivia.kim@lighthousenetwork.example,Olivia Kim,Insights Lead,analytics,2024-12-13 06:24:43,2025-04-06 17:42:56,inactive,false,false,358 +U3339,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,sofia.hart@lighthousenetwork.example,Sofia Hart,Technical Program Manager,product,2024-11-27 10:24:43,2025-04-20 05:27:41,inactive,false,false,344 +U3340,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,elena.hill@lighthousenetwork.example,Elena Hill,Controller,finance,2024-12-29 06:24:43,2025-06-15 09:47:20,active,true,false,288 +U3341,A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,CSM-EMEA,daniel.ng@lighthousenetwork.example,Daniel Ng,Operations Director,operations,2024-12-29 12:24:43,2025-06-12 01:00:47,active,true,false,291 +U3342,A1038,River Systems,logistics,APAC,smb,AU,active,CSM-APAC,luis.ward@riversystems.example,Luis Ward,Founder,executive,2024-11-23 11:09:31,2025-06-29 13:39:49,active,true,false,274 +U3343,A1038,River Systems,logistics,APAC,smb,AU,active,CSM-APAC,nina.keller@riversystems.example,Nina Keller,Demand Gen Manager,marketing,2024-12-14 16:09:31,2025-06-20 02:36:28,active,true,false,283 +U3344,A1038,River Systems,logistics,APAC,smb,AU,active,CSM-APAC,ivy.khan@riversystems.example,Ivy Khan,Analytics Engineer,data,2024-12-31 11:09:31,2025-06-25 20:39:20,active,true,false,278 +U3345,A1038,River Systems,logistics,APAC,smb,AU,active,CSM-APAC,mila.keller@riversystems.example,Mila Keller,Data Platform Manager,data,2024-11-22 15:09:31,2025-05-16 17:35:27,inactive,false,false,318 +U3346,A1038,River Systems,logistics,APAC,smb,AU,active,CSM-APAC,jonas.petrova@riversystems.example,Jonas Petrova,Analytics Manager,analytics,2024-12-12 16:09:31,2025-06-11 00:57:12,active,true,false,292 +U3347,A1039,Nova Group,media,EMEA,smb,FR,active,CSM-EMEA,aisha.nash@novagroup.example,Aisha Nash,Marketing Operations Lead,marketing,2025-03-04 01:26:48,2025-06-25 16:21:30,active,true,false,278 +U3348,A1039,Nova Group,media,EMEA,smb,FR,active,CSM-EMEA,peter.singh@novagroup.example,Peter Singh,Founder,executive,2025-03-14 01:26:48,2025-06-11 07:20:04,active,true,false,292 +U3349,A1039,Nova Group,media,EMEA,smb,FR,active,CSM-EMEA,maya.morgan@novagroup.example,Maya Morgan,Operations Manager,operations,2025-02-19 22:26:48,2025-06-25 23:16:56,active,true,false,278 +U3350,A1039,Nova Group,media,EMEA,smb,FR,active,CSM-EMEA,sofia.shah@novagroup.example,Sofia Shah,Finance Manager,finance,2025-02-20 21:26:48,2025-06-14 16:38:55,active,true,false,289 +U3351,A1039,Nova Group,media,EMEA,smb,FR,active,CSM-EMEA,lena.brooks@novagroup.example,Lena Brooks,Product Manager,product,2025-02-24 18:26:48,2025-06-15 02:00:14,active,true,false,288 +U3352,A1039,Nova Group,media,EMEA,smb,FR,active,CSM-EMEA,helena.rossi@novagroup.example,Helena Rossi,VP Data,executive,2025-02-14 20:26:48,2025-06-25 07:53:38,active,true,false,278 +U3353,A1039,Nova Group,media,EMEA,smb,FR,active,CSM-EMEA,tomas.tan@novagroup.example,Tomas Tan,CFO,executive,2025-03-06 22:26:48,2025-06-17 17:04:07,active,true,false,286 +U3354,A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,CSM-APAC,helena.shah@harborcollective.example,Helena Shah,VP Data,executive,2025-01-04 14:58:20,2025-06-16 06:24:26,active,true,false,287 +U3355,A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,CSM-APAC,zoe.ng@harborcollective.example,Zoe Ng,Analytics Manager,analytics,2024-12-16 17:58:20,2025-06-21 12:37:43,active,true,false,282 +U3356,A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,CSM-APAC,owen.cole@harborcollective.example,Owen Cole,Analytics Manager,analytics,2025-01-12 13:58:20,2025-06-25 00:23:10,active,true,false,278 +U3357,A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,CSM-APAC,elena.dubois@harborcollective.example,Elena Dubois,Controller,finance,2024-12-20 16:58:20,2025-06-25 12:01:55,active,true,false,278 +U3358,A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,CSM-APAC,tomas.keller@harborcollective.example,Tomas Keller,Data Platform Manager,data,2025-01-17 12:58:20,2025-06-24 08:14:02,active,true,false,279 +U3359,A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,CSM-APAC,noah.reed@harborcollective.example,Noah Reed,Data Platform Manager,data,2024-12-24 20:58:20,2025-05-03 19:42:59,inactive,false,false,331 +U3360,A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,CSM-APAC,peter.fischer@harborcollective.example,Peter Fischer,Revenue Operations Manager,sales,2025-01-14 16:58:20,2025-06-22 10:55:31,active,true,false,281 +U3361,A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,CSM-APAC,sofia.petrova@harborcollective.example,Sofia Petrova,Sales Analyst,sales,2025-01-09 12:58:20,2025-06-29 20:50:37,active,true,false,274 +U3362,A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,CSM-APAC,mila.rahman@harborcollective.example,Mila Rahman,FP&A Analyst,finance,2024-12-18 14:58:20,2025-06-24 00:36:34,active,true,false,279 +U3363,A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,CSM-APAC,peter.turner@harborcollective.example,Peter Turner,Founder,executive,2024-12-22 19:58:20,2025-06-16 16:59:57,active,true,false,287 +U3364,A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,CSM-APAC,derek.patel@harborcollective.example,Derek Patel,Data Platform Manager,data,2024-12-21 20:58:20,2025-04-15 22:25:12,inactive,false,false,349 +U3365,A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,CSM-APAC,ava.desai@harborcollective.example,Ava Desai,Data Platform Manager,data,2024-12-28 13:58:20,2025-06-22 22:43:18,active,true,false,281 +U3366,A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,CSM-EMEA,evan.lopez@cedarlogistics.example,Evan Lopez,FP&A Analyst,finance,2024-09-15 00:07:41,2025-06-26 03:35:46,active,true,false,277 +U3367,A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,CSM-EMEA,tomas.saeed@cedarlogistics.example,Tomas Saeed,Analytics Manager,analytics,2024-08-19 02:07:41,2025-06-30 03:04:29,active,true,false,273 +U3368,A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,CSM-EMEA,marta.rossi@cedarlogistics.example,Marta Rossi,Product Manager,product,2024-09-05 20:07:41,2025-06-15 20:58:45,active,true,false,288 +U3369,A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,CSM-EMEA,tomas.hart@cedarlogistics.example,Tomas Hart,BI Analyst,analytics,2024-08-13 20:07:41,2025-06-24 21:42:08,active,true,false,279 +U3370,A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,CSM-EMEA,olivia.patel@cedarlogistics.example,Olivia Patel,Sales Analyst,sales,2024-08-12 01:07:41,2025-06-21 22:03:00,active,true,false,282 +U3371,A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,CSM-EMEA,daniel.rahman@cedarlogistics.example,Daniel Rahman,Revenue Operations Manager,sales,2024-08-19 18:07:41,2025-06-24 16:04:03,active,true,false,279 +U3372,A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,CSM-EMEA,aisha.lewis@cedarlogistics.example,Aisha Lewis,Data Platform Manager,data,2024-08-13 18:07:41,2025-06-14 15:52:46,active,true,false,289 +U3373,A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,CSM-EMEA,mateo.morgan@cedarlogistics.example,Mateo Morgan,Data Platform Manager,data,2024-09-15 22:07:41,2025-04-29 05:18:27,inactive,false,false,335 +U3374,A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,CSM-EMEA,leo.turner@cedarlogistics.example,Leo Turner,Finance Manager,finance,2024-08-30 20:07:41,2025-06-30 04:56:55,active,true,false,273 +U3375,A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,CSM-EMEA,kenji.hart@cedarlogistics.example,Kenji Hart,BI Analyst,analytics,2024-09-16 23:07:41,2025-03-08 00:24:56,inactive,false,false,387 +U3376,A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,CSM-EMEA,zoe.kim@cedarlogistics.example,Zoe Kim,Revenue Operations Manager,sales,2024-08-10 18:07:41,2025-06-22 12:48:38,active,true,false,281 +U3377,A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,CSM-EMEA,kai.shah@cedarlogistics.example,Kai Shah,Operations Director,operations,2024-09-03 18:07:41,2025-06-23 04:34:49,active,true,false,280 +U3378,A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,CSM-APAC,olivia.petrova@northwindlabs.example,Olivia Petrova,Product Manager,product,2024-10-27 19:52:42,2025-06-29 02:23:41,active,true,false,274 +U3379,A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,CSM-APAC,ivy.saeed@northwindlabs.example,Ivy Saeed,Sales Analyst,sales,2024-09-21 19:52:42,2025-06-29 18:22:25,active,true,false,274 +U3380,A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,CSM-APAC,leo.kim@northwindlabs.example,Leo Kim,Founder,executive,2024-10-16 13:52:42,2025-06-28 21:08:42,active,true,false,275 +U3381,A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,CSM-APAC,zoe.petrova@northwindlabs.example,Zoe Petrova,Insights Lead,analytics,2024-10-23 17:52:42,2025-06-10 10:11:10,active,true,false,293 +U3382,A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,CSM-APAC,maya.saeed@northwindlabs.example,Maya Saeed,Workflow Analyst,operations,2024-09-19 17:52:42,2025-06-26 23:39:11,active,true,false,277 +U3383,A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,CSM-APAC,alma.price@northwindlabs.example,Alma Price,Founder,executive,2024-09-28 17:52:42,2025-06-16 10:45:06,active,true,false,287 +U3384,A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,CSM-APAC,nina.nash@northwindlabs.example,Nina Nash,Sales Analyst,sales,2024-10-28 15:52:42,2025-03-21 02:38:26,inactive,false,false,374 +U3385,A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,CSM-APAC,kai.turner@northwindlabs.example,Kai Turner,FP&A Analyst,finance,2024-10-24 19:52:42,2025-06-17 17:38:18,active,true,false,286 +U3386,A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,CSM-APAC,lena.cole@northwindlabs.example,Lena Cole,Revenue Operations Manager,sales,2024-10-31 12:52:42,2025-06-21 03:09:37,active,true,false,282 +U3387,A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,CSM-APAC,aisha.hill@northwindlabs.example,Aisha Hill,Demand Gen Manager,marketing,2024-10-10 19:52:42,2025-06-26 21:47:15,active,true,false,277 +U3388,A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,CSM-APAC,hannah.rahman@northwindlabs.example,Hannah Rahman,Revenue Operations Manager,sales,2024-09-24 13:52:42,2025-06-24 20:40:05,active,true,false,279 +U3389,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,elena.keller@lighthouseworks.example,Elena Keller,BI Analyst,analytics,2024-11-13 15:03:18,2025-06-27 21:02:55,active,true,false,276 +U3390,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,lina.morgan@lighthouseworks.example,Lina Morgan,Insights Lead,analytics,2024-11-28 14:03:18,2025-05-02 11:59:12,inactive,false,false,332 +U3391,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,tara.park@lighthouseworks.example,Tara Park,Data Engineer,data,2024-12-02 22:03:18,2025-06-11 02:34:43,active,true,false,292 +U3392,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,ben.hart@lighthouseworks.example,Ben Hart,Marketing Operations Lead,marketing,2024-12-03 14:03:18,2025-06-26 04:34:34,active,true,false,277 +U3393,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,maya.rahman@lighthouseworks.example,Maya Rahman,Operations Manager,operations,2024-11-15 19:03:18,2025-06-20 03:11:32,active,true,false,283 +U3394,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,helena.tan@lighthouseworks.example,Helena Tan,Data Platform Manager,data,2024-12-05 15:03:18,2025-05-10 20:01:32,inactive,false,false,324 +U3395,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,arjun.cole@lighthouseworks.example,Arjun Cole,VP Data,executive,2024-11-04 17:03:18,2025-06-20 02:19:18,active,true,false,283 +U3396,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,lena.chen@lighthouseworks.example,Lena Chen,BI Analyst,analytics,2024-11-16 22:03:18,2025-06-12 01:10:04,active,true,false,291 +U3397,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,sofia.meyer@lighthouseworks.example,Sofia Meyer,Founder,executive,2024-11-22 18:03:18,2025-06-30 00:41:33,active,true,false,273 +U3398,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,lena.lopez@lighthouseworks.example,Lena Lopez,Technical Program Manager,product,2024-11-26 21:03:18,2025-06-28 16:15:36,active,true,false,275 +U3399,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,samir.ward@lighthouseworks.example,Samir Ward,Product Manager,product,2024-11-20 15:03:18,2025-06-19 13:55:23,active,true,false,284 +U3400,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,zoe.patel@lighthouseworks.example,Zoe Patel,CFO,executive,2024-11-12 22:03:18,2025-06-27 07:15:23,active,true,false,276 +U3401,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,nina.alvarez@lighthouseworks.example,Nina Alvarez,BI Analyst,analytics,2024-11-15 19:03:18,2025-06-14 14:58:31,active,true,false,289 +U3402,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,leo.khan@lighthouseworks.example,Leo Khan,COO,executive,2024-11-26 18:03:18,2025-06-28 09:40:03,active,true,false,275 +U3403,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,mei.rossi@lighthouseworks.example,Mei Rossi,Marketing Operations Lead,marketing,2024-11-05 18:03:18,2025-06-15 05:07:12,active,true,false,288 +U3404,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,victor.cole@lighthouseworks.example,Victor Cole,Finance Manager,finance,2024-10-28 15:03:18,2025-06-26 09:28:21,active,true,false,277 +U3405,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,tara.chen@lighthouseworks.example,Tara Chen,Analytics Engineer,data,2024-11-13 19:03:18,2025-06-24 05:40:54,active,true,false,279 +U3406,A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,CSM-APAC,evan.rossi@lighthouseworks.example,Evan Rossi,Controller,finance,2024-11-07 20:03:18,2025-06-24 06:55:54,active,true,false,279 +U3407,A1044,Summit Holdings,software,EMEA,smb,NL,active,CSM-EMEA,hannah.saeed@summitholdings.example,Hannah Saeed,Sales Analyst,sales,2024-11-03 00:32:29,2025-06-19 20:21:24,active,true,false,284 +U3408,A1044,Summit Holdings,software,EMEA,smb,NL,active,CSM-EMEA,kenji.ward@summitholdings.example,Kenji Ward,Workflow Analyst,operations,2024-11-02 07:32:29,2025-06-10 11:54:15,active,true,false,293 +U3409,A1044,Summit Holdings,software,EMEA,smb,NL,active,CSM-EMEA,maya.reed@summitholdings.example,Maya Reed,Revenue Operations Manager,sales,2024-10-20 05:32:29,2025-06-16 14:17:11,active,true,false,287 +U3410,A1044,Summit Holdings,software,EMEA,smb,NL,active,CSM-EMEA,kenji.lopez@summitholdings.example,Kenji Lopez,Demand Gen Manager,marketing,2024-10-30 05:32:29,2025-06-22 09:33:16,active,true,false,281 +U3411,A1044,Summit Holdings,software,EMEA,smb,NL,active,CSM-EMEA,ivy.reed@summitholdings.example,Ivy Reed,Sales Analyst,sales,2024-10-23 06:32:29,2025-06-14 15:47:35,active,true,false,289 +U3412,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,lena.patel@novaholdings.example,Lena Patel,Workflow Analyst,operations,2024-11-22 12:05:10,2025-06-19 12:52:50,active,true,false,284 +U3413,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,mei.shah@novaholdings.example,Mei Shah,FP&A Analyst,finance,2024-11-05 11:05:10,2025-06-13 13:20:07,active,true,false,290 +U3414,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,mateo.nash@novaholdings.example,Mateo Nash,CFO,executive,2024-11-24 13:05:10,2025-06-24 01:47:15,active,true,false,279 +U3415,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,hannah.morgan@novaholdings.example,Hannah Morgan,Workflow Analyst,operations,2024-11-15 09:05:10,2025-06-16 11:08:04,active,true,false,287 +U3416,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,leo.hill@novaholdings.example,Leo Hill,Technical Program Manager,product,2024-11-21 14:05:10,2025-06-23 19:45:44,active,true,false,280 +U3417,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,nina.cole@novaholdings.example,Nina Cole,Analytics Engineer,data,2024-11-12 14:05:10,2025-06-24 23:46:24,active,true,false,279 +U3418,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,mei.nash@novaholdings.example,Mei Nash,FP&A Analyst,finance,2024-11-27 14:05:10,2025-06-22 02:59:08,active,true,false,281 +U3419,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,owen.petrova@novaholdings.example,Owen Petrova,Sales Analyst,sales,2024-12-04 11:05:10,2025-06-25 20:09:54,active,true,false,278 +U3420,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,samir.price@novaholdings.example,Samir Price,Revenue Operations Manager,sales,2024-11-10 11:05:10,2025-06-17 21:36:59,active,true,false,286 +U3421,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,alma.meyer@novaholdings.example,Alma Meyer,Insights Lead,analytics,2024-12-16 15:05:10,2025-06-21 02:10:19,active,true,false,282 +U3422,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,derek.saeed@novaholdings.example,Derek Saeed,Technical Program Manager,product,2024-11-15 11:05:10,2025-06-13 07:50:27,active,true,false,290 +U3423,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,victor.lopez@novaholdings.example,Victor Lopez,Operations Director,operations,2024-11-15 15:05:10,2025-06-11 20:09:42,active,true,false,292 +U3424,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,leo.brooks@novaholdings.example,Leo Brooks,Analytics Engineer,data,2024-12-08 10:05:10,2025-06-25 07:04:14,active,true,false,278 +U3425,A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,CSM-East,peter.petrova@novaholdings.example,Peter Petrova,Sales Analyst,sales,2024-11-19 12:05:10,2025-06-21 01:09:34,active,true,false,282 +U3426,A1046,Pioneer Solutions,education,NA,smb,CA,active,CSM-East,naomi.saeed@pioneersolutions.example,Naomi Saeed,Finance Manager,finance,2024-10-19 17:09:12,2025-06-18 04:26:36,active,true,false,285 +U3427,A1046,Pioneer Solutions,education,NA,smb,CA,active,CSM-East,leo.ward@pioneersolutions.example,Leo Ward,Insights Lead,analytics,2024-11-14 14:09:12,2025-03-18 12:31:30,inactive,false,false,377 +U3428,A1046,Pioneer Solutions,education,NA,smb,CA,active,CSM-East,helena.ward@pioneersolutions.example,Helena Ward,Sales Analyst,sales,2024-11-08 19:09:12,2025-06-29 19:46:34,active,true,false,274 +U3429,A1046,Pioneer Solutions,education,NA,smb,CA,active,CSM-East,elena.park@pioneersolutions.example,Elena Park,Analytics Manager,analytics,2024-11-12 16:09:12,2025-06-10 13:08:57,active,true,false,293 +U3430,A1046,Pioneer Solutions,education,NA,smb,CA,active,CSM-East,maya.saeed@pioneersolutions.example,Maya Saeed,FP&A Analyst,finance,2024-11-04 19:09:12,2025-06-26 23:39:18,active,true,false,277 +U3431,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,leo.singh@orchidglobal.example,Leo Singh,Analytics Engineer,data,2024-11-02 03:06:00,2025-06-23 14:21:24,active,true,false,280 +U3432,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,derek.tan@orchidglobal.example,Derek Tan,Sales Analyst,sales,2024-11-09 03:06:00,2025-06-28 04:24:08,active,true,false,275 +U3433,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,lina.kim@orchidglobal.example,Lina Kim,Demand Gen Manager,marketing,2024-10-20 06:06:00,2025-06-22 19:56:49,active,true,false,281 +U3434,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,mila.dubois@orchidglobal.example,Mila Dubois,Insights Lead,analytics,2024-11-18 04:06:00,2025-06-11 22:52:59,active,true,false,292 +U3435,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,kenji.lewis@orchidglobal.example,Kenji Lewis,BI Analyst,analytics,2024-11-24 07:06:00,2025-06-16 21:31:46,active,true,false,287 +U3436,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,mila.rossi@orchidglobal.example,Mila Rossi,Demand Gen Manager,marketing,2024-10-16 02:06:00,2025-06-23 06:38:34,active,true,false,280 +U3437,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,luis.sato@orchidglobal.example,Luis Sato,Operations Manager,operations,2024-11-01 02:06:00,2025-06-27 22:34:14,active,true,false,276 +U3438,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,maya.patel@orchidglobal.example,Maya Patel,Operations Director,operations,2024-10-15 07:06:00,2025-06-20 11:48:33,active,true,false,283 +U3439,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,jonas.rossi@orchidglobal.example,Jonas Rossi,CFO,executive,2024-11-28 00:06:00,2025-06-30 18:24:04,active,true,false,273 +U3440,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,peter.brooks@orchidglobal.example,Peter Brooks,Analytics Manager,analytics,2024-10-19 08:06:00,2025-06-14 22:57:36,active,true,false,289 +U3441,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,nina.kim@orchidglobal.example,Nina Kim,Data Engineer,data,2024-11-29 03:06:00,2025-06-21 01:02:36,active,true,false,282 +U3442,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,victor.desai@orchidglobal.example,Victor Desai,Demand Gen Manager,marketing,2024-10-21 08:06:00,2025-06-15 08:25:45,active,true,false,288 +U3443,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,leo.kim@orchidglobal.example,Leo Kim,Analytics Manager,analytics,2024-10-25 00:06:00,2025-06-23 15:09:12,active,true,false,280 +U3444,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,mateo.grant@orchidglobal.example,Mateo Grant,Analytics Manager,analytics,2024-11-24 04:06:00,2025-06-11 13:20:35,active,true,false,292 +U3445,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,daniel.grant@orchidglobal.example,Daniel Grant,Demand Gen Manager,marketing,2024-11-04 00:06:00,2025-06-16 23:50:23,active,true,false,287 +U3446,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,helena.grant@orchidglobal.example,Helena Grant,Revenue Operations Manager,sales,2024-10-15 00:06:00,2025-06-27 01:23:30,active,true,false,276 +U3447,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,leo.shah@orchidglobal.example,Leo Shah,Founder,executive,2024-10-30 02:06:00,2025-06-26 22:35:30,active,true,false,277 +U3448,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,mila.silva@orchidglobal.example,Mila Silva,Data Engineer,data,2024-11-06 02:06:00,2025-06-29 12:03:45,active,true,false,274 +U3449,A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,CSM-APAC,marcus.lewis@orchidglobal.example,Marcus Lewis,Product Manager,product,2024-11-04 08:06:00,2025-06-28 15:48:29,active,true,false,275 +U3450,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,owen.tan@orchidcapital.example,Owen Tan,Data Platform Manager,data,2025-03-11 01:00:18,2025-06-16 09:02:28,active,true,false,287 +U3451,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,priya.rossi@orchidcapital.example,Priya Rossi,Technical Program Manager,product,2025-03-21 03:00:18,2025-06-14 19:43:04,active,true,false,289 +U3452,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,isla.cole@orchidcapital.example,Isla Cole,CFO,executive,2025-03-04 04:00:18,2025-06-23 04:24:35,active,true,false,280 +U3453,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,peter.park@orchidcapital.example,Peter Park,Analytics Manager,analytics,2025-03-21 01:00:18,2025-06-29 03:00:17,active,true,false,274 +U3454,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,sofia.kim@orchidcapital.example,Sofia Kim,Finance Manager,finance,2025-03-26 01:00:18,2025-06-16 02:06:11,active,true,false,287 +U3455,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,alma.keller@orchidcapital.example,Alma Keller,Revenue Operations Manager,sales,2025-03-20 03:00:18,2025-06-14 00:47:17,active,true,false,289 +U3456,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,mila.meyer@orchidcapital.example,Mila Meyer,CFO,executive,2025-03-28 01:00:18,2025-06-22 23:47:11,active,true,false,281 +U3457,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,tomas.desai@orchidcapital.example,Tomas Desai,Finance Manager,finance,2025-02-16 23:00:18,2025-06-14 22:37:29,active,true,false,289 +U3458,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,marcus.desai@orchidcapital.example,Marcus Desai,Sales Analyst,sales,2025-03-20 00:00:18,2025-06-15 15:34:49,active,true,false,288 +U3459,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,ben.keller@orchidcapital.example,Ben Keller,Data Engineer,data,2025-03-28 03:00:18,2025-04-15 18:39:24,inactive,false,false,349 +U3460,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,hannah.fischer@orchidcapital.example,Hannah Fischer,Sales Analyst,sales,2025-03-31 20:00:18,2025-06-16 17:50:55,active,true,false,287 +U3461,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,mateo.desai@orchidcapital.example,Mateo Desai,Operations Manager,operations,2025-02-18 23:00:18,2025-05-10 17:46:23,inactive,false,false,324 +U3462,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,zoe.nash@orchidcapital.example,Zoe Nash,Revenue Operations Manager,sales,2025-02-27 04:00:18,2025-06-24 03:03:54,active,true,false,279 +U3463,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,kenji.price@orchidcapital.example,Kenji Price,Workflow Analyst,operations,2025-03-23 01:00:18,2025-06-27 08:15:55,active,true,false,276 +U3464,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,ivy.hill@orchidcapital.example,Ivy Hill,Finance Manager,finance,2025-03-22 02:00:18,2025-06-26 06:02:24,active,true,false,277 +U3465,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,aisha.nash@orchidcapital.example,Aisha Nash,Technical Program Manager,product,2025-03-07 04:00:18,2025-04-06 10:10:09,inactive,false,false,358 +U3466,A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,CSM-APAC,kai.ng@orchidcapital.example,Kai Ng,COO,executive,2025-03-23 04:00:18,2025-06-28 21:03:26,active,true,false,275 +U3467,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,nina.fischer@northwindnetwork.example,Nina Fischer,Technical Program Manager,product,2024-12-07 02:19:33,2025-06-17 04:43:22,active,true,false,286 +U3468,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,ben.romero@northwindnetwork.example,Ben Romero,FP&A Analyst,finance,2024-11-12 06:19:33,2025-03-31 21:46:51,inactive,false,false,364 +U3469,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,luis.dubois@northwindnetwork.example,Luis Dubois,Finance Manager,finance,2024-11-14 09:19:33,2025-06-13 15:37:43,active,true,false,290 +U3470,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,nina.fischer2@northwindnetwork.example,Nina Fischer,Marketing Operations Lead,marketing,2024-11-28 06:19:33,2025-06-19 23:53:57,active,true,false,284 +U3471,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,lena.reed@northwindnetwork.example,Lena Reed,Workflow Analyst,operations,2024-12-02 09:19:33,2025-06-30 08:00:29,active,true,false,273 +U3472,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,lena.hill@northwindnetwork.example,Lena Hill,BI Analyst,analytics,2024-12-18 08:19:33,2025-06-11 15:34:38,active,true,false,292 +U3473,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,samir.cole@northwindnetwork.example,Samir Cole,Sales Analyst,sales,2024-11-19 05:19:33,2025-06-24 21:51:58,active,true,false,279 +U3474,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,maya.kim@northwindnetwork.example,Maya Kim,Analytics Engineer,data,2024-12-15 02:19:33,2025-06-24 00:05:08,active,true,false,279 +U3475,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,peter.khan@northwindnetwork.example,Peter Khan,Marketing Operations Lead,marketing,2024-11-15 08:19:33,2025-04-26 04:26:27,inactive,false,false,338 +U3476,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,sofia.petrova@northwindnetwork.example,Sofia Petrova,Demand Gen Manager,marketing,2024-11-30 08:19:33,2025-06-18 10:49:55,active,true,false,285 +U3477,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,elena.turner@northwindnetwork.example,Elena Turner,Data Platform Manager,data,2024-12-07 06:19:33,2025-06-22 11:19:59,active,true,false,281 +U3478,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,ivy.lewis@northwindnetwork.example,Ivy Lewis,FP&A Analyst,finance,2024-12-17 05:19:33,2025-06-26 02:57:44,active,true,false,277 +U3479,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,lena.tan@northwindnetwork.example,Lena Tan,Marketing Operations Lead,marketing,2024-11-16 06:19:33,2025-06-18 03:24:03,active,true,false,285 +U3480,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,lena.petrova@northwindnetwork.example,Lena Petrova,Workflow Analyst,operations,2024-12-08 08:19:33,2025-06-14 21:58:05,active,true,false,289 +U3481,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,alma.cole@northwindnetwork.example,Alma Cole,Analytics Engineer,data,2024-11-22 07:19:33,2025-06-29 18:39:45,active,true,false,274 +U3482,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,owen.shah@northwindnetwork.example,Owen Shah,Product Manager,product,2024-11-26 05:19:33,2025-06-14 01:52:17,active,true,false,289 +U3483,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,elena.grant@northwindnetwork.example,Elena Grant,Data Engineer,data,2024-12-21 04:19:33,2025-06-30 04:45:45,active,true,false,273 +U3484,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,claire.chen@northwindnetwork.example,Claire Chen,Founder,executive,2024-12-01 09:19:33,2025-06-18 08:19:55,active,true,false,285 +U3485,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,daniel.nash@northwindnetwork.example,Daniel Nash,Marketing Operations Lead,marketing,2024-12-16 10:19:33,2025-06-23 14:41:57,active,true,false,280 +U3486,A1049,Northwind Network,energy,NA,enterprise,CA,active,CSM-East,leo.shah@northwindnetwork.example,Leo Shah,Analytics Engineer,data,2024-12-19 10:19:33,2025-06-14 10:13:06,active,true,false,289 +U3487,A1050,Cedar Energy,software,APAC,smb,JP,active,CSM-APAC,claire.tan@cedarenergy.example,Claire Tan,BI Analyst,analytics,2025-03-16 14:48:30,2025-06-26 07:41:42,active,true,false,277 +U3488,A1050,Cedar Energy,software,APAC,smb,JP,active,CSM-APAC,evan.fischer@cedarenergy.example,Evan Fischer,Operations Director,operations,2025-03-05 20:48:30,2025-06-19 12:46:28,active,true,false,284 +U3489,A1050,Cedar Energy,software,APAC,smb,JP,active,CSM-APAC,sofia.hill@cedarenergy.example,Sofia Hill,CFO,executive,2025-03-25 22:48:30,2025-06-15 02:51:11,active,true,false,288 +U3490,A1050,Cedar Energy,software,APAC,smb,JP,active,CSM-APAC,sofia.ward@cedarenergy.example,Sofia Ward,Data Engineer,data,2025-03-02 22:48:30,2025-06-22 04:24:23,active,true,false,281 +U3491,A1051,Lighthouse Systems,media,EMEA,smb,UK,active,CSM-EMEA,aisha.romero@lighthousesystems.example,Aisha Romero,VP Data,executive,2025-03-20 06:44:10,2025-06-22 11:00:00,active,true,false,281 +U3492,A1051,Lighthouse Systems,media,EMEA,smb,UK,active,CSM-EMEA,evan.brooks@lighthousesystems.example,Evan Brooks,Analytics Manager,analytics,2025-02-27 10:44:10,2025-04-03 12:25:10,inactive,false,false,361 +U3493,A1051,Lighthouse Systems,media,EMEA,smb,UK,active,CSM-EMEA,noah.lewis@lighthousesystems.example,Noah Lewis,Workflow Analyst,operations,2025-03-22 10:44:10,2025-05-01 01:34:40,inactive,false,false,333 +U3494,A1051,Lighthouse Systems,media,EMEA,smb,UK,active,CSM-EMEA,zoe.price@lighthousesystems.example,Zoe Price,Marketing Operations Lead,marketing,2025-03-25 06:44:10,2025-04-22 23:29:46,inactive,false,false,342 +U3495,A1051,Lighthouse Systems,media,EMEA,smb,UK,active,CSM-EMEA,naomi.reed@lighthousesystems.example,Naomi Reed,Controller,finance,2025-04-01 05:44:10,2025-06-17 19:00:16,active,true,false,286 +U3496,A1051,Lighthouse Systems,media,EMEA,smb,UK,active,CSM-EMEA,mateo.lewis@lighthousesystems.example,Mateo Lewis,Revenue Operations Manager,sales,2025-04-08 04:44:10,2025-06-23 19:40:27,active,true,false,280 +U3497,A1051,Lighthouse Systems,media,EMEA,smb,UK,active,CSM-EMEA,isla.grant@lighthousesystems.example,Isla Grant,FP&A Analyst,finance,2025-03-07 02:44:10,2025-06-20 08:11:45,active,true,false,283 +U3498,A1052,Sierra Labs,software,APAC,mid_market,NZ,active,CSM-APAC,jonas.park@sierralabs.example,Jonas Park,BI Analyst,analytics,2024-12-12 22:54:21,2025-06-10 22:15:41,active,true,false,293 +U3499,A1052,Sierra Labs,software,APAC,mid_market,NZ,active,CSM-APAC,mila.dubois@sierralabs.example,Mila Dubois,Marketing Operations Lead,marketing,2024-12-14 21:54:21,2025-06-26 23:52:16,active,true,false,277 +U3500,A1052,Sierra Labs,software,APAC,mid_market,NZ,active,CSM-APAC,leo.lewis@sierralabs.example,Leo Lewis,Technical Program Manager,product,2024-12-12 03:54:21,2025-06-13 15:06:25,active,true,false,290 +U3501,A1052,Sierra Labs,software,APAC,mid_market,NZ,active,CSM-APAC,aisha.tan@sierralabs.example,Aisha Tan,Marketing Operations Lead,marketing,2024-12-26 21:54:21,2025-03-22 22:35:20,inactive,false,false,373 +U3502,A1052,Sierra Labs,software,APAC,mid_market,NZ,active,CSM-APAC,mei.reed@sierralabs.example,Mei Reed,Operations Director,operations,2024-12-29 04:54:21,2025-06-21 09:32:21,active,true,false,282 +U3503,A1052,Sierra Labs,software,APAC,mid_market,NZ,active,CSM-APAC,victor.ng@sierralabs.example,Victor Ng,Revenue Operations Manager,sales,2025-01-08 03:54:21,2025-06-19 20:36:33,active,true,false,284 +U3504,A1052,Sierra Labs,software,APAC,mid_market,NZ,active,CSM-APAC,mila.nash@sierralabs.example,Mila Nash,Data Platform Manager,data,2024-12-07 04:54:21,2025-06-11 07:42:32,active,true,false,292 +U3505,A1052,Sierra Labs,software,APAC,mid_market,NZ,active,CSM-APAC,victor.saeed@sierralabs.example,Victor Saeed,Revenue Operations Manager,sales,2025-01-05 03:54:21,2025-06-25 14:22:45,active,true,false,278 +U3506,A1052,Sierra Labs,software,APAC,mid_market,NZ,active,CSM-APAC,hannah.tan@sierralabs.example,Hannah Tan,Analytics Manager,analytics,2024-12-26 01:54:21,2025-06-17 05:33:26,active,true,false,286 +U3507,A1052,Sierra Labs,software,APAC,mid_market,NZ,active,CSM-APAC,ava.rahman@sierralabs.example,Ava Rahman,Sales Analyst,sales,2025-01-08 21:54:21,2025-06-13 17:51:38,active,true,false,290 +U3508,A1053,Bright Health,media,NA,mid_market,CA,active,CSM-East,owen.petrova@brighthealth.example,Owen Petrova,Operations Director,operations,2024-10-26 18:24:29,2025-06-20 07:54:56,active,true,false,283 +U3509,A1053,Bright Health,media,NA,mid_market,CA,active,CSM-East,alma.park@brighthealth.example,Alma Park,Data Engineer,data,2024-10-18 13:24:29,2025-04-01 19:08:56,inactive,false,false,363 +U3510,A1053,Bright Health,media,NA,mid_market,CA,active,CSM-East,aisha.grant@brighthealth.example,Aisha Grant,Operations Director,operations,2024-11-03 17:24:29,2025-06-12 08:41:40,active,true,false,291 +U3511,A1053,Bright Health,media,NA,mid_market,CA,active,CSM-East,mateo.kim@brighthealth.example,Mateo Kim,FP&A Analyst,finance,2024-10-24 16:24:29,2025-06-14 10:32:51,active,true,false,289 +U3512,A1053,Bright Health,media,NA,mid_market,CA,active,CSM-East,samir.shah@brighthealth.example,Samir Shah,Finance Manager,finance,2024-09-30 10:24:29,2025-06-17 19:18:26,active,true,false,286 +U3513,A1053,Bright Health,media,NA,mid_market,CA,active,CSM-East,owen.meyer@brighthealth.example,Owen Meyer,Finance Manager,finance,2024-09-27 13:24:29,2025-06-28 20:52:31,active,true,false,275 +U3514,A1053,Bright Health,media,NA,mid_market,CA,active,CSM-East,nina.chen@brighthealth.example,Nina Chen,Technical Program Manager,product,2024-10-20 18:24:29,2025-06-25 01:10:34,active,true,false,278 +U3515,A1053,Bright Health,media,NA,mid_market,CA,active,CSM-East,tara.alvarez@brighthealth.example,Tara Alvarez,Demand Gen Manager,marketing,2024-10-18 16:24:29,2025-06-24 21:14:02,active,true,false,279 +U3516,A1053,Bright Health,media,NA,mid_market,CA,active,CSM-East,ben.chen@brighthealth.example,Ben Chen,Demand Gen Manager,marketing,2024-10-28 18:24:29,2025-06-15 07:57:27,active,true,false,288 +U3517,A1053,Bright Health,media,NA,mid_market,CA,active,CSM-East,hannah.sato@brighthealth.example,Hannah Sato,Finance Manager,finance,2024-10-30 15:24:29,2025-06-11 01:53:35,active,true,false,292 +U3518,A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,lena.singh@granitelabs.example,Lena Singh,Founder,executive,2024-08-04 04:47:01,2025-06-14 14:50:13,active,true,false,289 +U3519,A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,aisha.meyer@granitelabs.example,Aisha Meyer,FP&A Analyst,finance,2024-09-07 08:47:01,2025-03-30 09:24:24,inactive,false,false,365 +U3520,A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,alma.fischer@granitelabs.example,Alma Fischer,Revenue Operations Manager,sales,2024-08-28 11:47:01,2025-06-21 17:16:14,active,true,false,282 +U3521,A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,naomi.grant@granitelabs.example,Naomi Grant,Analytics Manager,analytics,2024-09-03 09:47:01,2025-06-27 04:21:00,active,true,false,276 +U3522,A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,daniel.brooks@granitelabs.example,Daniel Brooks,Workflow Analyst,operations,2024-09-10 11:47:01,2025-05-07 04:40:50,inactive,false,false,327 +U3523,A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,ben.meyer@granitelabs.example,Ben Meyer,Sales Analyst,sales,2024-08-17 11:47:01,2025-06-25 10:03:57,active,true,false,278 +U3524,A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,marta.lewis@granitelabs.example,Marta Lewis,Technical Program Manager,product,2024-09-01 05:47:01,2025-03-29 12:53:10,inactive,false,false,366 +U3525,A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,mei.chen@granitelabs.example,Mei Chen,Operations Director,operations,2024-08-30 04:47:01,2025-06-15 07:46:44,active,true,false,288 +U3526,A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,mila.price@granitelabs.example,Mila Price,Revenue Operations Manager,sales,2024-08-22 08:47:01,2025-06-25 18:22:21,active,true,false,278 +U3527,A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,daniel.chen@granitelabs.example,Daniel Chen,Demand Gen Manager,marketing,2024-08-17 04:47:01,2025-06-22 14:10:05,active,true,false,281 +U3528,A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,arjun.khan@granitelabs.example,Arjun Khan,Data Engineer,data,2024-09-13 08:47:01,2025-06-27 20:59:29,active,true,false,276 +U3529,A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,lena.romero@granitelabs.example,Lena Romero,Finance Manager,finance,2024-08-22 08:47:01,2025-04-16 09:39:58,inactive,false,false,348 +U3530,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,priya.lewis@pioneersystems.example,Priya Lewis,Product Manager,product,2025-02-28 20:44:38,2025-04-02 20:51:43,inactive,false,false,362 +U3531,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,ava.price@pioneersystems.example,Ava Price,Data Platform Manager,data,2025-02-07 18:44:38,2025-06-10 17:54:15,active,true,false,293 +U3532,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,daniel.silva@pioneersystems.example,Daniel Silva,Founder,executive,2025-01-28 17:44:38,2025-06-18 12:34:14,active,true,false,285 +U3533,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,lina.nash@pioneersystems.example,Lina Nash,Controller,finance,2025-02-26 19:44:38,2025-06-13 03:04:00,active,true,false,290 +U3534,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,jonas.khan@pioneersystems.example,Jonas Khan,Analytics Engineer,data,2025-02-14 14:44:38,2025-06-16 01:26:11,active,true,false,287 +U3535,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,derek.park@pioneersystems.example,Derek Park,BI Analyst,analytics,2025-02-21 17:44:38,2025-06-19 08:59:47,active,true,false,284 +U3536,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,priya.tan@pioneersystems.example,Priya Tan,Operations Manager,operations,2025-02-20 13:44:38,2025-06-22 10:18:09,active,true,false,281 +U3537,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,peter.tan@pioneersystems.example,Peter Tan,CFO,executive,2025-02-21 17:44:38,2025-06-13 18:28:31,active,true,false,290 +U3538,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,marcus.saeed@pioneersystems.example,Marcus Saeed,Finance Manager,finance,2025-01-21 20:44:38,2025-06-22 23:17:16,active,true,false,281 +U3539,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,olivia.chen@pioneersystems.example,Olivia Chen,BI Analyst,analytics,2025-03-03 14:44:38,2025-06-11 09:52:42,active,true,false,292 +U3540,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,marcus.saeed2@pioneersystems.example,Marcus Saeed,BI Analyst,analytics,2025-02-24 17:44:38,2025-06-15 09:14:38,active,true,false,288 +U3541,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,alma.tan@pioneersystems.example,Alma Tan,Demand Gen Manager,marketing,2025-02-05 21:44:38,2025-06-20 23:58:06,active,true,false,283 +U3542,A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,CSM-EMEA,olivia.dubois@pioneersystems.example,Olivia Dubois,Finance Manager,finance,2025-02-05 14:44:38,2025-06-25 09:53:30,active,true,false,278 +U3543,A1056,Delta Global,retail,APAC,mid_market,AU,active,CSM-APAC,sofia.hill@deltaglobal.example,Sofia Hill,Demand Gen Manager,marketing,2024-12-24 10:04:51,2025-06-27 09:18:56,active,true,false,276 +U3544,A1056,Delta Global,retail,APAC,mid_market,AU,active,CSM-APAC,claire.alvarez@deltaglobal.example,Claire Alvarez,Finance Manager,finance,2024-12-08 10:04:51,2025-06-11 12:33:00,active,true,false,292 +U3545,A1056,Delta Global,retail,APAC,mid_market,AU,active,CSM-APAC,naomi.romero@deltaglobal.example,Naomi Romero,Product Manager,product,2024-11-25 11:04:51,2025-06-20 15:26:03,active,true,false,283 +U3546,A1056,Delta Global,retail,APAC,mid_market,AU,active,CSM-APAC,noah.sato@deltaglobal.example,Noah Sato,Technical Program Manager,product,2024-12-08 10:04:51,2025-06-27 14:17:36,active,true,false,276 +U3547,A1056,Delta Global,retail,APAC,mid_market,AU,active,CSM-APAC,isla.petrova@deltaglobal.example,Isla Petrova,Product Manager,product,2024-11-24 12:04:51,2025-06-17 19:48:58,active,true,false,286 +U3548,A1056,Delta Global,retail,APAC,mid_market,AU,active,CSM-APAC,ava.turner@deltaglobal.example,Ava Turner,Marketing Operations Lead,marketing,2024-11-28 09:04:51,2025-05-08 06:13:12,inactive,false,false,326 +U3549,A1056,Delta Global,retail,APAC,mid_market,AU,active,CSM-APAC,samir.khan@deltaglobal.example,Samir Khan,Technical Program Manager,product,2024-11-20 06:04:51,2025-06-18 19:43:44,active,true,false,285 +U3550,A1056,Delta Global,retail,APAC,mid_market,AU,active,CSM-APAC,leo.ward@deltaglobal.example,Leo Ward,FP&A Analyst,finance,2024-12-11 07:04:51,2025-06-20 03:19:45,active,true,false,283 +U3551,A1056,Delta Global,retail,APAC,mid_market,AU,active,CSM-APAC,marcus.khan@deltaglobal.example,Marcus Khan,Operations Manager,operations,2024-12-23 12:04:51,2025-06-20 07:50:50,active,true,false,283 +U3552,A1056,Delta Global,retail,APAC,mid_market,AU,active,CSM-APAC,victor.alvarez@deltaglobal.example,Victor Alvarez,FP&A Analyst,finance,2024-12-13 06:04:51,2025-06-30 01:08:24,active,true,false,273 +U3553,A1056,Delta Global,retail,APAC,mid_market,AU,active,CSM-APAC,helena.ng@deltaglobal.example,Helena Ng,Sales Analyst,sales,2024-12-23 08:04:51,2025-06-26 13:04:23,active,true,false,277 +U3554,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,lena.rossi@harborpartners.example,Lena Rossi,Workflow Analyst,operations,2024-11-24 15:01:31,2025-06-12 15:53:15,active,true,false,291 +U3555,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,owen.sato@harborpartners.example,Owen Sato,Analytics Manager,analytics,2024-10-21 09:01:31,2025-06-24 18:25:52,active,true,false,279 +U3556,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,lina.khan@harborpartners.example,Lina Khan,Product Manager,product,2024-10-22 11:01:31,2025-06-24 09:19:18,active,true,false,279 +U3557,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,maya.shah@harborpartners.example,Maya Shah,FP&A Analyst,finance,2024-11-20 12:01:31,2025-06-24 07:40:10,active,true,false,279 +U3558,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,owen.tan@harborpartners.example,Owen Tan,Demand Gen Manager,marketing,2024-11-05 12:01:31,2025-05-10 00:34:29,inactive,false,false,324 +U3559,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,marta.petrova@harborpartners.example,Marta Petrova,Data Platform Manager,data,2024-11-18 14:01:31,2025-06-17 10:22:29,active,true,false,286 +U3560,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,hannah.fischer@harborpartners.example,Hannah Fischer,Data Engineer,data,2024-12-01 16:01:31,2025-06-19 00:16:30,active,true,false,284 +U3561,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,olivia.meyer@harborpartners.example,Olivia Meyer,Data Engineer,data,2024-11-13 14:01:31,2025-06-27 13:38:17,active,true,false,276 +U3562,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,lina.morgan@harborpartners.example,Lina Morgan,Sales Analyst,sales,2024-11-20 11:01:31,2025-06-21 19:37:57,active,true,false,282 +U3563,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,naomi.tan@harborpartners.example,Naomi Tan,Sales Analyst,sales,2024-11-12 10:01:31,2025-06-26 13:20:30,active,true,false,277 +U3564,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,naomi.lewis@harborpartners.example,Naomi Lewis,Data Engineer,data,2024-11-27 08:01:31,2025-06-22 02:31:26,active,true,false,281 +U3565,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,ivy.lewis@harborpartners.example,Ivy Lewis,Operations Director,operations,2024-11-27 14:01:31,2025-06-29 10:35:02,active,true,false,274 +U3566,A1057,Harbor Partners,education,APAC,enterprise,NZ,active,CSM-APAC,ben.ng@harborpartners.example,Ben Ng,FP&A Analyst,finance,2024-11-18 14:01:31,2025-06-21 05:10:14,active,true,false,282 +U3567,A1058,Evergreen Analytics,travel,EMEA,smb,UK,active,CSM-EMEA,marta.patel@evergreenanalytics.example,Marta Patel,FP&A Analyst,finance,2025-02-15 22:52:12,2025-06-28 00:47:16,active,true,false,275 +U3568,A1058,Evergreen Analytics,travel,EMEA,smb,UK,active,CSM-EMEA,victor.hart@evergreenanalytics.example,Victor Hart,Analytics Manager,analytics,2025-02-12 03:52:12,2025-06-11 05:03:28,active,true,false,292 +U3569,A1058,Evergreen Analytics,travel,EMEA,smb,UK,active,CSM-EMEA,lena.turner@evergreenanalytics.example,Lena Turner,Founder,executive,2025-02-15 05:52:12,2025-05-11 05:27:19,inactive,false,false,323 +U3570,A1058,Evergreen Analytics,travel,EMEA,smb,UK,active,CSM-EMEA,mateo.dubois@evergreenanalytics.example,Mateo Dubois,Product Manager,product,2025-02-10 23:52:12,2025-06-25 14:23:15,active,true,false,278 +U3571,A1058,Evergreen Analytics,travel,EMEA,smb,UK,active,CSM-EMEA,tomas.nash@evergreenanalytics.example,Tomas Nash,Insights Lead,analytics,2025-01-12 03:52:12,2025-06-10 13:16:54,active,true,false,293 +U3572,A1058,Evergreen Analytics,travel,EMEA,smb,UK,active,CSM-EMEA,leo.ward@evergreenanalytics.example,Leo Ward,Technical Program Manager,product,2025-02-04 03:52:12,2025-03-29 09:54:16,inactive,false,false,366 +U3573,A1058,Evergreen Analytics,travel,EMEA,smb,UK,active,CSM-EMEA,aisha.desai@evergreenanalytics.example,Aisha Desai,Insights Lead,analytics,2025-02-14 02:52:12,2025-06-21 18:38:09,active,true,false,282 +U3574,A1059,Evergreen Partners,education,NA,mid_market,CA,active,CSM-East,aisha.brooks@evergreenpartners.example,Aisha Brooks,Insights Lead,analytics,2024-11-05 07:27:52,2025-06-12 07:03:56,active,true,false,291 +U3575,A1059,Evergreen Partners,education,NA,mid_market,CA,active,CSM-East,naomi.hart@evergreenpartners.example,Naomi Hart,Operations Manager,operations,2024-10-13 09:27:52,2025-06-16 23:19:32,active,true,false,287 +U3576,A1059,Evergreen Partners,education,NA,mid_market,CA,active,CSM-East,nina.chen@evergreenpartners.example,Nina Chen,Workflow Analyst,operations,2024-10-08 09:27:52,2025-06-19 06:24:17,active,true,false,284 +U3577,A1059,Evergreen Partners,education,NA,mid_market,CA,active,CSM-East,kenji.lopez@evergreenpartners.example,Kenji Lopez,Demand Gen Manager,marketing,2024-10-08 15:27:52,2025-06-18 14:43:24,active,true,false,285 +U3578,A1059,Evergreen Partners,education,NA,mid_market,CA,active,CSM-East,elena.shah@evergreenpartners.example,Elena Shah,FP&A Analyst,finance,2024-10-23 13:27:52,2025-06-20 23:25:34,active,true,false,283 +U3579,A1059,Evergreen Partners,education,NA,mid_market,CA,active,CSM-East,aisha.reed@evergreenpartners.example,Aisha Reed,Founder,executive,2024-11-07 11:27:52,2025-06-13 02:34:17,active,true,false,290 +U3580,A1059,Evergreen Partners,education,NA,mid_market,CA,active,CSM-East,hannah.rahman@evergreenpartners.example,Hannah Rahman,Technical Program Manager,product,2024-10-27 11:27:52,2025-06-28 13:19:15,active,true,false,275 +U3581,A1059,Evergreen Partners,education,NA,mid_market,CA,active,CSM-East,isla.patel@evergreenpartners.example,Isla Patel,Sales Analyst,sales,2024-10-27 11:27:52,2025-06-20 20:15:03,active,true,false,283 +U3582,A1059,Evergreen Partners,education,NA,mid_market,CA,active,CSM-East,maya.meyer@evergreenpartners.example,Maya Meyer,Technical Program Manager,product,2024-11-09 12:27:52,2025-03-05 07:34:40,inactive,false,false,390 +U3583,A1059,Evergreen Partners,education,NA,mid_market,CA,active,CSM-East,marcus.nash@evergreenpartners.example,Marcus Nash,CFO,executive,2024-11-05 11:27:52,2025-06-16 18:35:23,active,true,false,287 +U3584,A1059,Evergreen Partners,education,NA,mid_market,CA,active,CSM-East,marcus.lopez@evergreenpartners.example,Marcus Lopez,Sales Analyst,sales,2024-11-09 10:27:52,2025-06-24 13:57:24,active,true,false,279 +U3585,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,mei.saeed@cedarfoods.example,Mei Saeed,COO,executive,2024-11-26 02:41:46,2025-06-10 11:56:15,active,true,false,293 +U3586,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,tomas.chen@cedarfoods.example,Tomas Chen,Revenue Operations Manager,sales,2024-12-08 19:41:46,2025-06-18 19:46:23,active,true,false,285 +U3587,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,zoe.meyer@cedarfoods.example,Zoe Meyer,BI Analyst,analytics,2024-11-07 18:41:46,2025-06-11 16:08:10,active,true,false,292 +U3588,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,ben.reed@cedarfoods.example,Ben Reed,Workflow Analyst,operations,2024-11-12 19:41:46,2025-06-13 10:40:35,active,true,false,290 +U3589,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,lina.sato@cedarfoods.example,Lina Sato,Workflow Analyst,operations,2024-11-16 22:41:46,2025-06-26 07:45:22,active,true,false,277 +U3590,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,tomas.ward@cedarfoods.example,Tomas Ward,Analytics Manager,analytics,2024-12-19 23:41:46,2025-06-29 05:48:32,active,true,false,274 +U3591,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,tomas.dubois@cedarfoods.example,Tomas Dubois,Analytics Engineer,data,2024-11-29 23:41:46,2025-05-19 05:57:47,inactive,false,false,315 +U3592,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,nina.sato@cedarfoods.example,Nina Sato,Product Manager,product,2024-12-06 21:41:46,2025-06-14 14:57:00,active,true,false,289 +U3593,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,tara.hill@cedarfoods.example,Tara Hill,Controller,finance,2024-12-02 21:41:46,2025-06-12 20:53:41,active,true,false,291 +U3594,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,owen.lopez@cedarfoods.example,Owen Lopez,Operations Director,operations,2024-11-09 19:41:46,2025-06-16 08:58:58,active,true,false,287 +U3595,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,owen.romero@cedarfoods.example,Owen Romero,Product Manager,product,2024-12-16 18:41:46,2025-03-27 04:50:31,inactive,false,false,368 +U3596,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,peter.silva@cedarfoods.example,Peter Silva,Revenue Operations Manager,sales,2024-12-08 01:41:46,2025-06-20 02:17:46,active,true,false,283 +U3597,A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,CSM-East,tomas.nash@cedarfoods.example,Tomas Nash,Marketing Operations Lead,marketing,2024-11-30 01:41:46,2025-06-23 06:50:14,active,true,false,280 +U3598,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,samir.singh@atlascapital.example,Samir Singh,Revenue Operations Manager,sales,2025-03-25 01:52:24,2025-06-18 13:06:03,active,true,false,285 +U3599,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,elena.ward@atlascapital.example,Elena Ward,Insights Lead,analytics,2025-02-25 02:52:24,2025-06-19 14:47:29,active,true,false,284 +U3600,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,mei.singh@atlascapital.example,Mei Singh,Revenue Operations Manager,sales,2025-03-25 05:52:24,2025-06-25 15:37:39,active,true,false,278 +U3601,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,owen.tan@atlascapital.example,Owen Tan,Finance Manager,finance,2025-02-25 00:52:24,2025-06-24 16:24:56,active,true,false,279 +U3602,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,victor.rossi@atlascapital.example,Victor Rossi,Revenue Operations Manager,sales,2025-03-19 04:52:24,2025-06-30 12:59:09,active,true,false,273 +U3603,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,owen.romero@atlascapital.example,Owen Romero,Analytics Engineer,data,2025-02-16 05:52:24,2025-06-11 07:56:28,active,true,false,292 +U3604,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,noah.grant@atlascapital.example,Noah Grant,Demand Gen Manager,marketing,2025-03-28 08:52:24,2025-06-24 08:29:36,active,true,false,279 +U3605,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,zoe.keller@atlascapital.example,Zoe Keller,Data Platform Manager,data,2025-02-22 07:52:24,2025-06-21 17:30:19,active,true,false,282 +U3606,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,mila.desai@atlascapital.example,Mila Desai,Marketing Operations Lead,marketing,2025-02-13 02:52:24,2025-06-17 18:02:13,active,true,false,286 +U3607,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,marcus.ward@atlascapital.example,Marcus Ward,Controller,finance,2025-02-17 01:52:24,2025-06-24 17:35:58,active,true,false,279 +U3608,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,mila.patel@atlascapital.example,Mila Patel,Operations Director,operations,2025-03-12 05:52:24,2025-06-28 04:52:28,active,true,false,275 +U3609,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,noah.khan@atlascapital.example,Noah Khan,Workflow Analyst,operations,2025-03-21 08:52:24,2025-06-30 14:15:14,active,true,false,273 +U3610,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,daniel.desai@atlascapital.example,Daniel Desai,FP&A Analyst,finance,2025-02-17 01:52:24,2025-06-28 16:18:17,active,true,false,275 +U3611,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,kai.rahman@atlascapital.example,Kai Rahman,COO,executive,2025-03-13 03:52:24,,provisioned,false,false, +U3612,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,marcus.kim@atlascapital.example,Marcus Kim,Finance Manager,finance,2025-03-16 01:52:24,2025-06-14 15:30:56,active,true,false,289 +U3613,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,elena.meyer@atlascapital.example,Elena Meyer,Sales Analyst,sales,2025-03-29 02:52:24,2025-06-25 19:43:31,active,true,false,278 +U3614,A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,CSM-EMEA,evan.saeed@atlascapital.example,Evan Saeed,Technical Program Manager,product,2025-02-28 02:52:24,2025-06-11 04:54:57,active,true,false,292 +U3615,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,tara.petrova@deltamanufacturing.example,Tara Petrova,Analytics Manager,analytics,2024-12-05 15:50:25,2025-06-14 22:47:29,active,true,false,289 +U3616,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,olivia.saeed@deltamanufacturing.example,Olivia Saeed,Workflow Analyst,operations,2024-12-02 23:50:25,2025-06-21 13:25:31,active,true,false,282 +U3617,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,daniel.dubois@deltamanufacturing.example,Daniel Dubois,Data Engineer,data,2024-11-16 17:50:25,2025-06-21 19:21:55,active,true,false,282 +U3618,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,tara.sato@deltamanufacturing.example,Tara Sato,Controller,finance,2024-11-11 15:50:25,2025-06-17 05:03:43,active,true,false,286 +U3619,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,daniel.ng@deltamanufacturing.example,Daniel Ng,Analytics Manager,analytics,2024-12-18 22:50:25,2025-06-28 06:19:26,active,true,false,275 +U3620,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,hannah.nash@deltamanufacturing.example,Hannah Nash,Finance Manager,finance,2024-11-10 22:50:25,2025-06-12 00:16:43,active,true,false,291 +U3621,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,victor.park@deltamanufacturing.example,Victor Park,CFO,executive,2024-11-21 20:50:25,2025-06-12 23:09:25,active,true,false,291 +U3622,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,alma.patel@deltamanufacturing.example,Alma Patel,Operations Director,operations,2024-12-05 18:50:25,2025-06-15 15:32:43,active,true,false,288 +U3623,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,tomas.turner@deltamanufacturing.example,Tomas Turner,Product Manager,product,2024-12-06 17:50:25,2025-06-25 02:01:14,active,true,false,278 +U3624,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,ava.sato@deltamanufacturing.example,Ava Sato,Sales Analyst,sales,2024-11-17 22:50:25,2025-06-25 15:10:44,active,true,false,278 +U3625,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,marta.dubois@deltamanufacturing.example,Marta Dubois,Demand Gen Manager,marketing,2024-11-17 15:50:25,2025-06-11 17:44:58,active,true,false,292 +U3626,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,evan.lewis@deltamanufacturing.example,Evan Lewis,Operations Manager,operations,2024-12-08 21:50:25,2025-06-18 15:08:51,active,true,false,285 +U3627,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,zoe.meyer@deltamanufacturing.example,Zoe Meyer,Controller,finance,2024-12-18 17:50:25,2025-06-23 17:00:12,active,true,false,280 +U3628,A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,CSM-EMEA,zoe.petrova@deltamanufacturing.example,Zoe Petrova,Sales Analyst,sales,2024-11-22 22:50:25,2025-06-17 01:37:43,active,true,false,286 +U3629,A1063,Maple Global,education,NA,smb,CA,active,CSM-East,ivy.alvarez@mapleglobal.example,Ivy Alvarez,Demand Gen Manager,marketing,2024-12-11 15:34:06,2025-03-15 19:07:28,inactive,false,false,380 +U3630,A1063,Maple Global,education,NA,smb,CA,active,CSM-East,lena.chen@mapleglobal.example,Lena Chen,Revenue Operations Manager,sales,2024-11-16 19:34:06,2025-06-22 12:43:38,active,true,false,281 +U3631,A1063,Maple Global,education,NA,smb,CA,active,CSM-East,priya.ng@mapleglobal.example,Priya Ng,Sales Analyst,sales,2024-12-28 13:34:06,2025-06-16 03:06:29,active,true,false,287 +U3632,A1063,Maple Global,education,NA,smb,CA,active,CSM-East,elena.chen@mapleglobal.example,Elena Chen,Revenue Operations Manager,sales,2024-11-22 17:34:06,2025-06-26 00:16:39,active,true,false,277 +U3633,A1064,Atlas Health,education,NA,smb,US,active,CSM-East,luis.turner@atlashealth.example,Luis Turner,BI Analyst,analytics,2024-10-10 05:39:22,2025-06-28 10:19:33,active,true,false,275 +U3634,A1064,Atlas Health,education,NA,smb,US,active,CSM-East,helena.romero@atlashealth.example,Helena Romero,Technical Program Manager,product,2024-09-03 04:39:22,2025-06-19 06:47:08,active,true,false,284 +U3635,A1064,Atlas Health,education,NA,smb,US,active,CSM-East,ava.chen@atlashealth.example,Ava Chen,Operations Manager,operations,2024-10-09 03:39:22,2025-06-17 11:46:34,active,true,false,286 +U3636,A1064,Atlas Health,education,NA,smb,US,active,CSM-East,ivy.dubois@atlashealth.example,Ivy Dubois,Marketing Operations Lead,marketing,2024-10-04 03:39:22,2025-06-11 14:55:48,active,true,false,292 +U3637,A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,CSM-East,derek.brooks@vertexpartners.example,Derek Brooks,Operations Manager,operations,2025-01-22 13:11:13,2025-06-19 03:57:38,active,true,false,284 +U3638,A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,CSM-East,derek.sato@vertexpartners.example,Derek Sato,Workflow Analyst,operations,2025-02-13 09:11:13,2025-06-18 10:06:38,active,true,false,285 +U3639,A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,CSM-East,victor.nash@vertexpartners.example,Victor Nash,Workflow Analyst,operations,2025-01-29 09:11:13,2025-06-28 18:14:53,active,true,false,275 +U3640,A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,CSM-East,zoe.khan@vertexpartners.example,Zoe Khan,VP Data,executive,2025-01-31 12:11:13,2025-06-11 19:54:54,active,true,false,292 +U3641,A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,CSM-East,derek.cole@vertexpartners.example,Derek Cole,Technical Program Manager,product,2025-01-31 14:11:13,2025-06-21 16:53:25,active,true,false,282 +U3642,A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,CSM-East,isla.nash@vertexpartners.example,Isla Nash,Analytics Manager,analytics,2025-02-07 11:11:13,2025-06-27 02:49:54,active,true,false,276 +U3643,A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,CSM-East,tomas.tan@vertexpartners.example,Tomas Tan,Product Manager,product,2025-01-04 12:11:13,2025-03-08 19:18:00,inactive,false,false,387 +U3644,A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,CSM-East,marcus.rahman@vertexpartners.example,Marcus Rahman,BI Analyst,analytics,2025-02-12 08:11:13,2025-06-15 05:59:16,active,true,false,288 +U3645,A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,CSM-East,mateo.romero@vertexpartners.example,Mateo Romero,Analytics Manager,analytics,2025-02-11 14:11:13,2025-04-11 02:58:25,inactive,false,false,353 +U3646,A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,CSM-East,owen.romero@vertexpartners.example,Owen Romero,BI Analyst,analytics,2025-01-03 06:11:13,2025-06-15 22:20:27,active,true,false,288 +U3647,A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,CSM-East,mateo.silva@vertexpartners.example,Mateo Silva,Sales Analyst,sales,2025-02-09 11:11:13,2025-06-26 10:53:19,active,true,false,277 +U3648,A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,mateo.park@pacificcapital.example,Mateo Park,Technical Program Manager,product,2025-02-15 19:33:41,2025-05-16 23:07:37,inactive,false,false,318 +U3649,A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,nina.patel@pacificcapital.example,Nina Patel,Technical Program Manager,product,2025-01-28 17:33:41,2025-06-17 04:39:52,active,true,false,286 +U3650,A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,ava.rahman@pacificcapital.example,Ava Rahman,Controller,finance,2025-02-13 21:33:41,2025-06-14 13:09:15,active,true,false,289 +U3651,A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,peter.rahman@pacificcapital.example,Peter Rahman,Marketing Operations Lead,marketing,2025-01-12 22:33:41,2025-06-20 23:50:10,active,true,false,283 +U3652,A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,nina.fischer@pacificcapital.example,Nina Fischer,Finance Manager,finance,2025-02-14 17:33:41,2025-06-18 15:18:19,active,true,false,285 +U3653,A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,peter.fischer@pacificcapital.example,Peter Fischer,Product Manager,product,2025-02-13 21:33:41,2025-06-10 21:31:11,active,true,false,293 +U3654,A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,noah.rossi@pacificcapital.example,Noah Rossi,FP&A Analyst,finance,2025-01-30 19:33:41,2025-06-28 05:12:16,active,true,false,275 +U3655,A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,isla.hart@pacificcapital.example,Isla Hart,VP Data,executive,2025-02-09 21:33:41,2025-04-26 00:52:55,inactive,false,false,338 +U3656,A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,peter.park@pacificcapital.example,Peter Park,Founder,executive,2025-02-09 17:33:41,2025-06-23 15:57:26,active,true,false,280 +U3657,A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,olivia.singh@pacificcapital.example,Olivia Singh,Analytics Engineer,data,2025-02-18 20:33:41,2025-06-12 12:52:26,active,true,false,291 +U3658,A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,alma.brooks@pacificcapital.example,Alma Brooks,Marketing Operations Lead,marketing,2025-01-27 20:33:41,2025-06-23 08:38:52,active,true,false,280 +U3659,A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,CSM-APAC,owen.petrova@pacificcapital.example,Owen Petrova,Revenue Operations Manager,sales,2025-02-10 22:33:41,2025-06-22 17:00:10,active,true,false,281 +U3660,A1067,Maple Energy,healthcare,NA,mid_market,CA,active,CSM-East,derek.morgan@mapleenergy.example,Derek Morgan,Controller,finance,2025-01-26 05:24:42,2025-06-10 14:06:05,active,true,false,293 +U3661,A1067,Maple Energy,healthcare,NA,mid_market,CA,active,CSM-East,claire.cole@mapleenergy.example,Claire Cole,VP Data,executive,2025-01-27 08:24:42,2025-06-27 23:00:19,active,true,false,276 +U3662,A1067,Maple Energy,healthcare,NA,mid_market,CA,active,CSM-East,owen.price@mapleenergy.example,Owen Price,Technical Program Manager,product,2025-01-09 06:24:42,2025-06-20 08:17:07,active,true,false,283 +U3663,A1067,Maple Energy,healthcare,NA,mid_market,CA,active,CSM-East,naomi.petrova@mapleenergy.example,Naomi Petrova,Finance Manager,finance,2025-01-18 07:24:42,2025-04-02 21:34:39,inactive,false,false,362 +U3664,A1067,Maple Energy,healthcare,NA,mid_market,CA,active,CSM-East,tomas.kim@mapleenergy.example,Tomas Kim,Operations Director,operations,2025-01-25 04:24:42,2025-06-23 18:47:06,active,true,false,280 +U3665,A1067,Maple Energy,healthcare,NA,mid_market,CA,active,CSM-East,ava.lewis@mapleenergy.example,Ava Lewis,Marketing Operations Lead,marketing,2025-01-23 04:24:42,2025-06-11 07:36:08,active,true,false,292 +U3666,A1067,Maple Energy,healthcare,NA,mid_market,CA,active,CSM-East,jonas.singh@mapleenergy.example,Jonas Singh,Technical Program Manager,product,2025-01-13 00:24:42,2025-06-14 00:43:31,active,true,false,289 +U3667,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,jonas.turner@heliohealth.example,Jonas Turner,Workflow Analyst,operations,2024-09-22 16:36:33,2025-06-22 05:32:40,active,true,false,281 +U3668,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,victor.romero@heliohealth.example,Victor Romero,Operations Manager,operations,2024-09-11 13:36:33,2025-06-19 01:44:24,active,true,false,284 +U3669,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,helena.turner@heliohealth.example,Helena Turner,Sales Analyst,sales,2024-09-20 19:36:33,2025-04-06 13:37:27,inactive,false,false,358 +U3670,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,sofia.romero@heliohealth.example,Sofia Romero,BI Analyst,analytics,2024-09-17 12:36:33,2025-06-21 11:34:39,active,true,false,282 +U3671,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,naomi.cole@heliohealth.example,Naomi Cole,Finance Manager,finance,2024-08-28 17:36:33,2025-06-18 22:22:33,active,true,false,285 +U3672,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,hannah.meyer@heliohealth.example,Hannah Meyer,Insights Lead,analytics,2024-09-20 13:36:33,2025-06-28 21:29:06,active,true,false,275 +U3673,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,kenji.hill@heliohealth.example,Kenji Hill,Controller,finance,2024-08-31 17:36:33,2025-06-26 22:01:20,active,true,false,277 +U3674,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,jonas.dubois@heliohealth.example,Jonas Dubois,Founder,executive,2024-09-14 17:36:33,2025-06-10 14:30:48,active,true,false,293 +U3675,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,naomi.saeed@heliohealth.example,Naomi Saeed,Analytics Manager,analytics,2024-09-11 18:36:33,2025-06-14 05:58:16,active,true,false,289 +U3676,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,marcus.reed@heliohealth.example,Marcus Reed,Controller,finance,2024-08-25 15:36:33,2025-06-23 20:26:24,active,true,false,280 +U3677,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,mila.saeed@heliohealth.example,Mila Saeed,Operations Manager,operations,2024-09-09 13:36:33,2025-06-13 11:26:53,active,true,false,290 +U3678,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,luis.turner@heliohealth.example,Luis Turner,VP Data,executive,2024-09-24 17:36:33,2025-06-21 00:26:50,active,true,false,282 +U3679,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,ben.saeed@heliohealth.example,Ben Saeed,COO,executive,2024-09-25 16:36:33,2025-06-30 01:31:25,active,true,false,273 +U3680,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,olivia.patel@heliohealth.example,Olivia Patel,Controller,finance,2024-08-20 15:36:33,2025-06-15 09:14:28,active,true,false,288 +U3681,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,naomi.petrova@heliohealth.example,Naomi Petrova,Revenue Operations Manager,sales,2024-08-15 12:36:33,2025-06-28 16:10:44,active,true,false,275 +U3682,A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,CSM-APAC,ivy.desai@heliohealth.example,Ivy Desai,Marketing Operations Lead,marketing,2024-08-13 20:36:33,2025-06-21 16:15:36,active,true,false,282 +U3683,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,nina.desai@brightfoods.example,Nina Desai,Operations Manager,operations,2025-01-17 03:08:52,2025-06-29 06:45:50,active,true,false,274 +U3684,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,olivia.reed@brightfoods.example,Olivia Reed,Marketing Operations Lead,marketing,2025-01-17 08:08:52,2025-06-13 19:47:35,active,true,false,290 +U3685,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,evan.cole@brightfoods.example,Evan Cole,COO,executive,2025-01-07 06:08:52,2025-06-11 22:48:33,active,true,false,292 +U3686,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,marcus.chen@brightfoods.example,Marcus Chen,Marketing Operations Lead,marketing,2024-12-24 05:08:52,2025-05-10 18:11:11,inactive,false,false,324 +U3687,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,marcus.reed@brightfoods.example,Marcus Reed,Technical Program Manager,product,2025-01-19 05:08:52,2025-06-12 21:31:15,active,true,false,291 +U3688,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,kenji.cole@brightfoods.example,Kenji Cole,Sales Analyst,sales,2024-12-19 11:08:52,2025-06-13 00:44:14,active,true,false,290 +U3689,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,alma.grant@brightfoods.example,Alma Grant,Product Manager,product,2025-01-08 05:08:52,2025-06-19 01:26:37,active,true,false,284 +U3690,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,claire.desai@brightfoods.example,Claire Desai,Operations Manager,operations,2025-01-06 04:08:52,2025-06-21 09:11:24,active,true,false,282 +U3691,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,ben.singh@brightfoods.example,Ben Singh,Product Manager,product,2025-01-10 09:08:52,2025-06-20 16:18:20,active,true,false,283 +U3692,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,mei.keller@brightfoods.example,Mei Keller,Technical Program Manager,product,2024-12-17 03:08:52,2025-03-11 13:04:05,inactive,false,false,384 +U3693,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,noah.park@brightfoods.example,Noah Park,Operations Director,operations,2024-12-15 09:08:52,2025-06-24 15:01:28,active,true,false,279 +U3694,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,marcus.rahman@brightfoods.example,Marcus Rahman,Operations Manager,operations,2024-12-18 08:08:52,2025-06-30 18:40:58,active,true,false,273 +U3695,A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,CSM-East,noah.grant@brightfoods.example,Noah Grant,Demand Gen Manager,marketing,2025-01-06 07:08:52,2025-06-28 21:12:40,active,true,false,275 +U3696,A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,active,CSM-APAC,helena.dubois@heliomanufacturing.example,Helena Dubois,Sales Analyst,sales,2024-12-07 05:20:27,2025-03-15 15:24:23,inactive,false,false,380 +U3697,A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,active,CSM-APAC,ava.hill@heliomanufacturing.example,Ava Hill,Operations Manager,operations,2024-12-08 06:20:27,2025-06-13 13:24:54,active,true,false,290 +U3698,A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,active,CSM-APAC,luis.hill@heliomanufacturing.example,Luis Hill,Data Engineer,data,2024-12-07 23:20:27,2025-05-06 06:39:39,inactive,false,false,328 +U3699,A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,active,CSM-APAC,alma.shah@heliomanufacturing.example,Alma Shah,Insights Lead,analytics,2024-12-16 00:20:27,2025-06-26 08:06:26,active,true,false,277 +U3700,A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,active,CSM-APAC,mateo.rossi@heliomanufacturing.example,Mateo Rossi,Product Manager,product,2024-11-25 06:20:27,2025-06-16 15:25:51,active,true,false,287 +U3701,A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,active,CSM-APAC,isla.silva@heliomanufacturing.example,Isla Silva,Data Engineer,data,2024-12-04 00:20:27,2025-06-17 22:14:38,active,true,false,286 +U3702,A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,active,CSM-APAC,lina.park@heliomanufacturing.example,Lina Park,Product Manager,product,2024-11-09 01:20:27,2025-06-29 05:01:23,active,true,false,274 +U3703,A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,active,CSM-APAC,jonas.rahman@heliomanufacturing.example,Jonas Rahman,Technical Program Manager,product,2024-11-15 03:20:27,2025-06-22 02:57:47,active,true,false,281 +U3704,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,olivia.rossi@evergreengroup.example,Olivia Rossi,Technical Program Manager,product,2024-10-01 17:34:10,2025-06-19 18:59:53,active,true,false,284 +U3705,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,nina.rossi@evergreengroup.example,Nina Rossi,Sales Analyst,sales,2024-09-14 20:34:10,2025-06-24 14:58:11,active,true,false,279 +U3706,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,priya.lewis@evergreengroup.example,Priya Lewis,VP Data,executive,2024-10-03 15:34:10,2025-06-25 11:10:40,active,true,false,278 +U3707,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,samir.kim@evergreengroup.example,Samir Kim,Operations Manager,operations,2024-09-18 20:34:10,2025-06-11 15:53:02,active,true,false,292 +U3708,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,victor.alvarez@evergreengroup.example,Victor Alvarez,Demand Gen Manager,marketing,2024-10-03 16:34:10,,provisioned,false,false, +U3709,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,jonas.grant@evergreengroup.example,Jonas Grant,COO,executive,2024-08-28 23:34:10,2025-06-21 11:29:57,active,true,false,282 +U3710,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,ivy.hart@evergreengroup.example,Ivy Hart,Sales Analyst,sales,2024-08-28 22:34:10,2025-06-17 23:22:58,active,true,false,286 +U3711,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,lina.kim@evergreengroup.example,Lina Kim,Founder,executive,2024-09-27 16:34:10,2025-06-15 06:57:01,active,true,false,288 +U3712,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,samir.rossi@evergreengroup.example,Samir Rossi,COO,executive,2024-10-05 19:34:10,2025-06-20 20:58:59,active,true,false,283 +U3713,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,mei.rossi@evergreengroup.example,Mei Rossi,Workflow Analyst,operations,2024-09-09 19:34:10,2025-06-17 12:12:05,active,true,false,286 +U3714,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,lena.morgan@evergreengroup.example,Lena Morgan,Marketing Operations Lead,marketing,2024-10-11 16:34:10,2025-06-16 22:14:47,active,true,false,287 +U3715,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,tomas.saeed@evergreengroup.example,Tomas Saeed,Technical Program Manager,product,2024-09-09 20:34:10,2025-06-26 02:32:51,active,true,false,277 +U3716,A1071,Evergreen Group,education,NA,mid_market,CA,active,CSM-East,jonas.hart@evergreengroup.example,Jonas Hart,Analytics Manager,analytics,2024-10-08 23:34:10,2025-06-20 08:21:19,active,true,false,283 +U3717,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,nina.hart@summitventures.example,Nina Hart,Product Manager,product,2024-09-30 12:18:23,2025-06-24 07:02:08,active,true,false,279 +U3718,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,tara.reed@summitventures.example,Tara Reed,Technical Program Manager,product,2024-11-08 12:18:23,2025-06-28 23:02:39,active,true,false,275 +U3719,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,ivy.brooks@summitventures.example,Ivy Brooks,Demand Gen Manager,marketing,2024-10-28 06:18:23,2025-06-28 09:49:44,active,true,false,275 +U3720,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,jonas.ng@summitventures.example,Jonas Ng,Sales Analyst,sales,2024-10-03 07:18:23,2025-06-16 18:30:02,active,true,false,287 +U3721,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,claire.rahman@summitventures.example,Claire Rahman,Insights Lead,analytics,2024-11-06 07:18:23,2025-06-13 01:09:09,active,true,false,290 +U3722,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,peter.tan@summitventures.example,Peter Tan,Data Engineer,data,2024-10-18 11:18:23,2025-06-20 21:03:57,active,true,false,283 +U3723,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,ivy.desai@summitventures.example,Ivy Desai,Marketing Operations Lead,marketing,2024-10-16 06:18:23,2025-06-29 11:00:57,active,true,false,274 +U3724,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,evan.sato@summitventures.example,Evan Sato,Data Platform Manager,data,2024-10-30 04:18:23,2025-06-12 07:53:33,active,true,false,291 +U3725,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,alma.singh@summitventures.example,Alma Singh,Operations Manager,operations,2024-10-22 05:18:23,2025-06-30 16:13:30,active,true,false,273 +U3726,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,naomi.alvarez@summitventures.example,Naomi Alvarez,Workflow Analyst,operations,2024-10-31 05:18:23,2025-06-30 09:55:00,active,true,false,273 +U3727,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,helena.saeed@summitventures.example,Helena Saeed,Analytics Manager,analytics,2024-10-04 07:18:23,2025-06-29 01:24:58,active,true,false,274 +U3728,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,alma.silva@summitventures.example,Alma Silva,Revenue Operations Manager,sales,2024-10-26 07:18:23,2025-06-14 13:02:05,active,true,false,289 +U3729,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,daniel.dubois@summitventures.example,Daniel Dubois,Technical Program Manager,product,2024-10-15 04:18:23,2025-06-19 09:16:53,active,true,false,284 +U3730,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,olivia.khan@summitventures.example,Olivia Khan,Sales Analyst,sales,2024-11-11 07:18:23,2025-03-15 09:40:06,inactive,false,false,380 +U3731,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,derek.turner@summitventures.example,Derek Turner,VP Data,executive,2024-09-30 04:18:23,2025-06-26 08:46:23,active,true,false,277 +U3732,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,hannah.alvarez@summitventures.example,Hannah Alvarez,Insights Lead,analytics,2024-10-23 08:18:23,2025-06-27 07:08:19,active,true,false,276 +U3733,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,derek.grant@summitventures.example,Derek Grant,Demand Gen Manager,marketing,2024-10-23 04:18:23,2025-03-26 03:26:11,inactive,false,false,369 +U3734,A1072,Summit Ventures,software,NA,enterprise,US,active,CSM-East,jonas.petrova@summitventures.example,Jonas Petrova,Demand Gen Manager,marketing,2024-10-12 06:18:23,2025-05-25 17:18:25,inactive,false,false,309 +U3735,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,kai.desai@silverholdings.example,Kai Desai,BI Analyst,analytics,2024-12-09 19:21:51,2025-06-30 17:00:47,active,true,false,273 +U3736,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,samir.ng@silverholdings.example,Samir Ng,Operations Director,operations,2024-12-22 16:21:51,2025-06-18 19:58:16,active,true,false,285 +U3737,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,kai.khan@silverholdings.example,Kai Khan,Product Manager,product,2024-11-11 14:21:51,2025-06-29 11:48:07,active,true,false,274 +U3738,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,naomi.chen@silverholdings.example,Naomi Chen,Revenue Operations Manager,sales,2024-12-18 16:21:51,2025-06-12 06:54:13,active,true,false,291 +U3739,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,olivia.rahman@silverholdings.example,Olivia Rahman,Marketing Operations Lead,marketing,2024-12-16 18:21:51,2025-06-18 01:03:48,active,true,false,285 +U3740,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,owen.turner@silverholdings.example,Owen Turner,FP&A Analyst,finance,2024-11-19 17:21:51,2025-06-15 02:43:48,active,true,false,288 +U3741,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,elena.price@silverholdings.example,Elena Price,COO,executive,2024-12-03 18:21:51,2025-03-23 03:05:34,inactive,false,false,372 +U3742,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,luis.romero@silverholdings.example,Luis Romero,Marketing Operations Lead,marketing,2024-12-07 15:21:51,2025-06-14 09:18:26,active,true,false,289 +U3743,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,hannah.morgan@silverholdings.example,Hannah Morgan,Sales Analyst,sales,2024-11-17 13:21:51,2025-04-25 09:46:18,inactive,false,false,339 +U3744,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,olivia.chen@silverholdings.example,Olivia Chen,Sales Analyst,sales,2024-12-21 19:21:51,2025-06-27 14:40:51,active,true,false,276 +U3745,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,daniel.tan@silverholdings.example,Daniel Tan,Analytics Manager,analytics,2024-12-09 18:21:51,2025-06-15 07:21:24,active,true,false,288 +U3746,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,ben.reed@silverholdings.example,Ben Reed,Insights Lead,analytics,2024-12-21 15:21:51,2025-06-20 04:58:57,active,true,false,283 +U3747,A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,CSM-EMEA,peter.romero@silverholdings.example,Peter Romero,Analytics Manager,analytics,2024-11-23 19:21:51,2025-05-06 18:27:28,inactive,false,false,328 +U3748,A1074,Granite Analytics,retail,NA,mid_market,CA,active,CSM-East,ava.petrova@graniteanalytics.example,Ava Petrova,Analytics Engineer,data,2024-08-19 04:20:24,2025-03-21 22:30:10,inactive,false,false,374 +U3749,A1074,Granite Analytics,retail,NA,mid_market,CA,active,CSM-East,lina.ng@graniteanalytics.example,Lina Ng,BI Analyst,analytics,2024-08-17 07:20:24,2025-06-18 08:54:23,active,true,false,285 +U3750,A1074,Granite Analytics,retail,NA,mid_market,CA,active,CSM-East,victor.turner@graniteanalytics.example,Victor Turner,Founder,executive,2024-08-11 03:20:24,2025-06-19 12:54:44,active,true,false,284 +U3751,A1074,Granite Analytics,retail,NA,mid_market,CA,active,CSM-East,jonas.morgan@graniteanalytics.example,Jonas Morgan,COO,executive,2024-09-14 23:20:24,2025-06-16 14:37:51,active,true,false,287 +U3752,A1074,Granite Analytics,retail,NA,mid_market,CA,active,CSM-East,aisha.hart@graniteanalytics.example,Aisha Hart,Technical Program Manager,product,2024-09-09 01:20:24,2025-06-27 12:45:13,active,true,false,276 +U3753,A1074,Granite Analytics,retail,NA,mid_market,CA,active,CSM-East,mateo.ng@graniteanalytics.example,Mateo Ng,FP&A Analyst,finance,2024-08-18 04:20:24,2025-06-13 09:29:25,active,true,false,290 +U3754,A1074,Granite Analytics,retail,NA,mid_market,CA,active,CSM-East,tara.dubois@graniteanalytics.example,Tara Dubois,CFO,executive,2024-08-29 03:20:24,2025-06-28 18:38:35,active,true,false,275 +U3755,A1074,Granite Analytics,retail,NA,mid_market,CA,active,CSM-East,nina.saeed@graniteanalytics.example,Nina Saeed,CFO,executive,2024-08-21 04:20:24,2025-06-22 05:11:17,active,true,false,281 +U3756,A1074,Granite Analytics,retail,NA,mid_market,CA,active,CSM-East,peter.park@graniteanalytics.example,Peter Park,Data Engineer,data,2024-08-19 23:20:24,2025-06-11 03:53:28,active,true,false,292 +U3757,A1074,Granite Analytics,retail,NA,mid_market,CA,active,CSM-East,leo.lopez@graniteanalytics.example,Leo Lopez,Controller,finance,2024-09-09 05:20:24,2025-06-22 07:18:23,active,true,false,281 +U3758,A1074,Granite Analytics,retail,NA,mid_market,CA,active,CSM-East,priya.park@graniteanalytics.example,Priya Park,CFO,executive,2024-09-09 06:20:24,2025-06-27 18:17:34,active,true,false,276 +U3759,A1074,Granite Analytics,retail,NA,mid_market,CA,active,CSM-East,peter.grant@graniteanalytics.example,Peter Grant,Founder,executive,2024-08-24 03:20:24,2025-06-14 09:02:20,active,true,false,289 +U3760,A1075,Cedar Labs,software,EMEA,smb,UK,active,CSM-EMEA,evan.reed@cedarlabs.example,Evan Reed,Data Platform Manager,data,2024-12-09 09:31:13,2025-06-12 03:45:35,active,true,false,291 +U3761,A1075,Cedar Labs,software,EMEA,smb,UK,active,CSM-EMEA,victor.rossi@cedarlabs.example,Victor Rossi,Operations Manager,operations,2024-11-04 11:31:13,2025-06-26 19:30:04,active,true,false,277 +U3762,A1075,Cedar Labs,software,EMEA,smb,UK,active,CSM-EMEA,olivia.morgan@cedarlabs.example,Olivia Morgan,Founder,executive,2024-11-23 09:31:13,2025-06-21 11:06:18,active,true,false,282 +U3763,A1075,Cedar Labs,software,EMEA,smb,UK,active,CSM-EMEA,leo.ward@cedarlabs.example,Leo Ward,Insights Lead,analytics,2024-12-15 07:31:13,2025-06-11 08:32:33,active,true,false,292 +U3764,A1075,Cedar Labs,software,EMEA,smb,UK,active,CSM-EMEA,mila.park@cedarlabs.example,Mila Park,COO,executive,2024-11-16 07:31:13,2025-06-17 03:49:57,active,true,false,286 +U3765,A1075,Cedar Labs,software,EMEA,smb,UK,active,CSM-EMEA,alma.brooks@cedarlabs.example,Alma Brooks,Workflow Analyst,operations,2024-12-11 13:31:13,2025-06-16 11:38:37,active,true,false,287 +U3766,A1075,Cedar Labs,software,EMEA,smb,UK,active,CSM-EMEA,kenji.alvarez@cedarlabs.example,Kenji Alvarez,Revenue Operations Manager,sales,2024-11-04 10:31:13,2025-06-29 05:05:14,active,true,false,274 +U3767,A1075,Cedar Labs,software,EMEA,smb,UK,active,CSM-EMEA,noah.meyer@cedarlabs.example,Noah Meyer,Finance Manager,finance,2024-11-22 14:31:13,2025-06-28 03:41:11,active,true,false,275 +U3768,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,jonas.lewis@atlassolutions.example,Jonas Lewis,Founder,executive,2025-03-19 05:32:44,2025-06-21 02:29:20,active,true,false,282 +U3769,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,lina.turner@atlassolutions.example,Lina Turner,Insights Lead,analytics,2025-04-03 03:32:44,2025-06-20 13:08:42,active,true,false,283 +U3770,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,derek.sato@atlassolutions.example,Derek Sato,Sales Analyst,sales,2025-02-28 21:32:44,2025-06-21 13:01:22,active,true,false,282 +U3771,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,zoe.shah@atlassolutions.example,Zoe Shah,Product Manager,product,2025-03-14 04:32:44,2025-06-29 17:56:01,active,true,false,274 +U3772,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,leo.singh@atlassolutions.example,Leo Singh,Finance Manager,finance,2025-04-08 01:32:44,2025-06-22 23:43:23,active,true,false,281 +U3773,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,ivy.meyer@atlassolutions.example,Ivy Meyer,Data Platform Manager,data,2025-02-27 21:32:44,2025-06-22 16:28:33,active,true,false,281 +U3774,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,ivy.price@atlassolutions.example,Ivy Price,Operations Manager,operations,2025-04-07 01:32:44,2025-06-24 12:07:04,active,true,false,279 +U3775,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,elena.hart@atlassolutions.example,Elena Hart,Data Engineer,data,2025-04-07 04:32:44,2025-06-14 17:08:38,active,true,false,289 +U3776,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,noah.desai@atlassolutions.example,Noah Desai,Operations Manager,operations,2025-04-10 01:32:44,2025-06-27 20:48:56,active,true,false,276 +U3777,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,ava.park@atlassolutions.example,Ava Park,Analytics Manager,analytics,2025-03-07 00:32:44,2025-06-28 10:10:34,active,true,false,275 +U3778,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,ben.lopez@atlassolutions.example,Ben Lopez,Operations Manager,operations,2025-03-29 21:32:44,2025-06-13 02:58:12,active,true,false,290 +U3779,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,maya.rahman@atlassolutions.example,Maya Rahman,Technical Program Manager,product,2025-04-09 03:32:44,2025-06-28 08:33:18,active,true,false,275 +U3780,A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,CSM-EMEA,ben.rossi@atlassolutions.example,Ben Rossi,Insights Lead,analytics,2025-04-04 02:32:44,2025-06-27 01:07:30,active,true,false,276 +U3781,A1077,Evergreen Foods,travel,NA,mid_market,CA,active,CSM-East,noah.singh@evergreenfoods.example,Noah Singh,Operations Director,operations,2024-09-18 23:41:36,2025-06-30 02:20:09,active,true,false,273 +U3782,A1077,Evergreen Foods,travel,NA,mid_market,CA,active,CSM-East,luis.tan@evergreenfoods.example,Luis Tan,Data Engineer,data,2024-10-11 01:41:36,2025-06-20 20:51:54,active,true,false,283 +U3783,A1077,Evergreen Foods,travel,NA,mid_market,CA,active,CSM-East,isla.tan@evergreenfoods.example,Isla Tan,Operations Manager,operations,2024-10-10 01:41:36,2025-06-10 19:42:33,active,true,false,293 +U3784,A1077,Evergreen Foods,travel,NA,mid_market,CA,active,CSM-East,olivia.rahman@evergreenfoods.example,Olivia Rahman,Controller,finance,2024-10-25 06:41:36,2025-05-23 19:28:15,inactive,false,false,311 +U3785,A1077,Evergreen Foods,travel,NA,mid_market,CA,active,CSM-East,owen.alvarez@evergreenfoods.example,Owen Alvarez,Demand Gen Manager,marketing,2024-10-17 05:41:36,2025-06-10 11:35:13,active,true,false,293 +U3786,A1077,Evergreen Foods,travel,NA,mid_market,CA,active,CSM-East,marcus.ng@evergreenfoods.example,Marcus Ng,Sales Analyst,sales,2024-10-18 07:41:36,,provisioned,false,false, +U3787,A1077,Evergreen Foods,travel,NA,mid_market,CA,active,CSM-East,noah.rossi@evergreenfoods.example,Noah Rossi,Product Manager,product,2024-10-25 23:41:36,2025-06-20 12:50:07,active,true,false,283 +U3788,A1077,Evergreen Foods,travel,NA,mid_market,CA,active,CSM-East,lena.khan@evergreenfoods.example,Lena Khan,Operations Manager,operations,2024-10-22 05:41:36,2025-04-30 18:59:18,inactive,false,false,334 +U3789,A1077,Evergreen Foods,travel,NA,mid_market,CA,active,CSM-East,marta.park@evergreenfoods.example,Marta Park,Revenue Operations Manager,sales,2024-09-21 03:41:36,2025-06-21 16:21:08,active,true,false,282 +U3790,A1077,Evergreen Foods,travel,NA,mid_market,CA,active,CSM-East,marta.park2@evergreenfoods.example,Marta Park,Marketing Operations Lead,marketing,2024-10-18 04:41:36,2025-05-09 18:32:05,inactive,false,false,325 +U3791,A1077,Evergreen Foods,travel,NA,mid_market,CA,active,CSM-East,ava.lewis@evergreenfoods.example,Ava Lewis,Insights Lead,analytics,2024-10-26 05:41:36,2025-05-05 16:27:13,inactive,false,false,329 +U3792,A1077,Evergreen Foods,travel,NA,mid_market,CA,active,CSM-East,derek.turner@evergreenfoods.example,Derek Turner,Controller,finance,2024-09-24 03:41:36,2025-06-12 09:12:37,active,true,false,291 +U3793,A1078,Beacon Foods,software,EMEA,mid_market,FR,active,CSM-EMEA,leo.lewis@beaconfoods.example,Leo Lewis,Finance Manager,finance,2025-03-08 07:08:06,2025-06-20 09:19:42,active,true,false,283 +U3794,A1078,Beacon Foods,software,EMEA,mid_market,FR,active,CSM-EMEA,tara.singh@beaconfoods.example,Tara Singh,Marketing Operations Lead,marketing,2025-04-02 00:08:06,2025-03-26 15:43:36,inactive,false,false,369 +U3795,A1078,Beacon Foods,software,EMEA,mid_market,FR,active,CSM-EMEA,marta.rahman@beaconfoods.example,Marta Rahman,Controller,finance,2025-02-28 01:08:06,2025-06-13 01:23:30,active,true,false,290 +U3796,A1078,Beacon Foods,software,EMEA,mid_market,FR,active,CSM-EMEA,mila.patel@beaconfoods.example,Mila Patel,Workflow Analyst,operations,2025-03-12 07:08:06,2025-06-18 13:15:11,active,true,false,285 +U3797,A1078,Beacon Foods,software,EMEA,mid_market,FR,active,CSM-EMEA,marta.desai@beaconfoods.example,Marta Desai,BI Analyst,analytics,2025-04-11 08:08:06,2025-06-12 19:40:01,active,true,false,291 +U3798,A1078,Beacon Foods,software,EMEA,mid_market,FR,active,CSM-EMEA,hannah.park@beaconfoods.example,Hannah Park,Product Manager,product,2025-03-04 01:08:06,2025-06-11 07:26:56,active,true,false,292 +U3799,A1078,Beacon Foods,software,EMEA,mid_market,FR,active,CSM-EMEA,sofia.hill@beaconfoods.example,Sofia Hill,Controller,finance,2025-03-05 03:08:06,2025-03-29 16:41:45,inactive,false,false,366 +U3800,A1078,Beacon Foods,software,EMEA,mid_market,FR,active,CSM-EMEA,owen.hart@beaconfoods.example,Owen Hart,Product Manager,product,2025-03-07 05:08:06,2025-06-13 15:15:29,active,true,false,290 +U3801,A1078,Beacon Foods,software,EMEA,mid_market,FR,active,CSM-EMEA,olivia.tan@beaconfoods.example,Olivia Tan,Technical Program Manager,product,2025-02-26 03:08:06,2025-06-21 18:55:44,active,true,false,282 +U3802,A1078,Beacon Foods,software,EMEA,mid_market,FR,active,CSM-EMEA,samir.meyer@beaconfoods.example,Samir Meyer,Finance Manager,finance,2025-03-15 05:08:06,2025-06-20 08:45:36,active,true,false,283 +U3803,A1078,Beacon Foods,software,EMEA,mid_market,FR,active,CSM-EMEA,derek.alvarez@beaconfoods.example,Derek Alvarez,Controller,finance,2025-03-24 03:08:06,2025-06-20 16:48:26,active,true,false,283 +U3804,A1078,Beacon Foods,software,EMEA,mid_market,FR,active,CSM-EMEA,kai.price@beaconfoods.example,Kai Price,Technical Program Manager,product,2025-02-27 07:08:06,2025-06-10 12:47:43,active,true,false,293 +U3805,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,tomas.petrova@novafoods.example,Tomas Petrova,VP Data,executive,2024-09-28 17:45:24,2025-06-19 20:05:39,active,true,false,284 +U3806,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,priya.shah@novafoods.example,Priya Shah,Data Platform Manager,data,2024-10-18 23:45:24,2025-05-26 08:01:25,inactive,false,false,308 +U3807,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,arjun.singh@novafoods.example,Arjun Singh,VP Data,executive,2024-09-03 19:45:24,2025-03-15 14:12:46,inactive,false,false,380 +U3808,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,noah.park@novafoods.example,Noah Park,Demand Gen Manager,marketing,2024-10-17 20:45:24,2025-04-09 14:33:59,inactive,false,false,355 +U3809,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,mei.singh@novafoods.example,Mei Singh,Operations Director,operations,2024-10-07 20:45:24,2025-06-27 17:46:41,active,true,false,276 +U3810,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,naomi.saeed@novafoods.example,Naomi Saeed,BI Analyst,analytics,2024-09-08 23:45:24,2025-06-22 22:42:00,active,true,false,281 +U3811,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,samir.rahman@novafoods.example,Samir Rahman,Data Engineer,data,2024-10-07 19:45:24,2025-06-29 01:58:46,active,true,false,274 +U3812,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,jonas.ng@novafoods.example,Jonas Ng,Workflow Analyst,operations,2024-09-06 20:45:24,2025-06-22 14:38:23,active,true,false,281 +U3813,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,marta.grant@novafoods.example,Marta Grant,Data Platform Manager,data,2024-09-10 22:45:24,2025-06-28 04:15:04,active,true,false,275 +U3814,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,maya.ward@novafoods.example,Maya Ward,COO,executive,2024-10-10 23:45:24,2025-06-15 23:13:13,active,true,false,288 +U3815,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,marta.singh@novafoods.example,Marta Singh,Insights Lead,analytics,2024-10-18 17:45:24,2025-06-22 21:43:39,active,true,false,281 +U3816,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,victor.hill@novafoods.example,Victor Hill,COO,executive,2024-09-26 22:45:24,2025-06-27 13:33:38,active,true,false,276 +U3817,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,ivy.price@novafoods.example,Ivy Price,Operations Director,operations,2024-09-06 21:45:24,2025-04-13 15:38:15,inactive,false,false,351 +U3818,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,tomas.fischer@novafoods.example,Tomas Fischer,Sales Analyst,sales,2024-09-19 22:45:24,2025-06-20 23:21:54,active,true,false,283 +U3819,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,tara.price@novafoods.example,Tara Price,Finance Manager,finance,2024-10-05 17:45:24,2025-06-21 09:38:13,active,true,false,282 +U3820,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,naomi.hart@novafoods.example,Naomi Hart,Workflow Analyst,operations,2024-09-16 22:45:24,2025-06-28 09:51:56,active,true,false,275 +U3821,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,aisha.fischer@novafoods.example,Aisha Fischer,Workflow Analyst,operations,2024-09-29 16:45:24,2025-06-24 04:04:37,active,true,false,279 +U3822,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,claire.desai@novafoods.example,Claire Desai,Finance Manager,finance,2024-09-26 19:45:24,2025-04-17 12:17:18,inactive,false,false,347 +U3823,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,luis.shah@novafoods.example,Luis Shah,Controller,finance,2024-09-29 15:45:24,2025-03-28 20:33:41,inactive,false,false,367 +U3824,A1079,Nova Foods,education,EMEA,enterprise,FR,active,CSM-EMEA,daniel.sato@novafoods.example,Daniel Sato,Product Manager,product,2024-09-10 23:45:24,2025-06-11 09:01:45,active,true,false,292 +U3825,A1080,Beacon Global,financial_services,EMEA,mid_market,NL,active,CSM-EMEA,leo.singh@beaconglobal.example,Leo Singh,Technical Program Manager,product,2024-09-05 10:30:12,2025-06-30 12:39:20,active,true,false,273 +U3826,A1080,Beacon Global,financial_services,EMEA,mid_market,NL,active,CSM-EMEA,ben.lewis@beaconglobal.example,Ben Lewis,Controller,finance,2024-09-21 10:30:12,2025-06-26 11:41:03,active,true,false,277 +U3827,A1080,Beacon Global,financial_services,EMEA,mid_market,NL,active,CSM-EMEA,owen.shah@beaconglobal.example,Owen Shah,Founder,executive,2024-09-20 09:30:12,2025-06-19 21:20:07,active,true,false,284 +U3828,A1080,Beacon Global,financial_services,EMEA,mid_market,NL,active,CSM-EMEA,samir.nash@beaconglobal.example,Samir Nash,Data Platform Manager,data,2024-09-09 07:30:12,2025-06-14 07:28:39,active,true,false,289 +U3829,A1080,Beacon Global,financial_services,EMEA,mid_market,NL,active,CSM-EMEA,luis.singh@beaconglobal.example,Luis Singh,Workflow Analyst,operations,2024-09-16 04:30:12,2025-06-25 07:25:16,active,true,false,278 +U3830,A1080,Beacon Global,financial_services,EMEA,mid_market,NL,active,CSM-EMEA,isla.brooks@beaconglobal.example,Isla Brooks,Demand Gen Manager,marketing,2024-09-13 03:30:12,2025-06-23 04:49:50,active,true,false,280 +U3831,A1080,Beacon Global,financial_services,EMEA,mid_market,NL,active,CSM-EMEA,kenji.romero@beaconglobal.example,Kenji Romero,BI Analyst,analytics,2024-08-27 10:30:12,2025-06-23 05:48:42,active,true,false,280 +U3832,A1080,Beacon Global,financial_services,EMEA,mid_market,NL,active,CSM-EMEA,ben.khan@beaconglobal.example,Ben Khan,Revenue Operations Manager,sales,2024-09-12 03:30:12,2025-06-14 16:09:12,active,true,false,289 +U3833,A1080,Beacon Global,financial_services,EMEA,mid_market,NL,active,CSM-EMEA,kai.romero@beaconglobal.example,Kai Romero,CFO,executive,2024-08-28 04:30:12,2025-06-12 16:51:57,active,true,false,291 +U3834,A1080,Beacon Global,financial_services,EMEA,mid_market,NL,active,CSM-EMEA,isla.rahman@beaconglobal.example,Isla Rahman,BI Analyst,analytics,2024-08-23 07:30:12,2025-06-14 00:50:38,active,true,false,289 +U3835,A1081,River Collective,financial_services,NA,mid_market,CA,active,CSM-East,kai.rahman@rivercollective.example,Kai Rahman,Data Platform Manager,data,2024-12-07 16:36:21,2025-06-11 17:04:47,active,true,false,292 +U3836,A1081,River Collective,financial_services,NA,mid_market,CA,active,CSM-East,jonas.kim@rivercollective.example,Jonas Kim,Operations Manager,operations,2024-11-26 20:36:21,2025-05-20 16:46:38,inactive,false,false,314 +U3837,A1081,River Collective,financial_services,NA,mid_market,CA,active,CSM-East,olivia.brooks@rivercollective.example,Olivia Brooks,Marketing Operations Lead,marketing,2024-12-25 17:36:21,2025-06-28 13:17:56,active,true,false,275 +U3838,A1081,River Collective,financial_services,NA,mid_market,CA,active,CSM-East,sofia.kim@rivercollective.example,Sofia Kim,Operations Manager,operations,2024-11-20 19:36:21,2025-06-20 04:08:21,active,true,false,283 +U3839,A1081,River Collective,financial_services,NA,mid_market,CA,active,CSM-East,tomas.turner@rivercollective.example,Tomas Turner,Analytics Engineer,data,2024-12-27 17:36:21,,provisioned,false,false, +U3840,A1081,River Collective,financial_services,NA,mid_market,CA,active,CSM-East,arjun.hill@rivercollective.example,Arjun Hill,Marketing Operations Lead,marketing,2024-12-06 20:36:21,2025-06-30 19:59:33,active,true,false,273 +U3841,A1081,River Collective,financial_services,NA,mid_market,CA,active,CSM-East,sofia.reed@rivercollective.example,Sofia Reed,FP&A Analyst,finance,2024-12-21 16:36:21,2025-06-23 08:08:13,active,true,false,280 +U3842,A1081,River Collective,financial_services,NA,mid_market,CA,active,CSM-East,ivy.park@rivercollective.example,Ivy Park,Data Engineer,data,2024-12-16 18:36:21,2025-06-14 08:30:24,active,true,false,289 +U3843,A1081,River Collective,financial_services,NA,mid_market,CA,active,CSM-East,maya.brooks@rivercollective.example,Maya Brooks,Technical Program Manager,product,2024-12-25 18:36:21,2025-06-19 12:27:19,active,true,false,284 +U3844,A1082,Summit Manufacturing,manufacturing,NA,mid_market,US,churned,CSM-East,helena.hart@summitmanufacturing.example,Helena Hart,BI Analyst,analytics,2024-11-27 03:18:31,2025-04-08 17:07:37,inactive,false,false,356 +U3845,A1082,Summit Manufacturing,manufacturing,NA,mid_market,US,churned,CSM-East,olivia.lewis@summitmanufacturing.example,Olivia Lewis,Analytics Manager,analytics,2024-11-30 03:18:31,2025-05-06 13:24:37,inactive,false,false,328 +U3846,A1082,Summit Manufacturing,manufacturing,NA,mid_market,US,churned,CSM-East,samir.lopez@summitmanufacturing.example,Samir Lopez,Technical Program Manager,product,2024-12-02 00:18:31,2025-04-28 12:58:05,inactive,false,false,336 +U3847,A1082,Summit Manufacturing,manufacturing,NA,mid_market,US,churned,CSM-East,samir.romero@summitmanufacturing.example,Samir Romero,Controller,finance,2024-11-17 02:18:31,2025-06-10 12:34:47,active,true,false,293 +U3848,A1082,Summit Manufacturing,manufacturing,NA,mid_market,US,churned,CSM-East,kenji.price@summitmanufacturing.example,Kenji Price,Technical Program Manager,product,2024-12-20 20:18:31,2025-03-08 20:38:31,inactive,false,false,387 +U3849,A1082,Summit Manufacturing,manufacturing,NA,mid_market,US,churned,CSM-East,isla.romero@summitmanufacturing.example,Isla Romero,Product Manager,product,2024-12-09 01:18:31,2025-03-18 12:52:29,inactive,false,false,377 +U3850,A1082,Summit Manufacturing,manufacturing,NA,mid_market,US,churned,CSM-East,maya.grant@summitmanufacturing.example,Maya Grant,Technical Program Manager,product,2024-11-29 02:18:31,2025-06-28 07:54:46,active,true,false,275 +U3851,A1083,Falcon Works,education,NA,mid_market,CA,active,CSM-East,evan.cole@falconworks.example,Evan Cole,Marketing Operations Lead,marketing,2025-02-13 05:17:30,2025-06-15 15:49:40,active,true,false,288 +U3852,A1083,Falcon Works,education,NA,mid_market,CA,active,CSM-East,zoe.rossi@falconworks.example,Zoe Rossi,Founder,executive,2025-01-22 08:17:30,2025-03-21 15:12:23,inactive,false,false,374 +U3853,A1083,Falcon Works,education,NA,mid_market,CA,active,CSM-East,maya.tan@falconworks.example,Maya Tan,Revenue Operations Manager,sales,2025-01-22 09:17:30,2025-06-23 16:26:17,active,true,false,280 +U3854,A1083,Falcon Works,education,NA,mid_market,CA,active,CSM-East,mei.sato@falconworks.example,Mei Sato,Workflow Analyst,operations,2025-01-13 02:17:30,2025-06-24 02:59:33,active,true,false,279 +U3855,A1083,Falcon Works,education,NA,mid_market,CA,active,CSM-East,zoe.saeed@falconworks.example,Zoe Saeed,BI Analyst,analytics,2025-02-17 01:17:30,2025-04-22 01:50:37,inactive,false,false,342 +U3856,A1083,Falcon Works,education,NA,mid_market,CA,active,CSM-East,mila.lopez@falconworks.example,Mila Lopez,Product Manager,product,2025-02-01 01:17:30,2025-06-18 03:09:38,active,true,false,285 +U3857,A1083,Falcon Works,education,NA,mid_market,CA,active,CSM-East,ivy.price@falconworks.example,Ivy Price,BI Analyst,analytics,2025-02-17 09:17:30,2025-06-19 01:34:21,active,true,false,284 +U3858,A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,CSM-East,priya.patel@silverfoods.example,Priya Patel,Analytics Engineer,data,2025-01-02 19:11:54,2025-06-10 10:00:19,active,true,false,293 +U3859,A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,CSM-East,noah.tan@silverfoods.example,Noah Tan,Founder,executive,2025-01-12 11:11:54,2025-05-07 06:45:55,inactive,false,false,327 +U3860,A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,CSM-East,ivy.keller@silverfoods.example,Ivy Keller,Marketing Operations Lead,marketing,2024-12-17 16:11:54,2025-06-25 11:40:06,active,true,false,278 +U3861,A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,CSM-East,marcus.romero@silverfoods.example,Marcus Romero,Technical Program Manager,product,2024-12-08 16:11:54,2025-06-16 06:58:38,active,true,false,287 +U3862,A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,CSM-East,marcus.turner@silverfoods.example,Marcus Turner,Demand Gen Manager,marketing,2024-12-10 16:11:54,2025-06-16 00:54:47,active,true,false,287 +U3863,A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,CSM-East,tomas.park@silverfoods.example,Tomas Park,Workflow Analyst,operations,2025-01-04 12:11:54,2025-06-11 18:21:09,active,true,false,292 +U3864,A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,CSM-East,priya.kim@silverfoods.example,Priya Kim,Founder,executive,2024-12-15 11:11:54,2025-03-30 14:28:42,inactive,false,false,365 +U3865,A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,CSM-East,mila.ng@silverfoods.example,Mila Ng,Operations Director,operations,2025-01-19 11:11:54,2025-06-17 10:48:05,active,true,false,286 +U3866,A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,CSM-East,lina.morgan@silverfoods.example,Lina Morgan,Workflow Analyst,operations,2025-01-02 14:11:54,2025-06-29 09:44:14,active,true,false,274 +U3867,A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,CSM-East,mila.chen@silverfoods.example,Mila Chen,Technical Program Manager,product,2025-01-05 17:11:54,2025-06-25 07:43:40,active,true,false,278 +U3868,A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,CSM-East,marcus.silva@silverfoods.example,Marcus Silva,Analytics Engineer,data,2025-01-09 16:11:54,2025-06-12 21:55:06,active,true,false,291 +U3869,A1085,Sierra Capital,financial_services,NA,smb,US,active,CSM-East,maya.keller@sierracapital.example,Maya Keller,Marketing Operations Lead,marketing,2024-10-26 18:19:51,2025-06-20 12:15:15,active,true,false,283 +U3870,A1085,Sierra Capital,financial_services,NA,smb,US,active,CSM-East,leo.park@sierracapital.example,Leo Park,Finance Manager,finance,2024-09-24 10:19:51,2025-06-17 20:33:32,active,true,false,286 +U3871,A1085,Sierra Capital,financial_services,NA,smb,US,active,CSM-East,helena.ng@sierracapital.example,Helena Ng,VP Data,executive,2024-10-23 18:19:51,2025-06-13 20:52:19,active,true,false,290 +U3872,A1085,Sierra Capital,financial_services,NA,smb,US,active,CSM-East,leo.singh@sierracapital.example,Leo Singh,VP Data,executive,2024-10-09 10:19:51,2025-06-26 06:07:28,active,true,false,277 +U3873,A1086,River Labs,software,EMEA,smb,FR,active,CSM-EMEA,hannah.alvarez@riverlabs.example,Hannah Alvarez,Analytics Engineer,data,2025-03-14 20:58:12,2025-03-20 20:58:21,inactive,false,false,375 +U3874,A1086,River Labs,software,EMEA,smb,FR,active,CSM-EMEA,tomas.silva@riverlabs.example,Tomas Silva,Demand Gen Manager,marketing,2025-04-06 00:58:12,2025-06-18 07:54:22,active,true,false,285 +U3875,A1086,River Labs,software,EMEA,smb,FR,active,CSM-EMEA,helena.silva@riverlabs.example,Helena Silva,Analytics Manager,analytics,2025-03-13 19:58:12,2025-06-29 10:44:14,active,true,false,274 +U3876,A1086,River Labs,software,EMEA,smb,FR,active,CSM-EMEA,priya.rossi@riverlabs.example,Priya Rossi,Marketing Operations Lead,marketing,2025-04-01 20:58:12,2025-06-21 14:46:38,active,true,false,282 +U3877,A1086,River Labs,software,EMEA,smb,FR,active,CSM-EMEA,mila.reed@riverlabs.example,Mila Reed,Demand Gen Manager,marketing,2025-03-13 23:58:12,2025-06-14 18:19:48,active,true,false,289 +U3878,A1087,Apex Capital,energy,NA,enterprise,CA,churned,CSM-East,maya.keller@apexcapital.example,Maya Keller,Founder,executive,2024-12-31 10:20:17,2025-06-20 23:33:22,active,true,false,283 +U3879,A1087,Apex Capital,energy,NA,enterprise,CA,churned,CSM-East,mei.fischer@apexcapital.example,Mei Fischer,Data Engineer,data,2024-12-08 12:20:17,2025-03-26 18:30:05,inactive,false,false,369 +U3880,A1087,Apex Capital,energy,NA,enterprise,CA,churned,CSM-East,kenji.silva@apexcapital.example,Kenji Silva,Marketing Operations Lead,marketing,2024-12-08 09:20:17,2025-06-16 15:30:10,active,true,false,287 +U3881,A1087,Apex Capital,energy,NA,enterprise,CA,churned,CSM-East,marcus.romero@apexcapital.example,Marcus Romero,FP&A Analyst,finance,2025-01-06 10:20:17,2025-04-14 15:01:53,inactive,false,false,350 +U3882,A1087,Apex Capital,energy,NA,enterprise,CA,churned,CSM-East,victor.fischer@apexcapital.example,Victor Fischer,COO,executive,2024-12-29 15:20:17,,provisioned,false,false, +U3883,A1087,Apex Capital,energy,NA,enterprise,CA,churned,CSM-East,peter.lewis@apexcapital.example,Peter Lewis,Marketing Operations Lead,marketing,2024-12-30 15:20:17,2025-04-12 00:54:04,inactive,false,false,352 +U3884,A1087,Apex Capital,energy,NA,enterprise,CA,churned,CSM-East,victor.desai@apexcapital.example,Victor Desai,Demand Gen Manager,marketing,2024-12-05 14:20:17,2025-06-25 13:41:11,active,true,false,278 +U3885,A1087,Apex Capital,energy,NA,enterprise,CA,churned,CSM-East,evan.lewis@apexcapital.example,Evan Lewis,Product Manager,product,2024-12-01 16:20:17,2025-03-17 14:08:54,inactive,false,false,378 +U3886,A1087,Apex Capital,energy,NA,enterprise,CA,churned,CSM-East,sofia.kim@apexcapital.example,Sofia Kim,CFO,executive,2024-12-29 16:20:17,2025-06-27 14:03:13,active,true,false,276 +U3887,A1088,Cedar Partners,energy,APAC,smb,NZ,active,CSM-APAC,mateo.turner@cedarpartners.example,Mateo Turner,Technical Program Manager,product,2025-02-24 21:19:15,2025-06-29 11:34:19,active,true,false,274 +U3888,A1088,Cedar Partners,energy,APAC,smb,NZ,active,CSM-APAC,helena.desai@cedarpartners.example,Helena Desai,Marketing Operations Lead,marketing,2025-02-19 22:19:15,2025-06-19 21:37:42,active,true,false,284 +U3889,A1088,Cedar Partners,energy,APAC,smb,NZ,active,CSM-APAC,daniel.singh@cedarpartners.example,Daniel Singh,Sales Analyst,sales,2025-03-15 17:19:15,2025-04-23 18:52:44,inactive,false,false,341 +U3890,A1088,Cedar Partners,energy,APAC,smb,NZ,active,CSM-APAC,elena.lewis@cedarpartners.example,Elena Lewis,Operations Manager,operations,2025-03-07 23:19:15,2025-06-24 11:10:57,active,true,false,279 +U3891,A1088,Cedar Partners,energy,APAC,smb,NZ,active,CSM-APAC,priya.ward@cedarpartners.example,Priya Ward,CFO,executive,2025-03-07 22:19:15,2025-06-19 05:05:28,active,true,false,284 +U3892,A1088,Cedar Partners,energy,APAC,smb,NZ,active,CSM-APAC,tara.khan@cedarpartners.example,Tara Khan,Analytics Manager,analytics,2025-02-08 17:19:15,2025-06-16 17:44:15,active,true,false,287 +U3893,A1089,Beacon Network,healthcare,NA,mid_market,US,active,CSM-East,tomas.cole@beaconnetwork.example,Tomas Cole,Operations Manager,operations,2024-12-09 09:16:08,2025-06-12 04:31:51,active,true,false,291 +U3894,A1089,Beacon Network,healthcare,NA,mid_market,US,active,CSM-East,evan.patel@beaconnetwork.example,Evan Patel,Operations Director,operations,2024-11-11 06:16:08,2025-06-15 03:41:13,active,true,false,288 +U3895,A1089,Beacon Network,healthcare,NA,mid_market,US,active,CSM-East,samir.tan@beaconnetwork.example,Samir Tan,VP Data,executive,2024-11-26 05:16:08,2025-06-24 22:52:31,active,true,false,279 +U3896,A1089,Beacon Network,healthcare,NA,mid_market,US,active,CSM-East,naomi.nash@beaconnetwork.example,Naomi Nash,BI Analyst,analytics,2024-11-26 05:16:08,2025-06-29 07:12:18,active,true,false,274 +U3897,A1089,Beacon Network,healthcare,NA,mid_market,US,active,CSM-East,noah.morgan@beaconnetwork.example,Noah Morgan,Analytics Engineer,data,2024-12-18 09:16:08,2025-05-24 08:40:56,inactive,false,false,310 +U3898,A1089,Beacon Network,healthcare,NA,mid_market,US,active,CSM-East,noah.patel@beaconnetwork.example,Noah Patel,Marketing Operations Lead,marketing,2024-12-07 04:16:08,2025-06-29 08:51:48,active,true,false,274 +U3899,A1089,Beacon Network,healthcare,NA,mid_market,US,active,CSM-East,arjun.ward@beaconnetwork.example,Arjun Ward,Technical Program Manager,product,2024-11-12 06:16:08,2025-06-20 16:47:24,active,true,false,283 +U3900,A1089,Beacon Network,healthcare,NA,mid_market,US,active,CSM-East,kai.reed@beaconnetwork.example,Kai Reed,Technical Program Manager,product,2024-12-12 01:16:08,2025-06-24 07:25:22,active,true,false,279 +U3901,A1089,Beacon Network,healthcare,NA,mid_market,US,active,CSM-East,naomi.singh@beaconnetwork.example,Naomi Singh,Analytics Engineer,data,2024-12-19 06:16:08,2025-06-20 11:10:15,active,true,false,283 +U3902,A1089,Beacon Network,healthcare,NA,mid_market,US,active,CSM-East,ivy.morgan@beaconnetwork.example,Ivy Morgan,Analytics Manager,analytics,2024-12-14 01:16:08,2025-06-11 01:45:47,active,true,false,292 +U3903,A1089,Beacon Network,healthcare,NA,mid_market,US,active,CSM-East,naomi.shah@beaconnetwork.example,Naomi Shah,CFO,executive,2024-12-01 04:16:08,,provisioned,false,false, +U3904,A1089,Beacon Network,healthcare,NA,mid_market,US,active,CSM-East,lina.tan@beaconnetwork.example,Lina Tan,Product Manager,product,2024-11-28 08:16:08,2025-06-17 16:28:07,active,true,false,286 +U3905,A1090,Vertex Labs,energy,NA,smb,US,active,CSM-East,aisha.hill@vertexlabs.example,Aisha Hill,Finance Manager,finance,2024-11-11 05:37:20,2025-06-15 02:55:30,active,true,false,288 +U3906,A1090,Vertex Labs,energy,NA,smb,US,active,CSM-East,tomas.kim@vertexlabs.example,Tomas Kim,BI Analyst,analytics,2024-10-12 02:37:20,2025-06-11 23:45:57,active,true,false,292 +U3907,A1090,Vertex Labs,energy,NA,smb,US,active,CSM-East,ava.brooks@vertexlabs.example,Ava Brooks,Founder,executive,2024-10-08 03:37:20,2025-06-20 06:20:38,active,true,false,283 +U3908,A1090,Vertex Labs,energy,NA,smb,US,active,CSM-East,noah.rahman@vertexlabs.example,Noah Rahman,Operations Director,operations,2024-11-01 04:37:20,2025-06-11 23:03:26,active,true,false,292 diff --git a/tasks/helixops_saas008/seeds/solution__mart_account_360.csv b/tasks/helixops_saas008/seeds/solution__mart_account_360.csv new file mode 100644 index 00000000..c74dda00 --- /dev/null +++ b/tasks/helixops_saas008/seeds/solution__mart_account_360.csv @@ -0,0 +1,91 @@ +account_id,account_name,industry,region,segment,billing_country,customer_status,is_churned,employee_band,owner_team,workspace_count,active_workspace_count,sandbox_workspace_count,primary_workspace_name,user_count,active_user_count,plan_name,plan_family,billing_cycle,support_tier,contracted_seats,discount_pct,latest_invoice_status,latest_payment_status,latest_invoice_date,latest_payment_date,latest_outstanding_amount_usd,has_past_due_invoice,latest_revenue_month,latest_recurring_revenue_usd,latest_one_time_revenue_usd,latest_total_revenue_usd,latest_collected_revenue_usd,latest_usage_date,latest_daily_active_users,latest_daily_projects_run,latest_daily_api_calls,avg_active_users_7d,avg_active_users_30d,total_projects_run_30d,total_api_calls_30d,peak_storage_gb_30d,lifetime_ticket_count,open_ticket_count,avg_csat_score,avg_first_response_minutes +A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,false,5000+,CSM-EMEA,4,4,0,northwind-core,12,11,Enterprise Monthly,enterprise,monthly,premium,14,5.0,paid,paid,2025-06-01,2025-06-14,0.0,false,2025-06-01,2470.0,0.0,2964.0,2964.0,2025-06-30,7,67,3741,0.0,7.466666666666667,1853,112662,48.3,4,0,4.25,214.0 +A1039,Nova Group,media,EMEA,smb,FR,active,false,11-50,CSM-EMEA,1,1,0,nova-core,7,7,Starter Monthly,starter,monthly,standard,8,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,2025-06-01,500.0,0.0,600.0,600.0,2025-06-30,6,20,1351,0.0,4.233333333333333,457,27512,23.0,3,0,5.0,127.0 +A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,false,1000+,CSM-APAC,4,4,1,lighthouse-core,18,16,Enterprise Monthly,enterprise,monthly,premium,21,0.0,paid,paid,2025-06-01,2025-06-08,0.0,false,2025-06-01,2600.0,0.0,2834.0,2834.0,2025-06-30,12,86,4604,0.0,10.3,2105,114513,54.4,3,1,4.0,313.6666666666667 +A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,false,1000+,CSM-East,4,4,0,nova-core,14,14,Enterprise Annual,enterprise,annual,premium,17,5.0,paid,paid,2025-01-01,2025-01-10,0.0,false,2025-01-01,25650.0,0.0,25650.0,25650.0,2025-06-30,13,81,5167,0.0,10.6,2148,126398,70.5,5,0,4.2,179.4 +A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,false,5000+,CSM-APAC,3,3,0,orchid-core,17,14,Enterprise Annual,enterprise,annual,premium,18,10.0,paid,paid,2025-03-01,2025-03-07,0.0,false,2025-03-01,24300.0,0.0,26730.0,26730.0,2025-06-30,12,76,4053,0.0,11.433333333333334,1910,112002,57.2,4,3,4.0,200.5 +A1090,Vertex Labs,energy,NA,smb,US,active,false,11-50,CSM-East,1,1,0,vertex-core,4,4,Starter Monthly,starter,monthly,standard,5,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,2025-06-01,500.0,0.0,500.0,500.0,2025-06-30,2,10,707,0.0,2.3,294,16801,23.7,2,1,4.0,96.5 +A1009,Summit Group,financial_services,NA,mid_market,US,active,false,501-1000,CSM-East,2,2,0,summit-core,13,11,Enterprise Monthly,enterprise,monthly,premium,13,10.0,paid,paid,2025-06-01,2025-06-10,0.0,false,2025-06-01,2340.0,0.0,2340.0,2340.0,2025-06-30,6,32,2031,0.0,7.333333333333333,1001,61468,27.7,3,0,4.0,27.666666666666668 +A1021,Apex Logistics,software,NA,smb,US,active,false,11-50,CSM-East,1,1,0,apex-core,7,7,Starter Monthly,starter,monthly,standard,8,0.0,paid,paid,2025-06-01,2025-06-09,0.0,false,2025-06-01,500.0,0.0,500.0,500.0,2025-06-30,5,18,897,0.0,4.166666666666667,469,27805,25.9,2,0,4.0,94.0 +A1072,Summit Ventures,software,NA,enterprise,US,active,false,5000+,CSM-East,3,3,1,summit-core,18,15,Enterprise Annual,enterprise,annual,premium,20,10.0,paid,paid,2025-01-01,2025-01-07,0.0,false,2025-01-01,24300.0,2500.0,26800.0,26800.0,2025-06-30,13,71,3915,0.0,9.5,1733,94474,70.8,4,0,3.75,204.25 +A1077,Evergreen Foods,travel,NA,mid_market,CA,active,false,201-500,CSM-East,3,3,0,evergreen-core,12,7,Growth Monthly,growth,monthly,priority,15,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,6,38,2104,0.0,5.233333333333333,1003,58101,36.6,4,0,4.0,45.0 +A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,false,1000+,CSM-EMEA,4,4,0,bluepeak-core,19,19,Enterprise Annual,enterprise,annual,premium,24,10.0,paid,paid,2025-01-01,2025-01-12,0.0,false,2025-01-01,24300.0,2000.0,31560.0,31560.0,2025-06-30,13,87,4443,0.0,12.733333333333333,2320,136008,66.4,6,1,4.0,146.83333333333334 +A1053,Bright Health,media,NA,mid_market,CA,active,false,501-1000,CSM-East,3,3,0,bright-core,10,9,Growth Monthly,growth,monthly,priority,12,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,7,45,2733,0.0,6.133333333333334,1076,62016,44.5,3,0,5.0,250.66666666666666 +A1081,River Collective,financial_services,NA,mid_market,CA,active,false,201-500,CSM-East,3,3,1,river-core,9,7,Enterprise Monthly,enterprise,monthly,premium,10,0.0,paid,paid,2025-06-01,2025-06-13,0.0,false,2025-06-01,2600.0,0.0,2600.0,2600.0,2025-06-30,5,35,1604,0.0,5.233333333333333,1010,54352,29.7,4,1,4.0,199.25 +A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,active,false,201-500,CSM-EMEA,2,2,0,summit-core,9,8,Growth Monthly,growth,monthly,priority,11,10.0,paid,paid,2025-06-01,2025-06-11,0.0,false,2025-06-01,1350.0,0.0,1620.0,1620.0,2025-06-30,7,35,1779,0.0,4.566666666666666,767,44175,35.2,4,0,4.5,203.75 +A1023,Atlas Systems,education,NA,smb,CA,active,false,11-50,CSM-East,1,1,0,atlas-core,8,8,Starter Monthly,starter,monthly,standard,10,20.0,past_due,failed,2025-06-01,2025-06-18,400.0,true,2025-06-01,400.0,0.0,400.0,0.0,2025-06-30,6,18,1272,0.0,5.0,532,31779,17.9,3,1,4.5,194.33333333333334 +A1044,Summit Holdings,software,EMEA,smb,NL,active,false,11-50,CSM-EMEA,1,1,0,summit-core,5,5,Growth Monthly,growth,monthly,priority,6,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,2,9,669,0.0,3.3333333333333335,391,24890,16.7,3,0,4.333333333333333,73.0 +A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,false,201-500,CSM-EMEA,2,2,0,silver-core,13,10,Enterprise Monthly,enterprise,monthly,premium,13,0.0,paid,paid,2025-06-01,2025-06-10,0.0,false,2025-06-01,2600.0,0.0,3120.0,3120.0,2025-06-30,9,39,1871,0.0,8.133333333333333,1075,63469,22.9,4,1,3.3333333333333335,101.25 +A1080,Beacon Global,financial_services,EMEA,mid_market,NL,active,false,201-500,CSM-EMEA,2,2,0,beacon-core,10,10,Growth Monthly,growth,monthly,priority,11,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,6,33,1980,0.0,7.133333333333334,959,58564,45.2,5,2,4.0,358.8 +A1086,River Labs,software,EMEA,smb,FR,active,false,11-50,CSM-EMEA,1,1,0,river-core,5,4,Starter Monthly,starter,monthly,standard,6,0.0,paid,paid,2025-06-01,2025-06-07,0.0,false,2025-06-01,500.0,0.0,600.0,600.0,2025-06-30,3,13,841,0.0,2.5,314,18915,28.2,2,1,3.0,88.5 +A1008,Pacific Works,software,EMEA,mid_market,UK,active,false,201-500,CSM-EMEA,3,3,0,pacific-core,11,11,Enterprise Monthly,enterprise,monthly,premium,12,5.0,paid,paid,2025-06-01,2025-06-09,0.0,false,2025-06-01,2470.0,0.0,2964.0,2964.0,2025-06-30,8,46,2869,0.0,8.066666666666666,1255,75716,25.8,3,0,3.6666666666666665,440.6666666666667 +A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,false,501-1000,CSM-EMEA,2,2,1,pioneer-core,13,12,Growth Monthly,growth,monthly,priority,13,0.0,past_due,failed,2025-06-01,2025-06-20,1800.0,true,2025-06-01,1500.0,0.0,1800.0,0.0,2025-06-30,5,29,1453,0.0,4.933333333333334,797,38707,33.5,3,0,4.333333333333333,158.0 +A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,false,5000+,CSM-East,3,3,0,bright-core,13,11,Enterprise Annual,enterprise,annual,premium,13,10.0,paid,paid,2025-01-01,2025-01-12,0.0,false,2025-01-01,24300.0,0.0,24300.0,24300.0,2025-06-30,10,69,4556,0.0,8.666666666666666,1634,96476,69.2,3,0,4.333333333333333,91.33333333333333 +A1078,Beacon Foods,software,EMEA,mid_market,FR,active,false,501-1000,CSM-EMEA,3,3,0,beacon-core,12,10,Growth Monthly,growth,monthly,priority,13,5.0,paid,paid,2025-06-01,2025-06-13,0.0,false,2025-06-01,1425.0,0.0,1710.0,1710.0,2025-06-30,7,43,2894,0.0,6.433333333333334,1081,63211,36.9,4,1,4.0,406.25 +A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,false,501-1000,CSM-East,2,2,0,silver-core,11,9,Enterprise Monthly,enterprise,monthly,premium,12,0.0,paid,paid,2025-06-01,2025-06-06,0.0,false,2025-06-01,2600.0,0.0,2600.0,2600.0,2025-06-30,8,41,1914,0.0,6.733333333333333,970,59696,45.6,4,1,3.0,175.75 +A1085,Sierra Capital,financial_services,NA,smb,US,active,false,11-50,CSM-East,1,1,0,sierra-core,4,4,Starter Monthly,starter,monthly,standard,5,0.0,paid,paid,2025-06-01,2025-06-13,0.0,false,2025-06-01,500.0,0.0,500.0,500.0,2025-06-30,4,16,993,0.0,2.566666666666667,335,20055,22.4,2,0,4.0,217.5 +A1089,Beacon Network,healthcare,NA,mid_market,US,active,false,201-500,CSM-East,2,2,0,beacon-core,12,10,Growth Monthly,growth,monthly,priority,15,0.0,paid,paid,2025-06-01,2025-06-09,0.0,false,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,9,41,2330,0.0,7.566666666666666,1041,63704,36.8,2,0,5.0,496.0 +A1022,Summit Collective,retail,APAC,smb,NZ,active,false,51-200,CSM-APAC,2,2,1,summit-core,5,3,Growth Monthly,growth,monthly,priority,6,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,2025-06-01,1500.0,0.0,1650.0,1650.0,2025-06-30,3,17,909,0.0,1.9666666666666666,374,17727,18.4,1,0,5.0,140.0 +A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,false,1000+,CSM-APAC,4,4,1,helio-core,16,15,Enterprise Monthly,enterprise,monthly,premium,19,0.0,open,,2025-06-01,,2834.0,false,2025-06-01,2600.0,0.0,2834.0,0.0,2025-06-30,10,78,4884,0.0,8.033333333333333,1892,98846,60.8,7,0,4.571428571428571,72.14285714285714 +A1083,Falcon Works,education,NA,mid_market,CA,active,false,501-1000,CSM-East,2,2,1,falcon-core,7,5,Growth Monthly,growth,monthly,priority,9,20.0,paid,failed,2025-06-01,2025-06-15,0.0,false,2025-06-01,1200.0,0.0,1200.0,1200.0,2025-06-30,5,31,1797,0.0,2.8,618,30719,35.6,4,0,3.75,284.75 +A1007,Silver Systems,energy,EMEA,smb,FR,active,false,51-200,CSM-EMEA,1,1,0,silver-core,4,3,Starter Monthly,starter,monthly,standard,5,0.0,open,,2025-06-01,,600.0,false,2025-06-01,500.0,0.0,600.0,0.0,2025-06-30,2,10,676,0.0,1.6,242,14726,25.9,3,0,4.666666666666667,420.3333333333333 +A1012,Cedar Ventures,retail,APAC,smb,JP,active,false,11-50,CSM-APAC,2,2,1,cedar-core,7,6,Starter Monthly,starter,monthly,standard,8,0.0,paid,failed,2025-06-01,2025-06-15,0.0,false,2025-06-01,500.0,0.0,550.0,550.0,2025-06-30,6,27,1505,0.0,3.8333333333333335,530,29420,26.5,3,0,4.333333333333333,78.0 +A1013,River Foods,manufacturing,NA,mid_market,US,active,false,501-1000,CSM-East,3,3,0,river-core,7,5,Growth Monthly,growth,monthly,priority,7,5.0,paid,paid,2025-06-01,2025-06-14,0.0,false,2025-06-01,1425.0,0.0,1425.0,1425.0,2025-06-30,6,40,2273,0.0,4.433333333333334,930,51065,28.6,3,0,5.0,274.0 +A1031,Helio Holdings,healthcare,APAC,mid_market,AU,active,false,201-500,CSM-APAC,3,3,0,helio-core,10,10,Growth Monthly,growth,monthly,priority,13,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,2025-06-01,1500.0,0.0,1650.0,1650.0,2025-06-30,8,46,2999,0.0,6.566666666666666,1115,63242,41.6,4,1,3.0,220.0 +A1056,Delta Global,retail,APAC,mid_market,AU,active,false,201-500,CSM-APAC,3,3,0,delta-core,11,10,Growth Monthly,growth,monthly,priority,11,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,2025-06-01,1500.0,0.0,1650.0,1650.0,2025-06-30,9,50,3199,0.0,6.6,1111,67843,45.1,4,0,3.75,162.5 +A1057,Harbor Partners,education,APAC,enterprise,NZ,active,false,1000+,CSM-APAC,4,4,1,harbor-core,13,12,Enterprise Annual,enterprise,annual,premium,13,20.0,paid,paid,2025-01-01,2025-01-09,0.0,false,2025-01-01,21600.0,0.0,23760.0,23760.0,2025-06-30,7,68,3920,0.0,7.533333333333333,1853,101155,57.9,7,2,3.4,207.71428571428572 +A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,false,201-500,CSM-EMEA,2,2,0,atlas-core,13,13,Growth Monthly,growth,monthly,priority,16,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,10,47,2790,0.0,9.333333333333334,1181,72164,43.5,3,1,5.0,169.33333333333334 +A1010,Orchid Foods,education,NA,smb,CA,active,false,11-50,CSM-East,1,1,0,orchid-core,8,7,Starter Monthly,starter,monthly,standard,10,20.0,paid,paid,2025-06-01,2025-06-07,0.0,false,2025-06-01,400.0,0.0,400.0,400.0,2025-06-30,4,13,595,0.0,4.3,478,29531,28.3,2,0,3.0,36.0 +A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,false,201-500,CSM-East,2,2,0,lighthouse-core,12,12,Growth Monthly,growth,monthly,priority,13,0.0,paid,paid,2025-06-01,2025-06-05,0.0,false,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,11,56,3786,0.0,8.966666666666667,1158,69619,38.4,2,0,4.5,555.0 +A1046,Pioneer Solutions,education,NA,smb,CA,active,false,51-200,CSM-East,1,1,0,pioneer-core,5,4,Growth Monthly,growth,monthly,priority,5,20.0,paid,paid,2025-06-01,2025-06-07,0.0,false,2025-06-01,1200.0,0.0,1200.0,1200.0,2025-06-30,3,15,877,0.0,2.533333333333333,349,21104,17.4,3,1,5.0,251.0 +A1051,Lighthouse Systems,media,EMEA,smb,UK,active,false,51-200,CSM-EMEA,1,1,0,lighthouse-core,7,4,Growth Monthly,growth,monthly,priority,7,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,1,7,416,0.0,2.5,327,19800,27.7,3,0,3.6666666666666665,425.0 +A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,false,1000+,CSM-East,3,2,1,nova-core,16,15,Enterprise Annual,enterprise,annual,premium,18,5.0,paid,paid,2025-01-01,2025-01-11,0.0,false,2025-01-01,25650.0,2000.0,27650.0,27650.0,2025-06-30,9,48,2413,0.0,7.9,1299,77795,64.1,5,0,4.8,158.0 +A1027,BluePeak Health,retail,APAC,smb,SG,active,false,51-200,CSM-APAC,2,2,0,bluepeak-core,5,5,Starter Monthly,starter,monthly,standard,6,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,2025-06-01,500.0,0.0,545.0,545.0,2025-06-30,3,16,1181,0.0,3.6,520,32095,22.8,1,0,4.0,8.0 +A1034,Helio Partners,travel,NA,smb,CA,active,false,51-200,CSM-East,2,2,1,helio-core,7,7,Starter Monthly,starter,monthly,standard,8,0.0,paid,paid,2025-06-01,2025-06-13,0.0,false,2025-06-01,500.0,0.0,500.0,500.0,2025-06-30,6,26,1171,0.0,3.5,507,26564,20.8,3,0,4.0,376.3333333333333 +A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,false,201-500,CSM-APAC,3,3,1,harbor-core,12,10,Enterprise Monthly,enterprise,monthly,premium,15,0.0,paid,paid,2025-06-01,2025-06-08,0.0,false,2025-06-01,2600.0,0.0,2834.0,2834.0,2025-06-30,5,33,1669,0.0,5.766666666666667,1066,56746,40.9,4,1,2.6666666666666665,29.0 +A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,false,201-500,CSM-EMEA,3,3,1,cedar-core,12,10,Growth Monthly,growth,monthly,priority,15,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,7,42,2050,0.0,6.766666666666667,1147,61506,35.5,5,0,4.4,178.8 +A1049,Northwind Network,energy,NA,enterprise,CA,active,false,5000+,CSM-East,3,3,0,northwind-core,20,18,Enterprise Annual,enterprise,annual,premium,25,10.0,paid,paid,2025-01-01,2025-01-07,0.0,false,2025-01-01,24300.0,1500.0,25800.0,25800.0,2025-06-30,15,84,5189,0.0,13.066666666666666,2058,127637,71.0,7,1,4.0,202.85714285714286 +A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,false,501-1000,CSM-East,2,2,0,vertex-core,11,9,Growth Monthly,growth,monthly,priority,13,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,7,36,2022,0.0,6.566666666666666,937,57316,25.6,2,0,4.0,266.0 +A1088,Cedar Partners,energy,APAC,smb,NZ,active,false,51-200,CSM-APAC,1,1,0,cedar-core,6,5,Starter Monthly,starter,monthly,standard,8,0.0,paid,paid,2025-06-01,2025-06-09,0.0,false,2025-06-01,500.0,0.0,550.0,550.0,2025-06-30,2,11,796,0.0,3.2,388,23706,21.1,2,1,5.0,635.5 +A1024,Sierra Group,manufacturing,NA,smb,CA,active,false,11-50,CSM-East,2,2,0,sierra-core,4,4,Starter Monthly,starter,monthly,standard,5,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,2025-06-01,500.0,0.0,500.0,500.0,2025-06-30,3,17,985,0.0,3.2333333333333334,490,28759,20.5,1,0,5.0,129.0 +A1035,Bright Retail,retail,EMEA,mid_market,UK,active,false,501-1000,CSM-EMEA,3,3,1,bright-core,13,11,Enterprise Monthly,enterprise,monthly,premium,15,0.0,paid,paid,2025-06-01,2025-06-05,0.0,false,2025-06-01,2600.0,0.0,3120.0,3120.0,2025-06-30,7,42,2322,0.0,6.466666666666667,1115,59544,42.0,5,0,4.4,107.8 +A1058,Evergreen Analytics,travel,EMEA,smb,UK,active,false,11-50,CSM-EMEA,2,2,0,evergreen-core,7,5,Starter Monthly,starter,monthly,standard,9,0.0,paid,paid,2025-06-01,2025-06-10,0.0,false,2025-06-01,500.0,0.0,600.0,600.0,2025-06-30,6,26,1225,0.0,4.4,594,36026,25.5,3,0,4.333333333333333,235.33333333333334 +A1026,Pioneer Capital,education,NA,smb,CA,active,false,11-50,CSM-East,1,1,0,pioneer-core,8,8,Starter Monthly,starter,monthly,standard,9,20.0,paid,paid,2025-06-01,2025-06-13,0.0,false,2025-06-01,400.0,0.0,400.0,400.0,2025-06-30,6,22,1587,0.0,4.7,507,30416,15.5,1,0,5.0,42.0 +A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,false,1000+,CSM-EMEA,4,4,2,lighthouse-core,18,15,Enterprise Monthly,enterprise,monthly,premium,22,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,2025-06-01,2600.0,0.0,3120.0,3120.0,2025-06-30,7,66,3748,0.0,7.766666666666667,1892,93362,66.6,4,1,4.333333333333333,60.0 +A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,false,501-1000,CSM-APAC,3,3,1,northwind-core,11,10,Growth Monthly,growth,monthly,priority,13,0.0,paid,paid,2025-06-01,2025-06-08,0.0,false,2025-06-01,1500.0,0.0,1650.0,1650.0,2025-06-30,6,37,1967,0.0,6.733333333333333,1136,60586,35.9,5,0,4.2,236.8 +A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,false,5000+,CSM-EMEA,3,3,1,atlas-core,17,16,Enterprise Monthly,enterprise,monthly,premium,20,5.0,paid,paid,2025-06-01,2025-06-08,0.0,false,2025-06-01,2470.0,0.0,2964.0,2964.0,2025-06-30,10,66,3571,0.0,8.866666666666667,1687,91764,48.1,4,1,5.0,58.0 +A1064,Atlas Health,education,NA,smb,US,active,false,51-200,CSM-East,1,1,0,atlas-core,4,4,Starter Monthly,starter,monthly,standard,5,20.0,paid,paid,2025-06-01,2025-06-13,0.0,false,2025-06-01,400.0,0.0,400.0,400.0,2025-06-30,2,9,421,0.0,2.4,306,18016,27.4,2,0,5.0,699.0 +A1002,Summit Foods,media,NA,mid_market,US,active,false,501-1000,CSM-East,3,3,1,summit-core,12,11,Growth Monthly,growth,monthly,priority,13,0.0,open,,2025-06-01,,1500.0,false,2025-06-01,1500.0,0.0,1500.0,0.0,2025-06-30,8,43,1941,0.0,6.666666666666667,1104,59889,36.3,3,0,4.666666666666667,593.0 +A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,false,5000+,CSM-EMEA,3,3,0,pacific-core,15,12,Enterprise Annual,enterprise,annual,premium,17,5.0,paid,paid,2025-01-01,2025-01-14,0.0,false,2025-01-01,25650.0,2000.0,33180.0,33180.0,2025-06-30,11,66,3887,0.0,8.1,1630,93530,60.3,7,1,3.8333333333333335,171.0 +A1011,Vertex Energy,software,NA,smb,CA,active,false,51-200,CSM-East,1,1,0,vertex-core,6,6,Growth Monthly,growth,monthly,priority,6,0.0,paid,paid,2025-06-01,2025-06-09,0.0,false,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,3,14,981,0.0,3.9,437,27390,27.8,3,1,5.0,468.3333333333333 +A1052,Sierra Labs,software,APAC,mid_market,NZ,active,false,501-1000,CSM-APAC,2,2,0,sierra-core,10,9,Growth Monthly,growth,monthly,priority,10,5.0,paid,paid,2025-06-01,2025-06-10,0.0,false,2025-06-01,1425.0,0.0,1567.5,1567.5,2025-06-30,8,35,1861,0.0,7.333333333333333,977,56984,36.7,5,1,4.75,268.6 +A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,false,1000+,CSM-EMEA,3,3,0,delta-core,14,14,Enterprise Monthly,enterprise,monthly,premium,18,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,2025-06-01,2600.0,0.0,3120.0,3120.0,2025-06-30,8,54,3149,0.0,9.533333333333333,1748,102875,60.9,3,0,4.666666666666667,25.333333333333332 +A1063,Maple Global,education,NA,smb,CA,active,false,11-50,CSM-East,1,1,0,maple-core,4,3,Starter Monthly,starter,monthly,standard,5,20.0,open,,2025-06-01,,400.0,false,2025-06-01,400.0,0.0,400.0,0.0,2025-06-30,2,10,576,0.0,1.8666666666666667,266,15675,23.7,2,1,4.0,157.5 +A1001,Helio Systems,healthcare,EMEA,mid_market,NL,active,false,201-500,CSM-EMEA,3,3,0,helio-core,9,7,Growth Monthly,growth,monthly,priority,10,0.0,paid,paid,2025-06-01,2025-06-06,0.0,false,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,4,33,1777,0.0,4.566666666666666,947,54717,32.6,4,0,4.5,243.25 +A1028,Apex Energy,energy,APAC,mid_market,SG,active,false,501-1000,CSM-APAC,2,2,1,apex-core,11,10,Enterprise Monthly,enterprise,monthly,premium,14,0.0,open,,2025-06-01,,2834.0,false,2025-06-01,2600.0,0.0,2834.0,0.0,2025-06-30,5,28,1260,0.0,4.866666666666666,792,40215,34.1,3,0,4.666666666666667,685.6666666666666 +A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,false,201-500,CSM-APAC,3,3,0,granite-core,12,8,Enterprise Monthly,enterprise,monthly,premium,14,5.0,paid,paid,2025-06-01,2025-06-08,0.0,false,2025-06-01,2470.0,0.0,2717.0,2717.0,2025-06-30,9,49,2885,0.0,7.666666666666667,1221,71204,45.6,5,1,3.5,344.6 +A1059,Evergreen Partners,education,NA,mid_market,CA,active,false,201-500,CSM-East,2,2,1,evergreen-core,11,10,Enterprise Monthly,enterprise,monthly,premium,11,20.0,paid,paid,2025-06-01,2025-06-05,0.0,false,2025-06-01,2080.0,0.0,2080.0,2080.0,2025-06-30,5,32,1617,0.0,4.466666666666667,749,39880,42.7,5,0,4.6,199.4 +A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,false,201-500,CSM-APAC,2,2,0,pacific-core,12,10,Enterprise Monthly,enterprise,monthly,premium,15,0.0,open,,2025-06-01,,2860.0,false,2025-06-01,2600.0,0.0,2860.0,0.0,2025-06-30,6,35,1947,0.0,7.033333333333333,983,58910,41.8,3,0,3.6666666666666665,308.3333333333333 +A1067,Maple Energy,healthcare,NA,mid_market,CA,active,false,201-500,CSM-East,2,2,1,maple-core,7,6,Growth Monthly,growth,monthly,priority,8,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,4,28,1660,0.0,2.933333333333333,641,32283,32.9,5,1,4.25,199.4 +A1071,Evergreen Group,education,NA,mid_market,CA,active,false,201-500,CSM-East,3,3,1,evergreen-core,13,12,Enterprise Monthly,enterprise,monthly,premium,16,20.0,open,,2025-06-01,,2080.0,false,2025-06-01,2080.0,0.0,2080.0,0.0,2025-06-30,11,55,2716,0.0,7.0,1161,64088,38.1,2,0,3.5,66.0 +A1079,Nova Foods,education,EMEA,enterprise,FR,active,false,1000+,CSM-EMEA,4,4,0,nova-core,20,14,Enterprise Annual,enterprise,annual,premium,22,20.0,paid,paid,2025-01-01,2025-01-13,0.0,false,2025-01-01,21600.0,0.0,25920.0,25920.0,2025-06-30,12,79,5339,0.0,10.866666666666667,2169,127089,68.5,7,0,3.4285714285714284,85.14285714285714 +A1019,Sierra Systems,education,APAC,smb,JP,active,false,51-200,CSM-APAC,2,2,1,sierra-core,4,3,Starter Monthly,starter,monthly,standard,5,20.0,paid,paid,2025-06-01,2025-06-11,0.0,false,2025-06-01,400.0,0.0,440.0,440.0,2025-06-30,1,10,451,0.0,1.4666666666666666,340,16856,19.2,1,1,,144.0 +A1020,Pioneer Network,travel,EMEA,smb,FR,active,false,11-50,CSM-EMEA,1,1,0,pioneer-core,4,3,Growth Monthly,growth,monthly,priority,5,0.0,paid,paid,2025-06-01,2025-06-08,0.0,false,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,3,13,677,0.0,1.7,255,14423,23.0,1,0,5.0,47.0 +A1050,Cedar Energy,software,APAC,smb,JP,active,false,11-50,CSM-APAC,2,2,1,cedar-core,4,4,Starter Monthly,starter,monthly,standard,5,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,2025-06-01,500.0,0.0,550.0,550.0,2025-06-30,1,10,518,0.0,2.066666666666667,387,19633,21.0,1,1,,175.0 +A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,false,201-500,CSM-East,2,2,1,cedar-core,13,11,Growth Monthly,growth,monthly,priority,15,0.0,past_due,failed,2025-06-01,2025-06-22,1500.0,true,2025-06-01,1500.0,0.0,1500.0,0.0,2025-06-30,5,28,1881,0.0,6.2,891,49873,31.1,2,0,4.0,194.5 +A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,active,false,11-50,CSM-APAC,1,1,0,helio-core,8,6,Starter Monthly,starter,monthly,standard,10,0.0,paid,paid,2025-06-01,2025-06-10,0.0,false,2025-06-01,500.0,0.0,550.0,550.0,2025-06-30,4,15,834,0.0,3.7333333333333334,424,24980,17.3,2,0,4.0,111.0 +A1075,Cedar Labs,software,EMEA,smb,UK,active,false,11-50,CSM-EMEA,1,1,0,cedar-core,8,8,Starter Monthly,starter,monthly,standard,10,0.0,paid,paid,2025-06-01,2025-06-10,0.0,false,2025-06-01,500.0,0.0,600.0,600.0,2025-06-30,6,19,1340,0.0,4.9,520,31589,28.4,1,0,4.0,738.0 +A1006,Helio Works,education,EMEA,mid_market,UK,active,false,201-500,CSM-EMEA,2,2,0,helio-core,7,5,Growth Monthly,growth,monthly,priority,8,20.0,paid,paid,2025-06-01,2025-06-07,0.0,false,2025-06-01,1200.0,0.0,1440.0,1440.0,2025-06-30,3,24,1300,0.0,3.9,700,41229,32.3,3,0,4.0,91.33333333333333 +A1025,Bright Capital,education,EMEA,smb,UK,active,false,51-200,CSM-EMEA,1,1,0,bright-core,6,5,Starter Monthly,starter,monthly,standard,8,20.0,paid,paid,2025-06-01,2025-06-09,0.0,false,2025-06-01,400.0,0.0,480.0,480.0,2025-06-30,3,13,669,0.0,3.1,370,23365,27.0,2,0,5.0,83.0 +A1038,River Systems,logistics,APAC,smb,AU,active,false,51-200,CSM-APAC,2,2,0,river-core,5,4,Starter Monthly,starter,monthly,standard,6,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,2025-06-01,500.0,0.0,550.0,550.0,2025-06-30,3,16,1047,0.0,2.8,446,27242,26.1,2,1,4.0,327.5 +A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,false,5000+,CSM-APAC,3,3,1,orchid-core,19,19,Enterprise Annual,enterprise,annual,premium,20,5.0,paid,paid,2025-01-01,2025-01-07,0.0,false,2025-01-01,25650.0,0.0,28215.0,28215.0,2025-06-30,14,65,3643,0.0,12.3,1975,108624,70.2,7,1,4.5,154.28571428571428 +A1074,Granite Analytics,retail,NA,mid_market,CA,active,false,501-1000,CSM-East,3,3,0,granite-core,12,11,Growth Monthly,growth,monthly,priority,14,10.0,paid,paid,2025-06-01,2025-06-09,0.0,false,2025-06-01,1350.0,0.0,1350.0,1350.0,2025-06-30,8,49,2600,0.0,8.266666666666667,1288,77923,35.1,5,1,3.75,470.8 +A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,true,5000+,CSM-East,2,0,1,silver-core,14,6,Starter Monthly,starter,monthly,standard,14,0.0,paid,paid,2025-05-01,2025-05-08,0.0,false,2025-05-01,500.0,0.0,500.0,500.0,,,,,0.0,0.0,0,0,0.0,7,1,3.5,210.0 +A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,true,1000+,CSM-APAC,1,0,0,bright-core,17,3,Starter Monthly,starter,monthly,standard,17,5.0,paid,paid,2025-04-01,2025-04-13,0.0,false,2025-04-01,475.0,0.0,522.5,522.5,,,,,0.0,0.0,0,0,0.0,5,3,3.5,109.6 +A1015,Delta Network,logistics,NA,smb,US,churned,true,51-200,CSM-East,2,0,1,delta-core,3,0,Growth Monthly,growth,monthly,priority,5,0.0,paid,paid,2025-04-01,2025-04-12,0.0,false,2025-04-01,1500.0,0.0,1500.0,1500.0,,,,,0.0,0.0,0,0,0.0,4,0,4.25,95.25 +A1018,Harbor Manufacturing,media,EMEA,smb,UK,churned,true,11-50,CSM-EMEA,2,0,0,harbor-core,3,2,Starter Monthly,starter,monthly,standard,5,0.0,paid,paid,2025-04-01,2025-04-06,0.0,false,2025-04-01,500.0,0.0,600.0,600.0,,,,,0.0,0.0,0,0,0.0,3,0,3.0,454.3333333333333 +A1036,Granite Holdings,education,NA,smb,US,churned,true,51-200,CSM-East,2,0,1,granite-core,3,0,Growth Monthly,growth,monthly,priority,5,20.0,paid,paid,2025-04-01,2025-04-12,0.0,false,2025-04-01,1200.0,0.0,1200.0,1200.0,,,,,0.0,0.0,0,0,0.0,3,0,4.666666666666667,172.66666666666666 +A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,true,1000+,CSM-APAC,1,0,0,evergreen-core,18,4,Growth Monthly,growth,monthly,priority,23,0.0,paid,paid,2025-04-01,2025-04-14,0.0,false,2025-04-01,1500.0,0.0,1635.0,1635.0,,,,,0.0,0.0,0,0,0.0,6,1,3.2,64.83333333333333 +A1032,Vertex Works,manufacturing,EMEA,mid_market,DE,churned,true,201-500,CSM-EMEA,2,0,0,vertex-core,6,4,Growth Monthly,growth,monthly,priority,7,0.0,paid,paid,2025-04-01,2025-04-09,0.0,false,2025-04-01,1500.0,0.0,1800.0,1800.0,,,,,0.0,0.0,0,0,0.0,3,0,2.0,137.33333333333334 +A1082,Summit Manufacturing,manufacturing,NA,mid_market,US,churned,true,501-1000,CSM-East,1,0,0,summit-core,7,2,Starter Monthly,starter,monthly,standard,9,0.0,paid,failed,2025-04-01,2025-04-15,0.0,false,2025-04-01,500.0,0.0,500.0,500.0,,,,,0.0,0.0,0,0,0.0,6,2,2.25,270.0 +A1087,Apex Capital,energy,NA,enterprise,CA,churned,true,1000+,CSM-East,1,0,0,apex-core,9,4,Growth Monthly,growth,monthly,priority,12,0.0,paid,paid,2025-04-01,2025-04-14,0.0,false,2025-04-01,1500.0,0.0,1500.0,1500.0,,,,,0.0,0.0,0,0,0.0,7,1,4.333333333333333,174.85714285714286 diff --git a/tasks/helixops_saas008/seeds/solution__mart_account_health.csv b/tasks/helixops_saas008/seeds/solution__mart_account_health.csv new file mode 100644 index 00000000..962e0b73 --- /dev/null +++ b/tasks/helixops_saas008/seeds/solution__mart_account_health.csv @@ -0,0 +1,91 @@ +account_id,account_name,segment,region,billing_country,customer_status,plan_name,latest_subscription_status,latest_invoice_status,latest_payment_status,latest_outstanding_amount_usd,has_past_due_invoice,active_user_count,active_workspace_count,avg_active_users_7d,total_projects_run_30d,total_api_calls_30d,open_ticket_count,breached_sla_ticket_count,avg_csat_score,latest_month_recurring_revenue_usd,latest_month_total_revenue_usd,account_health_score +A1063,Maple Global,smb,NA,CA,active,Starter Monthly,active,open,,400.0,false,3,1,0.0,266,15675,1,0,4.0,400.0,400.0,75 +A1008,Pacific Works,mid_market,EMEA,UK,active,Enterprise Monthly,active,paid,paid,0.0,false,11,3,0.0,1255,75716,0,0,3.6666666666666665,2470.0,2964.0,80 +A1055,Pioneer Systems,mid_market,EMEA,FR,active,Growth Monthly,active,past_due,failed,1800.0,true,12,2,0.0,797,38707,0,0,4.333333333333333,1500.0,1800.0,55 +A1069,Bright Foods,enterprise,NA,CA,active,Enterprise Annual,active,paid,paid,0.0,false,11,3,0.0,1634,96476,0,0,4.333333333333333,24300.0,24300.0,80 +A1078,Beacon Foods,mid_market,EMEA,FR,active,Growth Monthly,active,paid,paid,0.0,false,10,3,0.0,1081,63211,1,0,4.0,1425.0,1710.0,75 +A1084,Silver Foods,mid_market,NA,CA,active,Enterprise Monthly,active,paid,paid,0.0,false,9,2,0.0,970,59696,1,0,3.0,2600.0,2600.0,75 +A1085,Sierra Capital,smb,NA,US,active,Starter Monthly,active,paid,paid,0.0,false,4,1,0.0,335,20055,0,1,4.0,500.0,500.0,80 +A1089,Beacon Network,mid_market,NA,US,active,Growth Monthly,active,paid,paid,0.0,false,10,2,0.0,1041,63704,0,1,5.0,1500.0,1500.0,80 +A1024,Sierra Group,smb,NA,CA,active,Starter Monthly,active,paid,paid,0.0,false,4,2,0.0,490,28759,0,0,5.0,500.0,500.0,80 +A1035,Bright Retail,mid_market,EMEA,UK,active,Enterprise Monthly,active,paid,paid,0.0,false,11,3,0.0,1115,59544,0,0,4.4,2600.0,3120.0,80 +A1058,Evergreen Analytics,smb,EMEA,UK,active,Starter Monthly,active,paid,paid,0.0,false,5,2,0.0,594,36026,0,0,4.333333333333333,500.0,600.0,80 +A1001,Helio Systems,mid_market,EMEA,NL,active,Growth Monthly,active,paid,paid,0.0,false,7,3,0.0,947,54717,0,0,4.5,1500.0,1800.0,80 +A1028,Apex Energy,mid_market,APAC,SG,active,Enterprise Monthly,active,open,,2834.0,false,10,2,0.0,792,40215,0,0,4.666666666666667,2600.0,2834.0,80 +A1054,Granite Labs,mid_market,APAC,NZ,active,Enterprise Monthly,active,paid,paid,0.0,false,8,3,0.0,1221,71204,1,0,3.5,2470.0,2717.0,75 +A1059,Evergreen Partners,mid_market,NA,CA,active,Enterprise Monthly,active,paid,paid,0.0,false,10,2,0.0,749,39880,0,0,4.6,2080.0,2080.0,80 +A1066,Pacific Capital,mid_market,APAC,NZ,active,Enterprise Monthly,active,open,,2860.0,false,10,2,0.0,983,58910,0,1,3.6666666666666665,2600.0,2860.0,80 +A1067,Maple Energy,mid_market,NA,CA,active,Growth Monthly,active,paid,paid,0.0,false,6,2,0.0,641,32283,1,0,4.25,1500.0,1500.0,75 +A1079,Nova Foods,enterprise,EMEA,FR,active,Enterprise Annual,active,paid,paid,0.0,false,14,4,0.0,2169,127089,0,0,3.4285714285714284,21600.0,25920.0,80 +A1071,Evergreen Group,mid_market,NA,CA,active,Enterprise Monthly,active,open,,2080.0,false,12,3,0.0,1161,64088,0,0,3.5,2080.0,2080.0,80 +A1026,Pioneer Capital,smb,NA,CA,active,Starter Monthly,active,paid,paid,0.0,false,8,1,0.0,507,30416,0,0,5.0,400.0,400.0,80 +A1037,Lighthouse Network,enterprise,EMEA,UK,active,Enterprise Monthly,active,paid,paid,0.0,false,15,4,0.0,1892,93362,1,0,4.333333333333333,2600.0,3120.0,75 +A1042,Northwind Labs,mid_market,APAC,AU,active,Growth Monthly,active,paid,paid,0.0,false,10,3,0.0,1136,60586,0,2,4.2,1500.0,1650.0,80 +A1061,Atlas Capital,enterprise,EMEA,FR,active,Enterprise Monthly,active,paid,paid,0.0,false,16,3,0.0,1687,91764,1,0,5.0,2470.0,2964.0,75 +A1064,Atlas Health,smb,NA,US,active,Starter Monthly,active,paid,paid,0.0,false,4,1,0.0,306,18016,0,0,5.0,400.0,400.0,80 +A1030,Northwind Analytics,enterprise,EMEA,UK,active,Enterprise Monthly,active,paid,paid,0.0,false,11,4,0.0,1853,112662,0,0,4.25,2470.0,2964.0,80 +A1039,Nova Group,smb,EMEA,FR,active,Starter Monthly,active,paid,paid,0.0,false,7,1,0.0,457,27512,0,1,5.0,500.0,600.0,80 +A1043,Lighthouse Works,enterprise,APAC,SG,active,Enterprise Monthly,active,paid,paid,0.0,false,16,4,0.0,2105,114513,1,0,4.0,2600.0,2834.0,75 +A1045,Nova Holdings,enterprise,NA,CA,active,Enterprise Annual,active,paid,paid,0.0,false,14,4,0.0,2148,126398,0,0,4.2,25650.0,25650.0,80 +A1048,Orchid Capital,enterprise,APAC,NZ,active,Enterprise Annual,active,paid,paid,0.0,false,14,3,0.0,1910,112002,3,0,4.0,24300.0,26730.0,65 +A1090,Vertex Labs,smb,NA,US,active,Starter Monthly,active,paid,paid,0.0,false,4,1,0.0,294,16801,1,0,4.0,500.0,500.0,75 +A1022,Summit Collective,smb,APAC,NZ,active,Growth Monthly,active,paid,paid,0.0,false,3,2,0.0,374,17727,0,0,5.0,1500.0,1650.0,80 +A1068,Helio Health,enterprise,APAC,SG,active,Enterprise Monthly,active,open,,2834.0,false,15,4,0.0,1892,98846,0,0,4.571428571428571,2600.0,2834.0,80 +A1083,Falcon Works,mid_market,NA,CA,active,Growth Monthly,active,paid,failed,0.0,false,5,2,0.0,618,30719,0,0,3.75,1200.0,1200.0,80 +A1002,Summit Foods,mid_market,NA,US,active,Growth Monthly,active,open,,1500.0,false,11,3,0.0,1104,59889,0,0,4.666666666666667,1500.0,1500.0,80 +A1011,Vertex Energy,smb,NA,CA,active,Growth Monthly,active,paid,paid,0.0,false,6,1,0.0,437,27390,1,0,5.0,1500.0,1500.0,75 +A1062,Delta Manufacturing,enterprise,EMEA,NL,active,Enterprise Monthly,active,paid,paid,0.0,false,14,3,0.0,1748,102875,0,0,4.666666666666667,2600.0,3120.0,80 +A1005,Pacific Labs,enterprise,EMEA,UK,active,Enterprise Annual,active,paid,paid,0.0,false,12,3,0.0,1630,93530,1,0,3.8333333333333335,25650.0,33180.0,75 +A1052,Sierra Labs,mid_market,APAC,NZ,active,Growth Monthly,active,paid,paid,0.0,false,9,2,0.0,977,56984,1,0,4.75,1425.0,1567.5,75 +A1020,Pioneer Network,smb,EMEA,FR,active,Growth Monthly,active,paid,paid,0.0,false,3,1,0.0,255,14423,0,0,5.0,1500.0,1800.0,80 +A1050,Cedar Energy,smb,APAC,JP,active,Starter Monthly,active,paid,paid,0.0,false,4,2,0.0,387,19633,1,0,,500.0,550.0,75 +A1060,Cedar Foods,mid_market,NA,CA,active,Growth Monthly,active,past_due,failed,1500.0,true,11,2,0.0,891,49873,0,0,4.0,1500.0,1500.0,55 +A1070,Helio Manufacturing,smb,APAC,NZ,active,Starter Monthly,active,paid,paid,0.0,false,6,1,0.0,424,24980,0,0,4.0,500.0,550.0,80 +A1075,Cedar Labs,smb,EMEA,UK,active,Starter Monthly,active,paid,paid,0.0,false,8,1,0.0,520,31589,0,0,4.0,500.0,600.0,80 +A1019,Sierra Systems,smb,APAC,JP,active,Starter Monthly,active,paid,paid,0.0,false,3,2,0.0,340,16856,1,0,,400.0,440.0,75 +A1016,BluePeak Capital,enterprise,EMEA,DE,active,Enterprise Annual,active,paid,paid,0.0,false,19,4,0.0,2320,136008,1,0,4.0,24300.0,31560.0,75 +A1053,Bright Health,mid_market,NA,CA,active,Growth Monthly,active,paid,paid,0.0,false,9,3,0.0,1076,62016,0,0,5.0,1500.0,1500.0,80 +A1081,River Collective,mid_market,NA,CA,active,Enterprise Monthly,active,paid,paid,0.0,false,7,3,0.0,1010,54352,1,0,4.0,2600.0,2600.0,75 +A1003,Nova Ventures,enterprise,NA,US,active,Enterprise Annual,active,paid,paid,0.0,false,15,2,0.0,1299,77795,0,0,4.8,25650.0,27650.0,80 +A1027,BluePeak Health,smb,APAC,SG,active,Starter Monthly,active,paid,paid,0.0,false,5,2,0.0,520,32095,0,0,4.0,500.0,545.0,80 +A1034,Helio Partners,smb,NA,CA,active,Starter Monthly,active,paid,paid,0.0,false,7,2,0.0,507,26564,0,0,4.0,500.0,500.0,80 +A1040,Harbor Collective,mid_market,APAC,SG,active,Enterprise Monthly,active,paid,paid,0.0,false,10,3,0.0,1066,56746,1,1,2.6666666666666665,2600.0,2834.0,75 +A1041,Cedar Logistics,mid_market,EMEA,NL,active,Growth Monthly,active,paid,paid,0.0,false,10,3,0.0,1147,61506,0,0,4.4,1500.0,1800.0,80 +A1049,Northwind Network,enterprise,NA,CA,active,Enterprise Annual,active,paid,paid,0.0,false,18,3,0.0,2058,127637,1,0,4.0,24300.0,25800.0,75 +A1065,Vertex Partners,mid_market,NA,US,active,Growth Monthly,active,paid,paid,0.0,false,9,2,0.0,937,57316,0,0,4.0,1500.0,1500.0,80 +A1088,Cedar Partners,smb,APAC,NZ,active,Starter Monthly,active,paid,paid,0.0,false,5,1,0.0,388,23706,1,0,5.0,500.0,550.0,75 +A1006,Helio Works,mid_market,EMEA,UK,active,Growth Monthly,active,paid,paid,0.0,false,5,2,0.0,700,41229,0,0,4.0,1200.0,1440.0,80 +A1025,Bright Capital,smb,EMEA,UK,active,Starter Monthly,active,paid,paid,0.0,false,5,1,0.0,370,23365,0,0,5.0,400.0,480.0,80 +A1038,River Systems,smb,APAC,AU,active,Starter Monthly,active,paid,paid,0.0,false,4,2,0.0,446,27242,1,0,4.0,500.0,550.0,75 +A1047,Orchid Global,enterprise,APAC,AU,active,Enterprise Annual,active,paid,paid,0.0,false,19,3,0.0,1975,108624,1,0,4.5,25650.0,28215.0,75 +A1074,Granite Analytics,mid_market,NA,CA,active,Growth Monthly,active,paid,paid,0.0,false,11,3,0.0,1288,77923,1,0,3.75,1350.0,1350.0,75 +A1010,Orchid Foods,smb,NA,CA,active,Starter Monthly,active,paid,paid,0.0,false,7,1,0.0,478,29531,0,0,3.0,400.0,400.0,80 +A1033,Lighthouse Global,mid_market,NA,CA,active,Growth Monthly,active,paid,paid,0.0,false,12,2,0.0,1158,69619,0,0,4.5,1500.0,1500.0,80 +A1046,Pioneer Solutions,smb,NA,CA,active,Growth Monthly,active,paid,paid,0.0,false,4,1,0.0,349,21104,1,0,5.0,1200.0,1200.0,75 +A1051,Lighthouse Systems,smb,EMEA,UK,active,Growth Monthly,active,paid,paid,0.0,false,4,1,0.0,327,19800,0,0,3.6666666666666665,1500.0,1800.0,80 +A1017,Summit Analytics,mid_market,EMEA,UK,active,Growth Monthly,active,paid,paid,0.0,false,8,2,0.0,767,44175,0,0,4.5,1350.0,1620.0,80 +A1023,Atlas Systems,smb,NA,CA,active,Starter Monthly,active,past_due,failed,400.0,true,8,1,0.0,532,31779,1,0,4.5,400.0,400.0,50 +A1044,Summit Holdings,smb,EMEA,NL,active,Growth Monthly,active,paid,paid,0.0,false,5,1,0.0,391,24890,0,0,4.333333333333333,1500.0,1800.0,80 +A1073,Silver Holdings,mid_market,EMEA,DE,active,Enterprise Monthly,active,paid,paid,0.0,false,10,2,0.0,1075,63469,1,0,3.3333333333333335,2600.0,3120.0,75 +A1080,Beacon Global,mid_market,EMEA,NL,active,Growth Monthly,active,paid,paid,0.0,false,10,2,0.0,959,58564,2,0,4.0,1500.0,1800.0,75 +A1086,River Labs,smb,EMEA,FR,active,Starter Monthly,active,paid,paid,0.0,false,4,1,0.0,314,18915,1,0,3.0,500.0,600.0,75 +A1007,Silver Systems,smb,EMEA,FR,active,Starter Monthly,active,open,,600.0,false,3,1,0.0,242,14726,0,0,4.666666666666667,500.0,600.0,80 +A1012,Cedar Ventures,smb,APAC,JP,active,Starter Monthly,active,paid,failed,0.0,false,6,2,0.0,530,29420,0,1,4.333333333333333,500.0,550.0,80 +A1013,River Foods,mid_market,NA,US,active,Growth Monthly,active,paid,paid,0.0,false,5,3,0.0,930,51065,0,1,5.0,1425.0,1425.0,80 +A1031,Helio Holdings,mid_market,APAC,AU,active,Growth Monthly,active,paid,paid,0.0,false,10,3,0.0,1115,63242,1,0,3.0,1500.0,1650.0,75 +A1056,Delta Global,mid_market,APAC,AU,active,Growth Monthly,active,paid,paid,0.0,false,10,3,0.0,1111,67843,0,0,3.75,1500.0,1650.0,80 +A1057,Harbor Partners,enterprise,APAC,NZ,active,Enterprise Annual,active,paid,paid,0.0,false,12,4,0.0,1853,101155,2,0,3.4,21600.0,23760.0,75 +A1076,Atlas Solutions,mid_market,EMEA,UK,active,Growth Monthly,active,paid,paid,0.0,false,13,2,0.0,1181,72164,1,0,5.0,1500.0,1800.0,75 +A1009,Summit Group,mid_market,NA,US,active,Enterprise Monthly,active,paid,paid,0.0,false,11,2,0.0,1001,61468,0,1,4.0,2340.0,2340.0,80 +A1021,Apex Logistics,smb,NA,US,active,Starter Monthly,active,paid,paid,0.0,false,7,1,0.0,469,27805,0,0,4.0,500.0,500.0,80 +A1077,Evergreen Foods,mid_market,NA,CA,active,Growth Monthly,active,paid,paid,0.0,false,7,3,0.0,1003,58101,0,0,4.0,1500.0,1500.0,80 +A1072,Summit Ventures,enterprise,NA,US,active,Enterprise Annual,active,paid,paid,0.0,false,15,3,0.0,1733,94474,0,0,3.75,24300.0,26800.0,80 +A1004,Silver Solutions,enterprise,NA,US,churned,Starter Monthly,canceled,paid,paid,0.0,false,6,0,0.0,0,0,1,0,3.5,500.0,500.0,35 +A1029,Bright Labs,enterprise,APAC,NZ,churned,Starter Monthly,canceled,paid,paid,0.0,false,3,0,0.0,0,0,3,0,3.5,475.0,522.5,25 +A1015,Delta Network,smb,NA,US,churned,Growth Monthly,canceled,paid,paid,0.0,false,0,0,0.0,0,0,0,0,4.25,1500.0,1500.0,40 +A1018,Harbor Manufacturing,smb,EMEA,UK,churned,Starter Monthly,canceled,paid,paid,0.0,false,2,0,0.0,0,0,0,0,3.0,500.0,600.0,40 +A1036,Granite Holdings,smb,NA,US,churned,Growth Monthly,canceled,paid,paid,0.0,false,0,0,0.0,0,0,0,0,4.666666666666667,1200.0,1200.0,40 +A1014,Evergreen Global,enterprise,APAC,SG,churned,Growth Monthly,canceled,paid,paid,0.0,false,4,0,0.0,0,0,1,0,3.2,1500.0,1635.0,35 +A1032,Vertex Works,mid_market,EMEA,DE,churned,Growth Monthly,canceled,paid,paid,0.0,false,4,0,0.0,0,0,0,0,2.0,1500.0,1800.0,40 +A1082,Summit Manufacturing,mid_market,NA,US,churned,Starter Monthly,canceled,paid,failed,0.0,false,2,0,0.0,0,0,2,1,2.25,500.0,500.0,35 +A1087,Apex Capital,enterprise,NA,CA,churned,Growth Monthly,canceled,paid,paid,0.0,false,4,0,0.0,0,0,1,0,4.333333333333333,1500.0,1500.0,35 diff --git a/tasks/helixops_saas008/seeds/solution__stg_accounts.csv b/tasks/helixops_saas008/seeds/solution__stg_accounts.csv new file mode 100644 index 00000000..8077e9ac --- /dev/null +++ b/tasks/helixops_saas008/seeds/solution__stg_accounts.csv @@ -0,0 +1,91 @@ +account_id,account_name,industry,region,segment,billing_country,created_at,customer_status,employee_band,owner_team,is_deleted,source_batch_id,is_churned +A1001,Helio Systems,healthcare,EMEA,mid_market,NL,2024-08-12 13:43:48,active,201-500,CSM-EMEA,false,acct_load_4,false +A1002,Summit Foods,media,NA,mid_market,US,2025-01-10 22:12:29,active,501-1000,CSM-East,false,acct_load_5,false +A1003,Nova Ventures,manufacturing,NA,enterprise,US,2024-12-11 03:21:52,active,1000+,CSM-East,false,acct_load_10,false +A1004,Silver Solutions,manufacturing,NA,enterprise,US,2024-09-07 13:27:43,churned,5000+,CSM-East,false,acct_load_9,true +A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,2024-08-31 14:28:15,active,5000+,CSM-EMEA,false,acct_load_12,false +A1006,Helio Works,education,EMEA,mid_market,UK,2024-11-21 09:17:28,active,201-500,CSM-EMEA,false,acct_load_12,false +A1007,Silver Systems,energy,EMEA,smb,FR,2024-12-22 18:20:12,active,51-200,CSM-EMEA,false,acct_load_8,false +A1008,Pacific Works,software,EMEA,mid_market,UK,2024-10-06 11:07:40,active,201-500,CSM-EMEA,false,acct_load_10,false +A1009,Summit Group,financial_services,NA,mid_market,US,2024-08-22 17:22:46,active,501-1000,CSM-East,false,acct_load_9,false +A1010,Orchid Foods,education,NA,smb,CA,2025-02-10 21:10:21,active,11-50,CSM-East,false,acct_load_7,false +A1011,Vertex Energy,software,NA,smb,CA,2025-01-14 09:17:33,active,51-200,CSM-East,false,acct_load_3,false +A1012,Cedar Ventures,retail,APAC,smb,JP,2024-08-19 07:09:23,active,11-50,CSM-APAC,false,acct_load_11,false +A1013,River Foods,manufacturing,NA,mid_market,US,2024-12-27 04:56:58,active,501-1000,CSM-East,false,acct_load_9,false +A1014,Evergreen Global,retail,APAC,enterprise,SG,2024-09-21 19:29:43,churned,1000+,CSM-APAC,false,acct_load_3,true +A1015,Delta Network,logistics,NA,smb,US,2024-09-04 16:34:41,churned,51-200,CSM-East,false,acct_load_8,true +A1016,BluePeak Capital,energy,EMEA,enterprise,DE,2024-12-24 05:07:46,active,1000+,CSM-EMEA,false,acct_load_8,false +A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,2024-11-28 10:14:21,active,201-500,CSM-EMEA,false,acct_load_11,false +A1018,Harbor Manufacturing,media,EMEA,smb,UK,2024-09-18 20:10:22,churned,11-50,CSM-EMEA,false,acct_load_12,true +A1019,Sierra Systems,education,APAC,smb,JP,2025-02-26 10:36:13,active,51-200,CSM-APAC,false,acct_load_6,false +A1020,Pioneer Network,travel,EMEA,smb,FR,2025-02-18 00:09:23,active,11-50,CSM-EMEA,false,acct_load_4,false +A1021,Apex Logistics,software,NA,smb,US,2024-10-25 12:34:29,active,11-50,CSM-East,false,acct_load_5,false +A1022,Summit Collective,retail,APAC,smb,NZ,2025-02-16 16:16:56,active,51-200,CSM-APAC,false,acct_load_5,false +A1023,Atlas Systems,education,NA,smb,CA,2025-01-31 16:25:38,active,11-50,CSM-East,false,acct_load_12,false +A1024,Sierra Group,manufacturing,NA,smb,CA,2025-01-29 08:59:07,active,11-50,CSM-East,false,acct_load_5,false +A1025,Bright Capital,education,EMEA,smb,UK,2024-10-14 09:44:56,active,51-200,CSM-EMEA,false,acct_load_5,false +A1026,Pioneer Capital,education,NA,smb,CA,2024-08-30 06:38:17,active,11-50,CSM-East,false,acct_load_6,false +A1027,BluePeak Health,retail,APAC,smb,SG,2024-10-31 19:12:59,active,51-200,CSM-APAC,false,acct_load_11,false +A1028,Apex Energy,energy,APAC,mid_market,SG,2024-12-26 04:17:07,active,501-1000,CSM-APAC,false,acct_load_12,false +A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,2024-08-31 01:24:19,churned,1000+,CSM-APAC,false,acct_load_4,true +A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,2024-08-23 04:49:08,active,5000+,CSM-EMEA,false,acct_load_10,false +A1031,Helio Holdings,healthcare,APAC,mid_market,AU,2025-02-14 05:18:16,active,201-500,CSM-APAC,false,acct_load_5,false +A1032,Vertex Works,manufacturing,EMEA,mid_market,DE,2024-09-16 13:25:27,churned,201-500,CSM-EMEA,false,acct_load_10,true +A1033,Lighthouse Global,logistics,NA,mid_market,CA,2024-10-19 07:50:01,active,201-500,CSM-East,false,acct_load_3,false +A1034,Helio Partners,travel,NA,smb,CA,2024-12-01 18:59:06,active,51-200,CSM-East,false,acct_load_12,false +A1035,Bright Retail,retail,EMEA,mid_market,UK,2025-02-25 19:06:57,active,501-1000,CSM-EMEA,false,acct_load_4,false +A1036,Granite Holdings,education,NA,smb,US,2024-12-22 12:14:31,churned,51-200,CSM-East,false,acct_load_7,true +A1037,Lighthouse Network,media,EMEA,enterprise,UK,2024-11-25 06:24:43,active,1000+,CSM-EMEA,false,acct_load_7,false +A1038,River Systems,logistics,APAC,smb,AU,2024-11-18 10:09:31,active,51-200,CSM-APAC,false,acct_load_5,false +A1039,Nova Group,media,EMEA,smb,FR,2025-02-06 17:26:48,active,11-50,CSM-EMEA,false,acct_load_4,false +A1040,Harbor Collective,healthcare,APAC,mid_market,SG,2024-12-08 12:58:20,active,201-500,CSM-APAC,false,acct_load_12,false +A1041,Cedar Logistics,media,EMEA,mid_market,NL,2024-08-04 18:07:41,active,201-500,CSM-EMEA,false,acct_load_3,false +A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,2024-09-19 11:52:42,active,501-1000,CSM-APAC,false,acct_load_6,false +A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,2024-10-21 14:03:18,active,1000+,CSM-APAC,false,acct_load_7,false +A1044,Summit Holdings,software,EMEA,smb,NL,2024-09-30 00:32:29,active,11-50,CSM-EMEA,false,acct_load_4,false +A1045,Nova Holdings,manufacturing,NA,enterprise,CA,2024-11-05 09:05:10,active,1000+,CSM-East,false,acct_load_11,false +A1046,Pioneer Solutions,education,NA,smb,CA,2024-10-17 12:09:12,active,51-200,CSM-East,false,acct_load_10,false +A1047,Orchid Global,healthcare,APAC,enterprise,AU,2024-10-15 00:06:00,active,5000+,CSM-APAC,false,acct_load_3,false +A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,2025-02-14 20:00:18,active,5000+,CSM-APAC,false,acct_load_7,false +A1049,Northwind Network,energy,NA,enterprise,CA,2024-11-12 02:19:33,active,5000+,CSM-East,false,acct_load_7,false +A1050,Cedar Energy,software,APAC,smb,JP,2025-02-15 14:48:30,active,11-50,CSM-APAC,false,acct_load_4,false +A1051,Lighthouse Systems,media,EMEA,smb,UK,2025-02-26 02:44:10,active,51-200,CSM-EMEA,false,acct_load_11,false +A1052,Sierra Labs,software,APAC,mid_market,NZ,2024-11-30 21:54:21,active,501-1000,CSM-APAC,false,acct_load_9,false +A1053,Bright Health,media,NA,mid_market,CA,2024-09-19 10:24:29,active,501-1000,CSM-East,false,acct_load_6,false +A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,2024-08-01 03:47:01,active,201-500,CSM-APAC,false,acct_load_3,false +A1055,Pioneer Systems,travel,EMEA,mid_market,FR,2025-01-19 13:44:38,active,501-1000,CSM-EMEA,false,acct_load_9,false +A1056,Delta Global,retail,APAC,mid_market,AU,2024-11-19 05:04:51,active,201-500,CSM-APAC,false,acct_load_11,false +A1057,Harbor Partners,education,APAC,enterprise,NZ,2024-10-17 08:01:31,active,1000+,CSM-APAC,false,acct_load_3,false +A1058,Evergreen Analytics,travel,EMEA,smb,UK,2025-01-08 22:52:12,active,11-50,CSM-EMEA,false,acct_load_7,false +A1059,Evergreen Partners,education,NA,mid_market,CA,2024-09-27 07:27:52,active,201-500,CSM-East,false,acct_load_10,false +A1060,Cedar Foods,healthcare,NA,mid_market,CA,2024-11-05 18:41:46,active,201-500,CSM-East,false,acct_load_9,false +A1061,Atlas Capital,travel,EMEA,enterprise,FR,2025-02-13 00:52:24,active,5000+,CSM-EMEA,false,acct_load_8,false +A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,2024-11-09 15:50:25,active,1000+,CSM-EMEA,false,acct_load_6,false +A1063,Maple Global,education,NA,smb,CA,2024-11-14 12:34:06,active,11-50,CSM-East,false,acct_load_6,false +A1064,Atlas Health,education,NA,smb,US,2024-08-25 22:39:22,active,51-200,CSM-East,false,acct_load_4,false +A1065,Vertex Partners,manufacturing,NA,mid_market,US,2024-12-30 06:11:13,active,501-1000,CSM-East,false,acct_load_7,false +A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,2025-01-10 17:33:41,active,201-500,CSM-APAC,false,acct_load_7,false +A1067,Maple Energy,healthcare,NA,mid_market,CA,2024-12-30 00:24:42,active,201-500,CSM-East,false,acct_load_5,false +A1068,Helio Health,manufacturing,APAC,enterprise,SG,2024-08-11 12:36:33,active,1000+,CSM-APAC,false,acct_load_5,false +A1069,Bright Foods,manufacturing,NA,enterprise,CA,2024-12-06 03:08:52,active,5000+,CSM-East,false,acct_load_8,false +A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,2024-11-06 23:20:27,active,11-50,CSM-APAC,false,acct_load_8,false +A1071,Evergreen Group,education,NA,mid_market,CA,2024-08-27 15:34:10,active,201-500,CSM-East,false,acct_load_4,false +A1072,Summit Ventures,software,NA,enterprise,US,2024-09-29 04:18:23,active,5000+,CSM-East,false,acct_load_5,false +A1073,Silver Holdings,travel,EMEA,mid_market,DE,2024-11-08 12:21:51,active,201-500,CSM-EMEA,false,acct_load_8,false +A1074,Granite Analytics,retail,NA,mid_market,CA,2024-08-10 23:20:24,active,501-1000,CSM-East,false,acct_load_12,false +A1075,Cedar Labs,software,EMEA,smb,UK,2024-11-03 07:31:13,active,11-50,CSM-EMEA,false,acct_load_3,false +A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,2025-02-23 21:32:44,active,201-500,CSM-EMEA,false,acct_load_6,false +A1077,Evergreen Foods,travel,NA,mid_market,CA,2024-09-10 23:41:36,active,201-500,CSM-East,false,acct_load_4,false +A1078,Beacon Foods,software,EMEA,mid_market,FR,2025-02-26 00:08:06,active,501-1000,CSM-EMEA,false,acct_load_9,false +A1079,Nova Foods,education,EMEA,enterprise,FR,2024-09-03 15:45:24,active,1000+,CSM-EMEA,false,acct_load_4,false +A1080,Beacon Global,financial_services,EMEA,mid_market,NL,2024-08-12 03:30:12,active,201-500,CSM-EMEA,false,acct_load_11,false +A1081,River Collective,financial_services,NA,mid_market,CA,2024-11-17 14:36:21,active,201-500,CSM-East,false,acct_load_10,false +A1082,Summit Manufacturing,manufacturing,NA,mid_market,US,2024-11-16 19:18:31,churned,501-1000,CSM-East,false,acct_load_6,true +A1083,Falcon Works,education,NA,mid_market,CA,2025-01-05 01:17:30,active,501-1000,CSM-East,false,acct_load_10,false +A1084,Silver Foods,manufacturing,NA,mid_market,CA,2024-12-07 11:11:54,active,501-1000,CSM-East,false,acct_load_3,false +A1085,Sierra Capital,financial_services,NA,smb,US,2024-09-16 10:19:51,active,11-50,CSM-East,false,acct_load_3,false +A1086,River Labs,software,EMEA,smb,FR,2025-02-20 17:58:12,active,11-50,CSM-EMEA,false,acct_load_5,false +A1087,Apex Capital,energy,NA,enterprise,CA,2024-11-26 09:20:17,churned,1000+,CSM-East,false,acct_load_4,true +A1088,Cedar Partners,energy,APAC,smb,NZ,2025-02-07 15:19:15,active,51-200,CSM-APAC,false,acct_load_4,false +A1089,Beacon Network,healthcare,NA,mid_market,US,2024-11-07 01:16:08,active,201-500,CSM-East,false,acct_load_7,false +A1090,Vertex Labs,energy,NA,smb,US,2024-09-27 22:37:20,active,11-50,CSM-East,false,acct_load_12,false diff --git a/tasks/helixops_saas008/setup.sh b/tasks/helixops_saas008/setup.sh new file mode 100755 index 00000000..ba9d7064 --- /dev/null +++ b/tasks/helixops_saas008/setup.sh @@ -0,0 +1,2 @@ +#!/bin/bash +dbt run diff --git a/tasks/helixops_saas008/solution.sh b/tasks/helixops_saas008/solution.sh new file mode 100755 index 00000000..aeb96473 --- /dev/null +++ b/tasks/helixops_saas008/solution.sh @@ -0,0 +1,3 @@ +#!/bin/bash +patch -p1 < /sage/solutions/changes.patch +dbt run --select stg_accounts+ diff --git a/tasks/helixops_saas008/solutions/changes.patch b/tasks/helixops_saas008/solutions/changes.patch new file mode 100644 index 00000000..0b60b03d --- /dev/null +++ b/tasks/helixops_saas008/solutions/changes.patch @@ -0,0 +1,64 @@ +--- a/models/staging/stg_accounts.sql ++++ b/models/staging/stg_accounts.sql +@@ -17,7 +17,7 @@ + when lower(trim(acct_stat)) in ('cust_active', 'active', '1', 'current') then 'active' + when lower(trim(acct_stat)) in ('churned', 'closed_lost', 'cancelled', 'closed') then 'churned' + else 'active' +- end as account_status, ++ end as customer_status, + trim(employee_band_txt) as employee_band, + trim(owner_team_txt) as owner_team, + {{ bool_from_text('is_deleted_flag') }} as is_deleted, +--- a/models/intermediate/int_account_users.sql ++++ b/models/intermediate/int_account_users.sql +@@ -12,7 +12,7 @@ + a.region, + a.segment, + a.billing_country, +- a.account_status, ++ a.customer_status, + a.owner_team, + u.email, + u.full_name, +--- a/models/marts/dim_accounts.sql ++++ b/models/marts/dim_accounts.sql +@@ -22,7 +22,7 @@ + a.segment, + a.billing_country, + a.created_at, +- a.account_status, ++ a.customer_status, + a.is_churned, + a.employee_band, + a.owner_team, +--- a/models/marts/mart_account_360.sql ++++ b/models/marts/mart_account_360.sql +@@ -44,7 +44,7 @@ + a.region, + a.segment, + a.billing_country, +- a.account_status, ++ a.customer_status, + a.is_churned, + a.employee_band, + a.owner_team, +--- a/models/marts/mart_account_health.sql ++++ b/models/marts/mart_account_health.sql +@@ -33,7 +33,7 @@ + a.segment, + a.region, + a.billing_country, +- a.account_status, ++ a.customer_status, + b.plan_name, + b.latest_subscription_status, + b.latest_invoice_status, +@@ -55,7 +55,7 @@ + - (case when b.has_past_due_invoice then 25 else 0 end) + - (case when coalesce(s.open_ticket_count, 0) >= 3 then 15 when coalesce(s.open_ticket_count, 0) > 0 then 5 else 0 end) + - (case when coalesce(e.avg_active_users_7d, 0) = 0 then 20 when coalesce(e.avg_active_users_7d, 0) < 3 then 10 else 0 end) +- - (case when a.account_status = 'churned' then 40 else 0 end) ++ - (case when a.customer_status = 'churned' then 40 else 0 end) + ) as account_health_score + from accounts a + left join billing b using (account_id) diff --git a/tasks/helixops_saas008/task.yaml b/tasks/helixops_saas008/task.yaml new file mode 100644 index 00000000..294f4ab7 --- /dev/null +++ b/tasks/helixops_saas008/task.yaml @@ -0,0 +1,31 @@ +task_id: helixops_saas008 +status: ready +description: Rename account_status to customer_status in staging and propagate the breaking change through five downstream models +prompts: + - key: base + prompt: |- + stg_accounts has account_status instead of customer_status, please rename and propagate. +author_name: joel +author_email: joel@example.com +difficulty: hard +tags: + - dbt + - helixops_saas +test_setup: |- + dbt run --select stg_accounts+ +variants: +- db_type: duckdb + db_name: helixops_saas + project_type: dbt + project_name: helixops_saas +- db_type: duckdb + db_name: helixops_saas + project_type: dbt-fusion + project_name: helixops_saas +solution_seeds: + - table_name: stg_accounts + - table_name: dim_accounts + - table_name: int_account_users + exclude_columns: [days_since_last_login] + - table_name: mart_account_360 + - table_name: mart_account_health diff --git a/tasks/helixops_saas008/tests/AUTO_dim_accounts_equality.sql b/tasks/helixops_saas008/tests/AUTO_dim_accounts_equality.sql new file mode 100644 index 00000000..8c53b92b --- /dev/null +++ b/tasks/helixops_saas008/tests/AUTO_dim_accounts_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'dim_accounts' %} +{% set answer_keys = ['solution__dim_accounts'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__dim_accounts') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas008/tests/AUTO_dim_accounts_existence.sql b/tasks/helixops_saas008/tests/AUTO_dim_accounts_existence.sql new file mode 100644 index 00000000..359cdd6c --- /dev/null +++ b/tasks/helixops_saas008/tests/AUTO_dim_accounts_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'dim_accounts' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas008/tests/AUTO_int_account_users_equality.sql b/tasks/helixops_saas008/tests/AUTO_int_account_users_equality.sql new file mode 100644 index 00000000..27e1dd52 --- /dev/null +++ b/tasks/helixops_saas008/tests/AUTO_int_account_users_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'int_account_users' %} +{% set answer_keys = ['solution__int_account_users'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + 'days_since_last_login' +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__int_account_users') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas008/tests/AUTO_int_account_users_existence.sql b/tasks/helixops_saas008/tests/AUTO_int_account_users_existence.sql new file mode 100644 index 00000000..383baafb --- /dev/null +++ b/tasks/helixops_saas008/tests/AUTO_int_account_users_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'int_account_users' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas008/tests/AUTO_mart_account_360_equality.sql b/tasks/helixops_saas008/tests/AUTO_mart_account_360_equality.sql new file mode 100644 index 00000000..b21e2fc5 --- /dev/null +++ b/tasks/helixops_saas008/tests/AUTO_mart_account_360_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'mart_account_360' %} +{% set answer_keys = ['solution__mart_account_360'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__mart_account_360') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas008/tests/AUTO_mart_account_360_existence.sql b/tasks/helixops_saas008/tests/AUTO_mart_account_360_existence.sql new file mode 100644 index 00000000..708adf72 --- /dev/null +++ b/tasks/helixops_saas008/tests/AUTO_mart_account_360_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'mart_account_360' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas008/tests/AUTO_mart_account_health_equality.sql b/tasks/helixops_saas008/tests/AUTO_mart_account_health_equality.sql new file mode 100644 index 00000000..9a6d55ff --- /dev/null +++ b/tasks/helixops_saas008/tests/AUTO_mart_account_health_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'mart_account_health' %} +{% set answer_keys = ['solution__mart_account_health'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__mart_account_health') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas008/tests/AUTO_mart_account_health_existence.sql b/tasks/helixops_saas008/tests/AUTO_mart_account_health_existence.sql new file mode 100644 index 00000000..150e9ee2 --- /dev/null +++ b/tasks/helixops_saas008/tests/AUTO_mart_account_health_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'mart_account_health' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas008/tests/AUTO_stg_accounts_equality.sql b/tasks/helixops_saas008/tests/AUTO_stg_accounts_equality.sql new file mode 100644 index 00000000..848db2ba --- /dev/null +++ b/tasks/helixops_saas008/tests/AUTO_stg_accounts_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'stg_accounts' %} +{% set answer_keys = ['solution__stg_accounts'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__stg_accounts') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas008/tests/AUTO_stg_accounts_existence.sql b/tasks/helixops_saas008/tests/AUTO_stg_accounts_existence.sql new file mode 100644 index 00000000..a9d72491 --- /dev/null +++ b/tasks/helixops_saas008/tests/AUTO_stg_accounts_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'stg_accounts' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas009/macros/ade_bench_equality_test.sql b/tasks/helixops_saas009/macros/ade_bench_equality_test.sql new file mode 100644 index 00000000..510c6037 --- /dev/null +++ b/tasks/helixops_saas009/macros/ade_bench_equality_test.sql @@ -0,0 +1,78 @@ +{% macro ade_bench_equality_test(table_name, answer_keys, cols_to_exclude=[]) %} + {% if not execute %} + select 1 where 1=0 + {% else %} + {% set ns = namespace(matched=false) %} + {% set actual_rel = load_relation(ref(table_name)) %} + + {% if actual_rel is not none %} + {% set actual_columns = adapter.get_columns_in_relation(actual_rel) %} + {% set exclude_lower = cols_to_exclude | map('lower') | list %} + + {%- set actual_col_names = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do actual_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set actual_set = actual_col_names | sort %} + + {% for answer_key in answer_keys %} + {% if not ns.matched %} + {% set seed_rel = load_relation(ref(answer_key)) %} + {% if seed_rel is not none %} + {% set seed_columns = adapter.get_columns_in_relation(seed_rel) %} + + {%- set seed_col_names = [] -%} + {%- for col in seed_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do seed_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set seed_set = seed_col_names | sort %} + + {% if actual_set == seed_set %} + {%- set compare_cols = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do compare_cols.append(col.quoted) -%} + {%- endif -%} + {%- endfor -%} + {% set compare_cols_csv = compare_cols | join(', ') %} + + {% set query %} + with a_minus_b as ( + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + except + select {{ compare_cols_csv }} from {{ ref(table_name) }} + ), + b_minus_a as ( + select {{ compare_cols_csv }} from {{ ref(table_name) }} + except + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + ), + unioned as ( + select * from a_minus_b + union all + select * from b_minus_a + ) + select count(*) as diff_count from unioned + {% endset %} + + {% set result = run_query(query) %} + {% if result.rows[0][0] == 0 %} + {% set ns.matched = true %} + {% endif %} + {% endif %} + {% endif %} + {% endif %} + {% endfor %} + {% endif %} + + {% if ns.matched %} + select 1 where 1=0 + {% else %} + select 1 + {% endif %} + {% endif %} +{% endmacro %} diff --git a/tasks/helixops_saas009/seeds/_no-op.txt b/tasks/helixops_saas009/seeds/_no-op.txt new file mode 100644 index 00000000..1b922ab4 --- /dev/null +++ b/tasks/helixops_saas009/seeds/_no-op.txt @@ -0,0 +1,26 @@ + + +seeds: + helixops_saas: + solution__dim_accounts_v2: + +column_types: + account_id: varchar + account_name: varchar + industry: varchar + region: varchar + segment: varchar + billing_country: varchar + created_at: timestamp + customer_status: varchar + is_churned: boolean + employee_band: varchar + owner_team: varchar + workspace_count: bigint + active_workspace_count: bigint + prod_workspace_count: bigint + sandbox_workspace_count: bigint + primary_workspace_name: varchar + user_count: bigint + active_user_count: bigint + inactive_user_count: bigint + provisioned_user_count: bigint diff --git a/tasks/helixops_saas009/seeds/solution__dim_accounts_v2.csv b/tasks/helixops_saas009/seeds/solution__dim_accounts_v2.csv new file mode 100644 index 00000000..128dcee4 --- /dev/null +++ b/tasks/helixops_saas009/seeds/solution__dim_accounts_v2.csv @@ -0,0 +1,91 @@ +account_id,account_name,industry,region,segment,billing_country,created_at,customer_status,is_churned,employee_band,owner_team,workspace_count,active_workspace_count,prod_workspace_count,sandbox_workspace_count,primary_workspace_name,user_count,active_user_count,inactive_user_count,provisioned_user_count +A1001,Helio Systems,healthcare,EMEA,mid_market,NL,2024-08-12 13:43:48,active,false,201-500,CSM-EMEA,3,3,3,0,helio-core,9,7,2,0 +A1002,Summit Foods,media,NA,mid_market,US,2025-01-10 22:12:29,active,false,501-1000,CSM-East,3,3,2,1,summit-core,12,11,1,0 +A1003,Nova Ventures,manufacturing,NA,enterprise,US,2024-12-11 03:21:52,active,false,1000+,CSM-East,3,2,2,1,nova-core,16,15,1,0 +A1004,Silver Solutions,manufacturing,NA,enterprise,US,2024-09-07 13:27:43,churned,true,5000+,CSM-East,2,0,1,1,silver-core,14,6,8,0 +A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,2024-08-31 14:28:15,active,false,5000+,CSM-EMEA,3,3,3,0,pacific-core,15,12,3,0 +A1006,Helio Works,education,EMEA,mid_market,UK,2024-11-21 09:17:28,active,false,201-500,CSM-EMEA,2,2,2,0,helio-core,7,5,2,0 +A1007,Silver Systems,energy,EMEA,smb,FR,2024-12-22 18:20:12,active,false,51-200,CSM-EMEA,1,1,1,0,silver-core,4,3,1,0 +A1008,Pacific Works,software,EMEA,mid_market,UK,2024-10-06 11:07:40,active,false,201-500,CSM-EMEA,3,3,3,0,pacific-core,11,11,0,0 +A1009,Summit Group,financial_services,NA,mid_market,US,2024-08-22 17:22:46,active,false,501-1000,CSM-East,2,2,2,0,summit-core,13,11,2,0 +A1010,Orchid Foods,education,NA,smb,CA,2025-02-10 21:10:21,active,false,11-50,CSM-East,1,1,1,0,orchid-core,8,7,1,0 +A1011,Vertex Energy,software,NA,smb,CA,2025-01-14 09:17:33,active,false,51-200,CSM-East,1,1,1,0,vertex-core,6,6,0,0 +A1012,Cedar Ventures,retail,APAC,smb,JP,2024-08-19 07:09:23,active,false,11-50,CSM-APAC,2,2,1,1,cedar-core,7,6,1,0 +A1013,River Foods,manufacturing,NA,mid_market,US,2024-12-27 04:56:58,active,false,501-1000,CSM-East,3,3,3,0,river-core,7,5,2,0 +A1014,Evergreen Global,retail,APAC,enterprise,SG,2024-09-21 19:29:43,churned,true,1000+,CSM-APAC,1,0,1,0,evergreen-core,18,4,14,0 +A1015,Delta Network,logistics,NA,smb,US,2024-09-04 16:34:41,churned,true,51-200,CSM-East,2,0,1,1,delta-core,3,0,3,0 +A1016,BluePeak Capital,energy,EMEA,enterprise,DE,2024-12-24 05:07:46,active,false,1000+,CSM-EMEA,4,4,4,0,bluepeak-core,19,19,0,0 +A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,2024-11-28 10:14:21,active,false,201-500,CSM-EMEA,2,2,2,0,summit-core,9,8,1,0 +A1018,Harbor Manufacturing,media,EMEA,smb,UK,2024-09-18 20:10:22,churned,true,11-50,CSM-EMEA,2,0,2,0,harbor-core,3,2,1,0 +A1019,Sierra Systems,education,APAC,smb,JP,2025-02-26 10:36:13,active,false,51-200,CSM-APAC,2,2,1,1,sierra-core,4,3,1,0 +A1020,Pioneer Network,travel,EMEA,smb,FR,2025-02-18 00:09:23,active,false,11-50,CSM-EMEA,1,1,1,0,pioneer-core,4,3,1,0 +A1021,Apex Logistics,software,NA,smb,US,2024-10-25 12:34:29,active,false,11-50,CSM-East,1,1,1,0,apex-core,7,7,0,0 +A1022,Summit Collective,retail,APAC,smb,NZ,2025-02-16 16:16:56,active,false,51-200,CSM-APAC,2,2,1,1,summit-core,5,3,2,0 +A1023,Atlas Systems,education,NA,smb,CA,2025-01-31 16:25:38,active,false,11-50,CSM-East,1,1,1,0,atlas-core,8,8,0,0 +A1024,Sierra Group,manufacturing,NA,smb,CA,2025-01-29 08:59:07,active,false,11-50,CSM-East,2,2,2,0,sierra-core,4,4,0,0 +A1025,Bright Capital,education,EMEA,smb,UK,2024-10-14 09:44:56,active,false,51-200,CSM-EMEA,1,1,1,0,bright-core,6,5,1,0 +A1026,Pioneer Capital,education,NA,smb,CA,2024-08-30 06:38:17,active,false,11-50,CSM-East,1,1,1,0,pioneer-core,8,8,0,0 +A1027,BluePeak Health,retail,APAC,smb,SG,2024-10-31 19:12:59,active,false,51-200,CSM-APAC,2,2,2,0,bluepeak-core,5,5,0,0 +A1028,Apex Energy,energy,APAC,mid_market,SG,2024-12-26 04:17:07,active,false,501-1000,CSM-APAC,2,2,1,1,apex-core,11,10,1,0 +A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,2024-08-31 01:24:19,churned,true,1000+,CSM-APAC,1,0,1,0,bright-core,17,3,13,1 +A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,2024-08-23 04:49:08,active,false,5000+,CSM-EMEA,4,4,4,0,northwind-core,12,11,1,0 +A1031,Helio Holdings,healthcare,APAC,mid_market,AU,2025-02-14 05:18:16,active,false,201-500,CSM-APAC,3,3,3,0,helio-core,10,10,0,0 +A1032,Vertex Works,manufacturing,EMEA,mid_market,DE,2024-09-16 13:25:27,churned,true,201-500,CSM-EMEA,2,0,2,0,vertex-core,6,4,2,0 +A1033,Lighthouse Global,logistics,NA,mid_market,CA,2024-10-19 07:50:01,active,false,201-500,CSM-East,2,2,2,0,lighthouse-core,12,12,0,0 +A1034,Helio Partners,travel,NA,smb,CA,2024-12-01 18:59:06,active,false,51-200,CSM-East,2,2,1,1,helio-core,7,7,0,0 +A1035,Bright Retail,retail,EMEA,mid_market,UK,2025-02-25 19:06:57,active,false,501-1000,CSM-EMEA,3,3,2,1,bright-core,13,11,1,1 +A1036,Granite Holdings,education,NA,smb,US,2024-12-22 12:14:31,churned,true,51-200,CSM-East,2,0,1,1,granite-core,3,0,3,0 +A1037,Lighthouse Network,media,EMEA,enterprise,UK,2024-11-25 06:24:43,active,false,1000+,CSM-EMEA,4,4,2,2,lighthouse-core,18,15,3,0 +A1038,River Systems,logistics,APAC,smb,AU,2024-11-18 10:09:31,active,false,51-200,CSM-APAC,2,2,2,0,river-core,5,4,1,0 +A1039,Nova Group,media,EMEA,smb,FR,2025-02-06 17:26:48,active,false,11-50,CSM-EMEA,1,1,1,0,nova-core,7,7,0,0 +A1040,Harbor Collective,healthcare,APAC,mid_market,SG,2024-12-08 12:58:20,active,false,201-500,CSM-APAC,3,3,2,1,harbor-core,12,10,2,0 +A1041,Cedar Logistics,media,EMEA,mid_market,NL,2024-08-04 18:07:41,active,false,201-500,CSM-EMEA,3,3,2,1,cedar-core,12,10,2,0 +A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,2024-09-19 11:52:42,active,false,501-1000,CSM-APAC,3,3,2,1,northwind-core,11,10,1,0 +A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,2024-10-21 14:03:18,active,false,1000+,CSM-APAC,4,4,3,1,lighthouse-core,18,16,2,0 +A1044,Summit Holdings,software,EMEA,smb,NL,2024-09-30 00:32:29,active,false,11-50,CSM-EMEA,1,1,1,0,summit-core,5,5,0,0 +A1045,Nova Holdings,manufacturing,NA,enterprise,CA,2024-11-05 09:05:10,active,false,1000+,CSM-East,4,4,4,0,nova-core,14,14,0,0 +A1046,Pioneer Solutions,education,NA,smb,CA,2024-10-17 12:09:12,active,false,51-200,CSM-East,1,1,1,0,pioneer-core,5,4,1,0 +A1047,Orchid Global,healthcare,APAC,enterprise,AU,2024-10-15 00:06:00,active,false,5000+,CSM-APAC,3,3,2,1,orchid-core,19,19,0,0 +A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,2025-02-14 20:00:18,active,false,5000+,CSM-APAC,3,3,3,0,orchid-core,17,14,3,0 +A1049,Northwind Network,energy,NA,enterprise,CA,2024-11-12 02:19:33,active,false,5000+,CSM-East,3,3,3,0,northwind-core,20,18,2,0 +A1050,Cedar Energy,software,APAC,smb,JP,2025-02-15 14:48:30,active,false,11-50,CSM-APAC,2,2,1,1,cedar-core,4,4,0,0 +A1051,Lighthouse Systems,media,EMEA,smb,UK,2025-02-26 02:44:10,active,false,51-200,CSM-EMEA,1,1,1,0,lighthouse-core,7,4,3,0 +A1052,Sierra Labs,software,APAC,mid_market,NZ,2024-11-30 21:54:21,active,false,501-1000,CSM-APAC,2,2,2,0,sierra-core,10,9,1,0 +A1053,Bright Health,media,NA,mid_market,CA,2024-09-19 10:24:29,active,false,501-1000,CSM-East,3,3,3,0,bright-core,10,9,1,0 +A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,2024-08-01 03:47:01,active,false,201-500,CSM-APAC,3,3,3,0,granite-core,12,8,4,0 +A1055,Pioneer Systems,travel,EMEA,mid_market,FR,2025-01-19 13:44:38,active,false,501-1000,CSM-EMEA,2,2,1,1,pioneer-core,13,12,1,0 +A1056,Delta Global,retail,APAC,mid_market,AU,2024-11-19 05:04:51,active,false,201-500,CSM-APAC,3,3,3,0,delta-core,11,10,1,0 +A1057,Harbor Partners,education,APAC,enterprise,NZ,2024-10-17 08:01:31,active,false,1000+,CSM-APAC,4,4,3,1,harbor-core,13,12,1,0 +A1058,Evergreen Analytics,travel,EMEA,smb,UK,2025-01-08 22:52:12,active,false,11-50,CSM-EMEA,2,2,2,0,evergreen-core,7,5,2,0 +A1059,Evergreen Partners,education,NA,mid_market,CA,2024-09-27 07:27:52,active,false,201-500,CSM-East,2,2,1,1,evergreen-core,11,10,1,0 +A1060,Cedar Foods,healthcare,NA,mid_market,CA,2024-11-05 18:41:46,active,false,201-500,CSM-East,2,2,1,1,cedar-core,13,11,2,0 +A1061,Atlas Capital,travel,EMEA,enterprise,FR,2025-02-13 00:52:24,active,false,5000+,CSM-EMEA,3,3,2,1,atlas-core,17,16,0,1 +A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,2024-11-09 15:50:25,active,false,1000+,CSM-EMEA,3,3,3,0,delta-core,14,14,0,0 +A1063,Maple Global,education,NA,smb,CA,2024-11-14 12:34:06,active,false,11-50,CSM-East,1,1,1,0,maple-core,4,3,1,0 +A1064,Atlas Health,education,NA,smb,US,2024-08-25 22:39:22,active,false,51-200,CSM-East,1,1,1,0,atlas-core,4,4,0,0 +A1065,Vertex Partners,manufacturing,NA,mid_market,US,2024-12-30 06:11:13,active,false,501-1000,CSM-East,2,2,2,0,vertex-core,11,9,2,0 +A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,2025-01-10 17:33:41,active,false,201-500,CSM-APAC,2,2,2,0,pacific-core,12,10,2,0 +A1067,Maple Energy,healthcare,NA,mid_market,CA,2024-12-30 00:24:42,active,false,201-500,CSM-East,2,2,1,1,maple-core,7,6,1,0 +A1068,Helio Health,manufacturing,APAC,enterprise,SG,2024-08-11 12:36:33,active,false,1000+,CSM-APAC,4,4,3,1,helio-core,16,15,1,0 +A1069,Bright Foods,manufacturing,NA,enterprise,CA,2024-12-06 03:08:52,active,false,5000+,CSM-East,3,3,3,0,bright-core,13,11,2,0 +A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,2024-11-06 23:20:27,active,false,11-50,CSM-APAC,1,1,1,0,helio-core,8,6,2,0 +A1071,Evergreen Group,education,NA,mid_market,CA,2024-08-27 15:34:10,active,false,201-500,CSM-East,3,3,2,1,evergreen-core,13,12,0,1 +A1072,Summit Ventures,software,NA,enterprise,US,2024-09-29 04:18:23,active,false,5000+,CSM-East,3,3,2,1,summit-core,18,15,3,0 +A1073,Silver Holdings,travel,EMEA,mid_market,DE,2024-11-08 12:21:51,active,false,201-500,CSM-EMEA,2,2,2,0,silver-core,13,10,3,0 +A1074,Granite Analytics,retail,NA,mid_market,CA,2024-08-10 23:20:24,active,false,501-1000,CSM-East,3,3,3,0,granite-core,12,11,1,0 +A1075,Cedar Labs,software,EMEA,smb,UK,2024-11-03 07:31:13,active,false,11-50,CSM-EMEA,1,1,1,0,cedar-core,8,8,0,0 +A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,2025-02-23 21:32:44,active,false,201-500,CSM-EMEA,2,2,2,0,atlas-core,13,13,0,0 +A1077,Evergreen Foods,travel,NA,mid_market,CA,2024-09-10 23:41:36,active,false,201-500,CSM-East,3,3,3,0,evergreen-core,12,7,4,1 +A1078,Beacon Foods,software,EMEA,mid_market,FR,2025-02-26 00:08:06,active,false,501-1000,CSM-EMEA,3,3,3,0,beacon-core,12,10,2,0 +A1079,Nova Foods,education,EMEA,enterprise,FR,2024-09-03 15:45:24,active,false,1000+,CSM-EMEA,4,4,4,0,nova-core,20,14,6,0 +A1080,Beacon Global,financial_services,EMEA,mid_market,NL,2024-08-12 03:30:12,active,false,201-500,CSM-EMEA,2,2,2,0,beacon-core,10,10,0,0 +A1081,River Collective,financial_services,NA,mid_market,CA,2024-11-17 14:36:21,active,false,201-500,CSM-East,3,3,2,1,river-core,9,7,1,1 +A1082,Summit Manufacturing,manufacturing,NA,mid_market,US,2024-11-16 19:18:31,churned,true,501-1000,CSM-East,1,0,1,0,summit-core,7,2,5,0 +A1083,Falcon Works,education,NA,mid_market,CA,2025-01-05 01:17:30,active,false,501-1000,CSM-East,2,2,1,1,falcon-core,7,5,2,0 +A1084,Silver Foods,manufacturing,NA,mid_market,CA,2024-12-07 11:11:54,active,false,501-1000,CSM-East,2,2,2,0,silver-core,11,9,2,0 +A1085,Sierra Capital,financial_services,NA,smb,US,2024-09-16 10:19:51,active,false,11-50,CSM-East,1,1,1,0,sierra-core,4,4,0,0 +A1086,River Labs,software,EMEA,smb,FR,2025-02-20 17:58:12,active,false,11-50,CSM-EMEA,1,1,1,0,river-core,5,4,1,0 +A1087,Apex Capital,energy,NA,enterprise,CA,2024-11-26 09:20:17,churned,true,1000+,CSM-East,1,0,1,0,apex-core,9,4,4,1 +A1088,Cedar Partners,energy,APAC,smb,NZ,2025-02-07 15:19:15,active,false,51-200,CSM-APAC,1,1,1,0,cedar-core,6,5,1,0 +A1089,Beacon Network,healthcare,NA,mid_market,US,2024-11-07 01:16:08,active,false,201-500,CSM-East,2,2,2,0,beacon-core,12,10,1,1 +A1090,Vertex Labs,energy,NA,smb,US,2024-09-27 22:37:20,active,false,11-50,CSM-East,1,1,1,0,vertex-core,4,4,0,0 diff --git a/tasks/helixops_saas009/setup.sh b/tasks/helixops_saas009/setup.sh new file mode 100755 index 00000000..ba9d7064 --- /dev/null +++ b/tasks/helixops_saas009/setup.sh @@ -0,0 +1,2 @@ +#!/bin/bash +dbt run diff --git a/tasks/helixops_saas009/solution.sh b/tasks/helixops_saas009/solution.sh new file mode 100755 index 00000000..8e35a432 --- /dev/null +++ b/tasks/helixops_saas009/solution.sh @@ -0,0 +1,3 @@ +#!/bin/bash +patch -p1 < /sage/solutions/changes.patch +dbt run --select dim_accounts diff --git a/tasks/helixops_saas009/solutions/changes.patch b/tasks/helixops_saas009/solutions/changes.patch new file mode 100644 index 00000000..4a8122ec --- /dev/null +++ b/tasks/helixops_saas009/solutions/changes.patch @@ -0,0 +1,39 @@ +--- /dev/null ++++ b/models/marts/_models.yml +@@ -0,0 +1,11 @@ ++models: ++ - name: dim_accounts ++ latest_version: 1 ++ versions: ++ - v: 1 ++ - v: 2 ++ defined_in: dim_accounts_v2 ++ columns: ++ - include: all ++ exclude: [account_status] ++ - name: customer_status +--- /dev/null ++++ b/models/marts/dim_accounts_v2.sql +@@ -0,0 +1,22 @@ ++select ++ account_id, ++ account_name, ++ industry, ++ region, ++ segment, ++ billing_country, ++ created_at, ++ account_status as customer_status, ++ is_churned, ++ employee_band, ++ owner_team, ++ workspace_count, ++ active_workspace_count, ++ prod_workspace_count, ++ sandbox_workspace_count, ++ primary_workspace_name, ++ user_count, ++ active_user_count, ++ inactive_user_count, ++ provisioned_user_count ++from {{ ref('dim_accounts') }} diff --git a/tasks/helixops_saas009/task.yaml b/tasks/helixops_saas009/task.yaml new file mode 100644 index 00000000..085b3281 --- /dev/null +++ b/tasks/helixops_saas009/task.yaml @@ -0,0 +1,27 @@ +task_id: helixops_saas009 +status: ready +description: Create a new dim_accounts_v2 model with a renamed column — the original dim_accounts must remain unchanged +prompts: + - key: base + prompt: |- + Please create a v2 of dim_accounts with account_status renamed to customer_status — this will become the primary version in the future but not yet. +author_name: joel +author_email: joel@example.com +difficulty: easy +tags: + - dbt + - helixops_saas +test_setup: |- + dbt run --select dim_accounts +variants: +- db_type: duckdb + db_name: helixops_saas + project_type: dbt + project_name: helixops_saas +- db_type: duckdb + db_name: helixops_saas + project_type: dbt-fusion + project_name: helixops_saas +solution_seeds: + - table_name: dim_accounts_v2 + exclude_tests: [equality_test, existence_test] diff --git a/tasks/helixops_saas009/tests/customer_status_exists.sql b/tasks/helixops_saas009/tests/customer_status_exists.sql new file mode 100644 index 00000000..fdcb3705 --- /dev/null +++ b/tasks/helixops_saas009/tests/customer_status_exists.sql @@ -0,0 +1 @@ +select 1 from {{ ref('dim_accounts', v=2) }} where customer_status is not null limit 0 diff --git a/tasks/helixops_saas009/tests/dim_accounts_v2_equality.sql b/tasks/helixops_saas009/tests/dim_accounts_v2_equality.sql new file mode 100644 index 00000000..96bbdf92 --- /dev/null +++ b/tasks/helixops_saas009/tests/dim_accounts_v2_equality.sql @@ -0,0 +1,21 @@ +-- Passes when dim_accounts v2 output matches expected solution. +-- Uses versioned ref syntax since dim_accounts_v2 is defined via dbt model versioning. +with actual as ( + select * from {{ ref('dim_accounts', v=2) }} +), +expected as ( + select * from {{ ref('solution__dim_accounts_v2') }} +), +a_minus_b as ( + select * from expected + except + select * from actual +), +b_minus_a as ( + select * from actual + except + select * from expected +) +select * from a_minus_b +union all +select * from b_minus_a diff --git a/tasks/helixops_saas009/tests/dim_accounts_v2_existence.sql b/tasks/helixops_saas009/tests/dim_accounts_v2_existence.sql new file mode 100644 index 00000000..23e9fb19 --- /dev/null +++ b/tasks/helixops_saas009/tests/dim_accounts_v2_existence.sql @@ -0,0 +1,8 @@ +-- Passes when dim_accounts v2 and the solution seed both exist. +{% set actual_rel = load_relation(ref('dim_accounts', v=2)) %} +{% set seed_rel = load_relation(ref('solution__dim_accounts_v2')) %} +{% if actual_rel is none or seed_rel is none %} + select 1 +{% else %} + select 1 where 1=0 +{% endif %} diff --git a/tasks/helixops_saas009/tests/dim_accounts_versioned.sql b/tasks/helixops_saas009/tests/dim_accounts_versioned.sql new file mode 100644 index 00000000..83f4fc02 --- /dev/null +++ b/tasks/helixops_saas009/tests/dim_accounts_versioned.sql @@ -0,0 +1,8 @@ +-- Passes only when dim_accounts is properly defined with dbt model versioning (both v1 and v2 in graph). +-- Node key format for versioned models: model.project.model_name.vN +{% if 'model.helixops_saas.dim_accounts.v1' in graph.nodes + and 'model.helixops_saas.dim_accounts.v2' in graph.nodes %} + select 1 where 1=0 +{% else %} + select 1 +{% endif %} diff --git a/tasks/helixops_saas010/macros/ade_bench_equality_test.sql b/tasks/helixops_saas010/macros/ade_bench_equality_test.sql new file mode 100644 index 00000000..510c6037 --- /dev/null +++ b/tasks/helixops_saas010/macros/ade_bench_equality_test.sql @@ -0,0 +1,78 @@ +{% macro ade_bench_equality_test(table_name, answer_keys, cols_to_exclude=[]) %} + {% if not execute %} + select 1 where 1=0 + {% else %} + {% set ns = namespace(matched=false) %} + {% set actual_rel = load_relation(ref(table_name)) %} + + {% if actual_rel is not none %} + {% set actual_columns = adapter.get_columns_in_relation(actual_rel) %} + {% set exclude_lower = cols_to_exclude | map('lower') | list %} + + {%- set actual_col_names = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do actual_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set actual_set = actual_col_names | sort %} + + {% for answer_key in answer_keys %} + {% if not ns.matched %} + {% set seed_rel = load_relation(ref(answer_key)) %} + {% if seed_rel is not none %} + {% set seed_columns = adapter.get_columns_in_relation(seed_rel) %} + + {%- set seed_col_names = [] -%} + {%- for col in seed_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do seed_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set seed_set = seed_col_names | sort %} + + {% if actual_set == seed_set %} + {%- set compare_cols = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do compare_cols.append(col.quoted) -%} + {%- endif -%} + {%- endfor -%} + {% set compare_cols_csv = compare_cols | join(', ') %} + + {% set query %} + with a_minus_b as ( + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + except + select {{ compare_cols_csv }} from {{ ref(table_name) }} + ), + b_minus_a as ( + select {{ compare_cols_csv }} from {{ ref(table_name) }} + except + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + ), + unioned as ( + select * from a_minus_b + union all + select * from b_minus_a + ) + select count(*) as diff_count from unioned + {% endset %} + + {% set result = run_query(query) %} + {% if result.rows[0][0] == 0 %} + {% set ns.matched = true %} + {% endif %} + {% endif %} + {% endif %} + {% endif %} + {% endfor %} + {% endif %} + + {% if ns.matched %} + select 1 where 1=0 + {% else %} + select 1 + {% endif %} + {% endif %} +{% endmacro %} diff --git a/tasks/helixops_saas010/seeds/_no-op.txt b/tasks/helixops_saas010/seeds/_no-op.txt new file mode 100644 index 00000000..2e1f1a87 --- /dev/null +++ b/tasks/helixops_saas010/seeds/_no-op.txt @@ -0,0 +1,102 @@ + + +seeds: + helixops_saas: + solution__stg_workspaces: + +column_types: + workspace_id: varchar + account_id: varchar + workspace_name: varchar + created_at: timestamp + workspace_status: varchar + deactivated_at: timestamp + environment_tier: varchar + is_primary: boolean + is_active_workspace: boolean + raw_load_epoch: varchar + solution__int_account_workspaces: + +column_types: + account_id: varchar + workspace_count: bigint + active_workspace_count: bigint + prod_workspace_count: bigint + sandbox_workspace_count: bigint + primary_workspace_count: bigint + primary_workspace_name: varchar + first_workspace_created_at: timestamp + latest_workspace_created_at: timestamp + solution__int_workspace_roster: + +column_types: + membership_id: varchar + workspace_id: varchar + workspace_name: varchar + environment_tier: varchar + workspace_status: varchar + is_primary: boolean + account_id: varchar + account_name: varchar + segment: varchar + region: varchar + billing_country: varchar + user_id: varchar + email: varchar + full_name: varchar + title: varchar + department: varchar + user_status: varchar + is_active_user: boolean + role: varchar + invited_at: timestamp + joined_at: timestamp + membership_status: varchar + is_current_membership: boolean + solution__int_workspace_daily_metrics: + +column_types: + usage_id: varchar + workspace_id: varchar + account_id: varchar + account_name: varchar + industry: varchar + segment: varchar + region: varchar + billing_country: varchar + workspace_name: varchar + environment_tier: varchar + workspace_status: varchar + is_primary: boolean + usage_date: date + usage_week: date + weekday_num: bigint + is_weekend: boolean + active_users: integer + projects_run: integer + api_calls: integer + storage_gb: double + alerts_sent: integer + solution__int_support_sla: + +column_types: + ticket_id: varchar + account_id: varchar + account_name: varchar + segment: varchar + region: varchar + billing_country: varchar + workspace_id: varchar + workspace_name: varchar + environment_tier: varchar + opened_by_user_id: varchar + opened_at: timestamp + first_response_at: timestamp + resolved_at: timestamp + priority: varchar + category: varchar + ticket_status: varchar + csat_score: integer + first_response_minutes: bigint + resolution_minutes: bigint + response_sla_minutes: integer + met_response_sla: boolean + is_open_ticket: boolean + ticket_age_days: bigint + opened_month: date + resolved_month: date diff --git a/tasks/helixops_saas010/seeds/solution__int_account_workspaces.csv b/tasks/helixops_saas010/seeds/solution__int_account_workspaces.csv new file mode 100644 index 00000000..cada3d7e --- /dev/null +++ b/tasks/helixops_saas010/seeds/solution__int_account_workspaces.csv @@ -0,0 +1,82 @@ +account_id,workspace_count,active_workspace_count,prod_workspace_count,sandbox_workspace_count,primary_workspace_count,primary_workspace_name,first_workspace_created_at,latest_workspace_created_at +A1030,4,4,4,0,1,northwind-core,2024-08-30 07:49:08,2024-09-11 11:49:08 +A1039,1,1,1,0,1,nova-core,2025-02-16 18:26:48,2025-02-16 18:26:48 +A1043,4,4,3,1,1,lighthouse-core,2024-10-27 19:03:18,2024-11-29 14:03:18 +A1045,4,4,4,0,1,nova-core,2024-11-09 17:05:10,2024-11-21 11:05:10 +A1048,3,3,3,0,1,orchid-core,2025-02-20 21:00:18,2025-03-13 00:00:18 +A1090,1,1,1,0,1,vertex-core,2024-10-03 01:37:20,2024-10-03 01:37:20 +A1001,3,3,3,0,1,helio-core,2024-08-14 19:43:48,2024-08-30 20:43:48 +A1028,2,2,1,1,1,apex-core,2024-12-31 04:17:07,2025-01-02 08:17:07 +A1054,3,3,3,0,1,granite-core,2024-08-07 08:47:01,2024-08-25 04:47:01 +A1059,2,2,1,1,1,evergreen-core,2024-10-02 09:27:52,2024-10-08 12:27:52 +A1066,2,2,2,0,1,pacific-core,2025-01-15 19:33:41,2025-01-21 22:33:41 +A1067,2,2,1,1,1,maple-core,2025-01-07 02:24:42,2025-01-17 03:24:42 +A1071,3,3,2,1,1,evergreen-core,2024-09-05 21:34:10,2024-09-13 16:34:10 +A1079,4,4,4,0,1,nova-core,2024-09-09 23:45:24,2024-09-27 23:45:24 +A1009,2,2,2,0,1,summit-core,2024-09-02 00:22:46,2024-09-10 22:22:46 +A1021,1,1,1,0,1,apex-core,2024-10-26 20:34:29,2024-10-26 20:34:29 +A1072,3,3,2,1,1,summit-core,2024-10-08 09:18:23,2024-10-20 07:18:23 +A1077,3,3,3,0,1,evergreen-core,2024-09-13 07:41:36,2024-09-24 07:41:36 +A1022,2,2,1,1,1,summit-core,2025-02-22 23:16:56,2025-03-03 16:16:56 +A1068,4,4,3,1,1,helio-core,2024-08-17 18:36:33,2024-09-10 16:36:33 +A1083,2,2,1,1,1,falcon-core,2025-01-11 09:17:30,2025-01-19 09:17:30 +A1006,2,2,2,0,1,helio-core,2024-11-29 09:17:28,2024-12-06 13:17:28 +A1025,1,1,1,0,1,bright-core,2024-10-20 17:44:56,2024-10-20 17:44:56 +A1038,2,2,2,0,1,river-core,2024-11-24 13:09:31,2024-12-05 18:09:31 +A1047,3,3,2,1,1,orchid-core,2024-10-21 05:06:00,2024-10-27 01:06:00 +A1074,3,3,3,0,1,granite-core,2024-08-21 04:20:24,2024-09-08 06:20:24 +A1063,1,1,1,0,1,maple-core,2024-11-23 17:34:06,2024-11-23 17:34:06 +A1026,1,1,1,0,1,pioneer-core,2024-09-01 10:38:17,2024-09-01 10:38:17 +A1037,4,4,2,2,1,lighthouse-core,2024-11-28 12:24:43,2024-12-19 10:24:43 +A1042,3,3,2,1,1,northwind-core,2024-09-29 15:52:42,2024-10-13 12:52:42 +A1061,3,3,2,1,1,atlas-core,2025-02-20 05:52:24,2025-02-26 05:52:24 +A1064,1,1,1,0,1,atlas-core,2024-08-31 05:39:22,2024-08-31 05:39:22 +A1024,2,2,2,0,1,sierra-core,2025-02-03 14:59:07,2025-02-10 16:59:07 +A1035,3,3,2,1,1,bright-core,2025-02-28 19:06:57,2025-03-09 19:06:57 +A1058,2,2,2,0,1,evergreen-core,2025-01-19 04:52:12,2025-01-30 06:52:12 +A1017,2,2,2,0,1,summit-core,2024-12-08 12:14:21,2024-12-14 16:14:21 +A1023,1,1,1,0,1,atlas-core,2025-02-03 23:25:38,2025-02-03 23:25:38 +A1044,1,1,1,0,1,summit-core,2024-10-06 02:32:29,2024-10-06 02:32:29 +A1073,2,2,2,0,1,silver-core,2024-11-10 19:21:51,2024-11-21 19:21:51 +A1080,2,2,2,0,1,beacon-core,2024-08-17 09:30:12,2024-08-28 03:30:12 +A1086,1,1,1,0,1,river-core,2025-02-23 01:58:12,2025-02-23 01:58:12 +A1008,3,3,3,0,1,pacific-core,2024-10-11 11:07:40,2024-10-29 15:07:40 +A1055,2,2,1,1,1,pioneer-core,2025-01-21 19:44:38,2025-01-28 15:44:38 +A1069,3,3,3,0,1,bright-core,2024-12-07 05:08:52,2024-12-21 04:08:52 +A1078,3,3,3,0,1,beacon-core,2025-03-08 05:08:06,2025-03-26 01:08:06 +A1084,2,2,2,0,1,silver-core,2024-12-10 16:11:54,2024-12-19 14:11:54 +A1085,1,1,1,0,1,sierra-core,2024-09-19 11:19:51,2024-09-19 11:19:51 +A1089,2,2,2,0,1,beacon-core,2024-11-13 08:16:08,2024-11-22 04:16:08 +A1002,3,3,2,1,1,summit-core,2025-01-16 04:12:29,2025-01-26 22:12:29 +A1005,3,3,3,0,1,pacific-core,2024-09-05 18:28:15,2024-09-17 22:28:15 +A1011,1,1,1,0,1,vertex-core,2025-01-22 15:17:33,2025-01-22 15:17:33 +A1052,2,2,2,0,1,sierra-core,2024-12-10 22:54:21,2024-12-14 05:54:21 +A1062,3,3,3,0,1,delta-core,2024-11-19 16:50:25,2024-12-05 19:50:25 +A1019,2,2,1,1,1,sierra-core,2025-03-02 16:36:13,2025-03-10 10:36:13 +A1020,1,1,1,0,1,pioneer-core,2025-02-25 02:09:23,2025-02-25 02:09:23 +A1050,2,2,1,1,1,cedar-core,2025-02-21 16:48:30,2025-02-27 22:48:30 +A1060,2,2,1,1,1,cedar-core,2024-11-09 00:41:46,2024-11-10 19:41:46 +A1070,1,1,1,0,1,helio-core,2024-11-09 05:20:27,2024-11-09 05:20:27 +A1075,1,1,1,0,1,cedar-core,2024-11-08 07:31:13,2024-11-08 07:31:13 +A1010,1,1,1,0,1,orchid-core,2025-02-16 23:10:21,2025-02-16 23:10:21 +A1033,2,2,2,0,1,lighthouse-core,2024-10-20 07:50:01,2024-10-29 11:50:01 +A1046,1,1,1,0,1,pioneer-core,2024-10-20 12:09:12,2024-10-20 12:09:12 +A1051,1,1,1,0,1,lighthouse-core,2025-03-08 06:44:10,2025-03-08 06:44:10 +A1003,2,2,2,0,1,nova-core,2024-12-13 06:21:52,2024-12-25 03:21:52 +A1027,2,2,2,0,1,bluepeak-core,2024-11-02 20:12:59,2024-11-06 02:12:59 +A1034,2,2,1,1,1,helio-core,2024-12-05 23:59:06,2024-12-10 22:59:06 +A1040,3,3,2,1,1,harbor-core,2024-12-16 18:58:20,2024-12-22 15:58:20 +A1041,3,3,2,1,1,cedar-core,2024-08-08 01:07:41,2024-08-23 19:07:41 +A1049,3,3,3,0,1,northwind-core,2024-11-13 09:19:33,2024-12-01 03:19:33 +A1065,2,2,2,0,1,vertex-core,2025-01-04 09:11:13,2025-01-15 06:11:13 +A1088,1,1,1,0,1,cedar-core,2025-02-17 22:19:15,2025-02-17 22:19:15 +A1007,1,1,1,0,1,silver-core,2024-12-26 18:20:12,2024-12-26 18:20:12 +A1012,2,2,1,1,1,cedar-core,2024-08-28 14:09:23,2024-09-03 12:09:23 +A1013,3,3,3,0,1,river-core,2025-01-05 12:56:58,2025-01-27 11:56:58 +A1031,3,3,3,0,1,helio-core,2025-02-23 06:18:16,2025-03-11 09:18:16 +A1056,3,3,3,0,1,delta-core,2024-11-28 10:04:51,2024-12-14 05:04:51 +A1057,4,4,3,1,1,harbor-core,2024-10-27 13:01:31,2024-11-17 09:01:31 +A1076,2,2,2,0,1,atlas-core,2025-02-26 04:32:44,2025-02-28 02:32:44 +A1016,4,4,4,0,1,bluepeak-core,2024-12-27 09:07:46,2025-01-14 08:07:46 +A1053,3,3,3,0,1,bright-core,2024-09-23 17:24:29,2024-10-09 16:24:29 +A1081,3,3,2,1,1,river-core,2024-11-23 19:36:21,2024-12-15 16:36:21 diff --git a/tasks/helixops_saas010/seeds/solution__int_support_sla.csv b/tasks/helixops_saas010/seeds/solution__int_support_sla.csv new file mode 100644 index 00000000..3759b2e6 --- /dev/null +++ b/tasks/helixops_saas010/seeds/solution__int_support_sla.csv @@ -0,0 +1,321 @@ +ticket_id,account_id,account_name,segment,region,billing_country,workspace_id,workspace_name,environment_tier,opened_by_user_id,opened_at,first_response_at,resolved_at,priority,category,ticket_status,csat_score,first_response_minutes,resolution_minutes,response_sla_minutes,met_response_sla,is_open_ticket,ticket_age_days,opened_month,resolved_month +T10001,A1001,Helio Systems,mid_market,EMEA,NL,W2001,helio-core,prod,U3008,2025-04-16 18:58:46,2025-04-16 19:47:46,2025-04-19 01:12:46,high,data_freshness,resolved,5,49,3254,60,true,false,3,2025-04-01,2025-04-01 +T10002,A1001,Helio Systems,mid_market,EMEA,NL,W2003,helio-finance,prod,U3008,2025-05-09 04:23:39,2025-05-09 15:00:39,2025-05-11 09:31:39,low,data_freshness,resolved,5,637,3188,1440,true,false,2,2025-05-01,2025-05-01 +T10004,A1001,Helio Systems,mid_market,EMEA,NL,W2001,helio-core,prod,U3006,2025-04-29 09:21:34,2025-04-29 11:25:34,2025-04-29 19:35:34,medium,dashboard_filter,resolved,4,124,614,240,true,false,0,2025-04-01,2025-04-01 +T10005,A1002,Summit Foods,mid_market,NA,US,W2006,summit-finance,prod,U3016,2025-04-05 05:12:38,2025-04-05 15:20:38,2025-04-08 14:10:38,low,sso,resolved,5,608,4858,1440,true,false,3,2025-04-01,2025-04-01 +T10006,A1002,Summit Foods,mid_market,NA,US,W2005,summit-ops,sandbox,U3010,2025-04-13 06:17:16,2025-04-13 15:15:16,2025-04-15 15:06:16,low,permissions,resolved,4,538,3409,1440,true,false,2,2025-04-01,2025-04-01 +T10007,A1002,Summit Foods,mid_market,NA,US,W2004,summit-core,prod,U3011,2025-06-15 07:26:52,2025-06-15 17:59:52,2025-06-17 09:12:52,low,performance,resolved,5,633,2986,1440,true,false,2,2025-06-01,2025-06-01 +T10010,A1003,Nova Ventures,enterprise,NA,US,W2008,nova-ops,sandbox,U3030,2025-05-02 11:15:13,2025-05-02 12:38:13,2025-05-05 02:50:13,medium,cancellation,resolved,4,83,3815,240,true,false,3,2025-05-01,2025-05-01 +T10011,A1003,Nova Ventures,enterprise,NA,US,W2009,nova-finance,prod,U3030,2025-04-14 05:52:45,2025-04-14 07:08:45,2025-04-14 16:01:45,medium,sso,resolved,5,76,609,240,true,false,0,2025-04-01,2025-04-01 +T10012,A1003,Nova Ventures,enterprise,NA,US,W2007,nova-core,prod,U3037,2025-05-03 01:04:17,2025-05-03 08:16:17,2025-05-04 20:11:17,low,model_error,resolved,5,432,2587,1440,true,false,1,2025-05-01,2025-05-01 +T10013,A1004,Silver Solutions,enterprise,NA,US,W2011,silver-ops,sandbox,U3051,2025-06-18 04:56:20,2025-06-18 06:09:20,2025-06-18 14:53:20,medium,cancellation,resolved,1,73,597,240,true,false,0,2025-06-01,2025-06-01 +T10014,A1004,Silver Solutions,enterprise,NA,US,W2011,silver-ops,sandbox,U3045,2025-05-22 01:22:11,2025-05-22 02:54:11,2025-05-23 15:36:11,medium,performance,resolved,4,92,2294,240,true,false,1,2025-05-01,2025-05-01 +T10015,A1004,Silver Solutions,enterprise,NA,US,W2010,silver-core,prod,U3048,2025-06-23 11:25:02,2025-06-23 11:50:02,2025-06-24 09:54:02,high,api_limit,resolved,4,25,1349,60,true,false,1,2025-06-01,2025-06-01 +T10016,A1004,Silver Solutions,enterprise,NA,US,W2010,silver-core,prod,U3038,2025-06-25 11:34:31,2025-06-25 18:48:31,2025-06-26 15:51:31,low,data_freshness,resolved,5,434,1697,1440,true,false,1,2025-06-01,2025-06-01 +T10017,A1004,Silver Solutions,enterprise,NA,US,W2011,silver-ops,sandbox,U3041,2025-05-02 05:23:07,2025-05-02 05:55:07,2025-05-04 06:49:07,high,performance,resolved,4,32,2966,60,true,false,2,2025-05-01,2025-05-01 +T10018,A1004,Silver Solutions,enterprise,NA,US,W2010,silver-core,prod,U3038,2025-05-25 23:13:07,2025-05-26 06:35:07,2025-05-28 10:57:07,low,performance,resolved,3,442,3584,1440,true,false,3,2025-05-01,2025-05-01 +T10020,A1005,Pacific Labs,enterprise,EMEA,UK,W2012,pacific-core,prod,U3055,2025-05-12 19:50:29,2025-05-13 00:59:29,2025-05-13 03:55:29,low,model_error,resolved,4,309,485,1440,true,false,1,2025-05-01,2025-05-01 +T10021,A1005,Pacific Labs,enterprise,EMEA,UK,W2014,pacific-finance,prod,U3064,2025-06-15 09:36:31,2025-06-15 14:57:31,2025-06-16 01:37:31,low,permissions,resolved,5,321,961,1440,true,false,1,2025-06-01,2025-06-01 +T10022,A1005,Pacific Labs,enterprise,EMEA,UK,W2012,pacific-core,prod,U3066,2025-04-04 14:54:21,2025-04-04 17:09:21,2025-04-07 12:18:21,low,sso,resolved,2,135,4164,1440,true,false,3,2025-04-01,2025-04-01 +T10023,A1005,Pacific Labs,enterprise,EMEA,UK,W2013,pacific-ops,prod,U3058,2025-06-21 06:12:16,2025-06-21 11:36:16,2025-06-22 20:33:16,low,sso,resolved,4,324,2301,1440,true,false,1,2025-06-01,2025-06-01 +T10024,A1005,Pacific Labs,enterprise,EMEA,UK,W2014,pacific-finance,prod,U3064,2025-04-15 05:39:14,2025-04-15 05:49:14,2025-04-16 05:56:14,urgent,api_limit,resolved,4,10,1457,30,true,false,1,2025-04-01,2025-04-01 +T10025,A1005,Pacific Labs,enterprise,EMEA,UK,W2012,pacific-core,prod,U3052,2025-04-02 21:48:17,2025-04-02 22:04:17,,urgent,dashboard_filter,in_progress,,16,,30,true,true,362,2025-04-01, +T10026,A1005,Pacific Labs,enterprise,EMEA,UK,W2012,pacific-core,prod,U3061,2025-06-07 05:34:45,2025-06-07 06:56:45,2025-06-07 16:32:45,medium,sso,resolved,4,82,658,240,true,false,0,2025-06-01,2025-06-01 +T10027,A1006,Helio Works,mid_market,EMEA,UK,W2016,helio-ops,prod,U3070,2025-06-12 12:52:28,2025-06-12 16:11:28,2025-06-12 17:37:28,medium,performance,resolved,5,199,285,240,true,false,0,2025-06-01,2025-06-01 +T10028,A1006,Helio Works,mid_market,EMEA,UK,W2016,helio-ops,prod,U3067,2025-04-01 23:05:01,2025-04-01 23:35:01,2025-04-02 03:24:01,high,performance,resolved,3,30,259,60,true,false,1,2025-04-01,2025-04-01 +T10029,A1006,Helio Works,mid_market,EMEA,UK,W2015,helio-core,prod,U3072,2025-04-12 15:58:29,2025-04-12 16:43:29,2025-04-12 23:25:29,high,data_freshness,resolved,4,45,447,60,true,false,0,2025-04-01,2025-04-01 +T10030,A1007,Silver Systems,smb,EMEA,FR,W2017,silver-core,prod,U3075,2025-06-11 14:12:02,2025-06-12 03:37:02,2025-06-13 07:22:02,low,billing,resolved,5,805,2470,1440,true,false,2,2025-06-01,2025-06-01 +T10031,A1007,Silver Systems,smb,EMEA,FR,W2017,silver-core,prod,U3077,2025-05-13 16:48:58,2025-05-13 22:47:58,2025-05-14 05:11:58,low,api_limit,resolved,5,359,743,1440,true,false,1,2025-05-01,2025-05-01 +T10032,A1007,Silver Systems,smb,EMEA,FR,W2017,silver-core,prod,U3074,2025-04-09 06:03:21,2025-04-09 07:40:21,2025-04-11 18:46:21,medium,api_limit,resolved,4,97,3643,240,true,false,2,2025-04-01,2025-04-01 +T10034,A1008,Pacific Works,mid_market,EMEA,UK,W2019,pacific-ops,prod,U3080,2025-04-11 20:56:04,2025-04-12 11:14:04,2025-04-15 06:24:04,low,dashboard_filter,resolved,2,858,4888,1440,true,false,4,2025-04-01,2025-04-01 +T10035,A1008,Pacific Works,mid_market,EMEA,UK,W2019,pacific-ops,prod,U3082,2025-06-16 17:07:42,2025-06-16 17:51:42,2025-06-17 16:17:42,high,data_freshness,resolved,5,44,1390,60,true,false,1,2025-06-01,2025-06-01 +T10036,A1009,Summit Group,mid_market,NA,US,W2021,summit-core,prod,U3094,2025-06-21 06:57:59,2025-06-21 07:27:59,2025-06-21 15:19:59,high,api_limit,resolved,4,30,502,60,true,false,0,2025-06-01,2025-06-01 +T10037,A1009,Summit Group,mid_market,NA,US,W2022,summit-ops,prod,U3089,2025-04-17 21:35:42,2025-04-17 21:45:42,2025-04-18 17:38:42,urgent,sso,resolved,4,10,1203,30,true,false,1,2025-04-01,2025-04-01 +T10038,A1009,Summit Group,mid_market,NA,US,W2021,summit-core,prod,U3092,2025-04-12 12:49:41,2025-04-12 13:32:41,2025-04-14 10:16:41,urgent,permissions,resolved,4,43,2727,30,false,false,2,2025-04-01,2025-04-01 +T10039,A1010,Orchid Foods,smb,NA,CA,W2023,orchid-core,prod,U3104,2025-04-01 13:32:52,2025-04-01 13:55:52,2025-04-02 08:42:52,urgent,sso,resolved,2,23,1150,30,true,false,1,2025-04-01,2025-04-01 +T10040,A1010,Orchid Foods,smb,NA,CA,W2023,orchid-core,prod,U3109,2025-05-12 15:02:51,2025-05-12 15:51:51,2025-05-15 07:57:51,high,api_limit,resolved,4,49,3895,60,true,false,3,2025-05-01,2025-05-01 +T10041,A1011,Vertex Energy,smb,NA,CA,W2024,vertex-core,prod,U3114,2025-04-02 09:20:47,2025-04-02 18:09:47,2025-04-04 12:00:47,low,data_freshness,resolved,5,529,3040,1440,true,false,2,2025-04-01,2025-04-01 +T10042,A1011,Vertex Energy,smb,NA,CA,W2024,vertex-core,prod,U3113,2025-05-09 08:02:44,2025-05-09 18:50:44,,low,permissions,in_progress,,648,,1440,true,true,325,2025-05-01, +T10043,A1011,Vertex Energy,smb,NA,CA,W2024,vertex-core,prod,U3115,2025-04-16 13:02:29,2025-04-16 16:50:29,2025-04-18 12:24:29,medium,data_freshness,resolved,5,228,2842,240,true,false,2,2025-04-01,2025-04-01 +T10044,A1012,Cedar Ventures,smb,APAC,JP,W2025,cedar-core,prod,U3118,2025-06-17 05:30:52,2025-06-17 05:42:52,2025-06-17 23:29:52,urgent,api_limit,resolved,5,12,1079,30,true,false,0,2025-06-01,2025-06-01 +T10045,A1012,Cedar Ventures,smb,APAC,JP,W2026,cedar-ops,sandbox,U3122,2025-04-26 06:55:37,2025-04-26 08:05:37,2025-04-27 21:13:37,high,model_error,resolved,5,70,2298,60,false,false,1,2025-04-01,2025-04-01 +T10046,A1012,Cedar Ventures,smb,APAC,JP,W2026,cedar-ops,sandbox,U3121,2025-04-12 19:02:54,2025-04-12 21:34:54,2025-04-15 12:02:54,medium,dashboard_filter,resolved,3,152,3900,240,true,false,3,2025-04-01,2025-04-01 +T10047,A1013,River Foods,mid_market,NA,US,W2029,river-finance,prod,U3128,2025-05-27 20:11:21,2025-05-28 08:21:21,2025-05-31 00:44:21,low,model_error,resolved,5,730,4593,1440,true,false,4,2025-05-01,2025-05-01 +T10048,A1013,River Foods,mid_market,NA,US,W2027,river-core,prod,U3129,2025-05-16 19:32:36,2025-05-16 20:08:36,2025-05-19 07:19:36,urgent,data_freshness,resolved,5,36,3587,30,false,false,3,2025-05-01,2025-05-01 +T10049,A1013,River Foods,mid_market,NA,US,W2029,river-finance,prod,U3128,2025-04-29 10:39:24,2025-04-29 11:35:24,2025-05-01 04:07:24,high,model_error,resolved,5,56,2488,60,true,false,2,2025-04-01,2025-05-01 +T10050,A1014,Evergreen Global,enterprise,APAC,SG,W2030,evergreen-core,prod,U3136,2025-06-11 03:56:59,2025-06-11 06:04:59,2025-06-11 10:52:59,medium,performance,resolved,3,128,416,240,true,false,0,2025-06-01,2025-06-01 +T10051,A1014,Evergreen Global,enterprise,APAC,SG,W2030,evergreen-core,prod,U3142,2025-05-11 16:41:25,2025-05-11 16:57:25,,high,api_limit,in_progress,,16,,60,true,true,323,2025-05-01, +T10052,A1014,Evergreen Global,enterprise,APAC,SG,W2030,evergreen-core,prod,U3147,2025-05-25 00:53:25,2025-05-25 01:27:25,2025-05-26 07:48:25,high,performance,resolved,3,34,1855,60,true,false,1,2025-05-01,2025-05-01 +T10053,A1014,Evergreen Global,enterprise,APAC,SG,W2030,evergreen-core,prod,U3137,2025-04-22 12:49:22,2025-04-22 14:02:22,2025-04-23 09:07:22,medium,permissions,resolved,5,73,1218,240,true,false,1,2025-04-01,2025-04-01 +T10055,A1014,Evergreen Global,enterprise,APAC,SG,W2030,evergreen-core,prod,U3147,2025-04-01 09:41:14,2025-04-01 10:07:14,2025-04-03 17:16:14,high,data_freshness,resolved,3,26,3335,60,true,false,2,2025-04-01,2025-04-01 +T10056,A1015,Delta Network,smb,NA,US,W2032,delta-ops,sandbox,U3149,2025-04-02 02:42:32,2025-04-02 03:04:32,2025-04-03 22:29:32,urgent,api_limit,resolved,5,22,2627,30,true,false,1,2025-04-01,2025-04-01 +T10057,A1015,Delta Network,smb,NA,US,W2032,delta-ops,sandbox,U3150,2025-06-15 06:58:09,2025-06-15 07:06:09,2025-06-16 13:01:09,urgent,api_limit,resolved,3,8,1803,30,true,false,1,2025-06-01,2025-06-01 +T10058,A1015,Delta Network,smb,NA,US,W2031,delta-core,prod,U3150,2025-04-08 10:49:31,2025-04-08 13:19:31,2025-04-11 05:29:31,medium,permissions,resolved,5,150,4000,240,true,false,3,2025-04-01,2025-04-01 +T10059,A1015,Delta Network,smb,NA,US,W2031,delta-core,prod,U3149,2025-04-20 22:40:37,2025-04-21 02:01:37,2025-04-21 06:06:37,medium,dashboard_filter,resolved,4,201,446,240,true,false,1,2025-04-01,2025-04-01 +T10060,A1016,BluePeak Capital,enterprise,EMEA,DE,W2035,bluepeak-finance,prod,U3153,2025-04-05 01:38:50,2025-04-05 06:27:50,2025-04-05 20:04:50,low,data_freshness,resolved,3,289,1106,1440,true,false,0,2025-04-01,2025-04-01 +T10061,A1016,BluePeak Capital,enterprise,EMEA,DE,W2033,bluepeak-core,prod,U3152,2025-04-14 20:13:20,2025-04-14 21:24:20,2025-04-17 01:36:20,medium,model_error,resolved,4,71,3203,240,true,false,3,2025-04-01,2025-04-01 +T10062,A1016,BluePeak Capital,enterprise,EMEA,DE,W2036,bluepeak-marketing,prod,U3157,2025-05-25 02:00:08,2025-05-25 08:19:08,2025-05-26 08:57:08,low,model_error,resolved,4,379,1857,1440,true,false,1,2025-05-01,2025-05-01 +T10063,A1016,BluePeak Capital,enterprise,EMEA,DE,W2036,bluepeak-marketing,prod,U3165,2025-05-11 20:06:11,2025-05-11 20:15:11,2025-05-13 15:29:11,urgent,permissions,resolved,4,9,2603,30,true,false,2,2025-05-01,2025-05-01 +T10065,A1016,BluePeak Capital,enterprise,EMEA,DE,W2035,bluepeak-finance,prod,U3156,2025-05-13 06:20:21,2025-05-13 07:45:21,2025-05-13 12:56:21,medium,api_limit,resolved,5,85,396,240,true,false,0,2025-05-01,2025-05-01 +T10066,A1017,Summit Analytics,mid_market,EMEA,UK,W2038,summit-ops,prod,U3173,2025-05-20 11:33:34,2025-05-20 12:04:34,2025-05-23 10:11:34,high,dashboard_filter,resolved,5,31,4238,60,true,false,3,2025-05-01,2025-05-01 +T10067,A1017,Summit Analytics,mid_market,EMEA,UK,W2038,summit-ops,prod,U3172,2025-06-07 09:02:39,2025-06-07 10:45:39,2025-06-09 06:09:39,medium,api_limit,resolved,5,103,2707,240,true,false,2,2025-06-01,2025-06-01 +T10068,A1017,Summit Analytics,mid_market,EMEA,UK,W2038,summit-ops,prod,U3174,2025-04-25 05:30:47,2025-04-25 07:56:47,2025-04-27 00:54:47,medium,performance,resolved,4,146,2604,240,true,false,2,2025-04-01,2025-04-01 +T10069,A1017,Summit Analytics,mid_market,EMEA,UK,W2038,summit-ops,prod,U3172,2025-06-03 14:32:57,2025-06-03 23:27:57,2025-06-05 00:49:57,low,performance,resolved,4,535,2057,1440,true,false,2,2025-06-01,2025-06-01 +T10070,A1018,Harbor Manufacturing,smb,EMEA,UK,W2040,harbor-ops,prod,U3179,2025-06-11 00:33:34,2025-06-11 04:32:34,2025-06-12 19:42:34,medium,performance,resolved,3,239,2589,240,true,false,1,2025-06-01,2025-06-01 +T10072,A1018,Harbor Manufacturing,smb,EMEA,UK,W2039,harbor-core,prod,U3181,2025-05-04 23:09:26,2025-05-05 02:44:26,2025-05-07 07:39:26,medium,permissions,resolved,4,215,3390,240,true,false,3,2025-05-01,2025-05-01 +T10073,A1019,Sierra Systems,smb,APAC,JP,W2041,sierra-core,prod,U3183,2025-05-26 08:04:59,2025-05-26 10:28:59,,medium,dashboard_filter,open,,144,,240,true,true,308,2025-05-01, +T10074,A1020,Pioneer Network,smb,EMEA,FR,W2043,pioneer-core,prod,U3187,2025-05-29 02:05:32,2025-05-29 02:52:32,2025-05-30 04:53:32,high,data_freshness,resolved,5,47,1608,60,true,false,1,2025-05-01,2025-05-01 +T10075,A1021,Apex Logistics,smb,NA,US,W2044,apex-core,prod,U3196,2025-06-20 04:03:33,2025-06-20 04:24:33,2025-06-22 06:23:33,high,dashboard_filter,resolved,3,21,3020,60,true,false,2,2025-06-01,2025-06-01 +T10076,A1021,Apex Logistics,smb,NA,US,W2044,apex-core,prod,U3196,2025-04-04 10:26:51,2025-04-04 13:13:51,2025-04-05 03:11:51,medium,performance,resolved,5,167,1005,240,true,false,1,2025-04-01,2025-04-01 +T10077,A1022,Summit Collective,smb,APAC,NZ,W2045,summit-core,prod,U3200,2025-04-24 09:41:07,2025-04-24 12:01:07,2025-04-25 08:24:07,medium,api_limit,resolved,5,140,1363,240,true,false,1,2025-04-01,2025-04-01 +T10078,A1023,Atlas Systems,smb,NA,CA,W2047,atlas-core,prod,U3207,2025-05-12 23:02:13,2025-05-13 07:21:13,2025-05-15 02:52:13,low,data_freshness,resolved,4,499,3110,1440,true,false,3,2025-05-01,2025-05-01 +T10079,A1023,Atlas Systems,smb,NA,CA,W2047,atlas-core,prod,U3203,2025-05-15 18:18:28,2025-05-15 19:05:28,,high,sso,open,,47,,60,true,true,319,2025-05-01, +T10080,A1023,Atlas Systems,smb,NA,CA,W2047,atlas-core,prod,U3202,2025-05-05 07:07:39,2025-05-05 07:44:39,2025-05-06 22:46:39,high,performance,resolved,5,37,2379,60,true,false,1,2025-05-01,2025-05-01 +T10081,A1024,Sierra Group,smb,NA,CA,W2049,sierra-ops,prod,U3211,2025-05-30 15:31:41,2025-05-30 17:40:41,2025-05-31 22:15:41,medium,performance,resolved,5,129,1844,240,true,false,1,2025-05-01,2025-05-01 +T10082,A1025,Bright Capital,smb,EMEA,UK,W2050,bright-core,prod,U3219,2025-05-29 12:51:15,2025-05-29 13:35:15,2025-06-01 00:01:15,high,api_limit,resolved,5,44,3550,60,true,false,3,2025-05-01,2025-06-01 +T10083,A1025,Bright Capital,smb,EMEA,UK,W2050,bright-core,prod,U3219,2025-06-07 18:38:08,2025-06-07 20:40:08,2025-06-10 03:52:08,medium,sso,resolved,5,122,3434,240,true,false,3,2025-06-01,2025-06-01 +T10085,A1027,BluePeak Health,smb,APAC,SG,W2053,bluepeak-ops,prod,U3231,2025-05-21 14:59:51,2025-05-21 15:07:51,2025-05-24 01:30:51,urgent,data_freshness,resolved,4,8,3511,30,true,false,3,2025-05-01,2025-05-01 +T10086,A1028,Apex Energy,mid_market,APAC,SG,W2054,apex-core,prod,U3234,2025-05-02 09:17:06,2025-05-03 01:18:06,2025-05-04 21:40:06,low,permissions,resolved,4,961,3623,1440,true,false,2,2025-05-01,2025-05-01 +T10088,A1028,Apex Energy,mid_market,APAC,SG,W2054,apex-core,prod,U3243,2025-05-07 04:35:29,2025-05-07 15:02:29,2025-05-09 12:27:29,low,dashboard_filter,resolved,5,627,3352,1440,true,false,2,2025-05-01,2025-05-01 +T10089,A1029,Bright Labs,enterprise,APAC,NZ,W2056,bright-core,prod,U3257,2025-04-10 09:20:33,2025-04-10 11:07:33,2025-04-11 20:56:33,medium,api_limit,resolved,5,107,2136,240,true,false,1,2025-04-01,2025-04-01 +T10091,A1029,Bright Labs,enterprise,APAC,NZ,W2056,bright-core,prod,U3253,2025-06-16 07:30:22,2025-06-16 12:05:22,,low,permissions,in_progress,,275,,1440,true,true,287,2025-06-01, +T10092,A1029,Bright Labs,enterprise,APAC,NZ,W2056,bright-core,prod,U3247,2025-06-03 06:32:18,2025-06-03 08:36:18,,medium,sso,in_progress,,124,,240,true,true,300,2025-06-01, +T10093,A1029,Bright Labs,enterprise,APAC,NZ,W2056,bright-core,prod,U3247,2025-05-10 07:16:19,2025-05-10 07:38:19,,high,performance,open,,22,,60,true,true,324,2025-05-01, +T10094,A1030,Northwind Analytics,enterprise,EMEA,UK,W2059,northwind-finance,prod,U3268,2025-06-11 15:44:02,2025-06-12 00:45:02,2025-06-14 22:47:02,low,dashboard_filter,resolved,5,541,4743,1440,true,false,3,2025-06-01,2025-06-01 +T10095,A1030,Northwind Analytics,enterprise,EMEA,UK,W2060,northwind-marketing,prod,U3261,2025-04-19 11:22:00,2025-04-19 11:50:00,2025-04-21 16:57:00,high,dashboard_filter,resolved,4,28,3215,60,true,false,2,2025-04-01,2025-04-01 +T10097,A1030,Northwind Analytics,enterprise,EMEA,UK,W2057,northwind-core,prod,U3267,2025-05-21 03:08:09,2025-05-21 07:50:09,2025-05-22 13:23:09,low,dashboard_filter,resolved,3,282,2055,1440,true,false,1,2025-05-01,2025-05-01 +T10098,A1031,Helio Holdings,mid_market,APAC,AU,W2061,helio-core,prod,U3277,2025-04-07 13:23:25,2025-04-07 15:36:25,2025-04-09 05:44:25,medium,sso,resolved,2,133,2421,240,true,false,2,2025-04-01,2025-04-01 +T10099,A1031,Helio Holdings,mid_market,APAC,AU,W2062,helio-ops,prod,U3281,2025-04-28 20:40:52,2025-04-29 05:24:52,2025-05-01 11:20:52,low,model_error,resolved,3,524,3760,1440,true,false,3,2025-04-01,2025-05-01 +T10101,A1031,Helio Holdings,mid_market,APAC,AU,W2061,helio-core,prod,U3281,2025-05-24 20:51:20,2025-05-24 23:55:20,2025-05-25 20:43:20,medium,api_limit,resolved,4,184,1432,240,true,false,1,2025-05-01,2025-05-01 +T10102,A1032,Vertex Works,mid_market,EMEA,DE,W2064,vertex-core,prod,U3287,2025-06-25 07:28:37,2025-06-25 10:31:37,2025-06-26 00:40:37,medium,cancellation,resolved,1,183,1032,240,true,false,1,2025-06-01,2025-06-01 +T10103,A1032,Vertex Works,mid_market,EMEA,DE,W2064,vertex-core,prod,U3286,2025-06-11 21:23:04,2025-06-11 21:55:04,2025-06-14 20:44:04,high,api_limit,resolved,2,32,4281,60,true,false,3,2025-06-01,2025-06-01 +T10105,A1033,Lighthouse Global,mid_market,NA,CA,W2066,lighthouse-core,prod,U3291,2025-05-20 21:14:18,2025-05-21 12:12:18,2025-05-24 00:47:18,low,performance,resolved,4,898,4533,1440,true,false,4,2025-05-01,2025-05-01 +T10106,A1033,Lighthouse Global,mid_market,NA,CA,W2067,lighthouse-ops,prod,U3292,2025-04-08 21:02:43,2025-04-09 00:34:43,2025-04-11 16:29:43,medium,api_limit,resolved,5,212,4047,240,true,false,3,2025-04-01,2025-04-01 +T10107,A1034,Helio Partners,smb,NA,CA,W2069,helio-ops,sandbox,U3302,2025-06-09 13:51:35,2025-06-10 05:31:35,2025-06-12 16:46:35,low,permissions,resolved,5,940,4495,1440,true,false,3,2025-06-01,2025-06-01 +T10108,A1034,Helio Partners,smb,NA,CA,W2068,helio-core,prod,U3304,2025-05-12 09:49:56,2025-05-12 12:17:56,2025-05-12 21:49:56,medium,performance,resolved,3,148,720,240,true,false,0,2025-05-01,2025-05-01 +T10110,A1035,Bright Retail,mid_market,EMEA,UK,W2071,bright-ops,sandbox,U3317,2025-06-07 15:20:28,2025-06-07 15:55:28,2025-06-08 16:25:28,high,api_limit,resolved,5,35,1505,60,true,false,1,2025-06-01,2025-06-01 +T10111,A1035,Bright Retail,mid_market,EMEA,UK,W2070,bright-core,prod,U3314,2025-04-03 14:44:28,2025-04-03 17:39:28,2025-04-06 11:17:28,medium,permissions,resolved,4,175,4113,240,true,false,3,2025-04-01,2025-04-01 +T10112,A1035,Bright Retail,mid_market,EMEA,UK,W2072,bright-finance,prod,U3316,2025-05-02 23:05:03,2025-05-02 23:53:03,2025-05-04 17:15:03,high,dashboard_filter,resolved,4,48,2530,60,true,false,2,2025-05-01,2025-05-01 +T10113,A1035,Bright Retail,mid_market,EMEA,UK,W2071,bright-ops,sandbox,U3317,2025-04-15 03:50:21,2025-04-15 07:37:21,2025-04-18 03:18:21,medium,performance,resolved,4,227,4288,240,true,false,3,2025-04-01,2025-04-01 +T10115,A1036,Granite Holdings,smb,NA,US,W2073,granite-core,prod,U3322,2025-04-06 23:20:44,2025-04-07 02:05:44,2025-04-08 21:27:44,medium,sso,resolved,5,165,2767,240,true,false,2,2025-04-01,2025-04-01 +T10116,A1036,Granite Holdings,smb,NA,US,W2074,granite-ops,sandbox,U3322,2025-06-07 15:31:40,2025-06-07 18:29:40,2025-06-10 06:01:40,medium,dashboard_filter,resolved,5,178,3750,240,true,false,3,2025-06-01,2025-06-01 +T10117,A1036,Granite Holdings,smb,NA,US,W2074,granite-ops,sandbox,U3322,2025-05-17 20:53:41,2025-05-17 23:48:41,2025-05-18 23:22:41,medium,permissions,resolved,4,175,1589,240,true,false,1,2025-05-01,2025-05-01 +T10118,A1037,Lighthouse Network,enterprise,EMEA,UK,W2076,lighthouse-ops,prod,U3341,2025-06-24 05:04:42,2025-06-24 05:24:42,2025-06-24 09:52:42,high,cancellation,resolved,4,20,288,60,true,false,0,2025-06-01,2025-06-01 +T10119,A1037,Lighthouse Network,enterprise,EMEA,UK,W2076,lighthouse-ops,prod,U3338,2025-05-12 06:21:19,2025-05-12 06:46:19,2025-05-12 13:35:19,high,sso,resolved,5,25,434,60,true,false,0,2025-05-01,2025-05-01 +T10120,A1037,Lighthouse Network,enterprise,EMEA,UK,W2076,lighthouse-ops,prod,U3331,2025-04-22 02:39:35,2025-04-22 03:47:35,,medium,sso,in_progress,,68,,240,true,true,342,2025-04-01, +T10121,A1037,Lighthouse Network,enterprise,EMEA,UK,W2077,lighthouse-finance,sandbox,U3327,2025-04-04 13:59:40,2025-04-04 16:06:40,2025-04-06 03:29:40,medium,sso,resolved,4,127,2250,240,true,false,2,2025-04-01,2025-04-01 +T10122,A1038,River Systems,smb,APAC,AU,W2079,river-core,prod,U3346,2025-04-19 09:26:05,2025-04-19 09:48:05,,high,api_limit,open,,22,,60,true,true,345,2025-04-01, +T10123,A1038,River Systems,smb,APAC,AU,W2080,river-ops,prod,U3342,2025-05-31 17:59:38,2025-06-01 04:32:38,2025-06-02 06:32:38,low,billing,resolved,4,633,2193,1440,true,false,2,2025-05-01,2025-06-01 +T10124,A1039,Nova Group,smb,EMEA,FR,W2081,nova-core,prod,U3348,2025-06-07 01:56:58,2025-06-07 02:04:58,2025-06-07 21:31:58,urgent,api_limit,resolved,5,8,1175,30,true,false,0,2025-06-01,2025-06-01 +T10127,A1040,Harbor Collective,mid_market,APAC,SG,W2084,harbor-finance,prod,U3365,2025-06-10 18:07:45,2025-06-10 18:29:45,2025-06-13 12:37:45,high,performance,resolved,3,22,3990,60,true,false,3,2025-06-01,2025-06-01 +T10128,A1040,Harbor Collective,mid_market,APAC,SG,W2082,harbor-core,prod,U3361,2025-05-29 17:52:01,2025-05-29 18:33:01,2025-06-01 04:26:01,high,model_error,resolved,3,41,3514,60,true,false,3,2025-05-01,2025-06-01 +T10130,A1040,Harbor Collective,mid_market,APAC,SG,W2083,harbor-ops,sandbox,U3364,2025-05-21 12:06:14,2025-05-21 12:39:14,,urgent,permissions,in_progress,,33,,30,false,true,313,2025-05-01, +T10131,A1041,Cedar Logistics,mid_market,EMEA,NL,W2087,cedar-finance,prod,U3377,2025-04-30 14:56:33,2025-04-30 15:15:33,2025-05-02 20:51:33,urgent,cancellation,resolved,5,19,3235,30,true,false,2,2025-04-01,2025-05-01 +T10132,A1041,Cedar Logistics,mid_market,EMEA,NL,W2085,cedar-core,prod,U3366,2025-06-25 14:25:33,2025-06-26 01:42:33,2025-06-26 21:47:33,low,performance,resolved,4,677,1882,1440,true,false,1,2025-06-01,2025-06-01 +T10133,A1041,Cedar Logistics,mid_market,EMEA,NL,W2085,cedar-core,prod,U3366,2025-06-11 15:07:17,2025-06-11 17:05:17,2025-06-13 00:31:17,medium,api_limit,resolved,4,118,2004,240,true,false,2,2025-06-01,2025-06-01 +T10134,A1041,Cedar Logistics,mid_market,EMEA,NL,W2086,cedar-ops,sandbox,U3375,2025-05-07 14:27:48,2025-05-07 15:11:48,2025-05-07 23:25:48,high,data_freshness,resolved,4,44,538,60,true,false,0,2025-05-01,2025-05-01 +T10135,A1041,Cedar Logistics,mid_market,EMEA,NL,W2085,cedar-core,prod,U3366,2025-05-23 18:09:24,2025-05-23 18:45:24,2025-05-24 18:13:24,high,dashboard_filter,resolved,5,36,1444,60,true,false,1,2025-05-01,2025-05-01 +T10137,A1042,Northwind Labs,mid_market,APAC,AU,W2089,northwind-ops,sandbox,U3380,2025-04-12 08:33:14,2025-04-12 12:56:14,2025-04-14 06:53:14,medium,sso,resolved,5,263,2780,240,false,false,2,2025-04-01,2025-04-01 +T10138,A1042,Northwind Labs,mid_market,APAC,AU,W2089,northwind-ops,sandbox,U3381,2025-06-22 22:22:58,2025-06-22 22:54:58,2025-06-24 02:50:58,high,dashboard_filter,resolved,5,32,1708,60,true,false,2,2025-06-01,2025-06-01 +T10140,A1042,Northwind Labs,mid_market,APAC,AU,W2088,northwind-core,prod,U3378,2025-05-21 19:13:48,2025-05-22 02:10:48,2025-05-22 08:58:48,low,api_limit,resolved,4,417,825,1440,true,false,1,2025-05-01,2025-05-01 +T10141,A1043,Lighthouse Works,enterprise,APAC,SG,W2094,lighthouse-marketing,prod,U3390,2025-04-22 04:48:42,2025-04-22 06:01:42,,medium,data_freshness,in_progress,,73,,240,true,true,342,2025-04-01, +T10142,A1043,Lighthouse Works,enterprise,APAC,SG,W2092,lighthouse-ops,sandbox,U3398,2025-06-19 16:19:48,2025-06-19 23:05:48,2025-06-21 18:35:48,low,permissions,resolved,3,406,3016,1440,true,false,2,2025-06-01,2025-06-01 +T10143,A1043,Lighthouse Works,enterprise,APAC,SG,W2094,lighthouse-marketing,prod,U3401,2025-04-17 02:32:02,2025-04-17 10:14:02,2025-04-20 03:16:02,low,sso,resolved,5,462,4364,1440,true,false,3,2025-04-01,2025-04-01 +T10144,A1044,Summit Holdings,smb,EMEA,NL,W2095,summit-core,prod,U3407,2025-04-04 17:42:09,2025-04-04 18:06:09,2025-04-07 14:41:09,high,model_error,resolved,3,24,4139,60,true,false,3,2025-04-01,2025-04-01 +T10145,A1044,Summit Holdings,smb,EMEA,NL,W2095,summit-core,prod,U3407,2025-06-09 03:00:36,2025-06-09 05:31:36,2025-06-11 04:32:36,medium,model_error,resolved,5,151,2972,240,true,false,2,2025-06-01,2025-06-01 +T10146,A1044,Summit Holdings,smb,EMEA,NL,W2095,summit-core,prod,U3408,2025-04-09 02:49:37,2025-04-09 03:33:37,2025-04-10 17:56:37,high,sso,resolved,5,44,2347,60,true,false,1,2025-04-01,2025-04-01 +T10147,A1045,Nova Holdings,enterprise,NA,CA,W2099,nova-marketing,prod,U3423,2025-06-02 20:20:03,2025-06-02 20:48:03,2025-06-05 03:20:03,high,dashboard_filter,resolved,4,28,3300,60,true,false,3,2025-06-01,2025-06-01 +T10148,A1045,Nova Holdings,enterprise,NA,CA,W2099,nova-marketing,prod,U3412,2025-05-12 12:15:14,2025-05-12 13:41:14,2025-05-15 01:52:14,medium,api_limit,resolved,5,86,3697,240,true,false,3,2025-05-01,2025-05-01 +T10149,A1045,Nova Holdings,enterprise,NA,CA,W2097,nova-ops,prod,U3419,2025-05-20 23:55:34,2025-05-21 03:50:34,2025-05-23 20:03:34,low,dashboard_filter,resolved,3,235,4088,1440,true,false,3,2025-05-01,2025-05-01 +T10150,A1045,Nova Holdings,enterprise,NA,CA,W2097,nova-ops,prod,U3425,2025-06-07 17:23:33,2025-06-07 19:25:33,2025-06-08 08:12:33,medium,api_limit,resolved,4,122,889,240,true,false,1,2025-06-01,2025-06-01 +T10151,A1045,Nova Holdings,enterprise,NA,CA,W2099,nova-marketing,prod,U3422,2025-04-02 10:20:57,2025-04-02 17:26:57,2025-04-05 04:18:57,low,sso,resolved,5,426,3958,1440,true,false,3,2025-04-01,2025-04-01 +T10152,A1046,Pioneer Solutions,smb,NA,CA,W2100,pioneer-core,prod,U3429,2025-05-20 10:32:02,2025-05-20 13:14:02,,medium,model_error,in_progress,,162,,240,true,true,314,2025-05-01, +T10153,A1046,Pioneer Solutions,smb,NA,CA,W2100,pioneer-core,prod,U3427,2025-05-30 05:05:39,2025-05-30 12:29:39,2025-06-01 22:50:39,low,permissions,resolved,5,444,3945,1440,true,false,2,2025-05-01,2025-06-01 +T10154,A1046,Pioneer Solutions,smb,NA,CA,W2100,pioneer-core,prod,U3430,2025-05-01 04:33:57,2025-05-01 07:00:57,2025-05-01 19:58:57,medium,model_error,resolved,5,147,925,240,true,false,0,2025-05-01,2025-05-01 +T10155,A1047,Orchid Global,enterprise,APAC,AU,W2103,orchid-finance,prod,U3440,2025-05-29 16:33:13,2025-05-29 17:44:13,2025-05-30 21:08:13,medium,dashboard_filter,resolved,5,71,1715,240,true,false,1,2025-05-01,2025-05-01 +T10158,A1047,Orchid Global,enterprise,APAC,AU,W2103,orchid-finance,prod,U3443,2025-05-02 19:40:03,2025-05-02 21:01:03,2025-05-03 17:35:03,medium,model_error,resolved,4,81,1315,240,true,false,1,2025-05-01,2025-05-01 +T10159,A1047,Orchid Global,enterprise,APAC,AU,W2101,orchid-core,prod,U3447,2025-04-12 04:06:15,2025-04-12 05:38:15,2025-04-14 21:30:15,medium,dashboard_filter,resolved,4,92,3924,240,true,false,2,2025-04-01,2025-04-01 +T10160,A1047,Orchid Global,enterprise,APAC,AU,W2101,orchid-core,prod,U3444,2025-05-09 12:18:14,2025-05-09 19:18:14,2025-05-11 04:52:14,low,model_error,resolved,5,420,2434,1440,true,false,2,2025-05-01,2025-05-01 +T10161,A1047,Orchid Global,enterprise,APAC,AU,W2101,orchid-core,prod,U3449,2025-04-28 15:20:57,2025-04-28 15:45:57,,high,performance,in_progress,,25,,60,true,true,336,2025-04-01, +T10162,A1048,Orchid Capital,enterprise,APAC,NZ,W2106,orchid-finance,prod,U3454,2025-06-04 08:44:18,2025-06-04 09:54:18,,medium,api_limit,in_progress,,70,,240,true,true,299,2025-06-01, +T10163,A1048,Orchid Capital,enterprise,APAC,NZ,W2106,orchid-finance,prod,U3458,2025-05-19 00:50:25,2025-05-19 06:43:25,,low,data_freshness,open,,353,,1440,true,true,315,2025-05-01, +T10164,A1048,Orchid Capital,enterprise,APAC,NZ,W2104,orchid-core,prod,U3452,2025-04-15 08:40:53,2025-04-15 14:42:53,2025-04-18 02:12:53,low,cancellation,resolved,4,362,3932,1440,true,false,3,2025-04-01,2025-04-01 +T10165,A1048,Orchid Capital,enterprise,APAC,NZ,W2104,orchid-core,prod,U3462,2025-05-30 19:28:56,2025-05-30 19:45:56,,high,sso,open,,17,,60,true,true,304,2025-05-01, +T10166,A1049,Northwind Network,enterprise,NA,CA,W2107,northwind-core,prod,U3473,2025-05-22 11:57:27,2025-05-22 18:07:27,2025-05-25 05:46:27,low,permissions,resolved,5,370,3949,1440,true,false,3,2025-05-01,2025-05-01 +T10167,A1049,Northwind Network,enterprise,NA,CA,W2108,northwind-ops,prod,U3483,2025-05-27 17:29:08,2025-05-27 19:02:08,2025-05-30 09:07:08,medium,permissions,resolved,4,93,3818,240,true,false,3,2025-05-01,2025-05-01 +T10168,A1049,Northwind Network,enterprise,NA,CA,W2107,northwind-core,prod,U3479,2025-05-05 04:16:46,2025-05-05 04:23:46,2025-05-06 00:46:46,urgent,dashboard_filter,resolved,4,7,1230,30,true,false,1,2025-05-01,2025-05-01 +T10169,A1049,Northwind Network,enterprise,NA,CA,W2109,northwind-finance,prod,U3484,2025-06-01 16:13:15,2025-06-01 17:19:15,,medium,billing,open,,66,,240,true,true,302,2025-06-01, +T10170,A1049,Northwind Network,enterprise,NA,CA,W2109,northwind-finance,prod,U3486,2025-05-22 02:08:28,2025-05-22 06:45:28,2025-05-25 06:15:28,low,performance,resolved,4,277,4567,1440,true,false,3,2025-05-01,2025-05-01 +T10171,A1049,Northwind Network,enterprise,NA,CA,W2107,northwind-core,prod,U3473,2025-04-29 10:09:13,2025-04-29 17:54:13,2025-05-01 18:48:13,low,dashboard_filter,resolved,3,465,3399,1440,true,false,2,2025-04-01,2025-05-01 +T10172,A1049,Northwind Network,enterprise,NA,CA,W2109,northwind-finance,prod,U3471,2025-05-10 23:28:03,2025-05-11 01:50:03,2025-05-13 14:04:03,medium,dashboard_filter,resolved,4,142,3756,240,true,false,3,2025-05-01,2025-05-01 +T10174,A1051,Lighthouse Systems,smb,EMEA,UK,W2112,lighthouse-core,prod,U3495,2025-04-05 17:48:20,2025-04-05 22:47:20,2025-04-08 11:33:20,low,sso,resolved,4,299,3945,1440,true,false,3,2025-04-01,2025-04-01 +T10175,A1051,Lighthouse Systems,smb,EMEA,UK,W2112,lighthouse-core,prod,U3492,2025-04-04 12:53:52,2025-04-04 14:50:52,2025-04-07 01:47:52,medium,dashboard_filter,resolved,3,117,3654,240,true,false,3,2025-04-01,2025-04-01 +T10176,A1051,Lighthouse Systems,smb,EMEA,UK,W2112,lighthouse-core,prod,U3491,2025-06-09 04:31:19,2025-06-09 18:50:19,2025-06-10 16:30:19,low,model_error,resolved,4,859,2159,1440,true,false,1,2025-06-01,2025-06-01 +T10177,A1052,Sierra Labs,mid_market,APAC,NZ,W2114,sierra-ops,prod,U3499,2025-05-22 14:40:56,2025-05-22 20:23:56,2025-05-25 05:12:56,low,sso,resolved,5,343,3752,1440,true,false,3,2025-05-01,2025-05-01 +T10178,A1052,Sierra Labs,mid_market,APAC,NZ,W2114,sierra-ops,prod,U3498,2025-05-10 04:34:16,2025-05-10 14:10:16,2025-05-12 16:54:16,low,api_limit,resolved,5,576,3620,1440,true,false,2,2025-05-01,2025-05-01 +T10179,A1052,Sierra Labs,mid_market,APAC,NZ,W2114,sierra-ops,prod,U3501,2025-05-29 12:44:45,2025-05-29 14:37:45,2025-05-31 21:47:45,medium,data_freshness,resolved,5,113,3423,240,true,false,2,2025-05-01,2025-05-01 +T10181,A1052,Sierra Labs,mid_market,APAC,NZ,W2114,sierra-ops,prod,U3506,2025-06-15 13:21:59,2025-06-15 16:07:59,2025-06-18 14:52:59,medium,permissions,resolved,4,166,4411,240,true,false,3,2025-06-01,2025-06-01 +T10182,A1053,Bright Health,mid_market,NA,CA,W2116,bright-ops,prod,U3508,2025-05-03 01:20:38,2025-05-03 03:57:38,2025-05-04 17:26:38,medium,model_error,resolved,5,157,2406,240,true,false,1,2025-05-01,2025-05-01 +T10183,A1053,Bright Health,mid_market,NA,CA,W2116,bright-ops,prod,U3511,2025-05-04 19:18:13,2025-05-04 21:50:13,2025-05-06 14:01:13,medium,model_error,resolved,5,152,2563,240,true,false,2,2025-05-01,2025-05-01 +T10184,A1053,Bright Health,mid_market,NA,CA,W2116,bright-ops,prod,U3512,2025-05-31 09:29:38,2025-05-31 16:52:38,2025-06-01 07:33:38,low,performance,resolved,5,443,1324,1440,true,false,1,2025-05-01,2025-06-01 +T10185,A1054,Granite Labs,mid_market,APAC,NZ,W2120,granite-finance,prod,U3527,2025-06-02 02:00:16,2025-06-02 02:34:16,2025-06-04 14:10:16,high,sso,resolved,4,34,3610,60,true,false,2,2025-06-01,2025-06-01 +T10186,A1054,Granite Labs,mid_market,APAC,NZ,W2118,granite-core,prod,U3523,2025-04-24 19:48:18,2025-04-24 20:30:18,2025-04-25 02:09:18,high,dashboard_filter,resolved,2,42,381,60,true,false,1,2025-04-01,2025-04-01 +T10187,A1054,Granite Labs,mid_market,APAC,NZ,W2119,granite-ops,prod,U3523,2025-06-12 09:20:11,2025-06-13 01:32:11,2025-06-15 18:45:11,low,sso,resolved,5,972,4885,1440,true,false,3,2025-06-01,2025-06-01 +T10188,A1054,Granite Labs,mid_market,APAC,NZ,W2118,granite-core,prod,U3526,2025-06-07 12:11:47,2025-06-07 12:59:47,2025-06-09 09:33:47,high,dashboard_filter,resolved,3,48,2722,60,true,false,2,2025-06-01,2025-06-01 +T10189,A1054,Granite Labs,mid_market,APAC,NZ,W2120,granite-finance,prod,U3524,2025-06-03 08:28:29,2025-06-03 18:55:29,,low,performance,open,,627,,1440,true,true,300,2025-06-01, +T10190,A1055,Pioneer Systems,mid_market,EMEA,FR,W2121,pioneer-core,prod,U3532,2025-05-10 09:59:35,2025-05-10 12:37:35,2025-05-11 00:39:35,medium,billing,resolved,5,158,880,240,true,false,1,2025-05-01,2025-05-01 +T10191,A1055,Pioneer Systems,mid_market,EMEA,FR,W2122,pioneer-ops,sandbox,U3539,2025-04-22 14:24:31,2025-04-22 18:09:31,2025-04-23 14:45:31,medium,performance,resolved,5,225,1461,240,true,false,1,2025-04-01,2025-04-01 +T10192,A1055,Pioneer Systems,mid_market,EMEA,FR,W2122,pioneer-ops,sandbox,U3535,2025-04-19 01:48:32,2025-04-19 03:19:32,2025-04-19 21:40:32,medium,model_error,resolved,3,91,1192,240,true,false,0,2025-04-01,2025-04-01 +T10193,A1056,Delta Global,mid_market,APAC,AU,W2123,delta-core,prod,U3552,2025-06-18 04:05:18,2025-06-18 04:47:18,2025-06-20 18:50:18,high,model_error,resolved,4,42,3765,60,true,false,2,2025-06-01,2025-06-01 +T10194,A1056,Delta Global,mid_market,APAC,AU,W2123,delta-core,prod,U3546,2025-05-24 21:23:45,2025-05-25 04:18:45,2025-05-27 16:32:45,low,permissions,resolved,5,415,4029,1440,true,false,3,2025-05-01,2025-05-01 +T10196,A1056,Delta Global,mid_market,APAC,AU,W2123,delta-core,prod,U3545,2025-05-21 17:06:53,2025-05-21 17:49:53,2025-05-23 10:35:53,high,api_limit,resolved,2,43,2489,60,true,false,2,2025-05-01,2025-05-01 +T10197,A1057,Harbor Partners,enterprise,APAC,NZ,W2127,harbor-ops,sandbox,U3554,2025-06-07 00:26:36,2025-06-07 04:09:36,2025-06-08 00:59:36,low,api_limit,resolved,3,223,1473,1440,true,false,1,2025-06-01,2025-06-01 +T10198,A1057,Harbor Partners,enterprise,APAC,NZ,W2129,harbor-marketing,prod,U3566,2025-05-21 18:23:28,2025-05-22 02:38:28,2025-05-24 09:46:28,low,performance,resolved,3,495,3803,1440,true,false,3,2025-05-01,2025-05-01 +T10199,A1057,Harbor Partners,enterprise,APAC,NZ,W2127,harbor-ops,sandbox,U3562,2025-04-29 04:31:13,2025-04-29 11:27:13,2025-04-29 18:54:13,low,permissions,resolved,4,416,863,1440,true,false,0,2025-04-01,2025-04-01 +T10201,A1057,Harbor Partners,enterprise,APAC,NZ,W2129,harbor-marketing,prod,U3565,2025-04-26 21:52:12,2025-04-26 22:56:12,2025-04-28 13:02:12,medium,cancellation,resolved,4,64,2350,240,true,false,2,2025-04-01,2025-04-01 +T10203,A1057,Harbor Partners,enterprise,APAC,NZ,W2127,harbor-ops,sandbox,U3561,2025-06-02 14:43:31,2025-06-02 16:17:31,,medium,api_limit,in_progress,,94,,240,true,true,301,2025-06-01, +T10204,A1058,Evergreen Analytics,smb,EMEA,UK,W2131,evergreen-ops,prod,U3567,2025-05-03 23:31:29,2025-05-04 02:00:29,2025-05-04 23:54:29,medium,sso,resolved,4,149,1463,240,true,false,1,2025-05-01,2025-05-01 +T10206,A1058,Evergreen Analytics,smb,EMEA,UK,W2130,evergreen-core,prod,U3569,2025-04-06 10:38:55,2025-04-06 19:21:55,2025-04-08 23:32:55,low,api_limit,resolved,5,523,3654,1440,true,false,2,2025-04-01,2025-04-01 +T10207,A1059,Evergreen Partners,mid_market,NA,CA,W2132,evergreen-core,prod,U3578,2025-05-31 07:03:09,2025-05-31 07:56:09,2025-06-02 11:48:09,high,billing,resolved,5,53,3165,60,true,false,2,2025-05-01,2025-06-01 +T10208,A1059,Evergreen Partners,mid_market,NA,CA,W2132,evergreen-core,prod,U3581,2025-05-26 23:01:58,2025-05-27 01:50:58,2025-05-28 12:46:58,medium,dashboard_filter,resolved,5,169,2265,240,true,false,2,2025-05-01,2025-05-01 +T10209,A1059,Evergreen Partners,mid_market,NA,CA,W2132,evergreen-core,prod,U3581,2025-04-16 02:06:12,2025-04-16 05:49:12,2025-04-17 08:51:12,medium,model_error,resolved,4,223,1845,240,true,false,1,2025-04-01,2025-04-01 +T10210,A1059,Evergreen Partners,mid_market,NA,CA,W2133,evergreen-ops,sandbox,U3574,2025-05-28 20:36:04,2025-05-29 03:21:04,2025-05-29 23:12:04,low,data_freshness,resolved,4,405,1596,1440,true,false,1,2025-05-01,2025-05-01 +T10211,A1059,Evergreen Partners,mid_market,NA,CA,W2133,evergreen-ops,sandbox,U3576,2025-04-25 17:15:19,2025-04-25 19:42:19,2025-04-26 06:50:19,medium,model_error,resolved,5,147,815,240,true,false,1,2025-04-01,2025-04-01 +T10212,A1060,Cedar Foods,mid_market,NA,CA,W2135,cedar-ops,sandbox,U3597,2025-06-05 17:55:39,2025-06-05 20:08:39,2025-06-08 15:20:39,medium,data_freshness,resolved,4,133,4165,240,true,false,3,2025-06-01,2025-06-01 +T10214,A1061,Atlas Capital,enterprise,EMEA,FR,W2136,atlas-core,prod,U3604,2025-05-01 07:17:48,2025-05-01 07:57:48,2025-05-02 11:43:48,medium,permissions,resolved,5,40,1706,240,true,false,1,2025-05-01,2025-05-01 +T10215,A1061,Atlas Capital,enterprise,EMEA,FR,W2137,atlas-ops,sandbox,U3602,2025-06-18 07:24:33,2025-06-18 08:38:33,,medium,data_freshness,in_progress,,74,,240,true,true,285,2025-06-01, +T10216,A1061,Atlas Capital,enterprise,EMEA,FR,W2136,atlas-core,prod,U3608,2025-05-25 02:26:34,2025-05-25 02:52:34,2025-05-25 10:38:34,high,dashboard_filter,resolved,5,26,492,60,true,false,0,2025-05-01,2025-05-01 +T10218,A1062,Delta Manufacturing,enterprise,EMEA,NL,W2140,delta-ops,prod,U3618,2025-06-06 19:13:40,2025-06-06 19:38:40,2025-06-08 18:06:40,high,api_limit,resolved,4,25,2813,60,true,false,2,2025-06-01,2025-06-01 +T10219,A1062,Delta Manufacturing,enterprise,EMEA,NL,W2139,delta-core,prod,U3622,2025-05-15 10:06:58,2025-05-15 10:52:58,2025-05-16 02:25:58,medium,api_limit,resolved,5,46,979,240,true,false,1,2025-05-01,2025-05-01 +T10220,A1062,Delta Manufacturing,enterprise,EMEA,NL,W2139,delta-core,prod,U3620,2025-06-05 08:31:40,2025-06-05 08:36:40,2025-06-06 01:11:40,urgent,cancellation,resolved,5,5,1000,30,true,false,1,2025-06-01,2025-06-01 +T10221,A1063,Maple Global,smb,NA,CA,W2142,maple-core,prod,U3631,2025-04-12 01:32:03,2025-04-12 04:02:03,,medium,dashboard_filter,in_progress,,150,,240,true,true,352,2025-04-01, +T10222,A1063,Maple Global,smb,NA,CA,W2142,maple-core,prod,U3632,2025-05-09 06:50:11,2025-05-09 09:35:11,2025-05-11 12:00:11,medium,performance,resolved,4,165,3190,240,true,false,2,2025-05-01,2025-05-01 +T10223,A1064,Atlas Health,smb,NA,US,W2143,atlas-core,prod,U3634,2025-05-19 15:33:04,2025-05-20 05:32:04,2025-05-22 06:37:04,low,performance,resolved,5,839,3784,1440,true,false,3,2025-05-01,2025-05-01 +T10225,A1065,Vertex Partners,mid_market,NA,US,W2145,vertex-ops,prod,U3643,2025-04-27 11:41:45,2025-04-27 19:54:45,2025-04-30 02:25:45,low,dashboard_filter,resolved,3,493,3764,1440,true,false,3,2025-04-01,2025-04-01 +T10226,A1065,Vertex Partners,mid_market,NA,US,W2144,vertex-core,prod,U3643,2025-04-22 11:47:53,2025-04-22 12:26:53,2025-04-22 21:35:53,high,dashboard_filter,resolved,5,39,588,60,true,false,0,2025-04-01,2025-04-01 +T10227,A1066,Pacific Capital,mid_market,APAC,NZ,W2147,pacific-ops,prod,U3649,2025-06-01 11:53:08,2025-06-02 00:05:08,2025-06-04 11:55:08,low,permissions,resolved,3,732,4322,1440,true,false,3,2025-06-01,2025-06-01 +T10228,A1066,Pacific Capital,mid_market,APAC,NZ,W2146,pacific-core,prod,U3650,2025-05-18 10:28:25,2025-05-18 11:00:25,2025-05-21 04:49:25,urgent,api_limit,resolved,4,32,3981,30,false,false,3,2025-05-01,2025-05-01 +T10229,A1066,Pacific Capital,mid_market,APAC,NZ,W2146,pacific-core,prod,U3655,2025-04-17 22:01:04,2025-04-18 00:42:04,2025-04-18 16:45:04,medium,model_error,resolved,4,161,1124,240,true,false,1,2025-04-01,2025-04-01 +T10230,A1067,Maple Energy,mid_market,NA,CA,W2149,maple-ops,sandbox,U3664,2025-04-16 21:56:35,2025-04-17 00:05:35,,medium,api_limit,in_progress,,129,,240,true,true,348,2025-04-01, +T10232,A1067,Maple Energy,mid_market,NA,CA,W2149,maple-ops,sandbox,U3662,2025-05-14 17:33:03,2025-05-14 20:44:03,2025-05-17 11:23:03,medium,sso,resolved,4,191,3950,240,true,false,3,2025-05-01,2025-05-01 +T10233,A1067,Maple Energy,mid_market,NA,CA,W2149,maple-ops,sandbox,U3660,2025-06-12 17:58:13,2025-06-13 01:42:13,2025-06-13 10:17:13,low,sso,resolved,4,464,979,1440,true,false,1,2025-06-01,2025-06-01 +T10235,A1068,Helio Health,enterprise,APAC,SG,W2152,helio-finance,sandbox,U3669,2025-05-28 03:12:49,2025-05-28 05:13:49,2025-05-30 08:36:49,medium,performance,resolved,5,121,3204,240,true,false,2,2025-05-01,2025-05-01 +T10237,A1068,Helio Health,enterprise,APAC,SG,W2150,helio-core,prod,U3679,2025-04-25 19:00:56,2025-04-25 19:19:56,2025-04-27 01:18:56,high,api_limit,resolved,5,19,1818,60,true,false,2,2025-04-01,2025-04-01 +T10238,A1068,Helio Health,enterprise,APAC,SG,W2152,helio-finance,sandbox,U3672,2025-04-03 06:46:03,2025-04-03 07:06:03,2025-04-05 09:10:03,high,sso,resolved,4,20,3024,60,true,false,2,2025-04-01,2025-04-01 +T10239,A1068,Helio Health,enterprise,APAC,SG,W2150,helio-core,prod,U3679,2025-06-06 19:53:24,2025-06-06 22:43:24,2025-06-09 16:26:24,medium,api_limit,resolved,4,170,4113,240,true,false,3,2025-06-01,2025-06-01 +T10240,A1068,Helio Health,enterprise,APAC,SG,W2152,helio-finance,sandbox,U3667,2025-06-10 14:39:11,2025-06-10 15:39:11,2025-06-11 20:10:11,medium,sso,resolved,4,60,1771,240,true,false,1,2025-06-01,2025-06-01 +T10241,A1068,Helio Health,enterprise,APAC,SG,W2150,helio-core,prod,U3667,2025-05-18 14:42:23,2025-05-18 16:32:23,2025-05-20 10:22:23,medium,sso,resolved,5,110,2620,240,true,false,2,2025-05-01,2025-05-01 +T10242,A1069,Bright Foods,enterprise,NA,CA,W2154,bright-core,prod,U3687,2025-05-27 21:08:15,2025-05-27 22:54:15,2025-05-30 00:56:15,medium,model_error,resolved,4,106,3108,240,true,false,3,2025-05-01,2025-05-01 +T10243,A1069,Bright Foods,enterprise,NA,CA,W2154,bright-core,prod,U3689,2025-05-24 15:21:59,2025-05-24 17:44:59,2025-05-27 00:32:59,medium,permissions,resolved,4,143,3431,240,true,false,3,2025-05-01,2025-05-01 +T10244,A1069,Bright Foods,enterprise,NA,CA,W2156,bright-finance,prod,U3683,2025-05-23 06:52:09,2025-05-23 07:17:09,2025-05-26 07:05:09,high,api_limit,resolved,5,25,4333,60,true,false,3,2025-05-01,2025-05-01 +T10247,A1071,Evergreen Group,mid_market,NA,CA,W2159,evergreen-ops,prod,U3710,2025-06-09 13:53:32,2025-06-09 14:30:32,2025-06-12 13:21:32,high,dashboard_filter,resolved,3,37,4288,60,true,false,3,2025-06-01,2025-06-01 +T10249,A1072,Summit Ventures,enterprise,NA,US,W2161,summit-core,prod,U3732,2025-04-22 21:15:26,2025-04-23 04:28:26,2025-04-24 17:12:26,low,sso,resolved,5,433,2637,1440,true,false,2,2025-04-01,2025-04-01 +T10250,A1072,Summit Ventures,enterprise,NA,US,W2162,summit-ops,prod,U3718,2025-05-03 13:30:01,2025-05-03 13:35:01,2025-05-05 02:07:01,urgent,data_freshness,resolved,4,5,2197,30,true,false,2,2025-05-01,2025-05-01 +T10251,A1072,Summit Ventures,enterprise,NA,US,W2161,summit-core,prod,U3722,2025-05-11 22:46:00,2025-05-12 04:53:00,2025-05-13 10:00:00,low,performance,resolved,3,367,2114,1440,true,false,2,2025-05-01,2025-05-01 +T10252,A1072,Summit Ventures,enterprise,NA,US,W2163,summit-finance,sandbox,U3731,2025-04-19 18:20:42,2025-04-19 18:32:42,2025-04-21 21:56:42,high,performance,resolved,3,12,3096,60,true,false,2,2025-04-01,2025-04-01 +T10253,A1073,Silver Holdings,mid_market,EMEA,DE,W2165,silver-ops,prod,U3735,2025-06-01 20:03:30,2025-06-01 22:33:30,2025-06-04 14:08:30,medium,dashboard_filter,resolved,3,150,3965,240,true,false,3,2025-06-01,2025-06-01 +T10254,A1073,Silver Holdings,mid_market,EMEA,DE,W2165,silver-ops,prod,U3736,2025-04-26 10:02:03,2025-04-26 10:45:03,2025-04-27 20:50:03,high,model_error,resolved,3,43,2088,60,true,false,1,2025-04-01,2025-04-01 +T10255,A1073,Silver Holdings,mid_market,EMEA,DE,W2164,silver-core,prod,U3744,2025-05-31 00:53:17,2025-05-31 04:17:17,2025-06-02 14:36:17,medium,dashboard_filter,resolved,4,204,3703,240,true,false,2,2025-05-01,2025-06-01 +T10256,A1073,Silver Holdings,mid_market,EMEA,DE,W2164,silver-core,prod,U3741,2025-05-06 08:30:20,2025-05-06 08:38:20,,urgent,billing,open,,8,,30,true,true,328,2025-05-01, +T10258,A1074,Granite Analytics,mid_market,NA,CA,W2168,granite-finance,prod,U3753,2025-05-26 23:28:41,2025-05-27 02:42:41,2025-05-28 02:31:41,medium,permissions,resolved,3,194,1623,240,true,false,2,2025-05-01,2025-05-01 +T10259,A1074,Granite Analytics,mid_market,NA,CA,W2167,granite-ops,prod,U3755,2025-05-02 14:30:12,2025-05-02 17:28:12,2025-05-04 18:59:12,medium,api_limit,resolved,4,178,3149,240,true,false,2,2025-05-01,2025-05-01 +T10260,A1074,Granite Analytics,mid_market,NA,CA,W2168,granite-finance,prod,U3756,2025-06-05 16:39:10,2025-06-06 05:34:10,,low,performance,in_progress,,775,,1440,true,true,298,2025-06-01, +T10261,A1074,Granite Analytics,mid_market,NA,CA,W2166,granite-core,prod,U3754,2025-05-18 22:50:16,2025-05-19 07:18:16,2025-05-20 12:59:16,low,dashboard_filter,resolved,3,508,2289,1440,true,false,2,2025-05-01,2025-05-01 +T10262,A1075,Cedar Labs,smb,EMEA,UK,W2169,cedar-core,prod,U3763,2025-04-23 03:07:18,2025-04-23 15:25:18,2025-04-26 14:50:18,low,api_limit,resolved,4,738,5023,1440,true,false,3,2025-04-01,2025-04-01 +T10263,A1076,Atlas Solutions,mid_market,EMEA,UK,W2171,atlas-ops,prod,U3772,2025-06-11 21:33:07,2025-06-12 02:46:07,2025-06-14 01:02:07,low,model_error,resolved,5,313,3089,1440,true,false,3,2025-06-01,2025-06-01 +T10264,A1076,Atlas Solutions,mid_market,EMEA,UK,W2170,atlas-core,prod,U3777,2025-05-12 14:12:11,2025-05-12 16:48:11,,medium,sso,open,,156,,240,true,true,322,2025-05-01, +T10266,A1077,Evergreen Foods,mid_market,NA,CA,W2173,evergreen-ops,prod,U3782,2025-05-18 22:13:07,2025-05-18 22:33:07,2025-05-20 14:40:07,urgent,data_freshness,resolved,5,20,2427,30,true,false,2,2025-05-01,2025-05-01 +T10267,A1077,Evergreen Foods,mid_market,NA,CA,W2172,evergreen-core,prod,U3788,2025-05-23 00:58:58,2025-05-23 01:13:58,2025-05-23 22:55:58,urgent,dashboard_filter,resolved,5,15,1317,30,true,false,0,2025-05-01,2025-05-01 +T10268,A1077,Evergreen Foods,mid_market,NA,CA,W2173,evergreen-ops,prod,U3789,2025-06-16 00:24:24,2025-06-16 02:02:24,2025-06-16 17:25:24,medium,model_error,resolved,2,98,1021,240,true,false,0,2025-06-01,2025-06-01 +T10270,A1078,Beacon Foods,mid_market,EMEA,FR,W2175,beacon-core,prod,U3799,2025-05-29 05:30:26,2025-05-29 16:32:26,2025-05-30 12:09:26,low,performance,resolved,4,662,1839,1440,true,false,1,2025-05-01,2025-05-01 +T10272,A1078,Beacon Foods,mid_market,EMEA,FR,W2176,beacon-ops,prod,U3798,2025-04-21 00:49:12,2025-04-21 10:24:12,,low,data_freshness,open,,575,,1440,true,true,343,2025-04-01, +T10273,A1078,Beacon Foods,mid_market,EMEA,FR,W2176,beacon-ops,prod,U3798,2025-04-13 10:25:24,2025-04-13 13:29:24,2025-04-16 02:38:24,medium,performance,resolved,4,184,3853,240,true,false,3,2025-04-01,2025-04-01 +T10274,A1079,Nova Foods,enterprise,EMEA,FR,W2178,nova-core,prod,U3822,2025-05-05 14:26:20,2025-05-05 14:42:20,2025-05-06 05:24:20,high,billing,resolved,4,16,898,60,true,false,1,2025-05-01,2025-05-01 +T10275,A1079,Nova Foods,enterprise,EMEA,FR,W2179,nova-ops,prod,U3811,2025-04-18 07:31:50,2025-04-18 08:53:50,2025-04-19 22:34:50,medium,dashboard_filter,resolved,4,82,2343,240,true,false,1,2025-04-01,2025-04-01 +T10277,A1079,Nova Foods,enterprise,EMEA,FR,W2181,nova-marketing,prod,U3812,2025-04-18 10:04:57,2025-04-18 11:44:57,2025-04-20 11:15:57,medium,performance,resolved,4,100,2951,240,true,false,2,2025-04-01,2025-04-01 +T10278,A1079,Nova Foods,enterprise,EMEA,FR,W2181,nova-marketing,prod,U3818,2025-06-02 08:36:25,2025-06-02 08:51:25,2025-06-04 13:51:25,urgent,sso,resolved,2,15,3195,30,true,false,2,2025-06-01,2025-06-01 +T10279,A1079,Nova Foods,enterprise,EMEA,FR,W2180,nova-finance,prod,U3818,2025-04-28 22:11:35,2025-04-28 22:43:35,2025-05-01 10:54:35,high,data_freshness,resolved,4,32,3643,60,true,false,3,2025-04-01,2025-05-01 +T10280,A1079,Nova Foods,enterprise,EMEA,FR,W2180,nova-finance,prod,U3805,2025-05-18 02:26:56,2025-05-18 04:01:56,2025-05-20 16:37:56,medium,api_limit,resolved,4,95,3731,240,true,false,2,2025-05-01,2025-05-01 +T10281,A1080,Beacon Global,mid_market,EMEA,NL,W2182,beacon-core,prod,U3834,2025-06-03 01:28:26,2025-06-03 02:25:26,2025-06-05 18:14:26,high,permissions,resolved,4,57,3886,60,true,false,2,2025-06-01,2025-06-01 +T10282,A1080,Beacon Global,mid_market,EMEA,NL,W2182,beacon-core,prod,U3834,2025-06-07 21:38:41,2025-06-08 12:53:41,2025-06-08 18:48:41,low,api_limit,resolved,3,915,1270,1440,true,false,1,2025-06-01,2025-06-01 +T10283,A1080,Beacon Global,mid_market,EMEA,NL,W2182,beacon-core,prod,U3832,2025-06-22 16:11:06,2025-06-22 19:39:06,2025-06-24 02:22:06,medium,api_limit,resolved,5,208,2051,240,true,false,2,2025-06-01,2025-06-01 +T10284,A1080,Beacon Global,mid_market,EMEA,NL,W2182,beacon-core,prod,U3828,2025-04-17 10:23:21,2025-04-17 19:17:21,,low,sso,open,,534,,1440,true,true,347,2025-04-01, +T10285,A1080,Beacon Global,mid_market,EMEA,NL,W2183,beacon-ops,prod,U3831,2025-05-13 12:25:09,2025-05-13 13:45:09,,medium,data_freshness,in_progress,,80,,240,true,true,321,2025-05-01, +T10286,A1081,River Collective,mid_market,NA,CA,W2185,river-ops,sandbox,U3837,2025-04-07 20:11:07,2025-04-08 06:55:07,2025-04-10 15:13:07,low,permissions,resolved,4,644,4022,1440,true,false,3,2025-04-01,2025-04-01 +T10287,A1081,River Collective,mid_market,NA,CA,W2186,river-finance,prod,U3840,2025-06-22 02:52:23,2025-06-22 04:17:23,,medium,api_limit,in_progress,,85,,240,true,true,281,2025-06-01, +T10288,A1081,River Collective,mid_market,NA,CA,W2184,river-core,prod,U3835,2025-05-04 08:03:18,2025-05-04 08:48:18,2025-05-07 05:25:18,high,model_error,resolved,3,45,4162,60,true,false,3,2025-05-01,2025-05-01 +T10290,A1082,Summit Manufacturing,mid_market,NA,US,W2187,summit-core,prod,U3845,2025-04-26 04:10:30,2025-04-26 04:35:30,,urgent,permissions,open,,25,,30,true,true,338,2025-04-01, +T10291,A1082,Summit Manufacturing,mid_market,NA,US,W2187,summit-core,prod,U3850,2025-05-03 16:55:51,2025-05-03 19:47:51,2025-05-06 07:56:51,medium,api_limit,resolved,2,172,3781,240,true,false,3,2025-05-01,2025-05-01 +T10292,A1082,Summit Manufacturing,mid_market,NA,US,W2187,summit-core,prod,U3850,2025-05-31 23:21:35,2025-06-01 02:21:35,,medium,data_freshness,open,,180,,240,true,true,303,2025-05-01, +T10295,A1082,Summit Manufacturing,mid_market,NA,US,W2187,summit-core,prod,U3846,2025-04-08 08:09:08,2025-04-08 08:31:08,2025-04-10 23:15:08,urgent,dashboard_filter,resolved,3,22,3786,30,true,false,2,2025-04-01,2025-04-01 +T10296,A1083,Falcon Works,mid_market,NA,CA,W2188,falcon-core,prod,U3853,2025-05-04 09:35:24,2025-05-04 10:11:24,2025-05-06 17:30:24,high,permissions,resolved,2,36,3355,60,true,false,2,2025-05-01,2025-05-01 +T10297,A1083,Falcon Works,mid_market,NA,CA,W2188,falcon-core,prod,U3855,2025-04-09 10:56:04,2025-04-09 17:13:04,2025-04-11 20:22:04,low,model_error,resolved,5,377,3446,1440,true,false,2,2025-04-01,2025-04-01 +T10298,A1083,Falcon Works,mid_market,NA,CA,W2189,falcon-ops,sandbox,U3857,2025-06-01 02:05:06,2025-06-01 05:07:06,2025-06-03 17:10:06,medium,dashboard_filter,resolved,4,182,3785,240,true,false,2,2025-06-01,2025-06-01 +T10299,A1083,Falcon Works,mid_market,NA,CA,W2188,falcon-core,prod,U3855,2025-06-03 04:49:20,2025-06-03 13:53:20,2025-06-05 19:20:20,low,data_freshness,resolved,4,544,3751,1440,true,false,2,2025-06-01,2025-06-01 +T10300,A1084,Silver Foods,mid_market,NA,CA,W2190,silver-core,prod,U3867,2025-06-18 09:55:49,2025-06-18 10:33:49,2025-06-19 09:35:49,high,data_freshness,resolved,2,38,1420,60,true,false,1,2025-06-01,2025-06-01 +T10301,A1084,Silver Foods,mid_market,NA,CA,W2190,silver-core,prod,U3867,2025-05-13 14:22:23,2025-05-13 16:44:23,,medium,sso,in_progress,,142,,240,true,true,321,2025-05-01, +T10302,A1084,Silver Foods,mid_market,NA,CA,W2191,silver-ops,prod,U3868,2025-04-22 00:50:58,2025-04-22 09:07:58,2025-04-24 22:10:58,low,api_limit,resolved,3,497,4160,1440,true,false,2,2025-04-01,2025-04-01 +T10303,A1084,Silver Foods,mid_market,NA,CA,W2190,silver-core,prod,U3865,2025-05-29 10:44:27,2025-05-29 11:10:27,2025-05-30 20:20:27,high,performance,resolved,4,26,2016,60,true,false,1,2025-05-01,2025-05-01 +T10304,A1085,Sierra Capital,smb,NA,US,W2192,sierra-core,prod,U3871,2025-04-20 14:06:05,2025-04-20 16:57:05,2025-04-23 13:10:05,medium,performance,resolved,3,171,4264,240,true,false,3,2025-04-01,2025-04-01 +T10305,A1085,Sierra Capital,smb,NA,US,W2192,sierra-core,prod,U3870,2025-04-03 17:48:59,2025-04-03 22:12:59,2025-04-06 03:27:59,medium,api_limit,resolved,5,264,3459,240,false,false,3,2025-04-01,2025-04-01 +T10306,A1086,River Labs,smb,EMEA,FR,W2193,river-core,prod,U3873,2025-04-19 20:41:58,2025-04-19 23:27:58,,medium,model_error,open,,166,,240,true,true,345,2025-04-01, +T10307,A1086,River Labs,smb,EMEA,FR,W2193,river-core,prod,U3873,2025-05-29 02:05:37,2025-05-29 02:16:37,2025-05-30 20:22:37,urgent,api_limit,resolved,3,11,2537,30,true,false,1,2025-05-01,2025-05-01 +T10308,A1087,Apex Capital,enterprise,NA,CA,W2194,apex-core,prod,U3883,2025-04-21 22:37:01,2025-04-22 05:16:01,2025-04-22 10:16:01,low,dashboard_filter,resolved,5,399,699,1440,true,false,1,2025-04-01,2025-04-01 +T10309,A1087,Apex Capital,enterprise,NA,CA,W2194,apex-core,prod,U3881,2025-04-08 17:15:56,2025-04-08 17:33:56,2025-04-10 22:19:56,high,model_error,resolved,4,18,3184,60,true,false,2,2025-04-01,2025-04-01 +T10310,A1087,Apex Capital,enterprise,NA,CA,W2194,apex-core,prod,U3885,2025-06-08 20:44:26,2025-06-09 04:07:26,2025-06-09 16:30:26,low,api_limit,resolved,5,443,1186,1440,true,false,1,2025-06-01,2025-06-01 +T10311,A1087,Apex Capital,enterprise,NA,CA,W2194,apex-core,prod,U3880,2025-04-21 23:15:42,2025-04-22 01:00:42,2025-04-23 20:09:42,medium,model_error,resolved,4,105,2694,240,true,false,2,2025-04-01,2025-04-01 +T10312,A1087,Apex Capital,enterprise,NA,CA,W2194,apex-core,prod,U3881,2025-06-09 11:09:27,2025-06-09 11:36:27,2025-06-11 20:04:27,high,performance,resolved,4,27,3415,60,true,false,2,2025-06-01,2025-06-01 +T10313,A1087,Apex Capital,enterprise,NA,CA,W2194,apex-core,prod,U3881,2025-05-04 23:27:49,2025-05-05 01:14:49,2025-05-07 07:08:49,medium,sso,resolved,4,107,3341,240,true,false,3,2025-05-01,2025-05-01 +T10314,A1087,Apex Capital,enterprise,NA,CA,W2194,apex-core,prod,U3881,2025-06-07 12:39:10,2025-06-07 14:44:10,,medium,dashboard_filter,open,,125,,240,true,true,296,2025-06-01, +T10315,A1088,Cedar Partners,smb,APAC,NZ,W2195,cedar-core,prod,U3889,2025-05-16 00:23:16,2025-05-16 10:47:16,,low,model_error,in_progress,,624,,1440,true,true,318,2025-05-01, +T10317,A1089,Beacon Network,mid_market,NA,US,W2196,beacon-core,prod,U3904,2025-05-04 22:49:28,2025-05-05 14:46:28,2025-05-06 19:12:28,low,model_error,resolved,5,957,2663,1440,true,false,2,2025-05-01,2025-05-01 +T10318,A1089,Beacon Network,mid_market,NA,US,W2196,beacon-core,prod,U3900,2025-04-16 04:01:09,2025-04-16 04:36:09,2025-04-17 07:11:09,urgent,dashboard_filter,resolved,5,35,1630,30,false,false,1,2025-04-01,2025-04-01 +T10319,A1090,Vertex Labs,smb,NA,US,W2198,vertex-core,prod,U3906,2025-05-08 22:59:11,2025-05-08 23:26:11,,high,model_error,in_progress,,27,,60,true,true,326,2025-05-01, +T10320,A1090,Vertex Labs,smb,NA,US,W2198,vertex-core,prod,U3908,2025-05-17 20:56:55,2025-05-17 23:42:55,2025-05-19 02:05:55,medium,dashboard_filter,resolved,4,166,1749,240,true,false,2,2025-05-01,2025-05-01 +T10003,A1001,Helio Systems,mid_market,EMEA,NL,,,,U3004,2025-04-17 11:06:01,2025-04-17 13:49:01,2025-04-17 20:43:01,medium,billing,resolved,4,163,577,240,true,false,0,2025-04-01,2025-04-01 +T10008,A1003,Nova Ventures,enterprise,NA,US,,,,U3030,2025-04-22 01:54:07,2025-04-22 04:59:07,2025-04-24 21:30:07,low,billing,resolved,5,185,4056,1440,true,false,2,2025-04-01,2025-04-01 +T10009,A1003,Nova Ventures,enterprise,NA,US,,,,U3035,2025-04-03 22:19:57,2025-04-03 22:33:57,2025-04-06 01:57:57,high,billing,resolved,5,14,3098,60,true,false,3,2025-04-01,2025-04-01 +T10019,A1004,Silver Solutions,enterprise,NA,US,,,,U3051,2025-04-27 21:31:07,2025-04-28 03:43:07,,low,billing,open,,372,,1440,true,true,337,2025-04-01, +T10033,A1008,Pacific Works,mid_market,EMEA,UK,,,,U3078,2025-05-26 10:11:02,2025-05-26 17:11:02,2025-05-28 15:09:02,low,cancellation,resolved,4,420,3178,1440,true,false,2,2025-05-01,2025-05-01 +T10054,A1014,Evergreen Global,enterprise,APAC,SG,,,,U3138,2025-06-19 13:20:35,2025-06-19 15:12:35,2025-06-22 10:19:35,medium,cancellation,resolved,2,112,4139,240,true,false,3,2025-06-01,2025-06-01 +T10064,A1016,BluePeak Capital,enterprise,EMEA,DE,,,,U3166,2025-05-20 03:55:57,2025-05-20 04:43:57,,medium,billing,in_progress,,48,,240,true,true,314,2025-05-01, +T10071,A1018,Harbor Manufacturing,smb,EMEA,UK,,,,U3181,2025-04-12 20:00:56,2025-04-13 11:09:56,2025-04-15 08:04:56,low,billing,resolved,2,909,3604,1440,true,false,3,2025-04-01,2025-04-01 +T10084,A1026,Pioneer Capital,smb,NA,CA,,,,U3225,2025-04-04 20:11:17,2025-04-04 20:53:17,2025-04-07 01:09:17,high,billing,resolved,5,42,3178,60,true,false,3,2025-04-01,2025-04-01 +T10087,A1028,Apex Energy,mid_market,APAC,SG,,,,U3234,2025-04-10 23:34:55,2025-04-11 07:23:55,2025-04-11 09:43:55,low,billing,resolved,5,469,609,1440,true,false,1,2025-04-01,2025-04-01 +T10090,A1029,Bright Labs,enterprise,APAC,NZ,,,,U3258,2025-04-29 14:01:39,2025-04-29 14:21:39,2025-05-01 11:13:39,urgent,cancellation,resolved,2,20,2712,30,true,false,2,2025-04-01,2025-05-01 +T10096,A1030,Northwind Analytics,enterprise,EMEA,UK,,,,U3264,2025-04-03 04:55:38,2025-04-03 05:00:38,2025-04-05 07:17:38,urgent,billing,resolved,5,5,3022,30,true,false,2,2025-04-01,2025-04-01 +T10100,A1031,Helio Holdings,mid_market,APAC,AU,,,,U3277,2025-04-02 02:00:43,2025-04-02 02:39:43,,high,billing,in_progress,,39,,60,true,true,362,2025-04-01, +T10104,A1032,Vertex Works,mid_market,EMEA,DE,,,,U3287,2025-06-13 02:13:43,2025-06-13 05:30:43,2025-06-15 14:40:43,medium,cancellation,resolved,3,197,3627,240,true,false,2,2025-06-01,2025-06-01 +T10109,A1034,Helio Partners,smb,NA,CA,,,,U3302,2025-06-01 02:46:58,2025-06-01 03:27:58,2025-06-01 19:25:58,high,cancellation,resolved,4,41,999,60,true,false,0,2025-06-01,2025-06-01 +T10114,A1035,Bright Retail,mid_market,EMEA,UK,,,,U3315,2025-05-03 08:46:16,2025-05-03 09:40:16,2025-05-06 08:18:16,high,cancellation,resolved,5,54,4292,60,true,false,3,2025-05-01,2025-05-01 +T10125,A1039,Nova Group,smb,EMEA,FR,,,,U3352,2025-05-09 21:57:57,2025-05-10 03:39:57,2025-05-10 17:49:57,low,billing,resolved,5,342,1192,1440,true,false,1,2025-05-01,2025-05-01 +T10126,A1039,Nova Group,smb,EMEA,FR,,,,U3353,2025-05-19 17:18:43,2025-05-19 17:49:43,2025-05-22 10:34:43,urgent,cancellation,resolved,5,31,3916,30,false,false,3,2025-05-01,2025-05-01 +T10129,A1040,Harbor Collective,mid_market,APAC,SG,,,,U3357,2025-06-17 23:56:41,2025-06-18 00:16:41,2025-06-18 14:25:41,urgent,billing,resolved,2,20,869,30,true,false,1,2025-06-01,2025-06-01 +T10136,A1042,Northwind Labs,mid_market,APAC,AU,,,,U3385,2025-05-24 00:41:22,2025-05-24 05:23:22,2025-05-24 15:55:22,medium,billing,resolved,3,282,914,240,false,false,0,2025-05-01,2025-05-01 +T10139,A1042,Northwind Labs,mid_market,APAC,AU,,,,U3383,2025-05-25 13:20:05,2025-05-25 16:30:05,2025-05-27 19:01:05,medium,cancellation,resolved,4,190,3221,240,true,false,2,2025-05-01,2025-05-01 +T10156,A1047,Orchid Global,enterprise,APAC,AU,,,,U3438,2025-05-08 01:00:31,2025-05-08 05:18:31,2025-05-10 13:16:31,low,billing,resolved,4,258,3616,1440,true,false,2,2025-05-01,2025-05-01 +T10157,A1047,Orchid Global,enterprise,APAC,AU,,,,U3439,2025-05-07 11:11:19,2025-05-07 13:24:19,2025-05-09 16:38:19,medium,billing,resolved,5,133,3207,240,true,false,2,2025-05-01,2025-05-01 +T10173,A1050,Cedar Energy,smb,APAC,JP,,,,U3489,2025-06-18 15:22:07,2025-06-18 18:17:07,,medium,billing,open,,175,,240,true,true,285,2025-06-01, +T10180,A1052,Sierra Labs,mid_market,APAC,NZ,,,,U3502,2025-05-25 00:00:55,2025-05-25 02:25:55,,medium,cancellation,in_progress,,145,,240,true,true,309,2025-05-01, +T10195,A1056,Delta Global,mid_market,APAC,AU,,,,U3552,2025-05-29 08:49:43,2025-05-29 11:19:43,2025-05-30 16:48:43,medium,billing,resolved,4,150,1919,240,true,false,1,2025-05-01,2025-05-01 +T10200,A1057,Harbor Partners,enterprise,APAC,NZ,,,,U3554,2025-05-26 18:25:27,2025-05-26 20:00:27,2025-05-29 04:45:27,medium,billing,resolved,3,95,3500,240,true,false,3,2025-05-01,2025-05-01 +T10202,A1057,Harbor Partners,enterprise,APAC,NZ,,,,U3566,2025-05-05 15:02:10,2025-05-05 16:09:10,,medium,billing,in_progress,,67,,240,true,true,329,2025-05-01, +T10205,A1058,Evergreen Analytics,smb,EMEA,UK,,,,U3567,2025-05-28 01:46:46,2025-05-28 02:20:46,2025-05-28 18:05:46,high,billing,resolved,4,34,979,60,true,false,0,2025-05-01,2025-05-01 +T10213,A1060,Cedar Foods,mid_market,NA,CA,,,,U3588,2025-04-02 01:19:37,2025-04-02 05:35:37,2025-04-03 18:30:37,low,cancellation,resolved,4,256,2471,1440,true,false,1,2025-04-01,2025-04-01 +T10217,A1061,Atlas Capital,enterprise,EMEA,FR,,,,U3611,2025-06-13 12:09:40,2025-06-13 13:41:40,2025-06-15 17:32:40,medium,cancellation,resolved,5,92,3203,240,true,false,2,2025-06-01,2025-06-01 +T10224,A1064,Atlas Health,smb,NA,US,,,,U3635,2025-06-15 11:18:22,2025-06-15 20:37:22,2025-06-17 05:25:22,low,billing,resolved,5,559,2527,1440,true,false,2,2025-06-01,2025-06-01 +T10231,A1067,Maple Energy,mid_market,NA,CA,,,,U3663,2025-06-04 13:28:16,2025-06-04 16:20:16,2025-06-06 12:13:16,medium,cancellation,resolved,5,172,2805,240,true,false,2,2025-06-01,2025-06-01 +T10234,A1067,Maple Energy,mid_market,NA,CA,,,,U3663,2025-04-15 19:58:10,2025-04-15 20:39:10,2025-04-16 09:26:10,high,cancellation,resolved,4,41,808,60,true,false,1,2025-04-01,2025-04-01 +T10236,A1068,Helio Health,enterprise,APAC,SG,,,,U3679,2025-04-25 17:06:36,2025-04-25 17:11:36,2025-04-28 04:20:36,urgent,cancellation,resolved,5,5,3554,30,true,false,3,2025-04-01,2025-04-01 +T10245,A1070,Helio Manufacturing,smb,APAC,NZ,,,,U3697,2025-06-09 14:37:07,2025-06-09 17:33:07,2025-06-09 22:50:07,medium,cancellation,resolved,4,176,493,240,true,false,0,2025-06-01,2025-06-01 +T10246,A1070,Helio Manufacturing,smb,APAC,NZ,,,,U3697,2025-04-28 01:53:59,2025-04-28 02:39:59,2025-04-28 04:05:59,high,billing,resolved,4,46,132,60,true,false,0,2025-04-01,2025-04-01 +T10248,A1071,Evergreen Group,mid_market,NA,CA,,,,U3706,2025-04-18 13:15:21,2025-04-18 14:50:21,2025-04-20 19:23:21,medium,cancellation,resolved,4,95,3248,240,true,false,2,2025-04-01,2025-04-01 +T10257,A1074,Granite Analytics,mid_market,NA,CA,,,,U3753,2025-04-17 13:43:52,2025-04-18 01:22:52,2025-04-20 17:30:52,low,billing,resolved,5,699,4547,1440,true,false,3,2025-04-01,2025-04-01 +T10265,A1076,Atlas Solutions,mid_market,EMEA,UK,,,,U3774,2025-06-24 13:38:25,2025-06-24 14:17:25,2025-06-26 13:55:25,high,cancellation,resolved,5,39,2897,60,true,false,2,2025-06-01,2025-06-01 +T10269,A1077,Evergreen Foods,mid_market,NA,CA,,,,U3783,2025-06-19 20:59:50,2025-06-19 21:46:50,2025-06-20 17:51:50,high,billing,resolved,4,47,1252,60,true,false,1,2025-06-01,2025-06-01 +T10271,A1078,Beacon Foods,mid_market,EMEA,FR,,,,U3796,2025-04-13 14:55:05,2025-04-13 18:19:05,2025-04-14 13:29:05,medium,cancellation,resolved,4,204,1354,240,true,false,1,2025-04-01,2025-04-01 +T10276,A1079,Nova Foods,enterprise,EMEA,FR,,,,U3823,2025-05-25 23:01:24,2025-05-26 03:17:24,2025-05-26 16:06:24,low,billing,resolved,2,256,1025,1440,true,false,1,2025-05-01,2025-05-01 +T10289,A1081,River Collective,mid_market,NA,CA,,,,U3841,2025-06-15 08:08:53,2025-06-15 08:31:53,2025-06-17 06:39:53,urgent,billing,resolved,5,23,2791,30,true,false,2,2025-06-01,2025-06-01 +T10293,A1082,Summit Manufacturing,mid_market,NA,US,,,,U3847,2025-05-02 02:35:01,2025-05-02 18:53:01,2025-05-04 11:43:01,low,cancellation,resolved,1,978,3428,1440,true,false,2,2025-05-01,2025-05-01 +T10294,A1082,Summit Manufacturing,mid_market,NA,US,,,,U3847,2025-06-05 19:41:59,2025-06-05 23:44:59,2025-06-07 13:58:59,medium,cancellation,resolved,3,243,2537,240,false,false,2,2025-06-01,2025-06-01 +T10316,A1088,Cedar Partners,smb,APAC,NZ,,,,U3891,2025-06-01 22:14:46,2025-06-02 09:01:46,2025-06-03 11:53:46,low,billing,resolved,5,647,2259,1440,true,false,2,2025-06-01,2025-06-01 diff --git a/tasks/helixops_saas010/seeds/solution__int_workspace_daily_metrics.csv b/tasks/helixops_saas010/seeds/solution__int_workspace_daily_metrics.csv new file mode 100644 index 00000000..60510670 --- /dev/null +++ b/tasks/helixops_saas010/seeds/solution__int_workspace_daily_metrics.csv @@ -0,0 +1,5491 @@ +usage_id,workspace_id,account_id,account_name,industry,segment,region,billing_country,workspace_name,environment_tier,workspace_status,is_primary,usage_date,usage_week,weekday_num,is_weekend,active_users,projects_run,api_calls,storage_gb,alerts_sent +UD9001,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,5,226,27.5,1 +UD9002,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-02,2025-06-02,1,false,2,11,762,27.8,3 +UD9003,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-03,2025-06-02,2,false,3,20,1173,27.7,6 +UD9004,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-04,2025-06-02,3,false,3,18,823,27.9,3 +UD9005,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-05,2025-06-02,4,false,2,14,1042,27.5,2 +UD9006,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-06,2025-06-02,5,false,3,14,649,28.5,2 +UD9007,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-07,2025-06-02,6,true,2,6,297,29.2,1 +UD9008,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,5,314,29.5,1 +UD9009,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-09,2025-06-09,1,false,2,11,680,28.7,3 +UD9010,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-10,2025-06-09,2,false,2,15,630,28.7,3 +UD9011,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-11,2025-06-09,3,false,4,24,1111,28.7,4 +UD9012,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-12,2025-06-09,4,false,3,19,1373,28.3,4 +UD9013,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-13,2025-06-09,5,false,3,18,1264,29.0,5 +UD9014,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,5,239,30.6,1 +UD9015,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,6,294,29.9,2 +UD9016,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-16,2025-06-16,1,false,2,11,652,29.5,2 +UD9017,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-17,2025-06-16,2,false,2,13,904,29.9,2 +UD9018,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-18,2025-06-16,3,false,2,14,710,31.0,3 +UD9019,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-19,2025-06-16,4,false,4,23,1495,30.6,3 +UD9020,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-20,2025-06-16,5,false,3,14,869,29.4,3 +UD9021,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,7,415,29.8,2 +UD9022,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-22,2025-06-16,0,true,1,5,251,30.9,1 +UD9023,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-23,2025-06-23,1,false,2,11,606,29.2,3 +UD9024,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-24,2025-06-23,2,false,2,15,895,30.3,2 +UD9025,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-25,2025-06-23,3,false,2,13,731,31.7,2 +UD9026,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-26,2025-06-23,4,false,2,12,851,31.7,3 +UD9027,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-27,2025-06-23,5,false,4,21,1410,30.6,4 +UD9028,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-28,2025-06-23,6,true,1,5,373,31.3,1 +UD9029,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,6,359,32.6,1 +UD9030,W2001,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-core,prod,active,true,2025-06-30,2025-06-30,1,false,2,13,625,32.5,2 +UD9031,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-01,2025-05-26,0,true,2,7,520,22.7,1 +UD9032,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-02,2025-06-02,1,false,2,12,747,23.6,2 +UD9033,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-03,2025-06-02,2,false,1,11,704,23.5,1 +UD9034,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-04,2025-06-02,3,false,2,13,668,23.6,3 +UD9035,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-05,2025-06-02,4,false,2,14,994,23.9,3 +UD9036,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-06,2025-06-02,5,false,2,13,904,23.5,4 +UD9037,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-07,2025-06-02,6,true,1,6,278,23.1,2 +UD9038,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-08,2025-06-02,0,true,2,6,454,23.8,1 +UD9039,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-09,2025-06-09,1,false,1,10,478,24.8,2 +UD9040,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-10,2025-06-09,2,false,2,15,691,24.6,2 +UD9041,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-11,2025-06-09,3,false,2,16,794,24.7,3 +UD9042,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-12,2025-06-09,4,false,1,10,724,23.9,2 +UD9043,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-13,2025-06-09,5,false,1,10,523,25.9,3 +UD9044,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-14,2025-06-09,6,true,1,5,350,24.4,1 +UD9045,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-15,2025-06-09,0,true,2,6,341,24.8,1 +UD9046,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-16,2025-06-16,1,false,1,10,592,24.5,2 +UD9047,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-17,2025-06-16,2,false,1,11,567,25.4,2 +UD9048,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-18,2025-06-16,3,false,1,12,716,26.6,2 +UD9049,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-19,2025-06-16,4,false,1,11,644,26.2,3 +UD9050,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-20,2025-06-16,5,false,1,10,516,26.6,2 +UD9051,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-21,2025-06-16,6,true,1,6,292,25.9,1 +UD9052,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-22,2025-06-16,0,true,1,5,236,25.5,1 +UD9053,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-23,2025-06-23,1,false,2,13,788,27.1,4 +UD9054,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-24,2025-06-23,2,false,1,10,647,26.8,3 +UD9055,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-25,2025-06-23,3,false,1,11,487,27.4,2 +UD9056,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-26,2025-06-23,4,false,2,13,746,28.1,3 +UD9057,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-27,2025-06-23,5,false,2,14,875,25.8,3 +UD9058,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-28,2025-06-23,6,true,1,5,261,27.7,1 +UD9059,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-29,2025-06-23,0,true,1,5,269,27.1,1 +UD9060,W2002,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-ops,prod,active,false,2025-06-30,2025-06-30,1,false,1,11,555,27.9,2 +UD9061,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-01,2025-05-26,0,true,1,6,302,22.5,1 +UD9062,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-02,2025-06-02,1,false,1,10,539,21.8,2 +UD9063,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-03,2025-06-02,2,false,1,12,747,22.8,2 +UD9064,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-04,2025-06-02,3,false,1,11,596,22.3,2 +UD9065,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-05,2025-06-02,4,false,1,10,736,22.6,2 +UD9066,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-06,2025-06-02,5,false,1,9,441,22.6,2 +UD9067,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-07,2025-06-02,6,true,1,6,273,22.8,1 +UD9068,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-08,2025-06-02,0,true,1,6,438,23.4,1 +UD9069,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-09,2025-06-09,1,false,1,10,418,23.3,2 +UD9070,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-10,2025-06-09,2,false,1,11,687,22.3,2 +UD9071,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-11,2025-06-09,3,false,1,12,517,22.1,3 +UD9072,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-12,2025-06-09,4,false,1,11,745,23.2,2 +UD9073,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-13,2025-06-09,5,false,1,9,550,23.1,2 +UD9074,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-14,2025-06-09,6,true,1,6,355,23.4,1 +UD9075,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-15,2025-06-09,0,true,1,5,241,23.8,1 +UD9076,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-16,2025-06-16,1,false,1,10,676,24.5,2 +UD9077,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-17,2025-06-16,2,false,1,11,522,24.4,1 +UD9078,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-18,2025-06-16,3,false,1,12,542,24.9,3 +UD9079,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-19,2025-06-16,4,false,1,10,513,23.9,2 +UD9080,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-20,2025-06-16,5,false,1,10,629,24.9,2 +UD9081,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-21,2025-06-16,6,true,1,6,325,24.3,1 +UD9082,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-22,2025-06-16,0,true,1,6,330,25.6,2 +UD9083,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-23,2025-06-23,1,false,1,10,555,26.2,2 +UD9084,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-24,2025-06-23,2,false,1,12,782,25.8,3 +UD9085,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-25,2025-06-23,3,false,1,11,479,26.2,1 +UD9086,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-26,2025-06-23,4,false,1,10,570,24.4,1 +UD9087,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-27,2025-06-23,5,false,1,9,476,25.2,2 +UD9088,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-28,2025-06-23,6,true,1,6,445,24.3,1 +UD9089,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-29,2025-06-23,0,true,1,6,307,25.5,1 +UD9090,W2003,A1001,Helio Systems,healthcare,mid_market,EMEA,NL,helio-finance,prod,active,false,2025-06-30,2025-06-30,1,false,1,9,597,26.2,2 +UD9091,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-01,2025-05-26,0,true,2,8,472,30.3,2 +UD9092,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-02,2025-06-02,1,false,5,18,1296,31.0,5 +UD9093,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-03,2025-06-02,2,false,4,25,1739,30.8,7 +UD9094,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-04,2025-06-02,3,false,5,28,1806,31.2,3 +UD9095,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-05,2025-06-02,4,false,3,15,1050,30.7,2 +UD9096,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-06,2025-06-02,5,false,3,17,1021,32.4,2 +UD9097,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-07,2025-06-02,6,true,4,11,790,32.3,2 +UD9098,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-08,2025-06-02,0,true,3,9,571,32.3,2 +UD9099,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-09,2025-06-09,1,false,5,21,1421,32.0,3 +UD9100,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-10,2025-06-09,2,false,4,20,1020,31.7,5 +UD9101,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-11,2025-06-09,3,false,5,22,1169,31.6,4 +UD9102,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-12,2025-06-09,4,false,5,22,1512,32.8,5 +UD9103,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-13,2025-06-09,5,false,4,16,786,32.6,4 +UD9104,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,6,403,32.0,1 +UD9105,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-15,2025-06-09,0,true,2,7,506,33.0,1 +UD9106,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-16,2025-06-16,1,false,4,21,1143,31.9,5 +UD9107,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-17,2025-06-16,2,false,4,19,831,34.4,5 +UD9108,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-18,2025-06-16,3,false,3,15,716,33.0,3 +UD9109,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-19,2025-06-16,4,false,4,23,1453,32.9,6 +UD9110,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-20,2025-06-16,5,false,4,21,1434,32.9,5 +UD9111,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,7,475,35.2,2 +UD9112,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-22,2025-06-16,0,true,4,12,771,33.5,2 +UD9113,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-23,2025-06-23,1,false,5,18,915,33.6,4 +UD9114,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-24,2025-06-23,2,false,4,20,1353,32.6,4 +UD9115,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-25,2025-06-23,3,false,3,16,957,35.2,3 +UD9116,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-26,2025-06-23,4,false,4,20,1361,33.7,5 +UD9117,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-27,2025-06-23,5,false,4,17,1044,33.7,2 +UD9118,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-28,2025-06-23,6,true,4,11,874,35.8,3 +UD9119,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-29,2025-06-23,0,true,2,8,611,36.3,2 +UD9120,W2004,A1002,Summit Foods,media,mid_market,NA,US,summit-core,prod,active,true,2025-06-30,2025-06-30,1,false,5,21,937,33.8,3 +UD9121,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-01,2025-05-26,0,true,1,6,174,12.2,1 +UD9122,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-02,2025-06-02,1,false,0,7,256,11.2,1 +UD9123,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-03,2025-06-02,2,false,0,8,323,11.5,2 +UD9124,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-04,2025-06-02,3,false,2,16,603,12.4,2 +UD9125,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-05,2025-06-02,4,false,0,7,217,11.8,1 +UD9126,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-06,2025-06-02,5,false,1,9,252,12.0,2 +UD9127,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-07,2025-06-02,6,true,0,4,132,11.7,1 +UD9128,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-08,2025-06-02,0,true,2,7,249,12.9,2 +UD9129,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-09,2025-06-09,1,false,0,7,241,12.5,2 +UD9130,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-10,2025-06-09,2,false,2,15,471,13.0,4 +UD9131,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-11,2025-06-09,3,false,1,11,478,12.7,2 +UD9132,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-12,2025-06-09,4,false,1,10,432,12.4,3 +UD9133,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-13,2025-06-09,5,false,0,7,211,14.0,2 +UD9134,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-14,2025-06-09,6,true,0,4,98,13.0,1 +UD9135,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-15,2025-06-09,0,true,1,5,222,14.3,1 +UD9136,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-16,2025-06-16,1,false,1,9,282,12.4,2 +UD9137,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-17,2025-06-16,2,false,2,14,404,12.5,2 +UD9138,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-18,2025-06-16,3,false,1,11,362,13.4,2 +UD9139,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-19,2025-06-16,4,false,0,7,315,13.9,1 +UD9140,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-20,2025-06-16,5,false,1,10,290,13.6,2 +UD9141,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-21,2025-06-16,6,true,2,7,271,13.3,1 +UD9142,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-22,2025-06-16,0,true,0,4,173,13.4,1 +UD9143,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-23,2025-06-23,1,false,0,7,192,14.0,1 +UD9144,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-24,2025-06-23,2,false,2,15,580,14.6,3 +UD9145,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-25,2025-06-23,3,false,1,11,394,14.2,2 +UD9146,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-26,2025-06-23,4,false,2,12,381,14.7,3 +UD9147,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-27,2025-06-23,5,false,1,11,309,16.0,3 +UD9148,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-28,2025-06-23,6,true,0,4,165,15.6,1 +UD9149,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-29,2025-06-23,0,true,2,7,241,16.9,2 +UD9150,W2005,A1002,Summit Foods,media,mid_market,NA,US,summit-ops,sandbox,active,false,2025-06-30,2025-06-30,1,false,1,10,427,15.4,2 +UD9151,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-01,2025-05-26,0,true,1,5,341,29.3,1 +UD9152,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-02,2025-06-02,1,false,3,14,943,29.5,3 +UD9153,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-03,2025-06-02,2,false,2,13,717,29.9,3 +UD9154,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-04,2025-06-02,3,false,2,14,674,29.1,2 +UD9155,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-05,2025-06-02,4,false,3,15,809,30.4,2 +UD9156,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-06,2025-06-02,5,false,1,10,452,29.5,2 +UD9157,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-07,2025-06-02,6,true,2,8,379,30.7,2 +UD9158,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-08,2025-06-02,0,true,1,5,276,29.4,1 +UD9159,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-09,2025-06-09,1,false,2,12,739,30.1,2 +UD9160,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-10,2025-06-09,2,false,2,13,890,31.0,3 +UD9161,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-11,2025-06-09,3,false,4,18,1190,31.1,4 +UD9162,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-12,2025-06-09,4,false,1,11,742,30.5,2 +UD9163,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-13,2025-06-09,5,false,1,10,712,30.7,2 +UD9164,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-14,2025-06-09,6,true,1,5,329,30.0,1 +UD9165,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-15,2025-06-09,0,true,1,5,243,31.1,1 +UD9166,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-16,2025-06-16,1,false,2,12,559,31.6,2 +UD9167,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-17,2025-06-16,2,false,2,13,936,31.2,3 +UD9168,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-18,2025-06-16,3,false,2,15,698,31.4,3 +UD9169,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-19,2025-06-16,4,false,1,10,583,32.8,1 +UD9170,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-20,2025-06-16,5,false,4,17,829,30.8,4 +UD9171,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-21,2025-06-16,6,true,1,5,306,33.2,1 +UD9172,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-22,2025-06-16,0,true,3,10,776,32.9,3 +UD9173,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-23,2025-06-23,1,false,3,16,1186,32.4,4 +UD9174,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-24,2025-06-23,2,false,2,14,682,33.6,2 +UD9175,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-25,2025-06-23,3,false,2,14,830,34.5,2 +UD9176,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-26,2025-06-23,4,false,3,19,942,34.1,3 +UD9177,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-27,2025-06-23,5,false,3,18,1104,33.3,4 +UD9178,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-28,2025-06-23,6,true,2,7,343,34.5,2 +UD9179,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-29,2025-06-23,0,true,3,8,520,32.8,1 +UD9180,W2006,A1002,Summit Foods,media,mid_market,NA,US,summit-finance,prod,active,false,2025-06-30,2025-06-30,1,false,2,12,577,33.7,2 +UD9181,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-01,2025-05-26,0,true,3,12,733,58.8,3 +UD9182,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-02,2025-06-02,1,false,6,32,1704,59.2,8 +UD9183,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-03,2025-06-02,2,false,4,28,1887,60.0,7 +UD9184,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-04,2025-06-02,3,false,6,28,1362,60.1,4 +UD9185,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-05,2025-06-02,4,false,6,31,2149,60.4,7 +UD9186,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-06,2025-06-02,5,false,4,24,1779,59.4,4 +UD9187,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-07,2025-06-02,6,true,3,10,753,60.7,2 +UD9188,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-08,2025-06-02,0,true,2,10,627,60.4,2 +UD9189,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-09,2025-06-09,1,false,7,28,1394,60.8,7 +UD9190,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-10,2025-06-09,2,false,5,29,1712,60.0,4 +UD9191,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-11,2025-06-09,3,false,6,37,2018,60.4,9 +UD9192,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-12,2025-06-09,4,false,5,25,1384,60.3,6 +UD9193,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-13,2025-06-09,5,false,5,31,1682,60.2,5 +UD9194,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-14,2025-06-09,6,true,4,14,882,60.5,3 +UD9195,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-15,2025-06-09,0,true,3,11,712,61.1,3 +UD9196,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-16,2025-06-16,1,false,6,32,2370,62.2,4 +UD9197,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-17,2025-06-16,2,false,4,29,2093,62.0,6 +UD9198,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-18,2025-06-16,3,false,7,42,2795,61.6,12 +UD9199,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-19,2025-06-16,4,false,6,31,1810,62.4,5 +UD9200,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-20,2025-06-16,5,false,6,26,1689,61.5,6 +UD9201,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,9,592,62.8,2 +UD9202,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-22,2025-06-16,0,true,4,12,668,61.6,3 +UD9203,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-23,2025-06-23,1,false,4,25,1748,61.8,7 +UD9204,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-24,2025-06-23,2,false,5,29,1266,62.9,6 +UD9205,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-25,2025-06-23,3,false,4,30,1613,62.6,4 +UD9206,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-26,2025-06-23,4,false,6,33,1804,62.6,5 +UD9207,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-27,2025-06-23,5,false,7,35,2274,62.7,9 +UD9208,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-28,2025-06-23,6,true,4,13,1000,63.8,2 +UD9209,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-29,2025-06-23,0,true,3,10,531,64.0,3 +UD9210,W2007,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-core,prod,active,true,2025-06-30,2025-06-30,1,false,5,28,1312,64.1,6 +UD9211,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-01,2025-05-26,0,true,1,8,592,40.4,1 +UD9212,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-02,2025-06-02,1,false,5,29,1412,41.0,8 +UD9213,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-03,2025-06-02,2,false,2,20,1346,40.6,5 +UD9214,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-04,2025-06-02,3,false,3,23,1618,40.4,6 +UD9215,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-05,2025-06-02,4,false,3,19,1223,40.8,4 +UD9216,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-06,2025-06-02,5,false,5,23,1304,40.6,3 +UD9217,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-07,2025-06-02,6,true,3,12,725,42.5,2 +UD9218,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-08,2025-06-02,0,true,3,12,836,41.9,1 +UD9219,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-09,2025-06-09,1,false,5,24,1055,42.3,4 +UD9220,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-10,2025-06-09,2,false,3,23,1587,41.4,5 +UD9221,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-11,2025-06-09,3,false,3,24,1384,42.8,5 +UD9222,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-12,2025-06-09,4,false,5,31,2241,43.0,6 +UD9223,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-13,2025-06-09,5,false,4,22,1578,41.9,5 +UD9224,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-14,2025-06-09,6,true,3,12,756,41.7,2 +UD9225,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-15,2025-06-09,0,true,2,9,398,42.7,1 +UD9226,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-16,2025-06-16,1,false,4,21,1046,42.6,3 +UD9227,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-17,2025-06-16,2,false,3,22,969,41.9,5 +UD9228,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-18,2025-06-16,3,false,4,23,1380,43.4,4 +UD9229,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-19,2025-06-16,4,false,2,19,925,44.1,5 +UD9230,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-20,2025-06-16,5,false,4,24,1088,43.9,6 +UD9231,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-21,2025-06-16,6,true,3,12,874,43.0,2 +UD9232,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-22,2025-06-16,0,true,2,10,699,44.2,2 +UD9233,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-23,2025-06-23,1,false,2,19,909,45.4,3 +UD9234,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-24,2025-06-23,2,false,3,20,1120,44.0,3 +UD9235,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-25,2025-06-23,3,false,4,26,1744,44.0,4 +UD9236,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-26,2025-06-23,4,false,3,20,1331,42.5,5 +UD9237,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-27,2025-06-23,5,false,2,17,950,43.2,3 +UD9238,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-28,2025-06-23,6,true,3,11,814,42.7,2 +UD9239,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-29,2025-06-23,0,true,2,10,447,45.2,2 +UD9240,W2009,A1003,Nova Ventures,manufacturing,enterprise,NA,US,nova-finance,prod,active,false,2025-06-30,2025-06-30,1,false,4,20,1101,45.3,5 +UD9241,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,7,521,38.7,1 +UD9242,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-02,2025-06-02,1,false,4,25,1565,39.1,5 +UD9243,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-03,2025-06-02,2,false,3,24,1225,39.0,5 +UD9244,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-04,2025-06-02,3,false,4,28,2073,39.5,5 +UD9245,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-05,2025-06-02,4,false,4,24,1316,39.0,4 +UD9246,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-06,2025-06-02,5,false,2,16,924,39.3,4 +UD9247,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,8,380,39.5,2 +UD9248,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,8,586,39.5,2 +UD9249,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-09,2025-06-09,1,false,3,21,1561,39.5,3 +UD9250,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-10,2025-06-09,2,false,4,30,1273,40.1,5 +UD9251,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-11,2025-06-09,3,false,5,32,1891,39.8,7 +UD9252,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-12,2025-06-09,4,false,3,20,1463,40.1,5 +UD9253,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-13,2025-06-09,5,false,4,27,1865,41.4,7 +UD9254,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,8,514,40.3,2 +UD9255,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-15,2025-06-09,0,true,3,10,646,40.5,2 +UD9256,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-16,2025-06-16,1,false,3,22,1191,40.3,3 +UD9257,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-17,2025-06-16,2,false,4,23,1339,40.9,5 +UD9258,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-18,2025-06-16,3,false,2,18,1051,41.7,4 +UD9259,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-19,2025-06-16,4,false,3,20,1012,40.8,5 +UD9260,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-20,2025-06-16,5,false,3,20,1249,39.6,5 +UD9261,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,9,392,42.1,2 +UD9262,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,10,469,42.7,2 +UD9263,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-23,2025-06-23,1,false,2,18,1221,41.8,5 +UD9264,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-24,2025-06-23,2,false,2,18,1051,41.8,3 +UD9265,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-25,2025-06-23,3,false,4,29,1512,42.1,7 +UD9266,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-26,2025-06-23,4,false,3,23,1672,42.6,3 +UD9267,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-27,2025-06-23,5,false,3,21,1062,43.3,5 +UD9268,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-28,2025-06-23,6,true,2,9,671,43.9,2 +UD9269,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-29,2025-06-23,0,true,2,9,431,41.2,2 +UD9270,W2012,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-core,prod,active,true,2025-06-30,2025-06-30,1,false,3,21,1203,41.6,3 +UD9271,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-01,2025-05-26,0,true,2,10,516,55.3,2 +UD9272,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-02,2025-06-02,1,false,2,16,767,55.9,4 +UD9273,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-03,2025-06-02,2,false,3,24,1126,56.1,3 +UD9274,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-04,2025-06-02,3,false,4,23,982,56.3,3 +UD9275,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-05,2025-06-02,4,false,2,19,776,55.9,3 +UD9276,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-06,2025-06-02,5,false,3,21,966,56.0,4 +UD9277,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-07,2025-06-02,6,true,1,8,350,55.9,1 +UD9278,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-08,2025-06-02,0,true,1,8,558,55.6,1 +UD9279,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-09,2025-06-09,1,false,3,23,1023,56.8,4 +UD9280,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-10,2025-06-09,2,false,3,21,945,55.9,3 +UD9281,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-11,2025-06-09,3,false,3,24,1518,55.8,3 +UD9282,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-12,2025-06-09,4,false,2,17,974,57.2,3 +UD9283,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-13,2025-06-09,5,false,4,22,1611,56.9,4 +UD9284,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-14,2025-06-09,6,true,3,12,800,57.3,3 +UD9285,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-15,2025-06-09,0,true,1,8,394,56.6,2 +UD9286,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-16,2025-06-16,1,false,5,26,1401,57.4,6 +UD9287,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-17,2025-06-16,2,false,3,24,1421,57.6,6 +UD9288,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-18,2025-06-16,3,false,2,19,814,58.3,5 +UD9289,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-19,2025-06-16,4,false,3,23,1604,57.0,4 +UD9290,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-20,2025-06-16,5,false,2,18,839,57.1,4 +UD9291,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-21,2025-06-16,6,true,1,8,561,58.1,2 +UD9292,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-22,2025-06-16,0,true,2,9,469,58.6,2 +UD9293,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-23,2025-06-23,1,false,4,21,1577,57.4,6 +UD9294,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-24,2025-06-23,2,false,4,30,1795,58.8,5 +UD9295,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-25,2025-06-23,3,false,4,27,1825,60.2,4 +UD9296,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-26,2025-06-23,4,false,5,31,2120,60.3,5 +UD9297,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-27,2025-06-23,5,false,4,23,1519,59.2,6 +UD9298,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-28,2025-06-23,6,true,3,11,709,60.3,2 +UD9299,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-29,2025-06-23,0,true,1,7,372,59.6,2 +UD9300,W2013,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-ops,prod,active,false,2025-06-30,2025-06-30,1,false,4,20,1290,58.4,3 +UD9301,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-01,2025-05-26,0,true,2,9,551,48.6,2 +UD9302,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-02,2025-06-02,1,false,3,20,887,49.4,5 +UD9303,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-03,2025-06-02,2,false,3,23,1325,49.7,5 +UD9304,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-04,2025-06-02,3,false,3,23,1593,49.0,5 +UD9305,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-05,2025-06-02,4,false,2,20,839,49.4,4 +UD9306,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-06,2025-06-02,5,false,2,16,990,48.9,3 +UD9307,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-07,2025-06-02,6,true,1,8,425,50.0,2 +UD9308,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-08,2025-06-02,0,true,2,10,439,49.3,2 +UD9309,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-09,2025-06-09,1,false,4,22,1207,50.4,4 +UD9310,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-10,2025-06-09,2,false,3,21,1119,50.3,5 +UD9311,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-11,2025-06-09,3,false,3,21,1244,50.2,4 +UD9312,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-12,2025-06-09,4,false,4,27,1301,51.7,7 +UD9313,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-13,2025-06-09,5,false,2,16,702,50.7,3 +UD9314,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-14,2025-06-09,6,true,1,8,458,51.2,1 +UD9315,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-15,2025-06-09,0,true,2,9,565,51.2,2 +UD9316,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-16,2025-06-16,1,false,4,23,1143,52.0,5 +UD9317,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-17,2025-06-16,2,false,2,19,1372,50.9,3 +UD9318,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-18,2025-06-16,3,false,4,25,1554,52.2,4 +UD9319,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-19,2025-06-16,4,false,2,16,822,52.2,4 +UD9320,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-20,2025-06-16,5,false,4,21,1473,52.7,3 +UD9321,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-21,2025-06-16,6,true,1,8,418,51.5,1 +UD9322,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-22,2025-06-16,0,true,1,8,353,50.9,2 +UD9323,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-23,2025-06-23,1,false,2,16,752,52.0,3 +UD9324,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-24,2025-06-23,2,false,3,25,1109,52.9,4 +UD9325,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-25,2025-06-23,3,false,1,16,1141,51.8,4 +UD9326,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-26,2025-06-23,4,false,2,19,830,52.9,3 +UD9327,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-27,2025-06-23,5,false,3,23,1480,52.8,5 +UD9328,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-28,2025-06-23,6,true,3,12,531,51.9,2 +UD9329,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-29,2025-06-23,0,true,2,10,562,54.8,2 +UD9330,W2014,A1005,Pacific Labs,manufacturing,enterprise,EMEA,UK,pacific-finance,prod,active,false,2025-06-30,2025-06-30,1,false,4,25,1394,55.1,5 +UD9331,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-01,2025-05-26,0,true,2,7,378,26.2,2 +UD9332,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-02,2025-06-02,1,false,3,18,1290,26.9,4 +UD9333,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-03,2025-06-02,2,false,2,14,983,27.4,2 +UD9334,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-04,2025-06-02,3,false,3,17,1065,26.4,4 +UD9335,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-05,2025-06-02,4,false,4,17,1266,26.4,2 +UD9336,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-06,2025-06-02,5,false,2,13,796,27.0,2 +UD9337,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-07,2025-06-02,6,true,2,8,614,27.0,1 +UD9338,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,5,294,27.8,1 +UD9339,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-09,2025-06-09,1,false,3,17,880,27.6,4 +UD9340,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-10,2025-06-09,2,false,2,15,976,28.1,3 +UD9341,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-11,2025-06-09,3,false,4,21,1519,28.7,4 +UD9342,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-12,2025-06-09,4,false,2,14,643,29.3,3 +UD9343,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-13,2025-06-09,5,false,4,18,1345,27.3,5 +UD9344,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-14,2025-06-09,6,true,2,8,380,28.3,1 +UD9345,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-15,2025-06-09,0,true,2,8,522,29.0,1 +UD9346,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-16,2025-06-16,1,false,3,18,1068,28.6,3 +UD9347,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-17,2025-06-16,2,false,3,17,1019,29.3,4 +UD9348,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-18,2025-06-16,3,false,3,16,777,28.7,3 +UD9349,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-19,2025-06-16,4,false,4,20,1033,27.9,4 +UD9350,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-20,2025-06-16,5,false,1,9,395,30.5,2 +UD9351,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-21,2025-06-16,6,true,1,6,301,27.9,2 +UD9352,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-22,2025-06-16,0,true,2,8,522,28.7,1 +UD9353,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-23,2025-06-23,1,false,3,17,842,30.0,3 +UD9354,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-24,2025-06-23,2,false,4,18,889,29.5,5 +UD9355,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-25,2025-06-23,3,false,2,14,662,28.8,2 +UD9356,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-26,2025-06-23,4,false,4,17,913,29.8,4 +UD9357,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-27,2025-06-23,5,false,2,12,888,31.6,2 +UD9358,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-28,2025-06-23,6,true,1,6,306,29.5,1 +UD9359,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-29,2025-06-23,0,true,2,7,351,29.9,1 +UD9360,W2015,A1006,Helio Works,education,mid_market,EMEA,UK,helio-core,prod,active,true,2025-06-30,2025-06-30,1,false,2,14,850,32.3,3 +UD9361,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-01,2025-05-26,0,true,2,7,509,18.7,1 +UD9362,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-02,2025-06-02,1,false,1,9,467,19.6,2 +UD9363,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-03,2025-06-02,2,false,2,15,728,20.1,2 +UD9364,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-04,2025-06-02,3,false,2,16,934,19.0,4 +UD9365,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-05,2025-06-02,4,false,2,12,650,20.3,2 +UD9366,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-06,2025-06-02,5,false,1,9,382,20.2,2 +UD9367,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-07,2025-06-02,6,true,1,5,298,20.3,1 +UD9368,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-08,2025-06-02,0,true,1,6,427,20.3,1 +UD9369,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-09,2025-06-09,1,false,1,11,735,21.2,3 +UD9370,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-10,2025-06-09,2,false,1,10,730,20.2,1 +UD9371,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-11,2025-06-09,3,false,2,16,829,20.5,4 +UD9372,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-12,2025-06-09,4,false,2,15,904,20.9,4 +UD9373,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-13,2025-06-09,5,false,2,12,873,22.0,3 +UD9374,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-14,2025-06-09,6,true,1,5,260,21.7,1 +UD9375,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-15,2025-06-09,0,true,2,8,504,21.6,2 +UD9376,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-16,2025-06-16,1,false,1,10,445,21.4,2 +UD9377,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-17,2025-06-16,2,false,1,10,693,23.0,2 +UD9378,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-18,2025-06-16,3,false,2,13,594,22.5,2 +UD9379,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-19,2025-06-16,4,false,1,10,708,21.0,1 +UD9380,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-20,2025-06-16,5,false,1,10,652,22.0,2 +UD9381,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-21,2025-06-16,6,true,2,8,409,21.2,1 +UD9382,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-22,2025-06-16,0,true,1,5,244,22.9,1 +UD9383,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-23,2025-06-23,1,false,1,9,602,21.0,1 +UD9384,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-24,2025-06-23,2,false,2,14,825,24.2,3 +UD9385,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-25,2025-06-23,3,false,1,10,604,21.7,3 +UD9386,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-26,2025-06-23,4,false,1,11,807,22.2,3 +UD9387,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-27,2025-06-23,5,false,2,14,584,24.6,3 +UD9388,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-28,2025-06-23,6,true,1,6,369,24.5,1 +UD9389,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-29,2025-06-23,0,true,1,5,246,24.8,1 +UD9390,W2016,A1006,Helio Works,education,mid_market,EMEA,UK,helio-ops,prod,active,false,2025-06-30,2025-06-30,1,false,1,10,450,24.3,1 +UD9391,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,4,240,20.0,1 +UD9392,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-02,2025-06-02,1,false,2,10,521,20.7,2 +UD9393,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-03,2025-06-02,2,false,3,12,697,20.6,2 +UD9394,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-04,2025-06-02,3,false,3,15,1111,20.5,4 +UD9395,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-05,2025-06-02,4,false,1,8,497,21.0,2 +UD9396,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-06,2025-06-02,5,false,1,6,256,21.6,2 +UD9397,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,4,236,21.6,1 +UD9398,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,4,279,21.0,1 +UD9399,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-09,2025-06-09,1,false,3,12,861,21.6,2 +UD9400,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-10,2025-06-09,2,false,1,7,305,21.7,1 +UD9401,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-11,2025-06-09,3,false,1,8,524,21.4,2 +UD9402,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-12,2025-06-09,4,false,1,8,459,21.3,1 +UD9403,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-13,2025-06-09,5,false,1,7,376,21.7,2 +UD9404,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,4,184,21.6,1 +UD9405,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,3,208,22.7,1 +UD9406,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-16,2025-06-16,1,false,1,8,582,22.1,1 +UD9407,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-17,2025-06-16,2,false,1,7,296,22.4,2 +UD9408,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-18,2025-06-16,3,false,3,14,930,23.0,2 +UD9409,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-19,2025-06-16,4,false,2,10,759,24.0,2 +UD9410,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-20,2025-06-16,5,false,1,8,578,24.5,2 +UD9411,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-21,2025-06-16,6,true,1,4,223,21.9,1 +UD9412,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-22,2025-06-16,0,true,2,5,246,22.7,1 +UD9413,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-23,2025-06-23,1,false,3,14,617,21.9,3 +UD9414,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-24,2025-06-23,2,false,2,11,799,22.7,2 +UD9415,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-25,2025-06-23,3,false,1,8,476,24.8,2 +UD9416,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-26,2025-06-23,4,false,3,15,928,23.6,3 +UD9417,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-27,2025-06-23,5,false,1,6,304,23.8,1 +UD9418,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-28,2025-06-23,6,true,2,6,373,25.9,1 +UD9419,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,4,185,24.2,1 +UD9420,W2017,A1007,Silver Systems,energy,smb,EMEA,FR,silver-core,prod,active,true,2025-06-30,2025-06-30,1,false,2,10,676,23.6,3 +UD9421,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,6,349,19.8,2 +UD9422,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-02,2025-06-02,1,false,2,13,635,20.3,3 +UD9423,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-03,2025-06-02,2,false,1,11,487,20.8,1 +UD9424,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-04,2025-06-02,3,false,2,14,991,21.2,2 +UD9425,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-05,2025-06-02,4,false,1,10,559,21.3,1 +UD9426,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-06,2025-06-02,5,false,1,10,625,21.1,2 +UD9427,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,6,432,21.6,1 +UD9428,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,6,375,21.1,2 +UD9429,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-09,2025-06-09,1,false,2,14,998,20.8,2 +UD9430,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-10,2025-06-09,2,false,2,14,854,21.3,2 +UD9431,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-11,2025-06-09,3,false,2,13,779,21.1,3 +UD9432,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-12,2025-06-09,4,false,1,10,719,22.2,2 +UD9433,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-13,2025-06-09,5,false,1,11,799,22.2,2 +UD9434,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,5,304,21.6,1 +UD9435,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-15,2025-06-09,0,true,2,6,312,21.9,1 +UD9436,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-16,2025-06-16,1,false,2,13,945,22.2,3 +UD9437,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-17,2025-06-16,2,false,1,10,628,22.5,2 +UD9438,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-18,2025-06-16,3,false,2,15,1116,23.3,3 +UD9439,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-19,2025-06-16,4,false,1,11,529,22.3,1 +UD9440,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-20,2025-06-16,5,false,2,12,675,22.8,2 +UD9441,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-21,2025-06-16,6,true,1,6,413,22.7,1 +UD9442,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-22,2025-06-16,0,true,1,6,344,24.2,1 +UD9443,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-23,2025-06-23,1,false,1,9,382,23.4,2 +UD9444,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-24,2025-06-23,2,false,2,14,836,24.5,3 +UD9445,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-25,2025-06-23,3,false,1,11,501,22.9,2 +UD9446,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-26,2025-06-23,4,false,1,10,715,23.5,2 +UD9447,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-27,2025-06-23,5,false,1,10,407,25.8,2 +UD9448,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-28,2025-06-23,6,true,1,5,329,22.4,1 +UD9449,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-29,2025-06-23,0,true,2,7,348,25.7,2 +UD9450,W2018,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-core,prod,active,true,2025-06-30,2025-06-30,1,false,1,9,616,22.2,3 +UD9451,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-01,2025-05-26,0,true,4,12,648,19.9,3 +UD9452,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-02,2025-06-02,1,false,3,18,881,19.0,4 +UD9453,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-03,2025-06-02,2,false,4,17,847,20.0,3 +UD9454,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-04,2025-06-02,3,false,4,21,1437,20.3,4 +UD9455,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-05,2025-06-02,4,false,5,25,1481,19.8,5 +UD9456,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-06,2025-06-02,5,false,5,25,1648,20.2,5 +UD9457,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-07,2025-06-02,6,true,4,10,717,20.9,1 +UD9458,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-08,2025-06-02,0,true,3,9,589,20.3,1 +UD9459,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-09,2025-06-09,1,false,4,22,937,20.7,3 +UD9460,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-10,2025-06-09,2,false,3,18,1005,20.4,3 +UD9461,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-11,2025-06-09,3,false,4,19,1067,20.2,4 +UD9462,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-12,2025-06-09,4,false,5,24,1759,21.1,6 +UD9463,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-13,2025-06-09,5,false,4,18,1082,21.3,5 +UD9464,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-14,2025-06-09,6,true,2,7,540,20.9,1 +UD9465,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-15,2025-06-09,0,true,1,6,289,22.1,2 +UD9466,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-16,2025-06-16,1,false,3,18,1287,20.0,4 +UD9467,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-17,2025-06-16,2,false,4,23,1146,22.0,5 +UD9468,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-18,2025-06-16,3,false,4,21,1069,22.8,3 +UD9469,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-19,2025-06-16,4,false,4,19,1195,20.9,2 +UD9470,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-20,2025-06-16,5,false,5,23,1608,22.0,4 +UD9471,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-21,2025-06-16,6,true,1,6,451,22.2,2 +UD9472,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-22,2025-06-16,0,true,4,11,668,21.7,2 +UD9473,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-23,2025-06-23,1,false,3,18,1312,22.3,4 +UD9474,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-24,2025-06-23,2,false,4,22,956,22.9,5 +UD9475,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-25,2025-06-23,3,false,5,22,1325,22.8,3 +UD9476,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-26,2025-06-23,4,false,5,21,1199,21.9,5 +UD9477,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-27,2025-06-23,5,false,5,21,1119,21.8,5 +UD9478,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-28,2025-06-23,6,true,2,8,354,24.3,2 +UD9479,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-29,2025-06-23,0,true,1,5,244,24.0,1 +UD9480,W2019,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-ops,prod,active,false,2025-06-30,2025-06-30,1,false,4,20,1063,21.8,3 +UD9481,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-01,2025-05-26,0,true,1,5,377,17.7,1 +UD9482,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-02,2025-06-02,1,false,4,17,1190,17.9,2 +UD9483,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-03,2025-06-02,2,false,5,25,1162,18.1,5 +UD9484,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-04,2025-06-02,3,false,3,18,875,17.5,5 +UD9485,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-05,2025-06-02,4,false,3,19,1360,17.6,3 +UD9486,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-06,2025-06-02,5,false,4,21,1487,17.8,3 +UD9487,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-07,2025-06-02,6,true,1,5,248,18.1,1 +UD9488,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-08,2025-06-02,0,true,2,7,474,18.8,1 +UD9489,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-09,2025-06-09,1,false,3,15,1049,18.6,4 +UD9490,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-10,2025-06-09,2,false,2,13,833,18.3,2 +UD9491,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-11,2025-06-09,3,false,3,20,1483,17.7,5 +UD9492,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-12,2025-06-09,4,false,3,18,928,19.0,5 +UD9493,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-13,2025-06-09,5,false,4,16,778,19.0,4 +UD9494,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-14,2025-06-09,6,true,1,5,341,19.3,1 +UD9495,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-15,2025-06-09,0,true,3,10,600,19.7,2 +UD9496,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-16,2025-06-16,1,false,4,20,1306,18.2,3 +UD9497,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-17,2025-06-16,2,false,4,22,1432,20.5,4 +UD9498,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-18,2025-06-16,3,false,2,15,1018,19.0,4 +UD9499,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-19,2025-06-16,4,false,4,18,1206,18.9,5 +UD9500,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-20,2025-06-16,5,false,5,21,1296,20.3,6 +UD9501,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-21,2025-06-16,6,true,2,7,384,19.4,2 +UD9502,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-22,2025-06-16,0,true,3,8,392,21.0,2 +UD9503,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-23,2025-06-23,1,false,3,14,801,21.2,2 +UD9504,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-24,2025-06-23,2,false,4,20,1031,19.2,5 +UD9505,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-25,2025-06-23,3,false,5,26,1519,20.8,6 +UD9506,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-26,2025-06-23,4,false,2,14,884,22.2,2 +UD9507,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-27,2025-06-23,5,false,4,16,987,22.2,3 +UD9508,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-28,2025-06-23,6,true,2,7,457,21.8,1 +UD9509,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-29,2025-06-23,0,true,3,10,703,21.1,3 +UD9510,W2020,A1008,Pacific Works,software,mid_market,EMEA,UK,pacific-finance,prod,active,false,2025-06-30,2025-06-30,1,false,3,17,1190,20.3,4 +UD9511,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-01,2025-05-26,0,true,2,8,580,22.7,2 +UD9512,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-02,2025-06-02,1,false,5,19,924,22.9,3 +UD9513,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-03,2025-06-02,2,false,4,21,1062,22.6,3 +UD9514,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-04,2025-06-02,3,false,5,25,1097,22.8,7 +UD9515,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-05,2025-06-02,4,false,3,15,1073,23.7,3 +UD9516,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-06,2025-06-02,5,false,3,14,626,22.7,2 +UD9517,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,5,301,23.3,1 +UD9518,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,6,371,24.5,1 +UD9519,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-09,2025-06-09,1,false,5,19,1185,23.7,3 +UD9520,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-10,2025-06-09,2,false,3,15,1002,24.1,3 +UD9521,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-11,2025-06-09,3,false,3,20,1225,24.8,3 +UD9522,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-12,2025-06-09,4,false,5,26,1583,23.5,5 +UD9523,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-13,2025-06-09,5,false,6,23,1531,23.1,5 +UD9524,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-14,2025-06-09,6,true,4,10,721,24.5,3 +UD9525,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-15,2025-06-09,0,true,2,7,485,24.9,1 +UD9526,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-16,2025-06-16,1,false,5,18,1060,25.4,3 +UD9527,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-17,2025-06-16,2,false,3,20,1095,25.2,5 +UD9528,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-18,2025-06-16,3,false,5,28,2059,25.4,5 +UD9529,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-19,2025-06-16,4,false,4,19,1332,25.8,4 +UD9530,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-20,2025-06-16,5,false,3,17,927,25.1,3 +UD9531,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,7,401,26.1,1 +UD9532,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-22,2025-06-16,0,true,2,7,317,24.9,1 +UD9533,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-23,2025-06-23,1,false,5,23,1354,27.3,5 +UD9534,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-24,2025-06-23,2,false,4,20,1103,25.7,4 +UD9535,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-25,2025-06-23,3,false,3,18,983,26.3,2 +UD9536,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-26,2025-06-23,4,false,3,16,1052,27.6,4 +UD9537,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-27,2025-06-23,5,false,4,19,1367,25.7,3 +UD9538,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-28,2025-06-23,6,true,4,11,867,27.3,3 +UD9539,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-29,2025-06-23,0,true,3,8,509,27.7,2 +UD9540,W2021,A1009,Summit Group,financial_services,mid_market,NA,US,summit-core,prod,active,true,2025-06-30,2025-06-30,1,false,3,14,951,26.6,2 +UD9541,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-01,2025-05-26,0,true,3,10,664,17.8,2 +UD9542,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-02,2025-06-02,1,false,4,17,892,18.5,3 +UD9543,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-03,2025-06-02,2,false,4,18,813,19.3,5 +UD9544,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-04,2025-06-02,3,false,5,23,1691,18.6,5 +UD9545,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-05,2025-06-02,4,false,4,22,968,18.8,3 +UD9546,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-06,2025-06-02,5,false,4,16,1163,18.3,3 +UD9547,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-07,2025-06-02,6,true,4,9,622,19.2,2 +UD9548,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-08,2025-06-02,0,true,2,6,309,19.3,2 +UD9549,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-09,2025-06-09,1,false,6,25,1853,20.0,7 +UD9550,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-10,2025-06-09,2,false,3,15,884,20.3,3 +UD9551,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-11,2025-06-09,3,false,3,17,974,19.8,2 +UD9552,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-12,2025-06-09,4,false,5,24,1772,19.6,3 +UD9553,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-13,2025-06-09,5,false,5,26,1661,19.8,4 +UD9554,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-14,2025-06-09,6,true,2,6,310,20.5,2 +UD9555,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-15,2025-06-09,0,true,3,8,487,20.1,1 +UD9556,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-16,2025-06-16,1,false,5,25,1436,20.5,3 +UD9557,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-17,2025-06-16,2,false,4,24,1482,20.2,5 +UD9558,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-18,2025-06-16,3,false,5,28,1792,21.5,5 +UD9559,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-19,2025-06-16,4,false,5,25,1260,21.5,5 +UD9560,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-20,2025-06-16,5,false,4,19,953,21.6,4 +UD9561,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-21,2025-06-16,6,true,2,7,340,21.4,2 +UD9562,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-22,2025-06-16,0,true,3,10,774,20.2,2 +UD9563,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-23,2025-06-23,1,false,3,17,1154,19.9,2 +UD9564,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-24,2025-06-23,2,false,5,26,1457,21.5,7 +UD9565,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-25,2025-06-23,3,false,3,20,1358,20.9,5 +UD9566,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-26,2025-06-23,4,false,5,22,1624,21.0,6 +UD9567,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-27,2025-06-23,5,false,6,24,1646,21.9,4 +UD9568,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-28,2025-06-23,6,true,3,8,453,21.8,1 +UD9569,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-29,2025-06-23,0,true,2,8,453,24.4,2 +UD9570,W2022,A1009,Summit Group,financial_services,mid_market,NA,US,summit-ops,prod,active,false,2025-06-30,2025-06-30,1,false,3,18,1080,21.2,5 +UD9571,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-01,2025-05-26,0,true,4,9,568,22.6,2 +UD9572,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-02,2025-06-02,1,false,4,17,1152,22.6,5 +UD9573,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-03,2025-06-02,2,false,6,23,1050,23.2,3 +UD9574,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-04,2025-06-02,3,false,6,20,1056,24.3,4 +UD9575,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-05,2025-06-02,4,false,5,19,1218,23.3,5 +UD9576,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-06,2025-06-02,5,false,5,19,1085,23.5,4 +UD9577,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-07,2025-06-02,6,true,3,8,617,24.4,1 +UD9578,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-08,2025-06-02,0,true,4,10,802,24.6,1 +UD9579,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-09,2025-06-09,1,false,6,25,1837,24.7,3 +UD9580,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-10,2025-06-09,2,false,6,28,1856,23.6,5 +UD9581,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-11,2025-06-09,3,false,6,30,2184,24.7,7 +UD9582,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-12,2025-06-09,4,false,5,20,1468,24.3,3 +UD9583,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-13,2025-06-09,5,false,6,18,1088,23.9,4 +UD9584,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-14,2025-06-09,6,true,2,5,359,25.4,1 +UD9585,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-15,2025-06-09,0,true,3,8,387,25.6,2 +UD9586,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-16,2025-06-16,1,false,4,15,1023,25.2,2 +UD9587,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-17,2025-06-16,2,false,4,15,681,24.2,3 +UD9588,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-18,2025-06-16,3,false,6,23,1072,25.2,3 +UD9589,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-19,2025-06-16,4,false,4,18,1304,25.4,4 +UD9590,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-20,2025-06-16,5,false,4,18,1321,26.0,2 +UD9591,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-21,2025-06-16,6,true,3,6,378,26.4,1 +UD9592,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-22,2025-06-16,0,true,1,4,300,27.1,1 +UD9593,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-23,2025-06-23,1,false,4,16,843,27.4,4 +UD9594,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-24,2025-06-23,2,false,5,23,1091,27.0,3 +UD9595,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-25,2025-06-23,3,false,6,23,1548,28.3,3 +UD9596,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-26,2025-06-23,4,false,4,17,1168,27.4,2 +UD9597,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-27,2025-06-23,5,false,4,15,671,27.3,3 +UD9598,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-28,2025-06-23,6,true,2,5,284,26.4,1 +UD9599,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-29,2025-06-23,0,true,3,8,525,27.6,1 +UD9600,W2023,A1010,Orchid Foods,education,smb,NA,CA,orchid-core,prod,active,true,2025-06-30,2025-06-30,1,false,4,13,595,28.3,3 +UD9601,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-01,2025-05-26,0,true,4,7,414,23.2,1 +UD9602,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-02,2025-06-02,1,false,4,15,672,22.3,3 +UD9603,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-03,2025-06-02,2,false,4,20,1265,23.3,3 +UD9604,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-04,2025-06-02,3,false,6,30,1618,23.2,7 +UD9605,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-05,2025-06-02,4,false,4,16,1003,22.6,4 +UD9606,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-06,2025-06-02,5,false,5,18,1038,23.6,3 +UD9607,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-07,2025-06-02,6,true,3,6,299,23.5,1 +UD9608,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-08,2025-06-02,0,true,2,5,399,24.2,1 +UD9609,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-09,2025-06-09,1,false,5,16,1149,23.7,4 +UD9610,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-10,2025-06-09,2,false,3,13,867,23.7,3 +UD9611,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-11,2025-06-09,3,false,5,17,1273,23.5,4 +UD9612,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-12,2025-06-09,4,false,4,13,746,23.1,2 +UD9613,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-13,2025-06-09,5,false,4,16,879,24.7,4 +UD9614,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-14,2025-06-09,6,true,3,7,560,24.1,1 +UD9615,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-15,2025-06-09,0,true,3,8,572,25.6,2 +UD9616,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-16,2025-06-16,1,false,5,21,1513,24.5,5 +UD9617,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-17,2025-06-16,2,false,3,17,990,24.2,3 +UD9618,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-18,2025-06-16,3,false,5,25,1615,25.5,6 +UD9619,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-19,2025-06-16,4,false,4,13,665,24.2,2 +UD9620,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-20,2025-06-16,5,false,5,23,1098,25.7,3 +UD9621,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,6,405,26.5,2 +UD9622,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,6,490,26.8,1 +UD9623,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-23,2025-06-23,1,false,5,21,1428,25.8,5 +UD9624,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-24,2025-06-23,2,false,6,22,1498,25.3,3 +UD9625,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-25,2025-06-23,3,false,4,17,1264,26.0,3 +UD9626,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-26,2025-06-23,4,false,3,16,1083,26.0,4 +UD9627,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-27,2025-06-23,5,false,4,15,667,27.2,4 +UD9628,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-28,2025-06-23,6,true,3,8,490,26.1,2 +UD9629,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-29,2025-06-23,0,true,3,6,449,27.3,2 +UD9630,W2024,A1011,Vertex Energy,software,smb,NA,CA,vertex-core,prod,active,true,2025-06-30,2025-06-30,1,false,3,14,981,27.8,2 +UD9631,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,4,253,21.8,1 +UD9632,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-02,2025-06-02,1,false,2,9,677,22.1,2 +UD9633,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-03,2025-06-02,2,false,3,13,601,23.1,2 +UD9634,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-04,2025-06-02,3,false,2,10,563,23.4,2 +UD9635,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-05,2025-06-02,4,false,5,19,1440,22.4,3 +UD9636,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-06,2025-06-02,5,false,3,11,697,22.9,1 +UD9637,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-07,2025-06-02,6,true,2,6,430,22.3,2 +UD9638,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-08,2025-06-02,0,true,2,5,287,23.7,1 +UD9639,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-09,2025-06-09,1,false,3,12,767,22.6,3 +UD9640,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-10,2025-06-09,2,false,3,14,990,23.6,2 +UD9641,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-11,2025-06-09,3,false,4,19,1396,24.5,4 +UD9642,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-12,2025-06-09,4,false,3,15,694,23.8,4 +UD9643,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-13,2025-06-09,5,false,2,11,812,24.3,1 +UD9644,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-14,2025-06-09,6,true,2,5,342,24.9,1 +UD9645,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-15,2025-06-09,0,true,3,7,423,23.8,2 +UD9646,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-16,2025-06-16,1,false,5,21,1585,23.9,6 +UD9647,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-17,2025-06-16,2,false,5,23,1272,23.6,6 +UD9648,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-18,2025-06-16,3,false,5,17,1151,24.0,3 +UD9649,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-19,2025-06-16,4,false,4,17,758,25.5,4 +UD9650,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-20,2025-06-16,5,false,4,15,1007,25.3,4 +UD9651,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,6,418,26.5,2 +UD9652,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,7,382,26.2,1 +UD9653,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-23,2025-06-23,1,false,5,17,981,26.3,3 +UD9654,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-24,2025-06-23,2,false,4,18,1319,24.0,3 +UD9655,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-25,2025-06-23,3,false,2,12,509,25.5,3 +UD9656,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-26,2025-06-23,4,false,5,20,1418,24.6,3 +UD9657,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-27,2025-06-23,5,false,4,15,854,25.2,2 +UD9658,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-28,2025-06-23,6,true,3,6,469,24.9,1 +UD9659,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-29,2025-06-23,0,true,2,5,266,25.3,1 +UD9660,W2025,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-core,prod,active,true,2025-06-30,2025-06-30,1,false,4,15,935,25.6,2 +UD9661,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-01,2025-05-26,0,true,0,2,86,9.6,0 +UD9662,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-02,2025-06-02,1,false,0,4,136,9.9,1 +UD9663,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-03,2025-06-02,2,false,0,4,159,9.6,1 +UD9664,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-04,2025-06-02,3,false,0,4,105,9.7,1 +UD9665,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-05,2025-06-02,4,false,1,7,216,10.2,2 +UD9666,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-06,2025-06-02,5,false,0,4,140,9.6,1 +UD9667,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-07,2025-06-02,6,true,1,4,121,10.5,1 +UD9668,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-08,2025-06-02,0,true,2,6,262,9.9,1 +UD9669,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-09,2025-06-09,1,false,0,4,137,9.9,1 +UD9670,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-10,2025-06-09,2,false,0,4,98,9.7,1 +UD9671,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-11,2025-06-09,3,false,2,12,412,10.1,2 +UD9672,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-12,2025-06-09,4,false,0,4,125,11.4,1 +UD9673,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-13,2025-06-09,5,false,2,10,416,10.7,1 +UD9674,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-14,2025-06-09,6,true,0,2,57,11.1,0 +UD9675,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-15,2025-06-09,0,true,1,4,177,10.6,1 +UD9676,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-16,2025-06-16,1,false,1,7,210,10.0,1 +UD9677,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-17,2025-06-16,2,false,0,4,142,11.8,0 +UD9678,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-18,2025-06-16,3,false,1,8,316,11.3,1 +UD9679,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-19,2025-06-16,4,false,0,4,167,12.8,1 +UD9680,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-20,2025-06-16,5,false,0,4,156,12.3,1 +UD9681,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-21,2025-06-16,6,true,1,4,127,12.0,1 +UD9682,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-22,2025-06-16,0,true,1,4,131,11.3,1 +UD9683,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-23,2025-06-23,1,false,0,4,101,12.6,1 +UD9684,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-24,2025-06-23,2,false,0,4,131,13.1,1 +UD9685,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-25,2025-06-23,3,false,1,9,272,10.6,1 +UD9686,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-26,2025-06-23,4,false,0,4,169,13.8,1 +UD9687,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-27,2025-06-23,5,false,1,7,327,14.1,1 +UD9688,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-28,2025-06-23,6,true,1,4,190,13.9,1 +UD9689,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-29,2025-06-23,0,true,0,2,68,11.9,1 +UD9690,W2026,A1012,Cedar Ventures,retail,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-30,2025-06-30,1,false,2,12,570,11.6,3 +UD9691,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,6,303,17.0,1 +UD9692,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-02,2025-06-02,1,false,2,12,829,17.3,2 +UD9693,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-03,2025-06-02,2,false,2,14,609,17.6,4 +UD9694,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-04,2025-06-02,3,false,1,11,463,17.7,2 +UD9695,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-05,2025-06-02,4,false,2,15,743,17.1,2 +UD9696,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-06,2025-06-02,5,false,1,10,498,17.1,2 +UD9697,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,5,265,17.5,1 +UD9698,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-08,2025-06-02,0,true,2,6,428,17.8,1 +UD9699,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-09,2025-06-09,1,false,1,10,595,18.4,2 +UD9700,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-10,2025-06-09,2,false,1,11,618,17.7,1 +UD9701,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-11,2025-06-09,3,false,1,11,470,18.4,2 +UD9702,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-12,2025-06-09,4,false,1,11,690,17.9,2 +UD9703,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-13,2025-06-09,5,false,2,13,706,19.4,2 +UD9704,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,6,265,19.6,1 +UD9705,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,6,385,18.6,1 +UD9706,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-16,2025-06-16,1,false,1,10,456,17.8,2 +UD9707,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-17,2025-06-16,2,false,2,16,988,19.1,3 +UD9708,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-18,2025-06-16,3,false,1,12,672,18.3,3 +UD9709,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-19,2025-06-16,4,false,1,11,803,18.6,2 +UD9710,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-20,2025-06-16,5,false,2,13,690,19.8,3 +UD9711,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-21,2025-06-16,6,true,1,5,254,19.6,1 +UD9712,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-22,2025-06-16,0,true,1,6,390,19.2,1 +UD9713,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-23,2025-06-23,1,false,1,10,417,20.3,2 +UD9714,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-24,2025-06-23,2,false,1,11,498,19.3,2 +UD9715,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-25,2025-06-23,3,false,1,11,739,19.3,2 +UD9716,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-26,2025-06-23,4,false,2,13,547,18.6,4 +UD9717,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-27,2025-06-23,5,false,1,10,587,21.3,2 +UD9718,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-28,2025-06-23,6,true,1,5,266,22.0,1 +UD9719,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-29,2025-06-23,0,true,2,7,542,19.8,1 +UD9720,W2027,A1013,River Foods,manufacturing,mid_market,NA,US,river-core,prod,active,true,2025-06-30,2025-06-30,1,false,1,10,480,20.0,2 +UD9721,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-01,2025-05-26,0,true,1,5,291,23.6,1 +UD9722,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-02,2025-06-02,1,false,2,13,708,22.7,2 +UD9723,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-03,2025-06-02,2,false,2,13,702,23.4,3 +UD9724,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-04,2025-06-02,3,false,3,17,852,23.2,3 +UD9725,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-05,2025-06-02,4,false,2,15,1038,24.0,3 +UD9726,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-06,2025-06-02,5,false,1,10,489,24.5,3 +UD9727,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-07,2025-06-02,6,true,3,8,432,24.5,2 +UD9728,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-08,2025-06-02,0,true,1,5,308,23.9,1 +UD9729,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-09,2025-06-09,1,false,3,18,913,24.1,4 +UD9730,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-10,2025-06-09,2,false,1,11,452,25.1,3 +UD9731,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-11,2025-06-09,3,false,1,11,661,24.1,3 +UD9732,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-12,2025-06-09,4,false,3,15,928,25.3,4 +UD9733,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-13,2025-06-09,5,false,2,14,629,24.9,4 +UD9734,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-14,2025-06-09,6,true,2,7,328,24.9,2 +UD9735,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-15,2025-06-09,0,true,1,5,355,24.6,1 +UD9736,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-16,2025-06-16,1,false,2,12,823,24.9,2 +UD9737,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-17,2025-06-16,2,false,1,11,651,25.9,1 +UD9738,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-18,2025-06-16,3,false,3,16,711,25.1,4 +UD9739,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-19,2025-06-16,4,false,1,11,520,26.2,2 +UD9740,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-20,2025-06-16,5,false,2,14,764,25.2,3 +UD9741,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-21,2025-06-16,6,true,1,5,370,26.5,1 +UD9742,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-22,2025-06-16,0,true,1,5,331,25.8,1 +UD9743,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-23,2025-06-23,1,false,2,12,535,27.4,2 +UD9744,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-24,2025-06-23,2,false,1,12,559,26.7,3 +UD9745,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-25,2025-06-23,3,false,1,11,558,25.6,2 +UD9746,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-26,2025-06-23,4,false,1,10,626,27.2,2 +UD9747,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-27,2025-06-23,5,false,3,17,1159,26.3,4 +UD9748,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-28,2025-06-23,6,true,2,8,435,27.1,2 +UD9749,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-29,2025-06-23,0,true,1,5,223,28.6,1 +UD9750,W2028,A1013,River Foods,manufacturing,mid_market,NA,US,river-ops,prod,active,false,2025-06-30,2025-06-30,1,false,3,16,833,26.7,2 +UD9751,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-01,2025-05-26,0,true,1,5,303,21.4,1 +UD9752,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-02,2025-06-02,1,false,1,10,719,21.5,2 +UD9753,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-03,2025-06-02,2,false,1,12,849,21.4,2 +UD9754,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-04,2025-06-02,3,false,1,12,488,21.6,3 +UD9755,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-05,2025-06-02,4,false,1,10,410,21.5,2 +UD9756,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-06,2025-06-02,5,false,1,10,448,22.9,2 +UD9757,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-07,2025-06-02,6,true,2,7,412,22.7,1 +UD9758,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-08,2025-06-02,0,true,2,7,486,22.4,1 +UD9759,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-09,2025-06-09,1,false,1,11,776,23.0,2 +UD9760,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-10,2025-06-09,2,false,1,11,524,23.6,2 +UD9761,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-11,2025-06-09,3,false,1,11,470,23.6,3 +UD9762,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-12,2025-06-09,4,false,2,15,666,24.0,3 +UD9763,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-13,2025-06-09,5,false,1,9,479,23.6,2 +UD9764,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-14,2025-06-09,6,true,2,7,440,24.3,2 +UD9765,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-15,2025-06-09,0,true,1,6,351,24.0,1 +UD9766,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-16,2025-06-16,1,false,2,14,667,23.1,3 +UD9767,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-17,2025-06-16,2,false,1,12,659,24.3,2 +UD9768,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-18,2025-06-16,3,false,1,12,555,23.0,3 +UD9769,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-19,2025-06-16,4,false,2,13,714,24.4,3 +UD9770,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-20,2025-06-16,5,false,2,12,604,23.2,3 +UD9771,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-21,2025-06-16,6,true,2,8,378,24.0,1 +UD9772,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-22,2025-06-16,0,true,1,5,253,24.4,1 +UD9773,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-23,2025-06-23,1,false,2,13,832,26.2,3 +UD9774,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-24,2025-06-23,2,false,1,12,599,23.7,2 +UD9775,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-25,2025-06-23,3,false,1,10,728,25.5,1 +UD9776,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-26,2025-06-23,4,false,1,11,723,24.6,2 +UD9777,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-27,2025-06-23,5,false,1,10,491,24.3,1 +UD9778,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-28,2025-06-23,6,true,1,5,238,24.8,1 +UD9779,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-29,2025-06-23,0,true,2,7,463,26.3,1 +UD9780,W2029,A1013,River Foods,manufacturing,mid_market,NA,US,river-finance,prod,active,false,2025-06-30,2025-06-30,1,false,2,14,960,24.3,2 +UD9781,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-01,2025-05-26,0,true,4,12,883,62.5,3 +UD9782,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-02,2025-06-02,1,false,4,23,1584,62.3,5 +UD9783,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-03,2025-06-02,2,false,6,35,1562,62.5,9 +UD9784,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-04,2025-06-02,3,false,5,27,1775,62.6,6 +UD9785,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-05,2025-06-02,4,false,4,27,1788,62.6,5 +UD9786,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-06,2025-06-02,5,false,5,25,1213,63.4,3 +UD9787,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-07,2025-06-02,6,true,2,9,552,63.1,1 +UD9788,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-08,2025-06-02,0,true,3,12,590,63.0,2 +UD9789,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-09,2025-06-09,1,false,7,38,2132,63.2,6 +UD9790,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-10,2025-06-09,2,false,6,34,1702,63.6,8 +UD9791,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-11,2025-06-09,3,false,6,29,1844,63.9,4 +UD9792,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-12,2025-06-09,4,false,5,24,1559,63.5,5 +UD9793,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-13,2025-06-09,5,false,5,24,1607,63.7,6 +UD9794,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-14,2025-06-09,6,true,2,10,710,64.3,1 +UD9795,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-15,2025-06-09,0,true,4,12,610,64.7,2 +UD9796,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-16,2025-06-16,1,false,6,30,2190,63.6,4 +UD9797,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-17,2025-06-16,2,false,5,29,1705,65.0,4 +UD9798,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-18,2025-06-16,3,false,6,33,1688,64.7,9 +UD9799,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-19,2025-06-16,4,false,6,35,2258,63.8,7 +UD9800,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-20,2025-06-16,5,false,5,30,1703,64.8,5 +UD9801,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-21,2025-06-16,6,true,3,12,682,65.5,2 +UD9802,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,12,764,65.5,3 +UD9803,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-23,2025-06-23,1,false,4,21,1541,65.9,3 +UD9804,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-24,2025-06-23,2,false,4,28,1208,64.4,4 +UD9805,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-25,2025-06-23,3,false,7,34,2008,66.3,8 +UD9806,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-26,2025-06-23,4,false,6,27,1591,65.8,7 +UD9807,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-27,2025-06-23,5,false,6,30,1894,66.3,7 +UD9808,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-28,2025-06-23,6,true,3,10,694,64.3,2 +UD9809,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-29,2025-06-23,0,true,3,12,823,66.4,2 +UD9810,W2033,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-core,prod,active,true,2025-06-30,2025-06-30,1,false,5,24,1301,66.2,3 +UD9811,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-01,2025-05-26,0,true,1,8,401,40.5,2 +UD9812,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-02,2025-06-02,1,false,1,14,879,40.6,3 +UD9813,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-03,2025-06-02,2,false,2,20,1218,40.0,5 +UD9814,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-04,2025-06-02,3,false,1,16,868,40.0,4 +UD9815,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-05,2025-06-02,4,false,2,17,1188,40.5,4 +UD9816,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-06,2025-06-02,5,false,2,16,915,40.4,3 +UD9817,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-07,2025-06-02,6,true,1,8,473,41.5,1 +UD9818,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-08,2025-06-02,0,true,1,7,392,41.2,1 +UD9819,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-09,2025-06-09,1,false,1,14,795,41.3,3 +UD9820,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-10,2025-06-09,2,false,1,16,1086,41.2,4 +UD9821,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-11,2025-06-09,3,false,1,16,1090,41.2,4 +UD9822,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-12,2025-06-09,4,false,2,19,1030,42.1,3 +UD9823,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-13,2025-06-09,5,false,1,15,958,41.7,3 +UD9824,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-14,2025-06-09,6,true,2,10,712,42.0,1 +UD9825,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-15,2025-06-09,0,true,1,8,583,41.9,2 +UD9826,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-16,2025-06-16,1,false,1,14,829,41.8,3 +UD9827,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-17,2025-06-16,2,false,1,16,1026,41.6,4 +UD9828,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-18,2025-06-16,3,false,2,19,1212,43.1,5 +UD9829,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-19,2025-06-16,4,false,2,18,1230,41.7,3 +UD9830,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-20,2025-06-16,5,false,1,14,1001,41.9,2 +UD9831,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-21,2025-06-16,6,true,1,8,532,43.9,2 +UD9832,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-22,2025-06-16,0,true,1,8,496,42.2,2 +UD9833,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-23,2025-06-23,1,false,2,17,1127,43.1,2 +UD9834,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-24,2025-06-23,2,false,1,16,879,43.7,3 +UD9835,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-25,2025-06-23,3,false,2,21,1049,43.3,3 +UD9836,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-26,2025-06-23,4,false,2,18,917,42.9,5 +UD9837,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-27,2025-06-23,5,false,1,14,656,44.4,3 +UD9838,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-28,2025-06-23,6,true,2,9,564,42.0,1 +UD9839,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-29,2025-06-23,0,true,1,8,466,42.9,2 +UD9840,W2034,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-ops,prod,active,false,2025-06-30,2025-06-30,1,false,1,15,615,44.3,2 +UD9841,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-01,2025-05-26,0,true,2,10,435,42.9,3 +UD9842,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-02,2025-06-02,1,false,3,18,891,43.4,4 +UD9843,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-03,2025-06-02,2,false,5,33,1740,43.8,7 +UD9844,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-04,2025-06-02,3,false,4,28,1408,44.4,6 +UD9845,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-05,2025-06-02,4,false,3,23,963,43.9,4 +UD9846,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-06,2025-06-02,5,false,2,16,684,43.6,4 +UD9847,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-07,2025-06-02,6,true,1,8,536,43.5,2 +UD9848,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-08,2025-06-02,0,true,3,11,525,44.0,3 +UD9849,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-09,2025-06-09,1,false,5,28,2017,44.0,4 +UD9850,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-10,2025-06-09,2,false,4,29,2078,44.6,4 +UD9851,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-11,2025-06-09,3,false,5,33,1415,44.3,6 +UD9852,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-12,2025-06-09,4,false,4,21,1085,45.0,3 +UD9853,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-13,2025-06-09,5,false,4,26,1427,44.3,5 +UD9854,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-14,2025-06-09,6,true,3,11,822,45.0,2 +UD9855,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-15,2025-06-09,0,true,3,10,558,45.0,3 +UD9856,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-16,2025-06-16,1,false,2,19,1257,45.2,3 +UD9857,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-17,2025-06-16,2,false,2,18,1291,45.4,4 +UD9858,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-18,2025-06-16,3,false,3,22,1567,44.9,5 +UD9859,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-19,2025-06-16,4,false,3,20,1124,45.4,5 +UD9860,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-20,2025-06-16,5,false,4,22,1290,44.4,4 +UD9861,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-21,2025-06-16,6,true,2,9,599,47.0,1 +UD9862,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-22,2025-06-16,0,true,1,7,334,45.6,2 +UD9863,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-23,2025-06-23,1,false,4,22,1500,45.9,4 +UD9864,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-24,2025-06-23,2,false,3,21,1320,47.2,4 +UD9865,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-25,2025-06-23,3,false,4,25,1318,45.8,4 +UD9866,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-26,2025-06-23,4,false,4,22,1559,45.0,4 +UD9867,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-27,2025-06-23,5,false,3,21,1185,46.0,4 +UD9868,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-28,2025-06-23,6,true,3,11,707,46.1,2 +UD9869,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-29,2025-06-23,0,true,1,8,387,47.7,2 +UD9870,W2035,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-finance,prod,active,false,2025-06-30,2025-06-30,1,false,4,26,1343,48.8,4 +UD9871,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-01,2025-05-26,0,true,3,13,764,50.9,3 +UD9872,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-02,2025-06-02,1,false,3,19,1118,50.1,4 +UD9873,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-03,2025-06-02,2,false,4,29,1270,51.1,6 +UD9874,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-04,2025-06-02,3,false,4,24,1754,50.9,6 +UD9875,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-05,2025-06-02,4,false,5,28,1514,50.9,4 +UD9876,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-06,2025-06-02,5,false,3,21,1002,51.0,3 +UD9877,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-07,2025-06-02,6,true,3,11,791,50.8,2 +UD9878,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-08,2025-06-02,0,true,3,12,548,51.9,2 +UD9879,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-09,2025-06-09,1,false,5,24,1255,50.9,5 +UD9880,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-10,2025-06-09,2,false,5,34,2084,52.2,9 +UD9881,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-11,2025-06-09,3,false,3,25,1141,51.6,5 +UD9882,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-12,2025-06-09,4,false,5,26,1888,51.5,6 +UD9883,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-13,2025-06-09,5,false,3,18,788,52.0,3 +UD9884,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-14,2025-06-09,6,true,1,8,550,52.3,1 +UD9885,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-15,2025-06-09,0,true,1,8,505,51.8,2 +UD9886,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-16,2025-06-16,1,false,4,25,1475,52.7,7 +UD9887,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-17,2025-06-16,2,false,5,31,1772,52.0,8 +UD9888,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-18,2025-06-16,3,false,4,28,1619,53.2,7 +UD9889,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-19,2025-06-16,4,false,3,21,952,52.7,3 +UD9890,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-20,2025-06-16,5,false,5,26,1573,53.7,6 +UD9891,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-21,2025-06-16,6,true,1,7,414,52.6,2 +UD9892,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-22,2025-06-16,0,true,4,13,986,54.0,3 +UD9893,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-23,2025-06-23,1,false,3,19,859,53.5,4 +UD9894,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-24,2025-06-23,2,false,5,26,1965,54.5,4 +UD9895,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-25,2025-06-23,3,false,3,20,1185,53.3,4 +UD9896,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-26,2025-06-23,4,false,5,28,1751,55.8,4 +UD9897,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-27,2025-06-23,5,false,5,25,1082,55.4,5 +UD9898,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-28,2025-06-23,6,true,4,15,1022,54.2,2 +UD9899,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-29,2025-06-23,0,true,2,9,484,54.5,2 +UD9900,W2036,A1016,BluePeak Capital,energy,enterprise,EMEA,DE,bluepeak-marketing,prod,active,false,2025-06-30,2025-06-30,1,false,3,22,1184,55.1,5 +UD9901,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,6,443,30.1,1 +UD9902,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-02,2025-06-02,1,false,3,15,1013,29.8,4 +UD9903,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-03,2025-06-02,2,false,3,16,1135,29.9,3 +UD9904,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-04,2025-06-02,3,false,3,20,1067,29.9,4 +UD9905,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-05,2025-06-02,4,false,5,22,1345,30.0,3 +UD9906,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-06,2025-06-02,5,false,3,14,668,30.1,3 +UD9907,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-07,2025-06-02,6,true,4,12,865,30.1,3 +UD9908,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,5,250,30.8,1 +UD9909,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-09,2025-06-09,1,false,3,15,1039,29.7,3 +UD9910,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-10,2025-06-09,2,false,4,24,1607,30.9,5 +UD9911,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-11,2025-06-09,3,false,3,19,851,30.7,3 +UD9912,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-12,2025-06-09,4,false,4,20,1094,31.1,4 +UD9913,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-13,2025-06-09,5,false,3,18,1123,32.0,5 +UD9914,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-14,2025-06-09,6,true,2,6,281,31.1,2 +UD9915,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-15,2025-06-09,0,true,3,9,514,30.8,1 +UD9916,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-16,2025-06-16,1,false,5,20,1419,31.5,5 +UD9917,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-17,2025-06-16,2,false,4,23,1701,32.1,4 +UD9918,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-18,2025-06-16,3,false,5,26,1368,32.1,5 +UD9919,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-19,2025-06-16,4,false,3,15,921,31.1,2 +UD9920,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-20,2025-06-16,5,false,3,16,792,31.9,4 +UD9921,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,7,376,31.9,1 +UD9922,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-22,2025-06-16,0,true,2,7,318,32.8,1 +UD9923,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-23,2025-06-23,1,false,4,20,1426,33.3,5 +UD9924,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-24,2025-06-23,2,false,5,25,1215,33.4,7 +UD9925,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-25,2025-06-23,3,false,4,23,1635,33.5,6 +UD9926,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-26,2025-06-23,4,false,3,19,1004,33.8,5 +UD9927,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-27,2025-06-23,5,false,3,15,741,33.6,3 +UD9928,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-28,2025-06-23,6,true,3,8,402,33.5,1 +UD9929,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-29,2025-06-23,0,true,3,10,518,35.2,2 +UD9930,W2037,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-core,prod,active,true,2025-06-30,2025-06-30,1,false,5,22,1106,33.8,4 +UD9931,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-01,2025-05-26,0,true,2,7,379,28.4,1 +UD9932,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-02,2025-06-02,1,false,1,9,372,29.8,2 +UD9933,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-03,2025-06-02,2,false,1,11,598,29.2,2 +UD9934,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-04,2025-06-02,3,false,1,12,868,29.0,3 +UD9935,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-05,2025-06-02,4,false,2,13,581,29.5,2 +UD9936,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-06,2025-06-02,5,false,1,9,452,29.7,2 +UD9937,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-07,2025-06-02,6,true,1,6,273,29.3,2 +UD9938,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-08,2025-06-02,0,true,1,5,227,30.4,1 +UD9939,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-09,2025-06-09,1,false,2,14,650,30.5,2 +UD9940,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-10,2025-06-09,2,false,2,15,696,29.8,4 +UD9941,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-11,2025-06-09,3,false,1,10,530,31.4,2 +UD9942,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-12,2025-06-09,4,false,1,9,616,31.0,1 +UD9943,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-13,2025-06-09,5,false,1,10,612,29.8,2 +UD9944,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-14,2025-06-09,6,true,1,5,223,30.1,1 +UD9945,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-15,2025-06-09,0,true,1,5,368,30.8,1 +UD9946,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-16,2025-06-16,1,false,2,13,889,30.9,2 +UD9947,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-17,2025-06-16,2,false,1,11,457,30.9,2 +UD9948,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-18,2025-06-16,3,false,1,11,495,32.4,1 +UD9949,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-19,2025-06-16,4,false,2,13,742,31.2,3 +UD9950,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-20,2025-06-16,5,false,1,9,429,32.5,2 +UD9951,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-21,2025-06-16,6,true,1,5,279,30.5,1 +UD9952,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-22,2025-06-16,0,true,1,6,394,31.3,1 +UD9953,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-23,2025-06-23,1,false,1,10,588,32.8,3 +UD9954,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-24,2025-06-23,2,false,1,11,593,33.1,2 +UD9955,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-25,2025-06-23,3,false,1,12,853,31.1,2 +UD9956,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-26,2025-06-23,4,false,1,10,467,33.4,1 +UD9957,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-27,2025-06-23,5,false,2,14,890,30.8,3 +UD9958,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-28,2025-06-23,6,true,1,6,428,31.8,1 +UD9959,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-29,2025-06-23,0,true,1,6,316,31.5,1 +UD9960,W2038,A1017,Summit Analytics,financial_services,mid_market,EMEA,UK,summit-ops,prod,active,false,2025-06-30,2025-06-30,1,false,2,13,673,33.9,3 +UD9961,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,4,253,13.5,1 +UD9962,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-02,2025-06-02,1,false,1,7,365,13.9,2 +UD9963,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-03,2025-06-02,2,false,1,8,563,14.3,2 +UD9964,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-04,2025-06-02,3,false,1,9,444,14.5,2 +UD9965,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-05,2025-06-02,4,false,1,7,341,13.6,1 +UD9966,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-06,2025-06-02,5,false,1,7,351,14.0,2 +UD9967,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,3,193,14.5,1 +UD9968,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,3,167,14.3,1 +UD9969,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-09,2025-06-09,1,false,1,8,566,15.1,2 +UD9970,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-10,2025-06-09,2,false,1,9,602,15.1,1 +UD9971,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-11,2025-06-09,3,false,1,8,581,14.6,2 +UD9972,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-12,2025-06-09,4,false,1,7,391,15.2,1 +UD9973,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-13,2025-06-09,5,false,1,7,459,15.9,2 +UD9974,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,4,292,15.2,0 +UD9975,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,4,281,16.7,1 +UD9976,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-16,2025-06-16,1,false,1,7,292,16.1,1 +UD9977,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-17,2025-06-16,2,false,1,7,385,15.0,2 +UD9978,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-18,2025-06-16,3,false,1,8,526,15.0,2 +UD9979,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-19,2025-06-16,4,false,1,7,484,17.1,1 +UD9980,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-20,2025-06-16,5,false,1,7,302,15.6,1 +UD9981,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-21,2025-06-16,6,true,1,4,187,17.8,1 +UD9982,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-22,2025-06-16,0,true,1,4,181,15.5,1 +UD9983,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-23,2025-06-23,1,false,1,7,342,17.1,2 +UD9984,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-24,2025-06-23,2,false,1,8,575,16.4,1 +UD9985,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-25,2025-06-23,3,false,1,8,513,16.0,2 +UD9986,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-26,2025-06-23,4,false,1,7,296,17.9,2 +UD9987,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-27,2025-06-23,5,false,1,7,468,16.5,1 +UD9988,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-28,2025-06-23,6,true,1,4,255,17.2,1 +UD9989,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,4,271,16.3,1 +UD9990,W2041,A1019,Sierra Systems,education,smb,APAC,JP,sierra-core,prod,active,true,2025-06-30,2025-06-30,1,false,1,6,281,19.2,1 +UD9991,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-01,2025-05-26,0,true,0,2,68,6.8,0 +UD9992,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-02,2025-06-02,1,false,2,10,280,7.7,2 +UD9993,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-03,2025-06-02,2,false,1,9,323,7.2,2 +UD9994,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-04,2025-06-02,3,false,0,4,176,7.3,0 +UD9995,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-05,2025-06-02,4,false,0,4,181,7.1,1 +UD9996,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-06,2025-06-02,5,false,0,4,133,7.0,1 +UD9997,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-07,2025-06-02,6,true,0,2,61,8.0,1 +UD9998,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-08,2025-06-02,0,true,0,2,58,7.7,0 +UD9999,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-09,2025-06-09,1,false,0,4,110,7.2,1 +UD10000,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-10,2025-06-09,2,false,2,10,463,9.0,2 +UD10001,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-11,2025-06-09,3,false,0,4,100,9.5,1 +UD10002,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-12,2025-06-09,4,false,0,4,135,8.9,1 +UD10003,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-13,2025-06-09,5,false,1,8,253,7.9,2 +UD10004,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-14,2025-06-09,6,true,1,4,194,8.4,1 +UD10005,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-15,2025-06-09,0,true,0,2,53,8.0,0 +UD10006,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-16,2025-06-16,1,false,1,8,375,9.7,2 +UD10007,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-17,2025-06-16,2,false,0,4,179,9.1,1 +UD10008,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-18,2025-06-16,3,false,0,4,107,10.2,1 +UD10009,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-19,2025-06-16,4,false,0,4,98,9.2,1 +UD10010,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-20,2025-06-16,5,false,2,12,519,11.2,2 +UD10011,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-21,2025-06-16,6,true,0,2,86,10.6,0 +UD10012,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-22,2025-06-16,0,true,0,2,82,9.4,0 +UD10013,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-23,2025-06-23,1,false,0,4,115,8.7,1 +UD10014,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-24,2025-06-23,2,false,1,8,305,12.2,1 +UD10015,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-25,2025-06-23,3,false,0,4,116,9.4,1 +UD10016,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-26,2025-06-23,4,false,1,7,325,9.3,2 +UD10017,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-27,2025-06-23,5,false,2,10,431,9.3,2 +UD10018,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-28,2025-06-23,6,true,0,2,78,12.0,0 +UD10019,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-29,2025-06-23,0,true,0,2,75,11.9,0 +UD10020,W2042,A1019,Sierra Systems,education,smb,APAC,JP,sierra-ops,sandbox,active,false,2025-06-30,2025-06-30,1,false,0,4,170,10.6,1 +UD10021,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,4,242,17.6,1 +UD10022,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-02,2025-06-02,1,false,2,10,437,18.0,2 +UD10023,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-03,2025-06-02,2,false,2,10,462,17.8,3 +UD10024,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-04,2025-06-02,3,false,2,10,676,18.8,2 +UD10025,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-05,2025-06-02,4,false,1,8,343,19.4,2 +UD10026,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-06,2025-06-02,5,false,3,12,584,19.2,2 +UD10027,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,3,154,19.0,1 +UD10028,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,4,256,19.0,1 +UD10029,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-09,2025-06-09,1,false,1,6,312,20.1,1 +UD10030,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-10,2025-06-09,2,false,3,15,692,20.1,3 +UD10031,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-11,2025-06-09,3,false,1,8,564,20.4,1 +UD10032,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-12,2025-06-09,4,false,3,13,873,21.0,3 +UD10033,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-13,2025-06-09,5,false,1,7,357,20.5,1 +UD10034,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-14,2025-06-09,6,true,2,6,399,20.0,1 +UD10035,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,4,192,19.7,1 +UD10036,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-16,2025-06-16,1,false,3,13,886,20.6,3 +UD10037,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-17,2025-06-16,2,false,1,7,317,20.2,1 +UD10038,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-18,2025-06-16,3,false,2,12,692,20.8,2 +UD10039,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-19,2025-06-16,4,false,2,12,757,20.4,3 +UD10040,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-20,2025-06-16,5,false,2,10,705,20.3,2 +UD10041,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-21,2025-06-16,6,true,1,4,200,19.9,1 +UD10042,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-22,2025-06-16,0,true,1,4,237,21.7,1 +UD10043,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-23,2025-06-23,1,false,1,8,381,21.6,1 +UD10044,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-24,2025-06-23,2,false,1,9,405,22.0,2 +UD10045,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-25,2025-06-23,3,false,3,14,768,21.3,3 +UD10046,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-26,2025-06-23,4,false,2,10,654,20.6,1 +UD10047,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-27,2025-06-23,5,false,2,12,875,23.0,3 +UD10048,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-28,2025-06-23,6,true,1,3,149,21.4,0 +UD10049,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,4,177,20.5,1 +UD10050,W2043,A1020,Pioneer Network,travel,smb,EMEA,FR,pioneer-core,prod,active,true,2025-06-30,2025-06-30,1,false,3,13,677,23.0,2 +UD10051,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-01,2025-05-26,0,true,2,6,319,20.6,1 +UD10052,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-02,2025-06-02,1,false,3,11,599,20.5,3 +UD10053,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-03,2025-06-02,2,false,3,12,868,20.2,3 +UD10054,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-04,2025-06-02,3,false,4,20,1362,21.7,5 +UD10055,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-05,2025-06-02,4,false,4,19,964,21.4,3 +UD10056,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-06,2025-06-02,5,false,4,13,590,20.4,3 +UD10057,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-07,2025-06-02,6,true,4,9,663,21.1,2 +UD10058,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-08,2025-06-02,0,true,4,10,513,21.5,2 +UD10059,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-09,2025-06-09,1,false,6,26,1250,22.4,7 +UD10060,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-10,2025-06-09,2,false,4,15,781,21.7,3 +UD10061,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-11,2025-06-09,3,false,4,16,903,21.9,4 +UD10062,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-12,2025-06-09,4,false,5,17,1176,21.2,3 +UD10063,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-13,2025-06-09,5,false,6,26,1450,22.2,5 +UD10064,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-14,2025-06-09,6,true,2,5,253,21.7,1 +UD10065,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-15,2025-06-09,0,true,2,5,280,22.8,1 +UD10066,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-16,2025-06-16,1,false,4,17,777,21.7,5 +UD10067,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-17,2025-06-16,2,false,5,24,1738,21.8,4 +UD10068,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-18,2025-06-16,3,false,6,27,1770,22.2,4 +UD10069,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-19,2025-06-16,4,false,4,19,1249,22.4,4 +UD10070,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-20,2025-06-16,5,false,5,22,1681,23.0,3 +UD10071,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-21,2025-06-16,6,true,3,8,554,23.0,2 +UD10072,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-22,2025-06-16,0,true,4,11,587,24.1,2 +UD10073,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-23,2025-06-23,1,false,5,18,877,24.6,4 +UD10074,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-24,2025-06-23,2,false,5,17,1267,24.7,3 +UD10075,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-25,2025-06-23,3,false,6,31,1930,22.5,5 +UD10076,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-26,2025-06-23,4,false,4,15,668,25.1,4 +UD10077,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-27,2025-06-23,5,false,5,16,832,23.4,4 +UD10078,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-28,2025-06-23,6,true,3,7,555,25.0,2 +UD10079,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-29,2025-06-23,0,true,4,9,452,24.5,2 +UD10080,W2044,A1021,Apex Logistics,software,smb,NA,US,apex-core,prod,active,true,2025-06-30,2025-06-30,1,false,5,18,897,25.9,5 +UD10081,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-01,2025-05-26,0,true,2,5,376,13.7,1 +UD10082,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-02,2025-06-02,1,false,1,7,333,13.0,2 +UD10083,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-03,2025-06-02,2,false,1,7,309,13.3,2 +UD10084,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-04,2025-06-02,3,false,1,7,405,13.0,1 +UD10085,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-05,2025-06-02,4,false,2,11,509,13.7,2 +UD10086,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-06,2025-06-02,5,false,1,7,509,14.7,1 +UD10087,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,4,201,14.7,1 +UD10088,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-08,2025-06-02,0,true,2,6,278,15.1,1 +UD10089,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-09,2025-06-09,1,false,1,7,309,13.7,1 +UD10090,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-10,2025-06-09,2,false,1,9,374,14.8,2 +UD10091,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-11,2025-06-09,3,false,1,9,380,13.8,1 +UD10092,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-12,2025-06-09,4,false,2,10,565,14.4,2 +UD10093,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-13,2025-06-09,5,false,2,11,781,14.9,3 +UD10094,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,4,249,15.7,1 +UD10095,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,4,210,14.4,1 +UD10096,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-16,2025-06-16,1,false,2,10,465,15.8,2 +UD10097,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-17,2025-06-16,2,false,1,7,467,15.3,1 +UD10098,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-18,2025-06-16,3,false,2,13,640,15.7,3 +UD10099,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-19,2025-06-16,4,false,2,9,637,16.2,2 +UD10100,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-20,2025-06-16,5,false,2,10,484,16.0,2 +UD10101,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-21,2025-06-16,6,true,1,4,259,15.7,0 +UD10102,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-22,2025-06-16,0,true,2,5,371,16.0,1 +UD10103,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-23,2025-06-23,1,false,1,8,375,16.6,2 +UD10104,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-24,2025-06-23,2,false,2,13,618,14.8,2 +UD10105,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-25,2025-06-23,3,false,1,9,457,17.6,1 +UD10106,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-26,2025-06-23,4,false,1,8,484,15.3,2 +UD10107,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-27,2025-06-23,5,false,1,6,443,15.5,1 +UD10108,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-28,2025-06-23,6,true,1,4,220,17.6,1 +UD10109,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-29,2025-06-23,0,true,2,6,331,18.4,1 +UD10110,W2045,A1022,Summit Collective,retail,smb,APAC,NZ,summit-core,prod,active,true,2025-06-30,2025-06-30,1,false,2,10,697,18.1,2 +UD10111,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-01,2025-05-26,0,true,1,4,186,10.7,1 +UD10112,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-02,2025-06-02,1,false,1,6,263,11.2,1 +UD10113,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-03,2025-06-02,2,false,1,7,204,11.1,1 +UD10114,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-04,2025-06-02,3,false,0,4,135,11.5,1 +UD10115,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-05,2025-06-02,4,false,1,8,232,10.9,2 +UD10116,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-06,2025-06-02,5,false,0,4,137,11.5,1 +UD10117,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-07,2025-06-02,6,true,0,2,82,11.1,0 +UD10118,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-08,2025-06-02,0,true,0,2,82,11.6,0 +UD10119,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-09,2025-06-09,1,false,1,6,208,11.8,1 +UD10120,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-10,2025-06-09,2,false,1,8,235,12.8,1 +UD10121,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-11,2025-06-09,3,false,0,4,110,12.0,1 +UD10122,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-12,2025-06-09,4,false,1,7,186,12.9,2 +UD10123,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-13,2025-06-09,5,false,1,7,206,11.6,1 +UD10124,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-14,2025-06-09,6,true,0,2,63,11.5,0 +UD10125,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-15,2025-06-09,0,true,1,4,166,12.8,1 +UD10126,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-16,2025-06-16,1,false,1,7,272,13.0,2 +UD10127,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-17,2025-06-16,2,false,0,4,119,13.1,1 +UD10128,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-18,2025-06-16,3,false,0,4,151,14.0,1 +UD10129,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-19,2025-06-16,4,false,0,4,176,12.8,1 +UD10130,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-20,2025-06-16,5,false,0,4,130,14.4,1 +UD10131,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-21,2025-06-16,6,true,1,4,195,13.1,1 +UD10132,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-22,2025-06-16,0,true,1,4,151,13.8,1 +UD10133,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-23,2025-06-23,1,false,0,4,151,14.6,1 +UD10134,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-24,2025-06-23,2,false,0,4,112,15.2,1 +UD10135,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-25,2025-06-23,3,false,0,4,112,14.7,1 +UD10136,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-26,2025-06-23,4,false,1,8,271,16.2,2 +UD10137,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-27,2025-06-23,5,false,0,4,164,14.4,1 +UD10138,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-28,2025-06-23,6,true,1,3,94,14.0,1 +UD10139,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-29,2025-06-23,0,true,1,4,186,13.8,1 +UD10140,W2046,A1022,Summit Collective,retail,smb,APAC,NZ,summit-ops,sandbox,active,false,2025-06-30,2025-06-30,1,false,1,7,212,13.8,1 +UD10141,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-01,2025-05-26,0,true,5,9,626,11.5,1 +UD10142,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-02,2025-06-02,1,false,6,21,1058,11.7,4 +UD10143,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-03,2025-06-02,2,false,4,21,1515,11.9,4 +UD10144,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-04,2025-06-02,3,false,5,19,1141,11.8,4 +UD10145,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-05,2025-06-02,4,false,6,19,1340,12.4,5 +UD10146,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-06,2025-06-02,5,false,6,19,964,12.5,5 +UD10147,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-07,2025-06-02,6,true,3,8,557,12.3,2 +UD10148,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-08,2025-06-02,0,true,3,8,459,12.4,2 +UD10149,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-09,2025-06-09,1,false,5,22,1301,12.7,4 +UD10150,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-10,2025-06-09,2,false,6,27,1487,12.6,5 +UD10151,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-11,2025-06-09,3,false,5,21,1227,12.9,3 +UD10152,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-12,2025-06-09,4,false,4,20,1443,13.5,4 +UD10153,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-13,2025-06-09,5,false,6,20,1372,14.2,5 +UD10154,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-14,2025-06-09,6,true,4,8,469,13.9,2 +UD10155,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-15,2025-06-09,0,true,3,7,488,13.7,2 +UD10156,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-16,2025-06-16,1,false,7,28,1622,14.9,6 +UD10157,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-17,2025-06-16,2,false,4,22,1529,15.5,4 +UD10158,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-18,2025-06-16,3,false,7,23,1457,13.0,6 +UD10159,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-19,2025-06-16,4,false,6,24,1193,14.4,4 +UD10160,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-20,2025-06-16,5,false,6,22,1173,14.6,3 +UD10161,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-21,2025-06-16,6,true,3,7,413,14.6,1 +UD10162,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,8,377,14.4,2 +UD10163,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-23,2025-06-23,1,false,6,21,1468,15.0,3 +UD10164,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-24,2025-06-23,2,false,5,19,1114,15.3,2 +UD10165,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-25,2025-06-23,3,false,7,30,1534,16.7,5 +UD10166,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-26,2025-06-23,4,false,6,21,1004,15.9,5 +UD10167,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-27,2025-06-23,5,false,6,26,1161,16.6,3 +UD10168,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-28,2025-06-23,6,true,4,7,470,16.2,1 +UD10169,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-29,2025-06-23,0,true,3,7,545,14.8,1 +UD10170,W2047,A1023,Atlas Systems,education,smb,NA,CA,atlas-core,prod,active,true,2025-06-30,2025-06-30,1,false,6,18,1272,17.9,3 +UD10171,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-01,2025-05-26,0,true,2,6,301,16.1,1 +UD10172,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-02,2025-06-02,1,false,2,11,751,15.6,3 +UD10173,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-03,2025-06-02,2,false,1,8,527,16.6,1 +UD10174,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-04,2025-06-02,3,false,1,8,482,16.4,1 +UD10175,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-05,2025-06-02,4,false,1,7,486,15.7,2 +UD10176,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-06,2025-06-02,5,false,1,7,390,15.7,2 +UD10177,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,4,254,15.8,1 +UD10178,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,4,284,17.1,1 +UD10179,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-09,2025-06-09,1,false,2,9,609,17.3,2 +UD10180,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-10,2025-06-09,2,false,2,10,456,16.5,2 +UD10181,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-11,2025-06-09,3,false,1,8,463,17.1,2 +UD10182,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-12,2025-06-09,4,false,1,8,481,17.1,1 +UD10183,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-13,2025-06-09,5,false,1,7,487,18.4,1 +UD10184,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-14,2025-06-09,6,true,2,6,401,18.5,1 +UD10185,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,4,192,17.3,1 +UD10186,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-16,2025-06-16,1,false,1,7,309,18.7,1 +UD10187,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-17,2025-06-16,2,false,1,7,485,18.4,1 +UD10188,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-18,2025-06-16,3,false,2,12,854,18.6,3 +UD10189,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-19,2025-06-16,4,false,1,8,552,18.0,2 +UD10190,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-20,2025-06-16,5,false,2,10,614,18.0,3 +UD10191,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-21,2025-06-16,6,true,1,4,237,19.0,0 +UD10192,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-22,2025-06-16,0,true,1,4,257,18.0,1 +UD10193,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-23,2025-06-23,1,false,1,7,415,19.7,2 +UD10194,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-24,2025-06-23,2,false,2,10,537,19.7,2 +UD10195,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-25,2025-06-23,3,false,1,8,479,20.4,2 +UD10196,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-26,2025-06-23,4,false,2,9,491,18.9,2 +UD10197,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-27,2025-06-23,5,false,2,10,745,18.7,2 +UD10198,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-28,2025-06-23,6,true,2,6,324,17.6,2 +UD10199,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,4,237,19.7,1 +UD10200,W2048,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-core,prod,active,true,2025-06-30,2025-06-30,1,false,2,10,553,20.5,2 +UD10201,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-01,2025-05-26,0,true,2,6,425,14.1,1 +UD10202,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-02,2025-06-02,1,false,3,15,931,14.4,4 +UD10203,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-03,2025-06-02,2,false,2,11,540,14.4,2 +UD10204,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-04,2025-06-02,3,false,3,17,952,15.0,2 +UD10205,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-05,2025-06-02,4,false,1,8,338,15.8,2 +UD10206,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-06,2025-06-02,5,false,2,10,603,15.3,1 +UD10207,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-07,2025-06-02,6,true,2,5,286,15.9,1 +UD10208,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-08,2025-06-02,0,true,2,5,322,16.4,1 +UD10209,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-09,2025-06-09,1,false,1,7,437,15.3,1 +UD10210,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-10,2025-06-09,2,false,3,16,1062,16.2,2 +UD10211,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-11,2025-06-09,3,false,3,14,666,16.2,4 +UD10212,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-12,2025-06-09,4,false,1,7,305,16.2,2 +UD10213,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-13,2025-06-09,5,false,1,8,400,15.8,2 +UD10214,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-14,2025-06-09,6,true,2,5,278,17.5,1 +UD10215,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-15,2025-06-09,0,true,2,5,238,17.5,1 +UD10216,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-16,2025-06-16,1,false,1,6,427,16.4,1 +UD10217,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-17,2025-06-16,2,false,3,13,662,16.0,3 +UD10218,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-18,2025-06-16,3,false,1,8,547,17.4,2 +UD10219,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-19,2025-06-16,4,false,2,10,473,17.4,2 +UD10220,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-20,2025-06-16,5,false,3,15,796,16.7,4 +UD10221,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-21,2025-06-16,6,true,1,4,268,18.6,1 +UD10222,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-22,2025-06-16,0,true,1,3,162,17.7,1 +UD10223,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-23,2025-06-23,1,false,3,13,617,18.9,4 +UD10224,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-24,2025-06-23,2,false,1,8,578,17.2,1 +UD10225,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-25,2025-06-23,3,false,1,8,431,19.1,2 +UD10226,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-26,2025-06-23,4,false,2,10,453,17.6,3 +UD10227,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-27,2025-06-23,5,false,3,15,973,17.6,4 +UD10228,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-28,2025-06-23,6,true,1,4,200,20.1,1 +UD10229,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-29,2025-06-23,0,true,1,4,304,20.2,1 +UD10230,W2049,A1024,Sierra Group,manufacturing,smb,NA,CA,sierra-ops,prod,active,false,2025-06-30,2025-06-30,1,false,1,7,432,19.6,2 +UD10231,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-01,2025-05-26,0,true,2,6,432,21.2,1 +UD10232,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-02,2025-06-02,1,false,4,16,1217,21.7,3 +UD10233,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-03,2025-06-02,2,false,4,17,1181,21.2,3 +UD10234,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-04,2025-06-02,3,false,2,11,782,22.0,2 +UD10235,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-05,2025-06-02,4,false,3,14,950,22.5,2 +UD10236,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-06,2025-06-02,5,false,2,8,353,21.8,2 +UD10237,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-07,2025-06-02,6,true,3,7,428,23.0,2 +UD10238,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-08,2025-06-02,0,true,3,7,486,21.7,1 +UD10239,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-09,2025-06-09,1,false,5,16,885,22.3,3 +UD10240,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-10,2025-06-09,2,false,3,17,1194,22.2,4 +UD10241,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-11,2025-06-09,3,false,3,14,915,23.0,3 +UD10242,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-12,2025-06-09,4,false,4,16,710,23.5,2 +UD10243,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-13,2025-06-09,5,false,3,12,857,23.1,3 +UD10244,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-14,2025-06-09,6,true,2,6,295,24.2,1 +UD10245,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,4,300,24.1,1 +UD10246,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-16,2025-06-16,1,false,4,17,1223,23.0,2 +UD10247,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-17,2025-06-16,2,false,3,14,895,23.0,3 +UD10248,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-18,2025-06-16,3,false,5,21,1149,24.2,5 +UD10249,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-19,2025-06-16,4,false,4,20,1050,24.6,5 +UD10250,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-20,2025-06-16,5,false,3,12,809,24.4,3 +UD10251,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,6,443,22.8,1 +UD10252,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-22,2025-06-16,0,true,1,4,242,25.1,1 +UD10253,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-23,2025-06-23,1,false,4,18,888,23.7,5 +UD10254,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-24,2025-06-23,2,false,4,19,1272,25.1,3 +UD10255,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-25,2025-06-23,3,false,3,13,880,26.3,2 +UD10256,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-26,2025-06-23,4,false,4,15,967,25.9,2 +UD10257,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-27,2025-06-23,5,false,4,16,1161,25.8,2 +UD10258,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-28,2025-06-23,6,true,4,7,551,24.5,2 +UD10259,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,4,181,27.0,1 +UD10260,W2050,A1025,Bright Capital,education,smb,EMEA,UK,bright-core,prod,active,true,2025-06-30,2025-06-30,1,false,3,13,669,26.7,3 +UD10261,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-01,2025-05-26,0,true,3,6,348,10.3,1 +UD10262,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-02,2025-06-02,1,false,5,18,1126,11.3,2 +UD10263,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-03,2025-06-02,2,false,7,28,1483,11.1,5 +UD10264,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-04,2025-06-02,3,false,6,21,1217,11.8,3 +UD10265,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-05,2025-06-02,4,false,5,21,1537,11.9,4 +UD10266,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-06,2025-06-02,5,false,5,20,1530,11.5,5 +UD10267,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-07,2025-06-02,6,true,4,8,417,12.0,2 +UD10268,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-08,2025-06-02,0,true,3,6,483,11.7,1 +UD10269,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-09,2025-06-09,1,false,6,23,1537,12.4,5 +UD10270,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-10,2025-06-09,2,false,6,25,1105,11.6,6 +UD10271,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-11,2025-06-09,3,false,4,21,1092,12.3,5 +UD10272,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-12,2025-06-09,4,false,6,22,1282,12.6,5 +UD10273,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-13,2025-06-09,5,false,5,17,776,13.7,4 +UD10274,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-14,2025-06-09,6,true,4,9,585,13.5,3 +UD10275,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-15,2025-06-09,0,true,2,5,398,13.3,1 +UD10276,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-16,2025-06-16,1,false,6,25,1666,13.4,4 +UD10277,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-17,2025-06-16,2,false,4,20,1459,13.6,3 +UD10278,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-18,2025-06-16,3,false,6,26,1614,13.3,4 +UD10279,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-19,2025-06-16,4,false,6,19,1275,13.0,5 +UD10280,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-20,2025-06-16,5,false,6,19,875,13.4,4 +UD10281,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-21,2025-06-16,6,true,3,9,520,13.1,2 +UD10282,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-22,2025-06-16,0,true,4,10,697,13.8,2 +UD10283,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-23,2025-06-23,1,false,5,19,881,13.1,4 +UD10284,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-24,2025-06-23,2,false,5,19,1012,15.1,3 +UD10285,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-25,2025-06-23,3,false,5,25,1221,14.1,5 +UD10286,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-26,2025-06-23,4,false,4,15,672,14.6,3 +UD10287,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-27,2025-06-23,5,false,4,15,1068,15.1,4 +UD10288,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-28,2025-06-23,6,true,3,6,481,12.9,1 +UD10289,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-29,2025-06-23,0,true,3,8,472,13.6,2 +UD10290,W2051,A1026,Pioneer Capital,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-30,2025-06-30,1,false,6,22,1587,15.5,3 +UD10291,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,4,198,12.5,0 +UD10292,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-02,2025-06-02,1,false,2,8,421,12.6,2 +UD10293,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-03,2025-06-02,2,false,3,15,988,13.6,3 +UD10294,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-04,2025-06-02,3,false,3,17,744,13.4,2 +UD10295,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-05,2025-06-02,4,false,3,14,1029,14.2,3 +UD10296,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-06,2025-06-02,5,false,1,7,437,13.2,1 +UD10297,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,4,268,13.7,1 +UD10298,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,4,192,13.7,1 +UD10299,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-09,2025-06-09,1,false,2,9,640,13.6,2 +UD10300,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-10,2025-06-09,2,false,1,7,475,13.5,2 +UD10301,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-11,2025-06-09,3,false,1,8,430,14.4,1 +UD10302,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-12,2025-06-09,4,false,2,9,551,13.1,2 +UD10303,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-13,2025-06-09,5,false,2,11,795,13.9,2 +UD10304,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-14,2025-06-09,6,true,3,7,420,14.6,2 +UD10305,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,4,272,15.5,1 +UD10306,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-16,2025-06-16,1,false,1,6,357,14.9,1 +UD10307,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-17,2025-06-16,2,false,1,7,428,14.8,1 +UD10308,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-18,2025-06-16,3,false,2,10,675,14.9,2 +UD10309,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-19,2025-06-16,4,false,3,16,990,14.9,3 +UD10310,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-20,2025-06-16,5,false,3,14,1036,15.9,3 +UD10311,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,5,355,15.8,1 +UD10312,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-22,2025-06-16,0,true,1,4,292,16.3,1 +UD10313,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-23,2025-06-23,1,false,2,10,744,15.6,2 +UD10314,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-24,2025-06-23,2,false,3,18,1171,17.4,2 +UD10315,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-25,2025-06-23,3,false,1,9,608,14.7,1 +UD10316,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-26,2025-06-23,4,false,2,11,546,17.0,3 +UD10317,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-27,2025-06-23,5,false,3,12,798,16.2,2 +UD10318,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-28,2025-06-23,6,true,1,4,250,15.1,1 +UD10319,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,4,303,16.8,1 +UD10320,W2052,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-core,prod,active,true,2025-06-30,2025-06-30,1,false,1,7,504,17.6,1 +UD10321,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-01,2025-05-26,0,true,1,4,194,16.8,1 +UD10322,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-02,2025-06-02,1,false,3,11,643,17.9,2 +UD10323,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-03,2025-06-02,2,false,1,7,514,17.2,2 +UD10324,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-04,2025-06-02,3,false,1,8,541,18.3,2 +UD10325,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-05,2025-06-02,4,false,2,10,542,17.6,3 +UD10326,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-06,2025-06-02,5,false,2,10,630,18.0,2 +UD10327,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-07,2025-06-02,6,true,1,4,228,17.8,1 +UD10328,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-08,2025-06-02,0,true,1,4,307,18.2,1 +UD10329,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-09,2025-06-09,1,false,2,10,496,18.7,2 +UD10330,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-10,2025-06-09,2,false,3,17,946,18.5,5 +UD10331,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-11,2025-06-09,3,false,2,10,548,18.9,2 +UD10332,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-12,2025-06-09,4,false,1,8,540,18.2,2 +UD10333,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-13,2025-06-09,5,false,1,7,455,19.0,1 +UD10334,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-14,2025-06-09,6,true,1,4,233,19.5,1 +UD10335,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-15,2025-06-09,0,true,1,4,251,19.1,1 +UD10336,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-16,2025-06-16,1,false,1,6,393,19.0,2 +UD10337,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-17,2025-06-16,2,false,2,12,880,20.8,3 +UD10338,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-18,2025-06-16,3,false,3,13,759,19.4,3 +UD10339,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-19,2025-06-16,4,false,1,8,589,20.5,2 +UD10340,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-20,2025-06-16,5,false,2,10,521,21.6,2 +UD10341,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-21,2025-06-16,6,true,3,7,343,21.3,2 +UD10342,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-22,2025-06-16,0,true,1,4,269,20.3,1 +UD10343,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-23,2025-06-23,1,false,3,12,579,21.8,2 +UD10344,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-24,2025-06-23,2,false,2,10,481,21.1,3 +UD10345,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-25,2025-06-23,3,false,3,12,871,19.8,3 +UD10346,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-26,2025-06-23,4,false,2,10,430,19.9,2 +UD10347,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-27,2025-06-23,5,false,3,15,724,22.8,4 +UD10348,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-28,2025-06-23,6,true,2,5,319,20.7,1 +UD10349,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-29,2025-06-23,0,true,1,4,275,21.5,1 +UD10350,W2053,A1027,BluePeak Health,retail,smb,APAC,SG,bluepeak-ops,prod,active,false,2025-06-30,2025-06-30,1,false,2,9,677,20.5,2 +UD10351,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-01,2025-05-26,0,true,2,7,509,28.3,1 +UD10352,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-02,2025-06-02,1,false,3,17,1112,28.6,3 +UD10353,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-03,2025-06-02,2,false,4,25,1545,29.3,5 +UD10354,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-04,2025-06-02,3,false,5,23,1321,28.4,6 +UD10355,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-05,2025-06-02,4,false,4,23,1385,29.5,6 +UD10356,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-06,2025-06-02,5,false,4,17,1194,28.8,4 +UD10357,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,5,281,28.7,1 +UD10358,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-08,2025-06-02,0,true,2,7,431,29.4,2 +UD10359,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-09,2025-06-09,1,false,4,18,976,30.2,3 +UD10360,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-10,2025-06-09,2,false,6,24,1428,28.7,4 +UD10361,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-11,2025-06-09,3,false,4,21,1457,30.5,3 +UD10362,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-12,2025-06-09,4,false,3,14,782,29.0,2 +UD10363,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-13,2025-06-09,5,false,3,15,678,30.1,4 +UD10364,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,6,418,29.5,1 +UD10365,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-15,2025-06-09,0,true,2,7,367,29.9,1 +UD10366,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-16,2025-06-16,1,false,3,14,718,30.3,2 +UD10367,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-17,2025-06-16,2,false,5,21,1066,30.2,3 +UD10368,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-18,2025-06-16,3,false,5,27,1631,30.8,7 +UD10369,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-19,2025-06-16,4,false,5,21,966,30.4,4 +UD10370,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-20,2025-06-16,5,false,4,16,1025,31.7,4 +UD10371,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-21,2025-06-16,6,true,4,12,603,31.2,3 +UD10372,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-22,2025-06-16,0,true,1,5,315,31.0,1 +UD10373,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-23,2025-06-23,1,false,4,18,1238,32.0,5 +UD10374,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-24,2025-06-23,2,false,6,23,1262,32.5,5 +UD10375,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-25,2025-06-23,3,false,5,28,1728,32.1,4 +UD10376,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-26,2025-06-23,4,false,6,21,1438,30.6,5 +UD10377,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-27,2025-06-23,5,false,5,25,1872,31.5,7 +UD10378,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-28,2025-06-23,6,true,1,5,315,33.2,1 +UD10379,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,5,307,32.0,1 +UD10380,W2054,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-core,prod,active,true,2025-06-30,2025-06-30,1,false,4,18,998,34.1,2 +UD10381,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-01,2025-05-26,0,true,2,8,339,22.1,2 +UD10382,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-02,2025-06-02,1,false,2,12,475,22.7,2 +UD10383,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-03,2025-06-02,2,false,1,12,335,22.4,3 +UD10384,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-04,2025-06-02,3,false,0,8,201,23.3,1 +UD10385,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-05,2025-06-02,4,false,2,13,472,23.0,3 +UD10386,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-06,2025-06-02,5,false,0,7,200,22.8,2 +UD10387,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-07,2025-06-02,6,true,0,4,175,22.5,1 +UD10388,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-08,2025-06-02,0,true,2,8,239,23.1,2 +UD10389,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-09,2025-06-09,1,false,3,18,794,23.6,4 +UD10390,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-10,2025-06-09,2,false,2,16,732,23.4,2 +UD10391,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-11,2025-06-09,3,false,2,13,517,23.8,2 +UD10392,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-12,2025-06-09,4,false,0,7,293,23.7,2 +UD10393,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-13,2025-06-09,5,false,3,15,495,24.7,3 +UD10394,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-14,2025-06-09,6,true,0,4,122,24.2,1 +UD10395,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-15,2025-06-09,0,true,0,4,135,24.2,1 +UD10396,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-16,2025-06-16,1,false,0,7,299,24.9,2 +UD10397,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-17,2025-06-16,2,false,2,14,390,24.7,3 +UD10398,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-18,2025-06-16,3,false,2,14,521,25.4,3 +UD10399,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-19,2025-06-16,4,false,1,10,365,25.1,2 +UD10400,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-20,2025-06-16,5,false,0,7,174,24.6,1 +UD10401,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-21,2025-06-16,6,true,1,5,149,25.8,1 +UD10402,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-22,2025-06-16,0,true,2,8,316,25.7,2 +UD10403,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-23,2025-06-23,1,false,2,13,522,26.9,2 +UD10404,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-24,2025-06-23,2,false,2,16,429,26.0,3 +UD10405,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-25,2025-06-23,3,false,2,16,620,26.4,3 +UD10406,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-26,2025-06-23,4,false,1,11,420,25.0,3 +UD10407,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-27,2025-06-23,5,false,1,11,402,27.4,2 +UD10408,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-28,2025-06-23,6,true,2,8,265,25.6,1 +UD10409,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-29,2025-06-23,0,true,1,5,191,26.8,1 +UD10410,W2055,A1028,Apex Energy,energy,mid_market,APAC,SG,apex-ops,sandbox,active,false,2025-06-30,2025-06-30,1,false,1,10,262,26.2,1 +UD10411,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-01,2025-05-26,0,true,3,12,614,33.7,2 +UD10412,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-02,2025-06-02,1,false,4,22,1426,33.5,3 +UD10413,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-03,2025-06-02,2,false,3,23,1617,33.8,6 +UD10414,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-04,2025-06-02,3,false,3,22,1626,33.8,3 +UD10415,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-05,2025-06-02,4,false,2,20,1442,34.8,5 +UD10416,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-06,2025-06-02,5,false,5,31,2115,34.4,6 +UD10417,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-07,2025-06-02,6,true,2,9,613,35.3,2 +UD10418,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-08,2025-06-02,0,true,3,11,648,35.4,2 +UD10419,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-09,2025-06-09,1,false,5,23,1480,35.2,4 +UD10420,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-10,2025-06-09,2,false,3,22,1212,35.6,3 +UD10421,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-11,2025-06-09,3,false,4,24,1624,35.5,4 +UD10422,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-12,2025-06-09,4,false,2,18,1294,35.6,4 +UD10423,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-13,2025-06-09,5,false,3,19,872,35.7,4 +UD10424,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-14,2025-06-09,6,true,3,11,745,35.1,2 +UD10425,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-15,2025-06-09,0,true,2,10,674,35.8,3 +UD10426,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-16,2025-06-16,1,false,3,20,1301,35.2,5 +UD10427,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-17,2025-06-16,2,false,3,22,1186,36.9,5 +UD10428,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-18,2025-06-16,3,false,4,24,1208,36.0,7 +UD10429,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-19,2025-06-16,4,false,5,26,1793,37.5,5 +UD10430,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-20,2025-06-16,5,false,4,22,1394,36.0,3 +UD10431,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,9,667,37.2,1 +UD10432,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-22,2025-06-16,0,true,1,7,329,36.0,1 +UD10433,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-23,2025-06-23,1,false,4,20,1409,37.1,3 +UD10434,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-24,2025-06-23,2,false,4,29,1843,37.3,7 +UD10435,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-25,2025-06-23,3,false,3,23,1478,37.9,5 +UD10436,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-26,2025-06-23,4,false,2,19,1314,37.3,4 +UD10437,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-27,2025-06-23,5,false,3,19,1383,38.4,5 +UD10438,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-28,2025-06-23,6,true,2,10,439,38.5,2 +UD10439,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,8,380,37.4,2 +UD10440,W2057,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-core,prod,active,true,2025-06-30,2025-06-30,1,false,3,20,1123,36.0,3 +UD10441,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-01,2025-05-26,0,true,1,8,581,43.3,2 +UD10442,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-02,2025-06-02,1,false,1,15,708,43.1,2 +UD10443,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-03,2025-06-02,2,false,3,24,1760,43.7,5 +UD10444,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-04,2025-06-02,3,false,2,18,1019,42.8,3 +UD10445,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-05,2025-06-02,4,false,1,16,702,43.5,2 +UD10446,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-06,2025-06-02,5,false,3,20,1138,44.4,4 +UD10447,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-07,2025-06-02,6,true,1,8,430,43.5,1 +UD10448,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-08,2025-06-02,0,true,2,9,410,44.3,2 +UD10449,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-09,2025-06-09,1,false,2,19,1173,44.2,4 +UD10450,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-10,2025-06-09,2,false,2,19,1309,43.4,4 +UD10451,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-11,2025-06-09,3,false,1,17,1220,44.9,2 +UD10452,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-12,2025-06-09,4,false,1,16,819,45.4,4 +UD10453,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-13,2025-06-09,5,false,3,19,978,45.4,3 +UD10454,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-14,2025-06-09,6,true,1,8,471,44.6,2 +UD10455,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-15,2025-06-09,0,true,3,10,756,44.8,2 +UD10456,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-16,2025-06-16,1,false,2,17,1024,44.3,2 +UD10457,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-17,2025-06-16,2,false,3,23,1351,45.5,4 +UD10458,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-18,2025-06-16,3,false,1,16,791,45.2,3 +UD10459,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-19,2025-06-16,4,false,2,18,1042,44.5,3 +UD10460,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-20,2025-06-16,5,false,1,14,883,45.2,2 +UD10461,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-21,2025-06-16,6,true,2,9,669,45.0,2 +UD10462,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-22,2025-06-16,0,true,1,7,476,45.9,1 +UD10463,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-23,2025-06-23,1,false,1,14,748,46.0,2 +UD10464,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-24,2025-06-23,2,false,3,25,1364,46.7,4 +UD10465,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-25,2025-06-23,3,false,2,20,945,47.8,4 +UD10466,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-26,2025-06-23,4,false,1,15,697,45.6,2 +UD10467,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-27,2025-06-23,5,false,1,14,965,48.3,2 +UD10468,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-28,2025-06-23,6,true,2,10,731,45.3,1 +UD10469,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-29,2025-06-23,0,true,1,8,437,46.3,1 +UD10470,W2058,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-ops,prod,active,false,2025-06-30,2025-06-30,1,false,1,14,626,46.0,3 +UD10471,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-01,2025-05-26,0,true,2,10,471,36.8,1 +UD10472,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-02,2025-06-02,1,false,1,15,890,36.8,3 +UD10473,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-03,2025-06-02,2,false,1,15,1075,37.8,4 +UD10474,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-04,2025-06-02,3,false,1,15,864,37.5,2 +UD10475,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-05,2025-06-02,4,false,2,18,1044,37.4,3 +UD10476,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-06,2025-06-02,5,false,1,14,716,38.3,2 +UD10477,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-07,2025-06-02,6,true,1,8,436,37.9,2 +UD10478,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-08,2025-06-02,0,true,2,9,564,37.6,1 +UD10479,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-09,2025-06-09,1,false,1,15,1070,38.3,3 +UD10480,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-10,2025-06-09,2,false,1,17,1137,38.2,4 +UD10481,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-11,2025-06-09,3,false,1,16,1076,38.8,2 +UD10482,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-12,2025-06-09,4,false,2,20,1462,38.9,4 +UD10483,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-13,2025-06-09,5,false,1,14,976,39.3,2 +UD10484,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-14,2025-06-09,6,true,1,7,503,38.3,1 +UD10485,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-15,2025-06-09,0,true,2,9,511,39.0,1 +UD10486,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-16,2025-06-16,1,false,1,15,734,39.6,3 +UD10487,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-17,2025-06-16,2,false,1,15,887,40.3,2 +UD10488,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-18,2025-06-16,3,false,2,20,1178,38.8,3 +UD10489,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-19,2025-06-16,4,false,2,19,1396,39.7,3 +UD10490,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-20,2025-06-16,5,false,1,14,857,40.8,3 +UD10491,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-21,2025-06-16,6,true,1,8,576,39.1,2 +UD10492,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-22,2025-06-16,0,true,1,8,528,39.5,1 +UD10493,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-23,2025-06-23,1,false,1,15,672,40.5,2 +UD10494,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-24,2025-06-23,2,false,2,21,1231,40.6,4 +UD10495,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-25,2025-06-23,3,false,1,17,723,40.5,4 +UD10496,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-26,2025-06-23,4,false,2,17,836,40.2,2 +UD10497,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-27,2025-06-23,5,false,1,15,983,42.2,2 +UD10498,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-28,2025-06-23,6,true,1,8,583,41.6,2 +UD10499,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-29,2025-06-23,0,true,1,8,385,39.3,1 +UD10500,W2059,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-finance,prod,active,false,2025-06-30,2025-06-30,1,false,2,18,914,42.0,3 +UD10501,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-01,2025-05-26,0,true,1,8,549,38.7,1 +UD10502,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-02,2025-06-02,1,false,2,16,1091,38.3,4 +UD10503,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-03,2025-06-02,2,false,2,21,1290,38.1,5 +UD10504,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-04,2025-06-02,3,false,1,17,721,38.3,3 +UD10505,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-05,2025-06-02,4,false,2,19,1131,38.5,5 +UD10506,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-06,2025-06-02,5,false,1,15,872,38.4,2 +UD10507,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-07,2025-06-02,6,true,1,8,375,39.4,1 +UD10508,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-08,2025-06-02,0,true,2,9,569,38.8,2 +UD10509,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-09,2025-06-09,1,false,1,14,1010,39.6,3 +UD10510,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-10,2025-06-09,2,false,1,17,1213,39.6,3 +UD10511,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-11,2025-06-09,3,false,2,20,1270,38.6,3 +UD10512,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-12,2025-06-09,4,false,1,15,618,41.0,2 +UD10513,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-13,2025-06-09,5,false,1,15,886,40.4,2 +UD10514,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-14,2025-06-09,6,true,1,8,503,41.2,1 +UD10515,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-15,2025-06-09,0,true,1,8,440,39.6,2 +UD10516,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-16,2025-06-16,1,false,2,18,780,40.0,3 +UD10517,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-17,2025-06-16,2,false,1,17,789,40.8,3 +UD10518,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-18,2025-06-16,3,false,2,21,1543,39.6,4 +UD10519,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-19,2025-06-16,4,false,2,18,1136,41.3,4 +UD10520,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-20,2025-06-16,5,false,1,14,588,40.5,4 +UD10521,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-21,2025-06-16,6,true,2,10,467,42.3,1 +UD10522,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-22,2025-06-16,0,true,1,8,546,42.2,2 +UD10523,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-23,2025-06-23,1,false,2,16,1153,41.7,3 +UD10524,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-24,2025-06-23,2,false,1,17,934,41.6,5 +UD10525,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-25,2025-06-23,3,false,2,18,1289,40.7,5 +UD10526,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-26,2025-06-23,4,false,1,15,1025,40.2,3 +UD10527,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-27,2025-06-23,5,false,2,16,996,41.9,4 +UD10528,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-28,2025-06-23,6,true,1,8,594,41.1,1 +UD10529,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-29,2025-06-23,0,true,1,7,456,40.5,1 +UD10530,W2060,A1030,Northwind Analytics,financial_services,enterprise,EMEA,UK,northwind-marketing,prod,active,false,2025-06-30,2025-06-30,1,false,1,15,1078,40.6,3 +UD10531,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,6,288,36.7,2 +UD10532,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-02,2025-06-02,1,false,1,10,500,36.0,2 +UD10533,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-03,2025-06-02,2,false,2,15,925,37.2,3 +UD10534,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-04,2025-06-02,3,false,1,11,652,36.6,1 +UD10535,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-05,2025-06-02,4,false,1,11,674,37.0,2 +UD10536,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-06,2025-06-02,5,false,2,13,701,37.0,2 +UD10537,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-07,2025-06-02,6,true,2,7,481,37.1,1 +UD10538,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,5,219,36.6,1 +UD10539,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-09,2025-06-09,1,false,1,9,665,37.4,1 +UD10540,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-10,2025-06-09,2,false,2,14,883,38.6,2 +UD10541,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-11,2025-06-09,3,false,2,14,942,36.7,4 +UD10542,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-12,2025-06-09,4,false,2,13,777,37.1,4 +UD10543,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-13,2025-06-09,5,false,2,13,775,37.3,2 +UD10544,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-14,2025-06-09,6,true,2,6,447,38.0,1 +UD10545,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,5,240,37.3,1 +UD10546,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-16,2025-06-16,1,false,1,9,665,38.4,1 +UD10547,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-17,2025-06-16,2,false,1,11,647,38.9,2 +UD10548,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-18,2025-06-16,3,false,2,13,594,38.5,3 +UD10549,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-19,2025-06-16,4,false,2,13,681,39.5,2 +UD10550,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-20,2025-06-16,5,false,2,13,601,40.2,2 +UD10551,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-21,2025-06-16,6,true,1,6,385,40.4,1 +UD10552,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-22,2025-06-16,0,true,2,7,320,39.8,1 +UD10553,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-23,2025-06-23,1,false,2,12,620,41.0,2 +UD10554,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-24,2025-06-23,2,false,1,11,721,40.4,3 +UD10555,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-25,2025-06-23,3,false,2,14,800,39.4,3 +UD10556,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-26,2025-06-23,4,false,2,14,664,40.6,4 +UD10557,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-27,2025-06-23,5,false,1,10,656,40.6,2 +UD10558,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-28,2025-06-23,6,true,2,7,366,40.7,2 +UD10559,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,6,376,41.6,2 +UD10560,W2061,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-core,prod,active,true,2025-06-30,2025-06-30,1,false,2,14,769,40.5,2 +UD10561,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-01,2025-05-26,0,true,1,5,276,24.6,1 +UD10562,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-02,2025-06-02,1,false,3,14,1018,24.4,4 +UD10563,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-03,2025-06-02,2,false,3,15,791,24.8,4 +UD10564,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-04,2025-06-02,3,false,3,17,1129,24.7,3 +UD10565,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-05,2025-06-02,4,false,3,16,916,24.6,2 +UD10566,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-06,2025-06-02,5,false,2,14,776,24.9,4 +UD10567,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-07,2025-06-02,6,true,1,5,319,24.8,1 +UD10568,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-08,2025-06-02,0,true,2,6,396,25.0,1 +UD10569,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-09,2025-06-09,1,false,4,21,1021,26.2,4 +UD10570,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-10,2025-06-09,2,false,3,16,756,25.0,3 +UD10571,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-11,2025-06-09,3,false,4,20,1158,24.8,3 +UD10572,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-12,2025-06-09,4,false,2,15,919,25.5,3 +UD10573,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-13,2025-06-09,5,false,4,20,877,25.6,5 +UD10574,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-14,2025-06-09,6,true,1,5,275,26.2,1 +UD10575,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-15,2025-06-09,0,true,2,7,392,26.3,2 +UD10576,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-16,2025-06-16,1,false,4,18,1100,27.1,3 +UD10577,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-17,2025-06-16,2,false,2,16,734,26.1,4 +UD10578,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-18,2025-06-16,3,false,3,16,765,27.3,3 +UD10579,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-19,2025-06-16,4,false,4,17,791,27.4,3 +UD10580,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-20,2025-06-16,5,false,2,14,856,27.8,2 +UD10581,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-21,2025-06-16,6,true,3,10,582,28.8,2 +UD10582,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-22,2025-06-16,0,true,3,8,435,25.9,2 +UD10583,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-23,2025-06-23,1,false,4,18,891,25.7,4 +UD10584,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-24,2025-06-23,2,false,2,13,649,26.9,3 +UD10585,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-25,2025-06-23,3,false,1,10,426,26.6,2 +UD10586,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-26,2025-06-23,4,false,3,16,779,27.7,4 +UD10587,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-27,2025-06-23,5,false,3,14,947,27.7,2 +UD10588,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-28,2025-06-23,6,true,2,8,566,26.4,2 +UD10589,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-29,2025-06-23,0,true,1,6,296,28.6,1 +UD10590,W2062,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-ops,prod,active,false,2025-06-30,2025-06-30,1,false,3,16,1095,29.1,3 +UD10591,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-01,2025-05-26,0,true,1,5,217,27.4,1 +UD10592,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-02,2025-06-02,1,false,2,14,906,26.8,3 +UD10593,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-03,2025-06-02,2,false,3,21,1368,27.3,5 +UD10594,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-04,2025-06-02,3,false,3,19,839,27.6,4 +UD10595,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-05,2025-06-02,4,false,4,21,1227,27.8,5 +UD10596,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-06,2025-06-02,5,false,3,14,719,27.9,3 +UD10597,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-07,2025-06-02,6,true,2,7,403,28.5,1 +UD10598,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-08,2025-06-02,0,true,1,5,327,27.7,1 +UD10599,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-09,2025-06-09,1,false,4,18,1159,28.8,3 +UD10600,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-10,2025-06-09,2,false,2,14,621,29.0,2 +UD10601,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-11,2025-06-09,3,false,1,12,581,29.4,2 +UD10602,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-12,2025-06-09,4,false,3,17,1111,29.6,2 +UD10603,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-13,2025-06-09,5,false,2,13,802,29.6,2 +UD10604,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-14,2025-06-09,6,true,1,6,402,28.8,1 +UD10605,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-15,2025-06-09,0,true,2,8,483,28.4,2 +UD10606,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-16,2025-06-16,1,false,4,22,1036,29.0,5 +UD10607,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-17,2025-06-16,2,false,1,11,574,29.8,2 +UD10608,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-18,2025-06-16,3,false,3,20,981,29.9,3 +UD10609,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-19,2025-06-16,4,false,2,13,949,29.6,2 +UD10610,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-20,2025-06-16,5,false,4,18,1014,30.8,4 +UD10611,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-21,2025-06-16,6,true,1,5,299,29.8,1 +UD10612,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-22,2025-06-16,0,true,3,8,471,29.0,2 +UD10613,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-23,2025-06-23,1,false,2,14,850,31.5,3 +UD10614,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-24,2025-06-23,2,false,4,24,1125,31.4,6 +UD10615,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-25,2025-06-23,3,false,3,20,1305,30.3,5 +UD10616,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-26,2025-06-23,4,false,3,17,1048,30.2,3 +UD10617,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-27,2025-06-23,5,false,2,12,550,31.1,2 +UD10618,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-28,2025-06-23,6,true,1,5,247,32.3,1 +UD10619,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-29,2025-06-23,0,true,2,8,528,31.6,1 +UD10620,W2063,A1031,Helio Holdings,healthcare,mid_market,APAC,AU,helio-finance,prod,active,false,2025-06-30,2025-06-30,1,false,3,16,1135,29.6,3 +UD10621,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-01,2025-05-26,0,true,2,6,321,33.1,1 +UD10622,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-02,2025-06-02,1,false,5,25,1851,34.1,4 +UD10623,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-03,2025-06-02,2,false,5,28,1829,34.2,5 +UD10624,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-04,2025-06-02,3,false,3,20,1158,34.0,4 +UD10625,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-05,2025-06-02,4,false,4,18,865,34.9,4 +UD10626,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-06,2025-06-02,5,false,4,16,1226,34.9,2 +UD10627,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-07,2025-06-02,6,true,4,9,698,34.3,2 +UD10628,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-08,2025-06-02,0,true,2,8,556,34.5,2 +UD10629,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-09,2025-06-09,1,false,4,21,1365,35.1,4 +UD10630,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-10,2025-06-09,2,false,6,30,1886,35.1,4 +UD10631,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-11,2025-06-09,3,false,4,18,980,35.3,3 +UD10632,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-12,2025-06-09,4,false,5,27,1268,35.0,5 +UD10633,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-13,2025-06-09,5,false,5,25,1166,34.5,4 +UD10634,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-14,2025-06-09,6,true,4,12,918,35.6,3 +UD10635,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-15,2025-06-09,0,true,4,9,701,34.7,2 +UD10636,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-16,2025-06-16,1,false,6,27,1969,36.0,3 +UD10637,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-17,2025-06-16,2,false,6,31,1916,36.6,5 +UD10638,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-18,2025-06-16,3,false,5,21,961,35.2,4 +UD10639,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-19,2025-06-16,4,false,5,19,975,35.7,4 +UD10640,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-20,2025-06-16,5,false,4,20,1173,35.9,3 +UD10641,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,7,337,36.7,1 +UD10642,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,9,655,36.0,2 +UD10643,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-23,2025-06-23,1,false,5,19,1132,37.2,5 +UD10644,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-24,2025-06-23,2,false,5,25,1653,36.2,3 +UD10645,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-25,2025-06-23,3,false,4,25,1401,38.4,3 +UD10646,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-26,2025-06-23,4,false,5,23,1627,37.0,5 +UD10647,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-27,2025-06-23,5,false,4,17,975,36.5,3 +UD10648,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-28,2025-06-23,6,true,2,8,494,36.6,2 +UD10649,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-29,2025-06-23,0,true,2,7,389,38.2,1 +UD10650,W2066,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-core,prod,active,true,2025-06-30,2025-06-30,1,false,6,30,1860,38.3,4 +UD10651,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-01,2025-05-26,0,true,3,8,498,20.3,2 +UD10652,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-02,2025-06-02,1,false,4,18,1265,20.5,4 +UD10653,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-03,2025-06-02,2,false,7,25,1838,20.1,5 +UD10654,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-04,2025-06-02,3,false,5,29,1669,20.6,6 +UD10655,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-05,2025-06-02,4,false,6,23,1258,21.4,5 +UD10656,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-06,2025-06-02,5,false,4,16,977,21.2,4 +UD10657,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-07,2025-06-02,6,true,2,7,503,20.9,2 +UD10658,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-08,2025-06-02,0,true,5,10,733,20.9,3 +UD10659,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-09,2025-06-09,1,false,6,27,1320,21.4,5 +UD10660,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-10,2025-06-09,2,false,6,31,1449,21.6,5 +UD10661,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-11,2025-06-09,3,false,6,28,1676,21.0,6 +UD10662,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-12,2025-06-09,4,false,4,23,1085,20.8,6 +UD10663,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-13,2025-06-09,5,false,4,18,953,21.9,2 +UD10664,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-14,2025-06-09,6,true,4,10,744,23.1,1 +UD10665,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-15,2025-06-09,0,true,4,12,832,21.7,3 +UD10666,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-16,2025-06-16,1,false,6,21,1193,22.5,4 +UD10667,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-17,2025-06-16,2,false,6,27,1208,23.1,6 +UD10668,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-18,2025-06-16,3,false,5,23,1197,22.0,3 +UD10669,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-19,2025-06-16,4,false,7,34,2523,23.8,8 +UD10670,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-20,2025-06-16,5,false,5,22,1102,23.0,3 +UD10671,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-21,2025-06-16,6,true,2,7,541,23.6,1 +UD10672,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-22,2025-06-16,0,true,3,9,538,23.8,2 +UD10673,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-23,2025-06-23,1,false,6,21,1595,22.5,3 +UD10674,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-24,2025-06-23,2,false,5,28,1328,22.2,4 +UD10675,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-25,2025-06-23,3,false,5,25,1245,23.0,4 +UD10676,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-26,2025-06-23,4,false,5,24,1710,22.8,5 +UD10677,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-27,2025-06-23,5,false,5,22,1022,22.7,4 +UD10678,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-28,2025-06-23,6,true,4,12,702,25.9,3 +UD10679,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-29,2025-06-23,0,true,5,12,684,25.8,1 +UD10680,W2067,A1033,Lighthouse Global,logistics,mid_market,NA,CA,lighthouse-ops,prod,active,false,2025-06-30,2025-06-30,1,false,5,26,1926,25.5,5 +UD10681,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-01,2025-05-26,0,true,3,6,375,15.5,1 +UD10682,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-02,2025-06-02,1,false,2,11,711,14.5,1 +UD10683,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-03,2025-06-02,2,false,4,19,908,15.5,3 +UD10684,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-04,2025-06-02,3,false,3,14,613,14.7,3 +UD10685,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-05,2025-06-02,4,false,2,12,702,16.0,2 +UD10686,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-06,2025-06-02,5,false,1,7,459,15.8,1 +UD10687,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-07,2025-06-02,6,true,2,5,335,16.5,1 +UD10688,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,3,209,16.1,1 +UD10689,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-09,2025-06-09,1,false,2,10,601,16.7,2 +UD10690,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-10,2025-06-09,2,false,4,22,1061,17.0,4 +UD10691,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-11,2025-06-09,3,false,4,15,935,17.3,3 +UD10692,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-12,2025-06-09,4,false,1,8,343,15.9,2 +UD10693,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-13,2025-06-09,5,false,2,9,514,16.8,1 +UD10694,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-14,2025-06-09,6,true,3,6,492,17.0,1 +UD10695,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-15,2025-06-09,0,true,3,8,525,17.9,2 +UD10696,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-16,2025-06-16,1,false,4,19,1366,17.5,5 +UD10697,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-17,2025-06-16,2,false,4,15,1150,18.2,3 +UD10698,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-18,2025-06-16,3,false,3,12,771,17.0,2 +UD10699,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-19,2025-06-16,4,false,3,16,732,17.2,3 +UD10700,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-20,2025-06-16,5,false,3,14,824,17.9,3 +UD10701,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,5,371,17.9,1 +UD10702,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-22,2025-06-16,0,true,2,5,385,18.4,1 +UD10703,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-23,2025-06-23,1,false,2,9,552,19.4,1 +UD10704,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-24,2025-06-23,2,false,3,14,963,18.6,3 +UD10705,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-25,2025-06-23,3,false,3,13,752,18.6,3 +UD10706,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-26,2025-06-23,4,false,3,15,865,18.8,4 +UD10707,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-27,2025-06-23,5,false,2,9,663,19.5,2 +UD10708,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-28,2025-06-23,6,true,2,5,332,17.7,1 +UD10709,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,4,239,18.7,1 +UD10710,W2068,A1034,Helio Partners,travel,smb,NA,CA,helio-core,prod,active,true,2025-06-30,2025-06-30,1,false,4,15,678,20.8,3 +UD10711,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-01,2025-05-26,0,true,0,2,52,12.5,0 +UD10712,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-02,2025-06-02,1,false,1,8,341,12.2,1 +UD10713,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-03,2025-06-02,2,false,0,4,148,12.2,1 +UD10714,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-04,2025-06-02,3,false,2,11,399,12.9,2 +UD10715,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-05,2025-06-02,4,false,1,7,281,12.0,2 +UD10716,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-06,2025-06-02,5,false,0,4,152,12.6,1 +UD10717,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-07,2025-06-02,6,true,1,4,195,13.1,1 +UD10718,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-08,2025-06-02,0,true,1,3,94,13.1,0 +UD10719,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-09,2025-06-09,1,false,1,7,277,12.7,2 +UD10720,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-10,2025-06-09,2,false,0,4,148,12.4,1 +UD10721,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-11,2025-06-09,3,false,0,4,167,12.9,1 +UD10722,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-12,2025-06-09,4,false,0,4,140,13.7,1 +UD10723,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-13,2025-06-09,5,false,2,11,448,13.2,3 +UD10724,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-14,2025-06-09,6,true,0,2,89,13.9,0 +UD10725,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-15,2025-06-09,0,true,2,6,274,13.4,1 +UD10726,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-16,2025-06-16,1,false,1,7,273,15.0,2 +UD10727,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-17,2025-06-16,2,false,0,4,144,13.8,1 +UD10728,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-18,2025-06-16,3,false,0,4,119,14.5,1 +UD10729,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-19,2025-06-16,4,false,2,12,489,14.9,2 +UD10730,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-20,2025-06-16,5,false,1,8,295,15.4,2 +UD10731,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-21,2025-06-16,6,true,1,4,167,16.0,1 +UD10732,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-22,2025-06-16,0,true,2,5,253,15.8,1 +UD10733,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-23,2025-06-23,1,false,0,4,137,14.7,1 +UD10734,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-24,2025-06-23,2,false,2,11,334,16.1,3 +UD10735,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-25,2025-06-23,3,false,1,8,319,15.3,2 +UD10736,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-26,2025-06-23,4,false,2,11,498,13.5,3 +UD10737,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-27,2025-06-23,5,false,0,4,128,16.4,1 +UD10738,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-28,2025-06-23,6,true,0,2,84,13.9,0 +UD10739,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-29,2025-06-23,0,true,2,6,200,14.3,1 +UD10740,W2069,A1034,Helio Partners,travel,smb,NA,CA,helio-ops,sandbox,active,false,2025-06-30,2025-06-30,1,false,2,11,493,16.1,3 +UD10741,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-01,2025-05-26,0,true,3,9,484,24.4,1 +UD10742,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-02,2025-06-02,1,false,5,21,1164,25.3,5 +UD10743,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-03,2025-06-02,2,false,4,20,1292,24.8,3 +UD10744,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-04,2025-06-02,3,false,4,18,1321,25.7,4 +UD10745,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-05,2025-06-02,4,false,5,26,1755,26.0,4 +UD10746,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-06,2025-06-02,5,false,3,17,1229,25.1,3 +UD10747,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-07,2025-06-02,6,true,2,8,396,26.2,2 +UD10748,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-08,2025-06-02,0,true,2,7,470,26.6,1 +UD10749,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-09,2025-06-09,1,false,5,22,1317,26.1,5 +UD10750,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-10,2025-06-09,2,false,4,20,911,26.2,3 +UD10751,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-11,2025-06-09,3,false,5,29,1304,25.5,6 +UD10752,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-12,2025-06-09,4,false,6,24,1712,26.5,6 +UD10753,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-13,2025-06-09,5,false,5,26,1470,26.6,4 +UD10754,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-14,2025-06-09,6,true,3,8,440,26.6,2 +UD10755,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-15,2025-06-09,0,true,3,10,575,27.0,3 +UD10756,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-16,2025-06-16,1,false,4,18,1305,26.3,4 +UD10757,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-17,2025-06-16,2,false,5,25,1719,26.6,5 +UD10758,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-18,2025-06-16,3,false,6,27,1380,27.4,3 +UD10759,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-19,2025-06-16,4,false,6,31,1937,28.3,6 +UD10760,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-20,2025-06-16,5,false,3,15,996,28.5,3 +UD10761,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-21,2025-06-16,6,true,4,9,636,28.2,2 +UD10762,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-22,2025-06-16,0,true,2,6,426,27.0,1 +UD10763,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-23,2025-06-23,1,false,6,25,1126,28.5,3 +UD10764,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-24,2025-06-23,2,false,4,19,911,28.1,3 +UD10765,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-25,2025-06-23,3,false,3,19,1144,28.8,3 +UD10766,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-26,2025-06-23,4,false,4,19,1052,27.7,4 +UD10767,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-27,2025-06-23,5,false,4,18,1132,29.5,3 +UD10768,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-28,2025-06-23,6,true,2,8,406,28.0,2 +UD10769,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-29,2025-06-23,0,true,2,8,586,29.9,2 +UD10770,W2070,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-core,prod,active,true,2025-06-30,2025-06-30,1,false,5,22,1449,27.0,3 +UD10771,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-01,2025-05-26,0,true,2,8,326,18.4,1 +UD10772,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-02,2025-06-02,1,false,0,7,298,18.6,1 +UD10773,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-03,2025-06-02,2,false,2,15,626,18.7,2 +UD10774,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-04,2025-06-02,3,false,0,8,263,19.0,2 +UD10775,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-05,2025-06-02,4,false,2,13,479,18.5,3 +UD10776,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-06,2025-06-02,5,false,2,13,467,19.0,3 +UD10777,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-07,2025-06-02,6,true,2,6,284,18.2,1 +UD10778,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-08,2025-06-02,0,true,2,6,191,19.4,1 +UD10779,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-09,2025-06-09,1,false,1,10,266,19.4,2 +UD10780,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-10,2025-06-09,2,false,2,13,433,19.5,2 +UD10781,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-11,2025-06-09,3,false,2,13,349,20.1,2 +UD10782,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-12,2025-06-09,4,false,2,13,442,19.8,3 +UD10783,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-13,2025-06-09,5,false,0,7,246,19.5,2 +UD10784,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-14,2025-06-09,6,true,1,5,144,20.2,1 +UD10785,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-15,2025-06-09,0,true,0,4,144,18.8,1 +UD10786,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-16,2025-06-16,1,false,2,12,523,19.9,3 +UD10787,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-17,2025-06-16,2,false,2,13,552,19.5,3 +UD10788,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-18,2025-06-16,3,false,1,11,286,20.7,3 +UD10789,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-19,2025-06-16,4,false,2,14,662,21.2,3 +UD10790,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-20,2025-06-16,5,false,1,10,395,20.1,1 +UD10791,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-21,2025-06-16,6,true,0,4,157,19.3,1 +UD10792,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-22,2025-06-16,0,true,0,4,118,21.6,0 +UD10793,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-23,2025-06-23,1,false,2,13,512,19.7,2 +UD10794,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-24,2025-06-23,2,false,1,12,530,20.9,2 +UD10795,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-25,2025-06-23,3,false,2,14,646,21.1,3 +UD10796,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-26,2025-06-23,4,false,1,10,283,20.5,1 +UD10797,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-27,2025-06-23,5,false,1,10,429,22.5,2 +UD10798,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-28,2025-06-23,6,true,1,6,191,20.8,1 +UD10799,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-29,2025-06-23,0,true,2,7,314,22.7,1 +UD10800,W2071,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-ops,sandbox,active,false,2025-06-30,2025-06-30,1,false,1,10,300,23.3,2 +UD10801,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-01,2025-05-26,0,true,1,6,296,36.9,2 +UD10802,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-02,2025-06-02,1,false,2,14,722,37.3,2 +UD10803,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-03,2025-06-02,2,false,1,11,446,36.5,3 +UD10804,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-04,2025-06-02,3,false,1,10,505,36.6,1 +UD10805,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-05,2025-06-02,4,false,1,10,538,37.1,3 +UD10806,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-06,2025-06-02,5,false,1,10,685,37.1,3 +UD10807,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-07,2025-06-02,6,true,1,5,294,37.0,1 +UD10808,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-08,2025-06-02,0,true,2,6,330,37.6,2 +UD10809,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-09,2025-06-09,1,false,1,10,635,37.1,3 +UD10810,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-10,2025-06-09,2,false,2,13,954,38.5,3 +UD10811,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-11,2025-06-09,3,false,1,12,636,37.9,2 +UD10812,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-12,2025-06-09,4,false,1,10,716,37.2,2 +UD10813,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-13,2025-06-09,5,false,1,10,500,37.4,1 +UD10814,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-14,2025-06-09,6,true,1,6,406,39.3,2 +UD10815,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-15,2025-06-09,0,true,1,6,357,39.4,1 +UD10816,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-16,2025-06-16,1,false,1,10,702,38.8,2 +UD10817,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-17,2025-06-16,2,false,1,12,537,38.3,2 +UD10818,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-18,2025-06-16,3,false,1,11,597,38.5,2 +UD10819,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-19,2025-06-16,4,false,2,15,1063,37.5,2 +UD10820,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-20,2025-06-16,5,false,2,14,983,39.3,2 +UD10821,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-21,2025-06-16,6,true,1,6,286,39.9,2 +UD10822,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-22,2025-06-16,0,true,1,5,358,39.2,1 +UD10823,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-23,2025-06-23,1,false,1,10,592,38.7,3 +UD10824,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-24,2025-06-23,2,false,1,11,660,40.2,2 +UD10825,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-25,2025-06-23,3,false,2,13,565,40.9,2 +UD10826,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-26,2025-06-23,4,false,1,11,572,41.3,2 +UD10827,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-27,2025-06-23,5,false,1,11,516,42.0,2 +UD10828,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-28,2025-06-23,6,true,1,6,318,41.0,1 +UD10829,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-29,2025-06-23,0,true,1,6,301,41.3,1 +UD10830,W2072,A1035,Bright Retail,retail,mid_market,EMEA,UK,bright-finance,prod,active,false,2025-06-30,2025-06-30,1,false,1,10,573,40.0,3 +UD10831,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-01,2025-05-26,0,true,3,12,745,61.6,3 +UD10832,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-02,2025-06-02,1,false,6,27,1735,61.9,7 +UD10833,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-03,2025-06-02,2,false,4,26,1323,62.6,4 +UD10834,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-04,2025-06-02,3,false,5,33,2066,63.1,8 +UD10835,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-05,2025-06-02,4,false,6,35,2517,62.3,8 +UD10836,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-06,2025-06-02,5,false,4,21,1459,62.5,3 +UD10837,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-07,2025-06-02,6,true,3,11,525,63.0,2 +UD10838,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-08,2025-06-02,0,true,2,9,455,62.3,2 +UD10839,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-09,2025-06-09,1,false,6,30,1803,63.7,7 +UD10840,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-10,2025-06-09,2,false,5,29,1860,63.5,6 +UD10841,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-11,2025-06-09,3,false,4,25,1652,63.8,5 +UD10842,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-12,2025-06-09,4,false,4,22,1286,63.5,5 +UD10843,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-13,2025-06-09,5,false,6,25,1425,63.6,4 +UD10844,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-14,2025-06-09,6,true,3,10,593,63.3,1 +UD10845,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-15,2025-06-09,0,true,3,12,914,63.9,2 +UD10846,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-16,2025-06-16,1,false,4,21,1486,63.9,4 +UD10847,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-17,2025-06-16,2,false,6,36,2481,63.6,6 +UD10848,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-18,2025-06-16,3,false,5,29,1522,63.9,4 +UD10849,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-19,2025-06-16,4,false,6,29,1409,65.2,7 +UD10850,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-20,2025-06-16,5,false,4,27,1155,64.8,7 +UD10851,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-21,2025-06-16,6,true,3,12,650,64.9,3 +UD10852,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-22,2025-06-16,0,true,2,10,570,63.6,3 +UD10853,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-23,2025-06-23,1,false,3,22,1120,64.4,5 +UD10854,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-24,2025-06-23,2,false,5,25,1231,63.7,6 +UD10855,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-25,2025-06-23,3,false,4,25,1128,65.2,7 +UD10856,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-26,2025-06-23,4,false,4,27,1722,65.9,6 +UD10857,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-27,2025-06-23,5,false,4,22,1129,66.6,3 +UD10858,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-28,2025-06-23,6,true,3,10,609,66.4,2 +UD10859,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-29,2025-06-23,0,true,4,13,921,65.8,3 +UD10860,W2075,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-core,prod,active,true,2025-06-30,2025-06-30,1,false,4,22,1541,66.6,5 +UD10861,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-01,2025-05-26,0,true,1,8,391,51.1,2 +UD10862,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-02,2025-06-02,1,false,3,19,1035,51.8,3 +UD10863,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-03,2025-06-02,2,false,2,18,915,52.0,5 +UD10864,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-04,2025-06-02,3,false,1,16,692,52.2,3 +UD10865,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-05,2025-06-02,4,false,2,19,1094,52.1,3 +UD10866,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-06,2025-06-02,5,false,1,15,687,53.1,3 +UD10867,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-07,2025-06-02,6,true,1,8,384,52.0,2 +UD10868,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-08,2025-06-02,0,true,1,8,478,52.9,2 +UD10869,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-09,2025-06-09,1,false,2,17,1251,52.8,2 +UD10870,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-10,2025-06-09,2,false,2,21,1272,53.1,3 +UD10871,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-11,2025-06-09,3,false,2,21,1178,52.5,3 +UD10872,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-12,2025-06-09,4,false,2,17,720,53.4,3 +UD10873,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-13,2025-06-09,5,false,2,19,909,52.7,4 +UD10874,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-14,2025-06-09,6,true,2,10,599,53.2,2 +UD10875,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-15,2025-06-09,0,true,1,8,438,53.1,2 +UD10876,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-16,2025-06-16,1,false,1,15,1023,53.3,2 +UD10877,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-17,2025-06-16,2,false,2,18,753,54.7,3 +UD10878,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-18,2025-06-16,3,false,3,24,1739,53.0,6 +UD10879,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-19,2025-06-16,4,false,2,19,776,53.8,4 +UD10880,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-20,2025-06-16,5,false,3,21,1141,54.3,5 +UD10881,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-21,2025-06-16,6,true,2,9,597,55.3,2 +UD10882,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-22,2025-06-16,0,true,3,11,608,56.1,2 +UD10883,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-23,2025-06-23,1,false,3,18,958,54.9,4 +UD10884,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-24,2025-06-23,2,false,3,23,1187,54.1,6 +UD10885,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-25,2025-06-23,3,false,3,24,1334,55.1,5 +UD10886,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-26,2025-06-23,4,false,3,23,1046,56.9,4 +UD10887,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-27,2025-06-23,5,false,3,21,1041,54.9,4 +UD10888,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-28,2025-06-23,6,true,2,10,718,55.4,1 +UD10889,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-29,2025-06-23,0,true,1,8,467,54.5,2 +UD10890,W2076,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-ops,prod,active,false,2025-06-30,2025-06-30,1,false,3,22,1400,54.6,3 +UD10891,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-01,2025-05-26,0,true,0,6,254,32.8,1 +UD10892,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-02,2025-06-02,1,false,1,15,574,33.2,3 +UD10893,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-03,2025-06-02,2,false,1,16,711,33.1,3 +UD10894,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-04,2025-06-02,3,false,1,16,706,33.0,2 +UD10895,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-05,2025-06-02,4,false,0,12,358,33.0,3 +UD10896,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-06,2025-06-02,5,false,1,15,500,33.3,2 +UD10897,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-07,2025-06-02,6,true,0,6,172,33.7,1 +UD10898,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-08,2025-06-02,0,true,1,8,218,34.5,2 +UD10899,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-09,2025-06-09,1,false,1,15,527,33.8,3 +UD10900,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-10,2025-06-09,2,false,0,13,426,34.3,3 +UD10901,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-11,2025-06-09,3,false,2,20,890,34.1,5 +UD10902,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-12,2025-06-09,4,false,3,23,902,34.7,6 +UD10903,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-13,2025-06-09,5,false,2,18,521,33.8,4 +UD10904,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-14,2025-06-09,6,true,2,10,456,35.7,2 +UD10905,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-15,2025-06-09,0,true,1,8,257,33.9,2 +UD10906,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-16,2025-06-16,1,false,1,14,381,34.8,2 +UD10907,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-17,2025-06-16,2,false,0,13,528,34.9,3 +UD10908,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-18,2025-06-16,3,false,0,13,514,35.0,2 +UD10909,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-19,2025-06-16,4,false,1,15,610,34.8,4 +UD10910,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-20,2025-06-16,5,false,1,14,639,35.3,2 +UD10911,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-21,2025-06-16,6,true,0,6,172,36.6,1 +UD10912,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-22,2025-06-16,0,true,0,6,262,36.8,1 +UD10913,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-23,2025-06-23,1,false,1,15,561,34.2,2 +UD10914,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-24,2025-06-23,2,false,1,17,668,36.3,4 +UD10915,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-25,2025-06-23,3,false,2,19,730,35.6,3 +UD10916,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-26,2025-06-23,4,false,1,15,482,36.0,4 +UD10917,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-27,2025-06-23,5,false,1,14,449,35.7,4 +UD10918,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-28,2025-06-23,6,true,1,8,279,35.9,2 +UD10919,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-29,2025-06-23,0,true,1,8,323,38.3,2 +UD10920,W2077,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-finance,sandbox,active,false,2025-06-30,2025-06-30,1,false,0,11,441,37.4,2 +UD10921,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-01,2025-05-26,0,true,0,6,225,29.5,1 +UD10922,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-02,2025-06-02,1,false,0,11,402,30.0,2 +UD10923,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-03,2025-06-02,2,false,0,13,450,30.2,2 +UD10924,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-04,2025-06-02,3,false,0,13,415,29.7,2 +UD10925,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-05,2025-06-02,4,false,0,12,408,30.5,3 +UD10926,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-06,2025-06-02,5,false,0,11,385,30.4,3 +UD10927,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-07,2025-06-02,6,true,2,9,310,30.1,2 +UD10928,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-08,2025-06-02,0,true,1,8,364,30.7,2 +UD10929,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-09,2025-06-09,1,false,2,19,708,31.6,5 +UD10930,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-10,2025-06-09,2,false,1,17,739,30.7,2 +UD10931,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-11,2025-06-09,3,false,0,13,456,30.5,3 +UD10932,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-12,2025-06-09,4,false,0,12,539,31.9,2 +UD10933,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-13,2025-06-09,5,false,0,11,391,31.9,3 +UD10934,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-14,2025-06-09,6,true,1,8,268,32.1,2 +UD10935,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-15,2025-06-09,0,true,1,8,324,33.2,2 +UD10936,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-16,2025-06-16,1,false,1,14,463,32.6,4 +UD10937,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-17,2025-06-16,2,false,1,16,615,31.3,4 +UD10938,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-18,2025-06-16,3,false,1,16,662,32.5,4 +UD10939,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-19,2025-06-16,4,false,0,12,343,33.0,3 +UD10940,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-20,2025-06-16,5,false,0,11,410,33.1,2 +UD10941,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-21,2025-06-16,6,true,1,8,306,33.0,2 +UD10942,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-22,2025-06-16,0,true,0,6,263,32.1,1 +UD10943,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-23,2025-06-23,1,false,2,17,798,32.4,3 +UD10944,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-24,2025-06-23,2,false,0,13,416,31.8,2 +UD10945,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-25,2025-06-23,3,false,0,13,539,32.7,3 +UD10946,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-26,2025-06-23,4,false,2,17,461,35.3,3 +UD10947,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-27,2025-06-23,5,false,1,15,480,33.8,3 +UD10948,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-28,2025-06-23,6,true,0,6,188,34.5,1 +UD10949,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-29,2025-06-23,0,true,2,10,294,33.7,3 +UD10950,W2078,A1037,Lighthouse Network,media,enterprise,EMEA,UK,lighthouse-marketing,sandbox,active,false,2025-06-30,2025-06-30,1,false,0,11,366,35.2,3 +UD10951,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,4,297,22.0,1 +UD10952,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-02,2025-06-02,1,false,1,6,430,22.0,1 +UD10953,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-03,2025-06-02,2,false,1,7,349,21.2,1 +UD10954,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-04,2025-06-02,3,false,1,8,363,22.0,2 +UD10955,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-05,2025-06-02,4,false,1,7,442,22.0,2 +UD10956,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-06,2025-06-02,5,false,1,6,291,22.0,2 +UD10957,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,3,172,22.2,1 +UD10958,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,4,222,21.5,1 +UD10959,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-09,2025-06-09,1,false,1,7,325,22.2,1 +UD10960,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-10,2025-06-09,2,false,1,8,493,22.5,1 +UD10961,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-11,2025-06-09,3,false,1,7,432,22.0,2 +UD10962,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-12,2025-06-09,4,false,1,7,522,23.8,1 +UD10963,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-13,2025-06-09,5,false,1,8,580,23.3,1 +UD10964,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,4,299,22.0,1 +UD10965,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,4,211,23.9,1 +UD10966,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-16,2025-06-16,1,false,1,6,368,22.4,1 +UD10967,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-17,2025-06-16,2,false,1,8,445,24.1,1 +UD10968,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-18,2025-06-16,3,false,1,8,552,23.1,2 +UD10969,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-19,2025-06-16,4,false,1,7,409,24.2,1 +UD10970,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-20,2025-06-16,5,false,1,8,495,23.0,2 +UD10971,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-21,2025-06-16,6,true,1,4,293,23.4,1 +UD10972,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-22,2025-06-16,0,true,1,4,291,23.8,1 +UD10973,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-23,2025-06-23,1,false,1,7,465,24.9,1 +UD10974,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-24,2025-06-23,2,false,1,8,385,23.8,1 +UD10975,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-25,2025-06-23,3,false,1,8,591,23.8,1 +UD10976,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-26,2025-06-23,4,false,1,7,308,25.0,1 +UD10977,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-27,2025-06-23,5,false,1,6,325,23.9,1 +UD10978,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-28,2025-06-23,6,true,1,3,210,25.2,1 +UD10979,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,4,263,24.2,1 +UD10980,W2079,A1038,River Systems,logistics,smb,APAC,AU,river-core,prod,active,true,2025-06-30,2025-06-30,1,false,1,7,385,26.1,1 +UD10981,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-01,2025-05-26,0,true,1,4,254,21.6,1 +UD10982,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-02,2025-06-02,1,false,2,9,654,21.0,2 +UD10983,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-03,2025-06-02,2,false,1,8,469,21.3,1 +UD10984,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-04,2025-06-02,3,false,3,15,855,22.0,4 +UD10985,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-05,2025-06-02,4,false,2,10,592,22.2,2 +UD10986,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-06,2025-06-02,5,false,3,12,914,22.2,3 +UD10987,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-07,2025-06-02,6,true,1,4,206,21.7,1 +UD10988,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-08,2025-06-02,0,true,2,6,415,21.9,1 +UD10989,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-09,2025-06-09,1,false,2,9,601,22.3,2 +UD10990,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-10,2025-06-09,2,false,3,14,848,23.4,2 +UD10991,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-11,2025-06-09,3,false,2,12,838,23.2,3 +UD10992,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-12,2025-06-09,4,false,2,10,518,23.1,1 +UD10993,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-13,2025-06-09,5,false,2,11,580,22.3,2 +UD10994,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-14,2025-06-09,6,true,1,4,177,23.7,1 +UD10995,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-15,2025-06-09,0,true,2,6,287,22.9,2 +UD10996,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-16,2025-06-16,1,false,1,7,424,23.2,2 +UD10997,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-17,2025-06-16,2,false,1,8,530,23.7,2 +UD10998,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-18,2025-06-16,3,false,2,11,616,22.9,3 +UD10999,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-19,2025-06-16,4,false,2,11,814,24.9,3 +UD11000,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-20,2025-06-16,5,false,1,8,382,22.8,2 +UD11001,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-21,2025-06-16,6,true,1,4,275,24.3,1 +UD11002,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-22,2025-06-16,0,true,3,7,550,23.5,2 +UD11003,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-23,2025-06-23,1,false,2,10,724,23.6,2 +UD11004,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-24,2025-06-23,2,false,1,8,592,24.4,1 +UD11005,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-25,2025-06-23,3,false,2,12,662,25.6,3 +UD11006,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-26,2025-06-23,4,false,1,8,370,25.5,1 +UD11007,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-27,2025-06-23,5,false,3,15,720,25.2,2 +UD11008,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-28,2025-06-23,6,true,1,4,223,25.0,1 +UD11009,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-29,2025-06-23,0,true,2,5,277,23.6,1 +UD11010,W2080,A1038,River Systems,logistics,smb,APAC,AU,river-ops,prod,active,false,2025-06-30,2025-06-30,1,false,2,9,662,24.8,1 +UD11011,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-01,2025-05-26,0,true,3,8,444,17.8,2 +UD11012,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-02,2025-06-02,1,false,6,17,1056,18.8,4 +UD11013,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-03,2025-06-02,2,false,5,26,1632,18.6,5 +UD11014,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-04,2025-06-02,3,false,4,19,993,18.5,5 +UD11015,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-05,2025-06-02,4,false,4,18,1036,19.0,4 +UD11016,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-06,2025-06-02,5,false,5,17,1202,19.2,3 +UD11017,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-07,2025-06-02,6,true,3,7,516,18.8,1 +UD11018,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-08,2025-06-02,0,true,2,6,327,19.3,2 +UD11019,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-09,2025-06-09,1,false,4,18,1100,19.2,5 +UD11020,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-10,2025-06-09,2,false,6,21,1038,19.3,5 +UD11021,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-11,2025-06-09,3,false,6,20,1169,20.1,5 +UD11022,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-12,2025-06-09,4,false,4,16,949,19.0,2 +UD11023,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-13,2025-06-09,5,false,4,15,790,19.8,2 +UD11024,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-14,2025-06-09,6,true,4,8,415,20.6,2 +UD11025,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-15,2025-06-09,0,true,2,5,297,21.0,1 +UD11026,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-16,2025-06-16,1,false,4,15,1144,20.6,3 +UD11027,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-17,2025-06-16,2,false,4,19,1113,20.7,3 +UD11028,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-18,2025-06-16,3,false,4,17,952,21.4,4 +UD11029,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-19,2025-06-16,4,false,5,24,1306,21.3,5 +UD11030,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-20,2025-06-16,5,false,6,18,1068,20.5,5 +UD11031,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-21,2025-06-16,6,true,4,8,565,21.8,1 +UD11032,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-22,2025-06-16,0,true,4,9,720,20.3,1 +UD11033,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-23,2025-06-23,1,false,4,16,1017,23.0,2 +UD11034,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-24,2025-06-23,2,false,5,21,1327,22.7,5 +UD11035,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-25,2025-06-23,3,false,6,21,1183,21.1,3 +UD11036,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-26,2025-06-23,4,false,5,20,1067,22.5,3 +UD11037,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-27,2025-06-23,5,false,3,14,784,20.6,3 +UD11038,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-28,2025-06-23,6,true,2,6,425,21.5,1 +UD11039,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-29,2025-06-23,0,true,3,8,526,22.3,2 +UD11040,W2081,A1039,Nova Group,media,smb,EMEA,FR,nova-core,prod,active,true,2025-06-30,2025-06-30,1,false,6,20,1351,22.5,3 +UD11041,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,6,385,36.6,1 +UD11042,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-02,2025-06-02,1,false,2,12,901,36.2,2 +UD11043,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-03,2025-06-02,2,false,3,20,1300,35.7,3 +UD11044,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-04,2025-06-02,3,false,1,11,523,37.1,2 +UD11045,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-05,2025-06-02,4,false,2,12,583,36.0,2 +UD11046,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-06,2025-06-02,5,false,2,14,659,37.4,2 +UD11047,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,6,298,37.2,1 +UD11048,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,6,265,37.2,1 +UD11049,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-09,2025-06-09,1,false,3,18,1288,36.1,3 +UD11050,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-10,2025-06-09,2,false,3,20,1347,37.0,5 +UD11051,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-11,2025-06-09,3,false,2,13,619,37.4,4 +UD11052,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-12,2025-06-09,4,false,2,15,855,37.4,4 +UD11053,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-13,2025-06-09,5,false,1,11,759,37.6,2 +UD11054,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,5,236,37.7,1 +UD11055,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-15,2025-06-09,0,true,2,6,447,37.9,1 +UD11056,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-16,2025-06-16,1,false,2,13,788,39.4,3 +UD11057,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-17,2025-06-16,2,false,3,17,1146,38.5,4 +UD11058,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-18,2025-06-16,3,false,1,12,761,38.0,2 +UD11059,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-19,2025-06-16,4,false,1,10,579,39.4,2 +UD11060,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-20,2025-06-16,5,false,3,17,768,38.3,3 +UD11061,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-21,2025-06-16,6,true,1,5,224,39.1,1 +UD11062,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-22,2025-06-16,0,true,2,7,507,39.5,2 +UD11063,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-23,2025-06-23,1,false,2,14,981,39.9,3 +UD11064,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-24,2025-06-23,2,false,1,12,587,38.9,2 +UD11065,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-25,2025-06-23,3,false,3,20,909,39.3,5 +UD11066,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-26,2025-06-23,4,false,1,9,512,40.9,2 +UD11067,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-27,2025-06-23,5,false,2,14,588,39.6,3 +UD11068,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-28,2025-06-23,6,true,3,8,497,38.8,1 +UD11069,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,5,353,40.0,1 +UD11070,W2082,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-core,prod,active,true,2025-06-30,2025-06-30,1,false,1,9,524,40.2,2 +UD11071,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-01,2025-05-26,0,true,0,4,102,11.4,1 +UD11072,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-02,2025-06-02,1,false,1,10,343,11.3,1 +UD11073,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-03,2025-06-02,2,false,2,14,466,11.8,3 +UD11074,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-04,2025-06-02,3,false,0,8,238,11.1,2 +UD11075,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-05,2025-06-02,4,false,2,13,351,11.4,3 +UD11076,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-06,2025-06-02,5,false,0,7,238,11.6,2 +UD11077,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-07,2025-06-02,6,true,0,4,114,11.9,1 +UD11078,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-08,2025-06-02,0,true,2,7,225,13.1,1 +UD11079,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-09,2025-06-09,1,false,0,7,279,12.3,1 +UD11080,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-10,2025-06-09,2,false,2,13,377,13.0,2 +UD11081,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-11,2025-06-09,3,false,2,14,604,12.1,4 +UD11082,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-12,2025-06-09,4,false,2,12,572,13.1,3 +UD11083,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-13,2025-06-09,5,false,0,7,265,11.9,1 +UD11084,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-14,2025-06-09,6,true,2,8,305,12.4,2 +UD11085,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-15,2025-06-09,0,true,2,7,217,14.0,1 +UD11086,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-16,2025-06-16,1,false,2,14,415,12.9,3 +UD11087,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-17,2025-06-16,2,false,1,12,455,13.4,3 +UD11088,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-18,2025-06-16,3,false,1,12,460,13.3,2 +UD11089,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-19,2025-06-16,4,false,1,9,241,13.4,1 +UD11090,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-20,2025-06-16,5,false,1,9,282,14.6,2 +UD11091,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-21,2025-06-16,6,true,2,7,318,14.7,2 +UD11092,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-22,2025-06-16,0,true,0,4,145,13.2,1 +UD11093,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-23,2025-06-23,1,false,1,10,399,14.5,2 +UD11094,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-24,2025-06-23,2,false,1,12,473,15.1,3 +UD11095,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-25,2025-06-23,3,false,2,15,469,13.6,4 +UD11096,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-26,2025-06-23,4,false,0,7,210,15.8,2 +UD11097,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-27,2025-06-23,5,false,1,11,511,15.7,3 +UD11098,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-28,2025-06-23,6,true,0,4,144,16.7,1 +UD11099,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-29,2025-06-23,0,true,1,6,252,13.6,1 +UD11100,W2083,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-ops,sandbox,active,false,2025-06-30,2025-06-30,1,false,1,9,299,14.4,2 +UD11101,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-01,2025-05-26,0,true,2,8,568,35.3,2 +UD11102,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-02,2025-06-02,1,false,4,16,731,35.8,3 +UD11103,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-03,2025-06-02,2,false,5,23,1507,35.6,3 +UD11104,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-04,2025-06-02,3,false,4,21,1012,35.7,4 +UD11105,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-05,2025-06-02,4,false,3,19,813,35.3,4 +UD11106,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-06,2025-06-02,5,false,5,21,1513,35.8,4 +UD11107,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-07,2025-06-02,6,true,3,9,467,36.8,2 +UD11108,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-08,2025-06-02,0,true,1,5,368,36.7,1 +UD11109,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-09,2025-06-09,1,false,4,22,1581,36.4,3 +UD11110,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-10,2025-06-09,2,false,4,22,1583,36.5,4 +UD11111,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-11,2025-06-09,3,false,4,24,1652,36.9,6 +UD11112,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-12,2025-06-09,4,false,2,13,647,36.4,3 +UD11113,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-13,2025-06-09,5,false,2,13,558,37.8,3 +UD11114,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-14,2025-06-09,6,true,1,5,246,37.7,1 +UD11115,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-15,2025-06-09,0,true,1,6,298,36.5,1 +UD11116,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-16,2025-06-16,1,false,4,16,1152,38.5,4 +UD11117,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-17,2025-06-16,2,false,4,23,975,38.2,3 +UD11118,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-18,2025-06-16,3,false,3,20,1049,36.9,3 +UD11119,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-19,2025-06-16,4,false,3,17,1189,36.9,5 +UD11120,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-20,2025-06-16,5,false,3,18,1089,37.7,5 +UD11121,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-21,2025-06-16,6,true,1,5,310,39.3,1 +UD11122,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-22,2025-06-16,0,true,1,5,373,39.5,1 +UD11123,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-23,2025-06-23,1,false,3,16,1083,37.6,3 +UD11124,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-24,2025-06-23,2,false,2,15,1102,38.6,4 +UD11125,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-25,2025-06-23,3,false,4,18,888,38.2,3 +UD11126,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-26,2025-06-23,4,false,2,15,1075,38.2,3 +UD11127,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-27,2025-06-23,5,false,4,18,1019,38.5,4 +UD11128,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-28,2025-06-23,6,true,2,6,436,39.9,1 +UD11129,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-29,2025-06-23,0,true,3,9,658,39.8,1 +UD11130,W2084,A1040,Harbor Collective,healthcare,mid_market,APAC,SG,harbor-finance,prod,active,false,2025-06-30,2025-06-30,1,false,3,15,846,39.4,4 +UD11131,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-01,2025-05-26,0,true,2,6,277,30.2,1 +UD11132,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-02,2025-06-02,1,false,3,13,706,30.4,3 +UD11133,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-03,2025-06-02,2,false,4,18,1339,30.4,4 +UD11134,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-04,2025-06-02,3,false,6,23,1691,30.8,4 +UD11135,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-05,2025-06-02,4,false,4,20,1267,31.5,3 +UD11136,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-06,2025-06-02,5,false,6,24,1160,31.5,3 +UD11137,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-07,2025-06-02,6,true,2,6,410,31.2,1 +UD11138,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-08,2025-06-02,0,true,2,8,457,32.1,1 +UD11139,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-09,2025-06-09,1,false,5,26,1802,31.5,5 +UD11140,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-10,2025-06-09,2,false,6,24,1244,31.8,6 +UD11141,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-11,2025-06-09,3,false,3,15,687,31.6,3 +UD11142,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-12,2025-06-09,4,false,4,19,867,32.5,4 +UD11143,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-13,2025-06-09,5,false,4,20,863,32.4,4 +UD11144,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-14,2025-06-09,6,true,3,10,773,32.1,1 +UD11145,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-15,2025-06-09,0,true,2,6,299,32.7,1 +UD11146,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-16,2025-06-16,1,false,4,17,826,33.3,4 +UD11147,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-17,2025-06-16,2,false,5,28,1885,33.0,6 +UD11148,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-18,2025-06-16,3,false,4,22,1616,34.4,5 +UD11149,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-19,2025-06-16,4,false,3,19,1300,32.9,4 +UD11150,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-20,2025-06-16,5,false,6,29,1695,34.0,7 +UD11151,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,8,434,32.7,2 +UD11152,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-22,2025-06-16,0,true,2,7,403,32.6,2 +UD11153,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-23,2025-06-23,1,false,4,16,863,34.5,4 +UD11154,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-24,2025-06-23,2,false,5,24,1636,34.5,5 +UD11155,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-25,2025-06-23,3,false,4,23,1199,34.0,6 +UD11156,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-26,2025-06-23,4,false,6,28,1637,34.2,7 +UD11157,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-27,2025-06-23,5,false,4,16,1181,35.5,2 +UD11158,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-28,2025-06-23,6,true,3,9,425,33.8,1 +UD11159,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-29,2025-06-23,0,true,4,10,649,32.6,2 +UD11160,W2085,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-core,prod,active,true,2025-06-30,2025-06-30,1,false,5,21,954,32.4,3 +UD11161,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-01,2025-05-26,0,true,0,4,117,18.0,1 +UD11162,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-02,2025-06-02,1,false,0,7,273,18.2,2 +UD11163,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-03,2025-06-02,2,false,2,13,560,18.6,2 +UD11164,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-04,2025-06-02,3,false,2,16,632,18.0,3 +UD11165,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-05,2025-06-02,4,false,0,7,276,18.5,1 +UD11166,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-06,2025-06-02,5,false,0,7,244,19.1,2 +UD11167,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-07,2025-06-02,6,true,0,4,104,19.5,1 +UD11168,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-08,2025-06-02,0,true,0,4,142,19.4,1 +UD11169,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-09,2025-06-09,1,false,0,7,207,20.0,2 +UD11170,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-10,2025-06-09,2,false,1,11,494,19.5,3 +UD11171,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-11,2025-06-09,3,false,2,13,509,19.6,3 +UD11172,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-12,2025-06-09,4,false,0,7,279,19.2,1 +UD11173,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-13,2025-06-09,5,false,0,7,174,19.9,1 +UD11174,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-14,2025-06-09,6,true,0,4,104,20.4,1 +UD11175,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-15,2025-06-09,0,true,0,4,160,19.6,1 +UD11176,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-16,2025-06-16,1,false,1,9,356,19.8,2 +UD11177,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-17,2025-06-16,2,false,1,12,493,20.2,3 +UD11178,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-18,2025-06-16,3,false,2,13,400,21.8,2 +UD11179,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-19,2025-06-16,4,false,0,7,203,21.5,1 +UD11180,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-20,2025-06-16,5,false,2,12,451,20.7,2 +UD11181,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-21,2025-06-16,6,true,0,4,141,21.7,1 +UD11182,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-22,2025-06-16,0,true,0,4,151,21.7,1 +UD11183,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-23,2025-06-23,1,false,0,7,296,20.8,2 +UD11184,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-24,2025-06-23,2,false,0,8,259,22.0,1 +UD11185,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-25,2025-06-23,3,false,0,8,350,20.8,2 +UD11186,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-26,2025-06-23,4,false,0,7,243,21.1,1 +UD11187,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-27,2025-06-23,5,false,2,11,433,23.5,3 +UD11188,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-28,2025-06-23,6,true,0,4,152,22.4,1 +UD11189,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-29,2025-06-23,0,true,0,4,150,21.6,1 +UD11190,W2086,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-ops,sandbox,active,false,2025-06-30,2025-06-30,1,false,0,7,291,24.2,1 +UD11191,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-01,2025-05-26,0,true,1,6,446,18.1,1 +UD11192,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-02,2025-06-02,1,false,2,14,865,19.2,2 +UD11193,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-03,2025-06-02,2,false,3,18,957,19.3,3 +UD11194,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-04,2025-06-02,3,false,4,24,1323,18.8,5 +UD11195,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-05,2025-06-02,4,false,3,19,1054,19.4,3 +UD11196,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-06,2025-06-02,5,false,2,14,617,19.6,2 +UD11197,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-07,2025-06-02,6,true,3,9,506,19.6,2 +UD11198,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-08,2025-06-02,0,true,3,8,450,19.4,2 +UD11199,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-09,2025-06-09,1,false,3,15,966,19.9,2 +UD11200,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-10,2025-06-09,2,false,2,13,958,20.0,2 +UD11201,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-11,2025-06-09,3,false,4,18,807,20.9,3 +UD11202,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-12,2025-06-09,4,false,2,12,592,20.2,2 +UD11203,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-13,2025-06-09,5,false,3,16,791,20.7,3 +UD11204,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-14,2025-06-09,6,true,1,6,363,20.5,1 +UD11205,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-15,2025-06-09,0,true,2,7,435,21.5,2 +UD11206,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-16,2025-06-16,1,false,1,10,419,20.7,2 +UD11207,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-17,2025-06-16,2,false,3,19,1036,19.7,4 +UD11208,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-18,2025-06-16,3,false,2,14,964,22.2,2 +UD11209,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-19,2025-06-16,4,false,3,19,1078,21.5,3 +UD11210,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-20,2025-06-16,5,false,2,13,640,22.2,4 +UD11211,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-21,2025-06-16,6,true,1,6,373,22.6,1 +UD11212,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-22,2025-06-16,0,true,2,7,337,21.6,2 +UD11213,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-23,2025-06-23,1,false,2,13,579,21.2,2 +UD11214,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-24,2025-06-23,2,false,3,18,1189,21.2,4 +UD11215,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-25,2025-06-23,3,false,4,24,1079,21.4,4 +UD11216,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-26,2025-06-23,4,false,3,16,894,23.4,4 +UD11217,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-27,2025-06-23,5,false,3,18,1149,22.0,2 +UD11218,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-28,2025-06-23,6,true,1,5,352,21.8,1 +UD11219,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-29,2025-06-23,0,true,1,5,293,23.0,1 +UD11220,W2087,A1041,Cedar Logistics,media,mid_market,EMEA,NL,cedar-finance,prod,active,false,2025-06-30,2025-06-30,1,false,2,14,805,22.6,3 +UD11221,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-01,2025-05-26,0,true,3,9,416,25.2,1 +UD11222,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-02,2025-06-02,1,false,5,26,1360,25.9,7 +UD11223,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-03,2025-06-02,2,false,3,21,1226,25.3,4 +UD11224,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-04,2025-06-02,3,false,5,28,1713,26.1,4 +UD11225,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-05,2025-06-02,4,false,4,17,954,25.4,4 +UD11226,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-06,2025-06-02,5,false,5,20,1025,25.7,4 +UD11227,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-07,2025-06-02,6,true,2,7,456,26.1,1 +UD11228,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-08,2025-06-02,0,true,3,9,444,27.0,2 +UD11229,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-09,2025-06-09,1,false,4,17,1166,26.5,4 +UD11230,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-10,2025-06-09,2,false,4,21,1450,26.2,4 +UD11231,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-11,2025-06-09,3,false,4,21,899,25.9,3 +UD11232,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-12,2025-06-09,4,false,5,19,1081,27.5,5 +UD11233,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-13,2025-06-09,5,false,3,15,970,27.6,4 +UD11234,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,5,318,27.8,1 +UD11235,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-15,2025-06-09,0,true,2,7,413,28.3,2 +UD11236,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-16,2025-06-16,1,false,3,14,849,27.0,3 +UD11237,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-17,2025-06-16,2,false,3,18,1234,27.4,4 +UD11238,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-18,2025-06-16,3,false,4,24,1654,28.4,4 +UD11239,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-19,2025-06-16,4,false,3,15,1127,28.0,3 +UD11240,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-20,2025-06-16,5,false,5,19,886,28.7,3 +UD11241,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,7,331,28.7,1 +UD11242,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,8,474,28.2,1 +UD11243,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-23,2025-06-23,1,false,3,17,1096,28.2,2 +UD11244,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-24,2025-06-23,2,false,4,23,1044,29.2,3 +UD11245,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-25,2025-06-23,3,false,3,18,1234,27.6,5 +UD11246,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-26,2025-06-23,4,false,5,25,1190,28.4,5 +UD11247,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-27,2025-06-23,5,false,5,20,922,27.5,3 +UD11248,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-28,2025-06-23,6,true,2,6,296,31.4,1 +UD11249,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,5,377,31.1,1 +UD11250,W2088,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-core,prod,active,true,2025-06-30,2025-06-30,1,false,4,16,1165,30.0,3 +UD11251,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-01,2025-05-26,0,true,0,4,121,17.5,1 +UD11252,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-02,2025-06-02,1,false,0,7,245,16.4,1 +UD11253,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-03,2025-06-02,2,false,0,8,324,16.9,1 +UD11254,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-04,2025-06-02,3,false,2,14,565,17.0,2 +UD11255,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-05,2025-06-02,4,false,2,12,376,17.6,2 +UD11256,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-06,2025-06-02,5,false,2,13,611,17.6,2 +UD11257,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-07,2025-06-02,6,true,1,6,211,18.2,1 +UD11258,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-08,2025-06-02,0,true,2,7,244,17.3,1 +UD11259,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-09,2025-06-09,1,false,1,10,333,18.6,2 +UD11260,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-10,2025-06-09,2,false,1,12,408,18.1,2 +UD11261,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-11,2025-06-09,3,false,3,18,726,18.4,3 +UD11262,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-12,2025-06-09,4,false,0,7,308,17.5,1 +UD11263,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-13,2025-06-09,5,false,1,10,322,19.0,2 +UD11264,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-14,2025-06-09,6,true,2,7,274,18.6,2 +UD11265,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-15,2025-06-09,0,true,0,4,100,18.6,1 +UD11266,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-16,2025-06-16,1,false,0,7,243,20.2,2 +UD11267,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-17,2025-06-16,2,false,1,12,458,20.1,3 +UD11268,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-18,2025-06-16,3,false,1,10,455,17.8,2 +UD11269,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-19,2025-06-16,4,false,1,10,267,19.2,1 +UD11270,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-20,2025-06-16,5,false,1,9,418,19.6,2 +UD11271,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-21,2025-06-16,6,true,0,4,154,19.9,1 +UD11272,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-22,2025-06-16,0,true,2,8,287,19.0,1 +UD11273,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-23,2025-06-23,1,false,2,11,346,18.9,1 +UD11274,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-24,2025-06-23,2,false,3,15,604,21.0,3 +UD11275,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-25,2025-06-23,3,false,1,11,450,21.4,2 +UD11276,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-26,2025-06-23,4,false,2,13,375,20.8,3 +UD11277,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-27,2025-06-23,5,false,2,14,417,20.8,2 +UD11278,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-28,2025-06-23,6,true,2,8,360,22.1,1 +UD11279,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-29,2025-06-23,0,true,0,4,168,19.6,1 +UD11280,W2089,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-ops,sandbox,active,false,2025-06-30,2025-06-30,1,false,1,10,314,20.0,2 +UD11281,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-01,2025-05-26,0,true,2,8,479,30.5,1 +UD11282,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-02,2025-06-02,1,false,1,10,619,30.4,2 +UD11283,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-03,2025-06-02,2,false,2,13,852,30.6,2 +UD11284,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-04,2025-06-02,3,false,3,18,871,31.5,3 +UD11285,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-05,2025-06-02,4,false,2,15,886,30.6,4 +UD11286,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-06,2025-06-02,5,false,3,17,904,31.7,3 +UD11287,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-07,2025-06-02,6,true,2,7,344,32.2,2 +UD11288,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-08,2025-06-02,0,true,3,8,571,31.8,1 +UD11289,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-09,2025-06-09,1,false,3,17,905,31.4,5 +UD11290,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-10,2025-06-09,2,false,1,11,730,31.7,3 +UD11291,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-11,2025-06-09,3,false,1,12,652,32.3,2 +UD11292,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-12,2025-06-09,4,false,2,15,1101,32.6,2 +UD11293,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-13,2025-06-09,5,false,3,18,760,32.6,3 +UD11294,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-14,2025-06-09,6,true,2,7,383,33.6,2 +UD11295,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-15,2025-06-09,0,true,2,7,519,33.0,1 +UD11296,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-16,2025-06-16,1,false,1,10,479,32.1,2 +UD11297,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-17,2025-06-16,2,false,2,16,1177,33.4,4 +UD11298,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-18,2025-06-16,3,false,3,20,1476,32.9,3 +UD11299,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-19,2025-06-16,4,false,3,18,1074,31.8,3 +UD11300,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-20,2025-06-16,5,false,3,16,1202,33.5,3 +UD11301,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-21,2025-06-16,6,true,2,7,479,33.7,1 +UD11302,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-22,2025-06-16,0,true,2,7,414,32.9,1 +UD11303,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-23,2025-06-23,1,false,2,13,722,33.3,3 +UD11304,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-24,2025-06-23,2,false,1,12,748,34.7,3 +UD11305,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-25,2025-06-23,3,false,3,16,1157,33.4,4 +UD11306,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-26,2025-06-23,4,false,3,19,907,34.9,4 +UD11307,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-27,2025-06-23,5,false,2,13,682,35.9,2 +UD11308,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-28,2025-06-23,6,true,2,7,373,33.7,2 +UD11309,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-29,2025-06-23,0,true,1,6,378,35.7,1 +UD11310,W2090,A1042,Northwind Labs,manufacturing,mid_market,APAC,AU,northwind-finance,prod,active,false,2025-06-30,2025-06-30,1,false,1,11,488,34.6,2 +UD11311,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-01,2025-05-26,0,true,3,12,538,44.2,3 +UD11312,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-02,2025-06-02,1,false,6,28,1834,43.8,6 +UD11313,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-03,2025-06-02,2,false,6,37,2509,45.1,5 +UD11314,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-04,2025-06-02,3,false,8,41,2685,44.8,11 +UD11315,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-05,2025-06-02,4,false,8,37,1742,44.9,7 +UD11316,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-06,2025-06-02,5,false,7,29,1453,44.4,7 +UD11317,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-07,2025-06-02,6,true,3,11,728,45.7,2 +UD11318,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-08,2025-06-02,0,true,3,11,822,45.4,2 +UD11319,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-09,2025-06-09,1,false,7,33,2256,45.5,8 +UD11320,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-10,2025-06-09,2,false,6,32,2084,45.0,5 +UD11321,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-11,2025-06-09,3,false,6,38,1610,45.8,10 +UD11322,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-12,2025-06-09,4,false,6,33,2342,44.8,9 +UD11323,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-13,2025-06-09,5,false,6,33,1626,44.6,4 +UD11324,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-14,2025-06-09,6,true,4,12,844,45.6,3 +UD11325,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-15,2025-06-09,0,true,5,17,1078,45.8,5 +UD11326,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-16,2025-06-16,1,false,8,40,1768,46.5,8 +UD11327,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-17,2025-06-16,2,false,6,35,1745,46.1,9 +UD11328,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-18,2025-06-16,3,false,7,32,1389,45.3,6 +UD11329,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-19,2025-06-16,4,false,5,26,1578,46.4,5 +UD11330,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-20,2025-06-16,5,false,7,32,2123,47.1,6 +UD11331,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-21,2025-06-16,6,true,3,12,817,46.1,3 +UD11332,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,11,519,47.3,3 +UD11333,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-23,2025-06-23,1,false,8,38,1801,47.9,5 +UD11334,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-24,2025-06-23,2,false,6,27,1574,46.2,4 +UD11335,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-25,2025-06-23,3,false,7,33,2193,46.4,5 +UD11336,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-26,2025-06-23,4,false,8,34,2602,46.8,5 +UD11337,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-27,2025-06-23,5,false,7,33,2350,48.5,5 +UD11338,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-28,2025-06-23,6,true,4,12,599,49.5,3 +UD11339,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-29,2025-06-23,0,true,5,14,961,46.1,2 +UD11340,W2091,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-core,prod,active,true,2025-06-30,2025-06-30,1,false,6,34,1513,46.1,6 +UD11341,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-01,2025-05-26,0,true,0,6,183,29.3,1 +UD11342,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-02,2025-06-02,1,false,0,11,383,29.7,2 +UD11343,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-03,2025-06-02,2,false,2,19,727,29.2,2 +UD11344,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-04,2025-06-02,3,false,2,20,923,30.0,5 +UD11345,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-05,2025-06-02,4,false,0,12,343,29.5,2 +UD11346,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-06,2025-06-02,5,false,0,11,307,30.9,3 +UD11347,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-07,2025-06-02,6,true,0,6,171,30.2,1 +UD11348,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-08,2025-06-02,0,true,0,6,154,30.9,1 +UD11349,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-09,2025-06-09,1,false,1,15,617,30.9,2 +UD11350,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-10,2025-06-09,2,false,0,13,408,30.1,3 +UD11351,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-11,2025-06-09,3,false,1,15,522,31.0,3 +UD11352,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-12,2025-06-09,4,false,0,12,364,31.7,1 +UD11353,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-13,2025-06-09,5,false,2,17,767,31.7,4 +UD11354,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-14,2025-06-09,6,true,1,7,265,31.1,2 +UD11355,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-15,2025-06-09,0,true,2,9,364,31.9,2 +UD11356,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-16,2025-06-16,1,false,2,18,719,31.8,2 +UD11357,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-17,2025-06-16,2,false,2,19,656,31.4,4 +UD11358,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-18,2025-06-16,3,false,2,18,540,31.9,4 +UD11359,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-19,2025-06-16,4,false,0,12,378,31.3,3 +UD11360,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-20,2025-06-16,5,false,0,11,294,32.6,2 +UD11361,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-21,2025-06-16,6,true,2,9,349,32.8,2 +UD11362,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-22,2025-06-16,0,true,0,6,264,31.1,1 +UD11363,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-23,2025-06-23,1,false,1,14,585,31.9,2 +UD11364,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-24,2025-06-23,2,false,1,16,430,33.3,4 +UD11365,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-25,2025-06-23,3,false,1,16,408,34.2,3 +UD11366,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-26,2025-06-23,4,false,0,12,356,34.1,3 +UD11367,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-27,2025-06-23,5,false,1,15,569,33.2,4 +UD11368,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-28,2025-06-23,6,true,1,8,363,34.0,2 +UD11369,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-29,2025-06-23,0,true,1,8,297,33.3,2 +UD11370,W2092,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-ops,sandbox,active,false,2025-06-30,2025-06-30,1,false,2,19,717,33.8,4 +UD11371,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-01,2025-05-26,0,true,2,10,749,49.3,1 +UD11372,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-02,2025-06-02,1,false,3,21,1322,49.2,3 +UD11373,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-03,2025-06-02,2,false,2,20,1331,49.8,5 +UD11374,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-04,2025-06-02,3,false,1,16,977,49.8,3 +UD11375,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-05,2025-06-02,4,false,3,19,1050,49.4,4 +UD11376,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-06,2025-06-02,5,false,2,18,941,49.6,3 +UD11377,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-07,2025-06-02,6,true,1,8,512,49.9,1 +UD11378,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-08,2025-06-02,0,true,1,8,466,50.4,2 +UD11379,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-09,2025-06-09,1,false,2,19,1240,50.3,5 +UD11380,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-10,2025-06-09,2,false,3,22,1534,50.6,6 +UD11381,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-11,2025-06-09,3,false,2,19,1394,50.4,4 +UD11382,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-12,2025-06-09,4,false,3,20,1038,50.4,5 +UD11383,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-13,2025-06-09,5,false,1,14,871,51.6,3 +UD11384,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-14,2025-06-09,6,true,1,8,511,51.2,1 +UD11385,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-15,2025-06-09,0,true,2,9,549,50.4,1 +UD11386,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-16,2025-06-16,1,false,3,20,1022,50.3,4 +UD11387,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-17,2025-06-16,2,false,2,18,1066,51.0,3 +UD11388,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-18,2025-06-16,3,false,1,17,754,52.5,3 +UD11389,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-19,2025-06-16,4,false,1,14,882,52.4,2 +UD11390,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-20,2025-06-16,5,false,2,16,1024,51.6,3 +UD11391,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-21,2025-06-16,6,true,1,7,389,52.6,1 +UD11392,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-22,2025-06-16,0,true,2,9,493,52.5,2 +UD11393,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-23,2025-06-23,1,false,1,13,571,51.1,4 +UD11394,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-24,2025-06-23,2,false,1,17,879,51.6,3 +UD11395,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-25,2025-06-23,3,false,3,21,1265,53.8,6 +UD11396,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-26,2025-06-23,4,false,1,15,974,51.0,2 +UD11397,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-27,2025-06-23,5,false,3,18,850,54.4,4 +UD11398,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-28,2025-06-23,6,true,1,8,337,52.2,2 +UD11399,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-29,2025-06-23,0,true,1,8,577,52.3,2 +UD11400,W2093,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-finance,prod,active,false,2025-06-30,2025-06-30,1,false,2,16,1172,51.9,2 +UD11401,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-01,2025-05-26,0,true,2,10,651,46.8,2 +UD11402,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-02,2025-06-02,1,false,2,19,896,46.7,4 +UD11403,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-03,2025-06-02,2,false,2,18,843,47.1,4 +UD11404,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-04,2025-06-02,3,false,3,26,1784,47.6,7 +UD11405,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-05,2025-06-02,4,false,1,16,735,47.4,4 +UD11406,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-06,2025-06-02,5,false,3,20,1138,47.8,5 +UD11407,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-07,2025-06-02,6,true,1,8,348,47.3,1 +UD11408,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-08,2025-06-02,0,true,1,8,397,48.1,2 +UD11409,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-09,2025-06-09,1,false,3,22,1191,48.5,3 +UD11410,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-10,2025-06-09,2,false,1,16,760,49.1,2 +UD11411,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-11,2025-06-09,3,false,2,20,1063,48.2,2 +UD11412,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-12,2025-06-09,4,false,2,16,705,48.1,4 +UD11413,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-13,2025-06-09,5,false,3,18,845,48.4,4 +UD11414,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-14,2025-06-09,6,true,1,8,413,48.9,2 +UD11415,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-15,2025-06-09,0,true,1,8,374,48.7,1 +UD11416,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-16,2025-06-16,1,false,1,15,856,49.9,4 +UD11417,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-17,2025-06-16,2,false,3,21,1551,50.0,3 +UD11418,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-18,2025-06-16,3,false,3,22,1334,49.3,4 +UD11419,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-19,2025-06-16,4,false,1,15,1005,50.5,4 +UD11420,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-20,2025-06-16,5,false,3,20,1295,49.6,3 +UD11421,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-21,2025-06-16,6,true,1,8,475,50.4,2 +UD11422,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-22,2025-06-16,0,true,1,7,292,50.7,1 +UD11423,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-23,2025-06-23,1,false,2,17,1185,51.0,5 +UD11424,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-24,2025-06-23,2,false,2,20,1443,49.1,4 +UD11425,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-25,2025-06-23,3,false,1,16,909,52.4,4 +UD11426,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-26,2025-06-23,4,false,1,15,786,48.9,3 +UD11427,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-27,2025-06-23,5,false,3,18,1065,50.3,4 +UD11428,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-28,2025-06-23,6,true,1,8,540,50.0,2 +UD11429,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-29,2025-06-23,0,true,1,8,586,51.1,1 +UD11430,W2094,A1043,Lighthouse Works,financial_services,enterprise,APAC,SG,lighthouse-marketing,prod,active,false,2025-06-30,2025-06-30,1,false,2,17,1202,52.8,5 +UD11431,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-01,2025-05-26,0,true,3,6,371,11.1,1 +UD11432,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-02,2025-06-02,1,false,2,10,457,12.1,2 +UD11433,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-03,2025-06-02,2,false,3,12,806,12.2,3 +UD11434,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-04,2025-06-02,3,false,4,18,1315,11.4,4 +UD11435,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-05,2025-06-02,4,false,2,12,693,11.9,2 +UD11436,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-06,2025-06-02,5,false,5,20,1363,12.4,3 +UD11437,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-07,2025-06-02,6,true,3,7,490,11.8,1 +UD11438,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-08,2025-06-02,0,true,3,8,388,13.0,2 +UD11439,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-09,2025-06-09,1,false,4,13,664,12.2,3 +UD11440,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-10,2025-06-09,2,false,4,16,1107,13.3,4 +UD11441,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-11,2025-06-09,3,false,2,9,591,13.7,2 +UD11442,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-12,2025-06-09,4,false,4,18,941,13.4,4 +UD11443,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-13,2025-06-09,5,false,5,20,1453,13.4,5 +UD11444,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-14,2025-06-09,6,true,2,5,374,12.5,1 +UD11445,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-15,2025-06-09,0,true,3,8,442,13.3,1 +UD11446,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-16,2025-06-16,1,false,3,12,813,13.1,3 +UD11447,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-17,2025-06-16,2,false,4,17,1248,14.5,5 +UD11448,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-18,2025-06-16,3,false,5,24,1722,15.0,4 +UD11449,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-19,2025-06-16,4,false,4,19,1201,13.4,4 +UD11450,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-20,2025-06-16,5,false,3,15,1058,13.9,2 +UD11451,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-21,2025-06-16,6,true,3,7,487,15.2,2 +UD11452,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-22,2025-06-16,0,true,2,6,329,14.2,1 +UD11453,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-23,2025-06-23,1,false,5,22,1322,14.2,5 +UD11454,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-24,2025-06-23,2,false,3,13,578,15.3,2 +UD11455,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-25,2025-06-23,3,false,3,16,850,16.7,2 +UD11456,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-26,2025-06-23,4,false,5,17,1305,16.4,4 +UD11457,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-27,2025-06-23,5,false,4,19,976,16.4,4 +UD11458,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-28,2025-06-23,6,true,3,8,531,15.9,1 +UD11459,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-29,2025-06-23,0,true,2,5,346,14.3,1 +UD11460,W2095,A1044,Summit Holdings,software,smb,EMEA,NL,summit-core,prod,active,true,2025-06-30,2025-06-30,1,false,2,9,669,16.3,1 +UD11461,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-01,2025-05-26,0,true,2,9,436,33.9,2 +UD11462,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-02,2025-06-02,1,false,2,17,885,33.0,4 +UD11463,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-03,2025-06-02,2,false,4,29,2086,33.1,6 +UD11464,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-04,2025-06-02,3,false,4,29,1974,34.0,6 +UD11465,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-05,2025-06-02,4,false,3,21,1142,33.9,6 +UD11466,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-06,2025-06-02,5,false,4,23,1389,33.8,6 +UD11467,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,8,351,33.7,1 +UD11468,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,8,494,34.5,2 +UD11469,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-09,2025-06-09,1,false,4,24,1411,34.5,7 +UD11470,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-10,2025-06-09,2,false,3,25,1301,34.4,7 +UD11471,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-11,2025-06-09,3,false,3,25,1223,34.7,7 +UD11472,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-12,2025-06-09,4,false,2,20,1468,35.4,5 +UD11473,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-13,2025-06-09,5,false,1,14,839,34.5,3 +UD11474,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,8,385,34.6,2 +UD11475,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,8,552,35.7,2 +UD11476,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-16,2025-06-16,1,false,2,18,1134,35.8,2 +UD11477,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-17,2025-06-16,2,false,2,20,1079,36.2,3 +UD11478,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-18,2025-06-16,3,false,4,30,2046,34.6,7 +UD11479,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-19,2025-06-16,4,false,3,23,1686,34.4,5 +UD11480,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-20,2025-06-16,5,false,3,23,1135,35.4,6 +UD11481,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-21,2025-06-16,6,true,1,8,502,36.7,2 +UD11482,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-22,2025-06-16,0,true,2,9,479,37.0,1 +UD11483,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-23,2025-06-23,1,false,1,15,664,35.3,2 +UD11484,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-24,2025-06-23,2,false,3,21,1501,37.0,6 +UD11485,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-25,2025-06-23,3,false,2,19,1329,36.7,3 +UD11486,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-26,2025-06-23,4,false,2,17,941,37.2,3 +UD11487,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-27,2025-06-23,5,false,1,14,816,36.8,2 +UD11488,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-28,2025-06-23,6,true,1,8,516,36.8,2 +UD11489,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,8,402,37.8,2 +UD11490,W2096,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-core,prod,active,true,2025-06-30,2025-06-30,1,false,2,17,1198,39.5,5 +UD11491,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-01,2025-05-26,0,true,1,8,394,45.6,1 +UD11492,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-02,2025-06-02,1,false,2,17,1206,45.5,4 +UD11493,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-03,2025-06-02,2,false,1,15,608,46.1,3 +UD11494,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-04,2025-06-02,3,false,2,18,1000,45.7,3 +UD11495,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-05,2025-06-02,4,false,1,15,928,45.6,3 +UD11496,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-06,2025-06-02,5,false,2,19,1228,45.6,5 +UD11497,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-07,2025-06-02,6,true,1,8,401,46.9,1 +UD11498,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-08,2025-06-02,0,true,1,8,548,46.1,2 +UD11499,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-09,2025-06-09,1,false,2,19,1175,45.8,5 +UD11500,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-10,2025-06-09,2,false,1,17,749,47.2,3 +UD11501,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-11,2025-06-09,3,false,2,18,888,46.2,4 +UD11502,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-12,2025-06-09,4,false,1,14,619,46.9,3 +UD11503,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-13,2025-06-09,5,false,1,14,938,47.8,2 +UD11504,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-14,2025-06-09,6,true,1,8,341,46.9,1 +UD11505,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-15,2025-06-09,0,true,1,8,489,47.8,2 +UD11506,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-16,2025-06-16,1,false,2,19,1392,47.2,3 +UD11507,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-17,2025-06-16,2,false,1,16,1089,46.9,3 +UD11508,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-18,2025-06-16,3,false,2,19,1321,47.5,5 +UD11509,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-19,2025-06-16,4,false,2,18,1099,47.8,4 +UD11510,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-20,2025-06-16,5,false,2,16,1014,47.4,2 +UD11511,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-21,2025-06-16,6,true,1,8,585,47.2,1 +UD11512,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-22,2025-06-16,0,true,1,8,446,47.3,2 +UD11513,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-23,2025-06-23,1,false,1,14,995,48.6,4 +UD11514,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-24,2025-06-23,2,false,2,19,795,48.3,4 +UD11515,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-25,2025-06-23,3,false,1,15,1067,47.7,2 +UD11516,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-26,2025-06-23,4,false,1,15,719,50.0,4 +UD11517,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-27,2025-06-23,5,false,1,14,675,48.7,2 +UD11518,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-28,2025-06-23,6,true,2,10,454,48.4,1 +UD11519,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-29,2025-06-23,0,true,2,9,474,49.9,2 +UD11520,W2097,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-ops,prod,active,false,2025-06-30,2025-06-30,1,false,1,15,843,49.2,4 +UD11521,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-01,2025-05-26,0,true,2,9,575,64.9,2 +UD11522,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-02,2025-06-02,1,false,3,23,1210,64.6,6 +UD11523,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-03,2025-06-02,2,false,3,22,1564,64.8,3 +UD11524,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-04,2025-06-02,3,false,5,26,1209,65.3,7 +UD11525,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-05,2025-06-02,4,false,3,19,938,64.4,3 +UD11526,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-06,2025-06-02,5,false,5,28,1527,64.7,5 +UD11527,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-07,2025-06-02,6,true,3,11,844,65.3,2 +UD11528,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-08,2025-06-02,0,true,2,10,630,65.0,3 +UD11529,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-09,2025-06-09,1,false,4,22,1150,65.5,3 +UD11530,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-10,2025-06-09,2,false,5,26,1652,66.4,5 +UD11531,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-11,2025-06-09,3,false,3,24,1423,65.0,6 +UD11532,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-12,2025-06-09,4,false,4,27,1281,66.9,6 +UD11533,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-13,2025-06-09,5,false,3,23,959,66.4,6 +UD11534,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-14,2025-06-09,6,true,2,9,639,66.7,1 +UD11535,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-15,2025-06-09,0,true,3,10,633,65.8,2 +UD11536,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-16,2025-06-16,1,false,4,24,1474,65.1,6 +UD11537,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-17,2025-06-16,2,false,4,29,1289,67.4,8 +UD11538,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-18,2025-06-16,3,false,4,25,1122,67.0,7 +UD11539,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-19,2025-06-16,4,false,3,23,1514,67.0,6 +UD11540,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-20,2025-06-16,5,false,5,26,1284,67.5,5 +UD11541,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-21,2025-06-16,6,true,2,9,553,66.2,1 +UD11542,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-22,2025-06-16,0,true,1,8,370,68.2,2 +UD11543,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-23,2025-06-23,1,false,5,26,1964,66.0,7 +UD11544,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-24,2025-06-23,2,false,4,24,1428,67.9,5 +UD11545,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-25,2025-06-23,3,false,5,30,1936,67.0,5 +UD11546,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-26,2025-06-23,4,false,5,24,1490,68.2,3 +UD11547,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-27,2025-06-23,5,false,3,19,1402,69.0,3 +UD11548,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-28,2025-06-23,6,true,4,12,721,69.2,2 +UD11549,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-29,2025-06-23,0,true,2,10,719,70.5,1 +UD11550,W2098,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-finance,prod,active,false,2025-06-30,2025-06-30,1,false,5,24,1468,68.8,6 +UD11551,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-01,2025-05-26,0,true,2,9,632,58.7,1 +UD11552,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-02,2025-06-02,1,false,3,22,1629,59.5,5 +UD11553,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-03,2025-06-02,2,false,4,30,1319,59.4,5 +UD11554,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-04,2025-06-02,3,false,3,24,1349,59.1,6 +UD11555,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-05,2025-06-02,4,false,5,25,1135,59.8,3 +UD11556,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-06,2025-06-02,5,false,3,19,1109,60.1,3 +UD11557,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-07,2025-06-02,6,true,4,14,1078,59.9,3 +UD11558,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-08,2025-06-02,0,true,2,10,439,60.2,2 +UD11559,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-09,2025-06-09,1,false,5,24,1370,59.9,4 +UD11560,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-10,2025-06-09,2,false,4,25,1543,60.5,6 +UD11561,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-11,2025-06-09,3,false,3,24,1772,60.4,3 +UD11562,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-12,2025-06-09,4,false,4,26,1362,61.3,6 +UD11563,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-13,2025-06-09,5,false,5,23,1493,60.4,3 +UD11564,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-14,2025-06-09,6,true,2,10,693,61.2,2 +UD11565,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-15,2025-06-09,0,true,2,10,608,60.6,3 +UD11566,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-16,2025-06-16,1,false,3,20,1232,60.3,3 +UD11567,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-17,2025-06-16,2,false,4,29,2079,61.4,5 +UD11568,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-18,2025-06-16,3,false,5,32,1718,61.9,7 +UD11569,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-19,2025-06-16,4,false,3,22,1219,60.1,4 +UD11570,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-20,2025-06-16,5,false,5,29,1452,61.7,4 +UD11571,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-21,2025-06-16,6,true,3,10,741,62.2,3 +UD11572,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-22,2025-06-16,0,true,3,10,680,61.6,2 +UD11573,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-23,2025-06-23,1,false,4,26,1324,61.9,6 +UD11574,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-24,2025-06-23,2,false,3,21,1406,61.1,3 +UD11575,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-25,2025-06-23,3,false,4,29,1755,61.7,5 +UD11576,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-26,2025-06-23,4,false,4,21,968,63.0,5 +UD11577,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-27,2025-06-23,5,false,4,21,975,61.7,4 +UD11578,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-28,2025-06-23,6,true,1,8,431,61.4,1 +UD11579,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-29,2025-06-23,0,true,2,9,417,63.2,2 +UD11580,W2099,A1045,Nova Holdings,manufacturing,enterprise,NA,CA,nova-marketing,prod,active,false,2025-06-30,2025-06-30,1,false,5,25,1658,62.9,7 +UD11581,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,4,226,12.8,1 +UD11582,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-02,2025-06-02,1,false,4,20,1188,12.1,2 +UD11583,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-03,2025-06-02,2,false,2,12,614,12.3,2 +UD11584,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-04,2025-06-02,3,false,3,16,1098,12.2,2 +UD11585,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-05,2025-06-02,4,false,1,8,439,12.6,2 +UD11586,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-06,2025-06-02,5,false,4,19,1056,13.6,4 +UD11587,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-07,2025-06-02,6,true,2,6,419,13.6,1 +UD11588,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,4,247,13.9,1 +UD11589,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-09,2025-06-09,1,false,2,11,631,14.0,2 +UD11590,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-10,2025-06-09,2,false,4,19,873,14.3,2 +UD11591,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-11,2025-06-09,3,false,2,10,694,14.5,2 +UD11592,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-12,2025-06-09,4,false,4,15,1070,14.1,2 +UD11593,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-13,2025-06-09,5,false,3,13,765,13.2,3 +UD11594,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-14,2025-06-09,6,true,3,7,488,14.1,1 +UD11595,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,4,210,14.3,1 +UD11596,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-16,2025-06-16,1,false,2,11,824,14.8,3 +UD11597,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-17,2025-06-16,2,false,4,21,987,14.2,6 +UD11598,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-18,2025-06-16,3,false,2,13,863,16.2,3 +UD11599,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-19,2025-06-16,4,false,3,14,730,14.9,2 +UD11600,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-20,2025-06-16,5,false,3,14,713,15.7,3 +UD11601,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,6,359,16.1,1 +UD11602,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-22,2025-06-16,0,true,1,4,288,14.0,1 +UD11603,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-23,2025-06-23,1,false,4,14,943,15.9,2 +UD11604,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-24,2025-06-23,2,false,2,10,673,13.9,3 +UD11605,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-25,2025-06-23,3,false,4,19,1170,15.0,3 +UD11606,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-26,2025-06-23,4,false,3,16,1130,16.4,3 +UD11607,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-27,2025-06-23,5,false,2,12,828,16.2,2 +UD11608,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-28,2025-06-23,6,true,2,6,416,17.4,1 +UD11609,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-29,2025-06-23,0,true,2,6,285,15.5,1 +UD11610,W2100,A1046,Pioneer Solutions,education,smb,NA,CA,pioneer-core,prod,active,true,2025-06-30,2025-06-30,1,false,3,15,877,17.3,3 +UD11611,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-01,2025-05-26,0,true,4,11,702,62.6,1 +UD11612,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-02,2025-06-02,1,false,6,32,1657,63.4,6 +UD11613,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-03,2025-06-02,2,false,5,26,1468,63.4,4 +UD11614,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-04,2025-06-02,3,false,4,27,1990,63.7,4 +UD11615,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-05,2025-06-02,4,false,6,31,2144,63.4,8 +UD11616,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-06,2025-06-02,5,false,5,30,2070,64.0,8 +UD11617,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-07,2025-06-02,6,true,4,15,757,63.8,3 +UD11618,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-08,2025-06-02,0,true,2,10,750,63.0,2 +UD11619,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-09,2025-06-09,1,false,5,23,1107,63.3,3 +UD11620,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-10,2025-06-09,2,false,4,27,1814,64.3,4 +UD11621,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-11,2025-06-09,3,false,4,26,1923,63.4,5 +UD11622,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-12,2025-06-09,4,false,5,25,1428,65.2,5 +UD11623,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-13,2025-06-09,5,false,4,24,1802,64.2,4 +UD11624,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-14,2025-06-09,6,true,4,13,1007,64.2,2 +UD11625,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-15,2025-06-09,0,true,3,12,532,65.2,3 +UD11626,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-16,2025-06-16,1,false,5,29,1693,65.3,6 +UD11627,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-17,2025-06-16,2,false,5,34,2210,65.2,7 +UD11628,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-18,2025-06-16,3,false,4,26,1810,64.9,7 +UD11629,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-19,2025-06-16,4,false,6,28,1676,65.6,6 +UD11630,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-20,2025-06-16,5,false,5,25,1436,65.3,5 +UD11631,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,10,692,65.6,2 +UD11632,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-22,2025-06-16,0,true,2,9,530,65.0,2 +UD11633,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-23,2025-06-23,1,false,5,26,1494,66.0,6 +UD11634,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-24,2025-06-23,2,false,3,25,1062,65.7,6 +UD11635,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-25,2025-06-23,3,false,3,22,1043,67.0,3 +UD11636,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-26,2025-06-23,4,false,4,26,1658,67.2,7 +UD11637,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-27,2025-06-23,5,false,4,23,1157,66.9,3 +UD11638,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-28,2025-06-23,6,true,4,14,1006,66.7,3 +UD11639,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-29,2025-06-23,0,true,2,9,492,66.8,2 +UD11640,W2101,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-core,prod,active,true,2025-06-30,2025-06-30,1,false,5,23,1256,66.9,5 +UD11641,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-01,2025-05-26,0,true,0,6,192,29.4,1 +UD11642,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-02,2025-06-02,1,false,3,21,649,29.8,3 +UD11643,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-03,2025-06-02,2,false,1,15,679,29.7,4 +UD11644,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-04,2025-06-02,3,false,2,19,851,30.7,4 +UD11645,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-05,2025-06-02,4,false,1,15,564,29.8,2 +UD11646,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-06,2025-06-02,5,false,2,18,733,30.1,4 +UD11647,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-07,2025-06-02,6,true,1,8,252,30.5,2 +UD11648,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-08,2025-06-02,0,true,0,6,259,30.0,1 +UD11649,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-09,2025-06-09,1,false,3,20,756,31.0,5 +UD11650,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-10,2025-06-09,2,false,1,16,705,30.6,3 +UD11651,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-11,2025-06-09,3,false,2,20,854,31.2,5 +UD11652,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-12,2025-06-09,4,false,2,18,628,31.6,5 +UD11653,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-13,2025-06-09,5,false,2,17,576,31.5,4 +UD11654,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-14,2025-06-09,6,true,2,9,341,32.3,2 +UD11655,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-15,2025-06-09,0,true,2,9,254,30.8,2 +UD11656,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-16,2025-06-16,1,false,1,15,687,31.8,3 +UD11657,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-17,2025-06-16,2,false,1,17,618,32.3,4 +UD11658,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-18,2025-06-16,3,false,1,16,712,32.6,4 +UD11659,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-19,2025-06-16,4,false,3,22,618,31.7,3 +UD11660,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-20,2025-06-16,5,false,2,18,781,32.1,3 +UD11661,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-21,2025-06-16,6,true,0,6,151,32.1,1 +UD11662,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-22,2025-06-16,0,true,2,10,358,32.6,2 +UD11663,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-23,2025-06-23,1,false,1,14,480,31.5,3 +UD11664,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-24,2025-06-23,2,false,2,19,550,33.5,3 +UD11665,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-25,2025-06-23,3,false,3,21,704,33.1,4 +UD11666,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-26,2025-06-23,4,false,1,15,560,33.5,3 +UD11667,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-27,2025-06-23,5,false,1,15,512,33.4,3 +UD11668,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-28,2025-06-23,6,true,1,7,267,33.5,1 +UD11669,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-29,2025-06-23,0,true,1,8,320,32.7,2 +UD11670,W2102,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-ops,sandbox,active,false,2025-06-30,2025-06-30,1,false,1,13,534,32.6,3 +UD11671,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-01,2025-05-26,0,true,6,16,947,65.7,3 +UD11672,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-02,2025-06-02,1,false,7,36,1783,64.9,10 +UD11673,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-03,2025-06-02,2,false,7,42,2397,65.6,5 +UD11674,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-04,2025-06-02,3,false,8,32,1509,65.5,5 +UD11675,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-05,2025-06-02,4,false,8,36,2715,65.4,10 +UD11676,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-06,2025-06-02,5,false,8,34,1826,66.3,7 +UD11677,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-07,2025-06-02,6,true,5,15,1016,66.1,3 +UD11678,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-08,2025-06-02,0,true,4,13,773,66.1,3 +UD11679,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-09,2025-06-09,1,false,8,36,2653,66.6,8 +UD11680,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-10,2025-06-09,2,false,8,42,2568,65.7,8 +UD11681,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-11,2025-06-09,3,false,7,33,1899,66.4,9 +UD11682,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-12,2025-06-09,4,false,8,40,2994,67.1,10 +UD11683,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-13,2025-06-09,5,false,8,39,2893,66.6,8 +UD11684,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-14,2025-06-09,6,true,5,14,808,67.8,3 +UD11685,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-15,2025-06-09,0,true,6,15,932,66.4,4 +UD11686,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-16,2025-06-16,1,false,7,38,1960,67.6,8 +UD11687,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-17,2025-06-16,2,false,7,34,1703,66.0,6 +UD11688,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-18,2025-06-16,3,false,6,28,2005,68.2,5 +UD11689,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-19,2025-06-16,4,false,7,36,2300,66.8,9 +UD11690,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-20,2025-06-16,5,false,7,30,1711,68.0,4 +UD11691,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-21,2025-06-16,6,true,3,11,501,67.2,1 +UD11692,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-22,2025-06-16,0,true,5,13,983,67.6,2 +UD11693,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-23,2025-06-23,1,false,9,40,1815,67.8,7 +UD11694,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-24,2025-06-23,2,false,7,42,1941,68.5,6 +UD11695,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-25,2025-06-23,3,false,7,41,1792,69.5,10 +UD11696,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-26,2025-06-23,4,false,7,32,1757,69.8,7 +UD11697,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-27,2025-06-23,5,false,8,37,2703,67.7,6 +UD11698,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-28,2025-06-23,6,true,4,13,681,68.9,2 +UD11699,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-29,2025-06-23,0,true,5,14,695,67.9,3 +UD11700,W2103,A1047,Orchid Global,healthcare,enterprise,APAC,AU,orchid-finance,prod,active,false,2025-06-30,2025-06-30,1,false,8,29,1853,70.2,7 +UD11701,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-01,2025-05-26,0,true,4,14,659,27.9,4 +UD11702,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-02,2025-06-02,1,false,3,21,1506,27.5,6 +UD11703,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-03,2025-06-02,2,false,5,31,1925,27.3,8 +UD11704,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-04,2025-06-02,3,false,4,28,1199,27.4,4 +UD11705,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-05,2025-06-02,4,false,5,31,1531,28.1,6 +UD11706,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-06,2025-06-02,5,false,4,25,1457,28.2,6 +UD11707,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-07,2025-06-02,6,true,3,10,732,28.8,3 +UD11708,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-08,2025-06-02,0,true,4,14,1068,29.4,2 +UD11709,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-09,2025-06-09,1,false,5,28,1743,28.8,4 +UD11710,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-10,2025-06-09,2,false,5,26,1278,28.4,4 +UD11711,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-11,2025-06-09,3,false,4,30,2007,28.8,8 +UD11712,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-12,2025-06-09,4,false,5,28,1813,29.6,5 +UD11713,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-13,2025-06-09,5,false,4,23,1517,28.2,4 +UD11714,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,8,580,28.7,2 +UD11715,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,7,345,28.6,2 +UD11716,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-16,2025-06-16,1,false,4,20,1068,29.5,3 +UD11717,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-17,2025-06-16,2,false,4,29,1265,28.4,7 +UD11718,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-18,2025-06-16,3,false,5,32,2166,30.8,7 +UD11719,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-19,2025-06-16,4,false,3,19,1001,30.5,5 +UD11720,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-20,2025-06-16,5,false,4,26,1140,30.5,6 +UD11721,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-21,2025-06-16,6,true,3,11,646,30.7,2 +UD11722,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-22,2025-06-16,0,true,4,11,519,30.5,2 +UD11723,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-23,2025-06-23,1,false,5,30,1313,29.4,4 +UD11724,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-24,2025-06-23,2,false,3,24,1657,30.9,3 +UD11725,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-25,2025-06-23,3,false,5,32,2336,32.3,5 +UD11726,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-26,2025-06-23,4,false,5,31,2163,32.4,7 +UD11727,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-27,2025-06-23,5,false,4,21,923,32.4,3 +UD11728,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-28,2025-06-23,6,true,3,11,695,31.2,1 +UD11729,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-29,2025-06-23,0,true,3,12,660,32.8,2 +UD11730,W2104,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-core,prod,active,true,2025-06-30,2025-06-30,1,false,3,23,1151,31.3,4 +UD11731,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-01,2025-05-26,0,true,3,12,754,51.6,3 +UD11732,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-02,2025-06-02,1,false,4,22,1418,51.8,4 +UD11733,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-03,2025-06-02,2,false,6,39,2204,52.0,6 +UD11734,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-04,2025-06-02,3,false,6,33,1897,52.6,9 +UD11735,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-05,2025-06-02,4,false,6,28,1298,53.3,6 +UD11736,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-06,2025-06-02,5,false,5,28,1302,53.2,5 +UD11737,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-07,2025-06-02,6,true,3,11,495,53.7,2 +UD11738,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-08,2025-06-02,0,true,3,11,630,52.5,2 +UD11739,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-09,2025-06-09,1,false,5,26,1118,52.9,4 +UD11740,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-10,2025-06-09,2,false,6,32,1943,54.3,7 +UD11741,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-11,2025-06-09,3,false,5,25,1399,53.7,6 +UD11742,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-12,2025-06-09,4,false,6,29,1400,54.4,6 +UD11743,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-13,2025-06-09,5,false,4,21,1546,53.1,6 +UD11744,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-14,2025-06-09,6,true,2,9,611,53.6,2 +UD11745,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-15,2025-06-09,0,true,4,14,770,53.2,2 +UD11746,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-16,2025-06-16,1,false,4,26,1380,53.6,7 +UD11747,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-17,2025-06-16,2,false,6,31,2111,53.1,5 +UD11748,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-18,2025-06-16,3,false,6,28,1776,54.7,6 +UD11749,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-19,2025-06-16,4,false,4,22,1456,53.8,6 +UD11750,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-20,2025-06-16,5,false,6,30,2194,55.1,4 +UD11751,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-21,2025-06-16,6,true,4,14,923,54.2,3 +UD11752,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-22,2025-06-16,0,true,3,12,731,54.8,3 +UD11753,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-23,2025-06-23,1,false,5,28,1997,55.3,4 +UD11754,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-24,2025-06-23,2,false,6,28,1347,56.3,6 +UD11755,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-25,2025-06-23,3,false,4,24,1505,55.7,6 +UD11756,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-26,2025-06-23,4,false,4,22,946,54.3,4 +UD11757,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-27,2025-06-23,5,false,6,26,1483,57.2,6 +UD11758,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-28,2025-06-23,6,true,4,14,941,55.3,4 +UD11759,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-29,2025-06-23,0,true,4,14,1027,55.9,2 +UD11760,W2105,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-ops,prod,active,false,2025-06-30,2025-06-30,1,false,5,27,1324,56.9,6 +UD11761,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-01,2025-05-26,0,true,1,8,499,39.2,2 +UD11762,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-02,2025-06-02,1,false,5,28,1888,39.6,8 +UD11763,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-03,2025-06-02,2,false,3,22,1315,40.0,4 +UD11764,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-04,2025-06-02,3,false,2,18,973,40.6,4 +UD11765,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-05,2025-06-02,4,false,3,22,1617,40.4,6 +UD11766,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-06,2025-06-02,5,false,3,21,964,40.2,3 +UD11767,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-07,2025-06-02,6,true,3,10,752,40.7,1 +UD11768,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-08,2025-06-02,0,true,3,12,685,40.6,2 +UD11769,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-09,2025-06-09,1,false,3,22,973,40.8,3 +UD11770,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-10,2025-06-09,2,false,4,23,1268,40.5,3 +UD11771,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-11,2025-06-09,3,false,4,27,1957,40.9,4 +UD11772,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-12,2025-06-09,4,false,3,19,1296,41.2,3 +UD11773,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-13,2025-06-09,5,false,4,22,1529,42.3,6 +UD11774,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-14,2025-06-09,6,true,1,8,492,40.2,1 +UD11775,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-15,2025-06-09,0,true,1,8,390,41.5,1 +UD11776,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-16,2025-06-16,1,false,4,25,1722,42.4,6 +UD11777,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-17,2025-06-16,2,false,3,20,1452,41.4,5 +UD11778,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-18,2025-06-16,3,false,5,33,1506,41.8,7 +UD11779,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-19,2025-06-16,4,false,3,21,1511,42.3,3 +UD11780,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-20,2025-06-16,5,false,5,30,1474,41.1,5 +UD11781,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-21,2025-06-16,6,true,2,9,403,42.8,2 +UD11782,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-22,2025-06-16,0,true,3,13,880,44.1,3 +UD11783,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-23,2025-06-23,1,false,4,24,1257,43.2,4 +UD11784,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-24,2025-06-23,2,false,3,21,1141,44.6,4 +UD11785,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-25,2025-06-23,3,false,2,20,1111,43.9,5 +UD11786,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-26,2025-06-23,4,false,4,22,1563,42.5,5 +UD11787,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-27,2025-06-23,5,false,2,18,863,44.4,5 +UD11788,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-28,2025-06-23,6,true,1,8,399,43.2,2 +UD11789,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-29,2025-06-23,0,true,1,8,555,45.3,1 +UD11790,W2106,A1048,Orchid Capital,financial_services,enterprise,APAC,NZ,orchid-finance,prod,active,false,2025-06-30,2025-06-30,1,false,4,26,1578,43.7,5 +UD11791,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-01,2025-05-26,0,true,2,10,608,53.1,2 +UD11792,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-02,2025-06-02,1,false,5,24,1825,54.1,5 +UD11793,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-03,2025-06-02,2,false,6,28,2103,54.6,7 +UD11794,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-04,2025-06-02,3,false,4,24,1219,54.4,6 +UD11795,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-05,2025-06-02,4,false,4,26,1496,54.1,6 +UD11796,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-06,2025-06-02,5,false,5,29,1468,54.1,7 +UD11797,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-07,2025-06-02,6,true,3,11,826,55.1,3 +UD11798,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-08,2025-06-02,0,true,3,11,583,53.9,2 +UD11799,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-09,2025-06-09,1,false,3,18,1212,55.2,3 +UD11800,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-10,2025-06-09,2,false,4,24,1329,54.8,5 +UD11801,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-11,2025-06-09,3,false,4,25,1512,55.0,4 +UD11802,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-12,2025-06-09,4,false,4,28,1233,55.3,8 +UD11803,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-13,2025-06-09,5,false,3,21,1252,54.9,4 +UD11804,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,8,490,55.7,1 +UD11805,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-15,2025-06-09,0,true,2,9,418,55.0,2 +UD11806,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-16,2025-06-16,1,false,4,20,1045,56.1,3 +UD11807,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-17,2025-06-16,2,false,4,28,1408,55.4,3 +UD11808,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-18,2025-06-16,3,false,5,34,1528,57.3,9 +UD11809,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-19,2025-06-16,4,false,3,21,1294,55.9,5 +UD11810,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-20,2025-06-16,5,false,4,26,1383,56.9,6 +UD11811,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-21,2025-06-16,6,true,1,8,578,56.4,1 +UD11812,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-22,2025-06-16,0,true,2,9,591,56.0,2 +UD11813,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-23,2025-06-23,1,false,4,23,1143,55.7,6 +UD11814,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-24,2025-06-23,2,false,4,26,1225,56.0,7 +UD11815,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-25,2025-06-23,3,false,3,25,1561,56.8,5 +UD11816,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-26,2025-06-23,4,false,3,23,1306,56.2,4 +UD11817,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-27,2025-06-23,5,false,4,26,1489,57.4,4 +UD11818,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-28,2025-06-23,6,true,4,13,939,57.7,2 +UD11819,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-29,2025-06-23,0,true,3,11,722,58.1,1 +UD11820,W2107,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-core,prod,active,true,2025-06-30,2025-06-30,1,false,5,25,1572,56.5,5 +UD11821,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-01,2025-05-26,0,true,5,16,1165,65.7,4 +UD11822,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-02,2025-06-02,1,false,5,29,1489,65.7,5 +UD11823,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-03,2025-06-02,2,false,5,29,1698,66.7,8 +UD11824,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-04,2025-06-02,3,false,6,37,2531,66.6,8 +UD11825,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-05,2025-06-02,4,false,6,32,2229,67.3,8 +UD11826,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-06,2025-06-02,5,false,6,33,2284,67.1,9 +UD11827,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-07,2025-06-02,6,true,5,15,1042,66.0,3 +UD11828,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-08,2025-06-02,0,true,4,12,806,66.8,3 +UD11829,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-09,2025-06-09,1,false,6,28,2022,67.0,7 +UD11830,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-10,2025-06-09,2,false,5,33,1761,68.0,8 +UD11831,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-11,2025-06-09,3,false,6,27,1376,67.4,5 +UD11832,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-12,2025-06-09,4,false,6,28,1877,67.0,5 +UD11833,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-13,2025-06-09,5,false,8,36,2390,67.8,7 +UD11834,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-14,2025-06-09,6,true,4,11,803,67.3,3 +UD11835,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-15,2025-06-09,0,true,3,10,778,67.0,1 +UD11836,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-16,2025-06-16,1,false,7,37,2076,68.7,7 +UD11837,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-17,2025-06-16,2,false,6,30,2169,69.1,7 +UD11838,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-18,2025-06-16,3,false,5,34,2304,69.7,8 +UD11839,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-19,2025-06-16,4,false,5,31,2277,69.1,8 +UD11840,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-20,2025-06-16,5,false,6,27,1471,67.3,7 +UD11841,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-21,2025-06-16,6,true,4,14,659,69.2,3 +UD11842,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-22,2025-06-16,0,true,4,13,817,69.6,2 +UD11843,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-23,2025-06-23,1,false,6,30,1873,69.1,6 +UD11844,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-24,2025-06-23,2,false,6,39,2744,67.4,6 +UD11845,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-25,2025-06-23,3,false,7,36,2318,69.3,7 +UD11846,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-26,2025-06-23,4,false,5,26,1923,71.0,6 +UD11847,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-27,2025-06-23,5,false,7,31,1538,69.9,8 +UD11848,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-28,2025-06-23,6,true,4,13,790,70.0,3 +UD11849,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-29,2025-06-23,0,true,4,15,1132,70.0,4 +UD11850,W2108,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-ops,prod,active,false,2025-06-30,2025-06-30,1,false,7,37,2274,68.8,6 +UD11851,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-01,2025-05-26,0,true,3,12,908,51.5,2 +UD11852,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-02,2025-06-02,1,false,6,29,2143,51.1,7 +UD11853,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-03,2025-06-02,2,false,6,27,1687,51.7,6 +UD11854,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-04,2025-06-02,3,false,6,31,2232,51.4,6 +UD11855,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-05,2025-06-02,4,false,6,31,2104,51.5,6 +UD11856,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-06,2025-06-02,5,false,4,27,1845,51.7,7 +UD11857,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-07,2025-06-02,6,true,3,11,804,52.4,1 +UD11858,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-08,2025-06-02,0,true,2,9,429,51.3,1 +UD11859,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-09,2025-06-09,1,false,4,23,1633,52.7,6 +UD11860,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-10,2025-06-09,2,false,6,30,2019,51.9,6 +UD11861,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-11,2025-06-09,3,false,5,30,1529,52.0,4 +UD11862,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-12,2025-06-09,4,false,5,28,1479,52.6,4 +UD11863,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-13,2025-06-09,5,false,4,24,1377,53.3,6 +UD11864,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-14,2025-06-09,6,true,4,12,795,52.9,2 +UD11865,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-15,2025-06-09,0,true,2,10,441,53.1,2 +UD11866,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-16,2025-06-16,1,false,4,21,911,53.9,6 +UD11867,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-17,2025-06-16,2,false,4,30,1592,54.9,4 +UD11868,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-18,2025-06-16,3,false,5,31,2125,53.5,4 +UD11869,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-19,2025-06-16,4,false,4,24,1744,52.2,7 +UD11870,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-20,2025-06-16,5,false,5,24,1476,54.1,4 +UD11871,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-21,2025-06-16,6,true,2,10,604,54.8,2 +UD11872,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-22,2025-06-16,0,true,3,11,783,53.0,2 +UD11873,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-23,2025-06-23,1,false,5,27,1960,53.7,5 +UD11874,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-24,2025-06-23,2,false,4,26,1874,54.3,5 +UD11875,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-25,2025-06-23,3,false,5,27,1872,55.3,7 +UD11876,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-26,2025-06-23,4,false,4,26,1292,55.5,3 +UD11877,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-27,2025-06-23,5,false,4,21,1367,56.1,4 +UD11878,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-28,2025-06-23,6,true,2,9,496,56.4,1 +UD11879,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-29,2025-06-23,0,true,3,12,799,56.4,3 +UD11880,W2109,A1049,Northwind Network,energy,enterprise,NA,CA,northwind-finance,prod,active,false,2025-06-30,2025-06-30,1,false,3,22,1343,54.9,3 +UD11881,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-01,2025-05-26,0,true,2,6,340,16.2,1 +UD11882,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-02,2025-06-02,1,false,1,8,334,15.7,2 +UD11883,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-03,2025-06-02,2,false,2,10,664,15.5,2 +UD11884,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-04,2025-06-02,3,false,2,11,726,16.6,1 +UD11885,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-05,2025-06-02,4,false,2,10,736,16.1,2 +UD11886,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-06,2025-06-02,5,false,2,9,646,16.0,1 +UD11887,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-07,2025-06-02,6,true,2,5,262,16.4,1 +UD11888,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-08,2025-06-02,0,true,2,6,460,16.7,1 +UD11889,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-09,2025-06-09,1,false,1,7,321,16.5,1 +UD11890,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-10,2025-06-09,2,false,2,12,697,16.5,2 +UD11891,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-11,2025-06-09,3,false,2,13,927,17.1,3 +UD11892,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-12,2025-06-09,4,false,2,11,635,17.4,3 +UD11893,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-13,2025-06-09,5,false,1,6,387,17.2,2 +UD11894,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,4,253,16.8,1 +UD11895,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,4,258,18.1,1 +UD11896,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-16,2025-06-16,1,false,1,8,370,17.3,1 +UD11897,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-17,2025-06-16,2,false,2,13,895,19.2,2 +UD11898,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-18,2025-06-16,3,false,1,9,558,17.1,2 +UD11899,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-19,2025-06-16,4,false,1,7,358,18.7,2 +UD11900,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-20,2025-06-16,5,false,1,7,335,18.3,2 +UD11901,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-21,2025-06-16,6,true,1,4,281,19.6,1 +UD11902,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-22,2025-06-16,0,true,2,5,245,19.7,1 +UD11903,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-23,2025-06-23,1,false,1,8,483,17.6,2 +UD11904,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-24,2025-06-23,2,false,1,7,312,20.4,1 +UD11905,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-25,2025-06-23,3,false,2,10,666,18.7,2 +UD11906,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-26,2025-06-23,4,false,1,7,508,19.6,1 +UD11907,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-27,2025-06-23,5,false,2,9,561,21.0,2 +UD11908,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-28,2025-06-23,6,true,1,4,305,17.9,1 +UD11909,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,3,148,20.5,0 +UD11910,W2110,A1050,Cedar Energy,software,smb,APAC,JP,cedar-core,prod,active,true,2025-06-30,2025-06-30,1,false,1,6,393,20.9,1 +UD11911,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-01,2025-05-26,0,true,0,2,51,13.9,1 +UD11912,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-02,2025-06-02,1,false,1,7,262,14.5,1 +UD11913,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-03,2025-06-02,2,false,1,7,229,14.0,1 +UD11914,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-04,2025-06-02,3,false,1,8,283,14.5,2 +UD11915,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-05,2025-06-02,4,false,1,8,301,14.4,1 +UD11916,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-06,2025-06-02,5,false,0,4,135,13.9,1 +UD11917,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-07,2025-06-02,6,true,0,2,60,14.2,0 +UD11918,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-08,2025-06-02,0,true,0,2,83,14.5,0 +UD11919,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-09,2025-06-09,1,false,0,4,156,15.2,1 +UD11920,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-10,2025-06-09,2,false,1,7,243,14.3,2 +UD11921,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-11,2025-06-09,3,false,0,4,116,15.6,1 +UD11922,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-12,2025-06-09,4,false,0,4,166,15.3,1 +UD11923,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-13,2025-06-09,5,false,0,4,151,15.9,0 +UD11924,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-14,2025-06-09,6,true,0,2,65,16.0,0 +UD11925,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-15,2025-06-09,0,true,1,4,117,16.5,1 +UD11926,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-16,2025-06-16,1,false,1,7,302,15.6,2 +UD11927,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-17,2025-06-16,2,false,2,10,354,15.5,1 +UD11928,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-18,2025-06-16,3,false,0,4,157,16.0,1 +UD11929,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-19,2025-06-16,4,false,1,7,246,17.3,2 +UD11930,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-20,2025-06-16,5,false,2,10,324,17.7,2 +UD11931,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-21,2025-06-16,6,true,0,2,86,16.8,0 +UD11932,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-22,2025-06-16,0,true,1,4,194,17.4,1 +UD11933,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-23,2025-06-23,1,false,1,6,205,15.9,2 +UD11934,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-24,2025-06-23,2,false,1,8,281,17.8,1 +UD11935,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-25,2025-06-23,3,false,2,13,392,15.6,2 +UD11936,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-26,2025-06-23,4,false,0,4,119,15.8,1 +UD11937,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-27,2025-06-23,5,false,0,4,134,16.8,1 +UD11938,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-28,2025-06-23,6,true,0,2,52,17.8,0 +UD11939,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-29,2025-06-23,0,true,1,4,180,17.4,1 +UD11940,W2111,A1050,Cedar Energy,software,smb,APAC,JP,cedar-ops,sandbox,active,false,2025-06-30,2025-06-30,1,false,0,4,125,18.0,1 +UD11941,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-01,2025-05-26,0,true,3,8,506,23.4,1 +UD11942,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-02,2025-06-02,1,false,4,14,853,23.3,3 +UD11943,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-03,2025-06-02,2,false,2,10,461,23.7,2 +UD11944,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-04,2025-06-02,3,false,3,17,1134,22.7,2 +UD11945,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-05,2025-06-02,4,false,3,14,767,23.8,4 +UD11946,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-06,2025-06-02,5,false,2,11,615,23.0,3 +UD11947,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-07,2025-06-02,6,true,2,6,345,23.3,1 +UD11948,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,4,305,23.5,1 +UD11949,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-09,2025-06-09,1,false,1,7,460,24.1,1 +UD11950,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-10,2025-06-09,2,false,3,12,825,25.2,2 +UD11951,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-11,2025-06-09,3,false,3,14,762,25.2,2 +UD11952,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-12,2025-06-09,4,false,4,15,1079,23.5,3 +UD11953,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-13,2025-06-09,5,false,3,12,562,24.3,2 +UD11954,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,4,229,25.9,1 +UD11955,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,4,209,24.3,1 +UD11956,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-16,2025-06-16,1,false,4,19,1242,25.3,5 +UD11957,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-17,2025-06-16,2,false,2,12,551,24.8,3 +UD11958,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-18,2025-06-16,3,false,4,21,1536,24.8,4 +UD11959,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-19,2025-06-16,4,false,2,12,812,25.9,2 +UD11960,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-20,2025-06-16,5,false,4,16,1067,24.5,3 +UD11961,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-21,2025-06-16,6,true,3,6,456,26.9,1 +UD11962,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,7,401,25.8,1 +UD11963,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-23,2025-06-23,1,false,4,15,1070,27.1,2 +UD11964,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-24,2025-06-23,2,false,4,20,1008,24.7,5 +UD11965,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-25,2025-06-23,3,false,2,11,589,27.3,2 +UD11966,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-26,2025-06-23,4,false,1,8,410,27.7,1 +UD11967,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-27,2025-06-23,5,false,3,13,581,25.4,2 +UD11968,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-28,2025-06-23,6,true,1,4,271,25.7,1 +UD11969,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,4,278,27.1,1 +UD11970,W2112,A1051,Lighthouse Systems,media,smb,EMEA,UK,lighthouse-core,prod,active,true,2025-06-30,2025-06-30,1,false,1,7,416,26.1,2 +UD11971,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-01,2025-05-26,0,true,3,7,485,22.1,2 +UD11972,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-02,2025-06-02,1,false,3,16,741,22.5,4 +UD11973,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-03,2025-06-02,2,false,2,16,1101,22.0,4 +UD11974,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-04,2025-06-02,3,false,4,23,1044,23.1,4 +UD11975,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-05,2025-06-02,4,false,3,17,1060,22.5,2 +UD11976,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-06,2025-06-02,5,false,4,17,1129,22.3,4 +UD11977,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-07,2025-06-02,6,true,3,9,627,23.4,2 +UD11978,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-08,2025-06-02,0,true,2,7,371,23.3,1 +UD11979,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-09,2025-06-09,1,false,4,18,1078,23.6,3 +UD11980,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-10,2025-06-09,2,false,2,14,908,23.5,4 +UD11981,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-11,2025-06-09,3,false,2,13,862,24.2,2 +UD11982,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-12,2025-06-09,4,false,1,10,717,23.4,2 +UD11983,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-13,2025-06-09,5,false,2,14,800,24.2,2 +UD11984,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-14,2025-06-09,6,true,3,8,403,23.8,1 +UD11985,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,6,378,24.3,2 +UD11986,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-16,2025-06-16,1,false,2,13,914,22.9,4 +UD11987,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-17,2025-06-16,2,false,4,23,1304,23.7,5 +UD11988,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-18,2025-06-16,3,false,4,17,1054,24.3,4 +UD11989,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-19,2025-06-16,4,false,4,20,1126,23.4,5 +UD11990,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-20,2025-06-16,5,false,4,20,1204,24.7,4 +UD11991,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-21,2025-06-16,6,true,1,5,312,24.0,1 +UD11992,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,8,463,25.8,2 +UD11993,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-23,2025-06-23,1,false,2,13,958,25.3,4 +UD11994,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-24,2025-06-23,2,false,2,15,900,24.5,2 +UD11995,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-25,2025-06-23,3,false,1,12,841,24.1,2 +UD11996,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-26,2025-06-23,4,false,4,22,1348,26.3,4 +UD11997,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-27,2025-06-23,5,false,3,17,819,24.4,2 +UD11998,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-28,2025-06-23,6,true,2,7,501,26.2,1 +UD11999,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-29,2025-06-23,0,true,2,7,482,26.1,1 +UD12000,W2113,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-core,prod,active,true,2025-06-30,2025-06-30,1,false,4,18,1049,25.8,4 +UD12001,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-01,2025-05-26,0,true,4,10,655,31.4,2 +UD12002,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-02,2025-06-02,1,false,6,25,1197,32.2,6 +UD12003,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-03,2025-06-02,2,false,6,23,1306,32.1,3 +UD12004,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-04,2025-06-02,3,false,5,25,1549,32.8,5 +UD12005,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-05,2025-06-02,4,false,5,21,945,32.0,4 +UD12006,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-06,2025-06-02,5,false,6,20,1325,32.5,5 +UD12007,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-07,2025-06-02,6,true,4,10,551,32.4,2 +UD12008,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-08,2025-06-02,0,true,2,7,377,32.7,1 +UD12009,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-09,2025-06-09,1,false,4,17,831,33.1,3 +UD12010,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-10,2025-06-09,2,false,6,24,1239,33.9,3 +UD12011,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-11,2025-06-09,3,false,5,24,1398,33.6,3 +UD12012,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-12,2025-06-09,4,false,5,25,1638,33.6,6 +UD12013,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-13,2025-06-09,5,false,6,21,1166,33.6,5 +UD12014,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-14,2025-06-09,6,true,4,11,678,33.6,2 +UD12015,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-15,2025-06-09,0,true,2,7,361,33.8,1 +UD12016,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-16,2025-06-16,1,false,6,25,1121,34.5,5 +UD12017,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-17,2025-06-16,2,false,4,20,881,34.4,5 +UD12018,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-18,2025-06-16,3,false,5,26,1962,33.6,4 +UD12019,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-19,2025-06-16,4,false,6,25,1406,34.9,3 +UD12020,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-20,2025-06-16,5,false,6,23,1030,34.2,6 +UD12021,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-21,2025-06-16,6,true,4,12,655,33.9,2 +UD12022,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-22,2025-06-16,0,true,3,10,708,34.6,2 +UD12023,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-23,2025-06-23,1,false,5,23,1083,35.5,5 +UD12024,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-24,2025-06-23,2,false,4,22,1400,35.2,5 +UD12025,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-25,2025-06-23,3,false,4,25,1680,36.2,4 +UD12026,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-26,2025-06-23,4,false,7,27,1665,36.6,4 +UD12027,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-27,2025-06-23,5,false,4,20,883,34.3,4 +UD12028,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-28,2025-06-23,6,true,4,12,881,35.4,3 +UD12029,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-29,2025-06-23,0,true,3,8,622,36.7,2 +UD12030,W2114,A1052,Sierra Labs,software,mid_market,APAC,NZ,sierra-ops,prod,active,false,2025-06-30,2025-06-30,1,false,4,17,812,35.1,4 +UD12031,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-01,2025-05-26,0,true,2,6,324,31.7,2 +UD12032,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-02,2025-06-02,1,false,3,15,790,31.7,2 +UD12033,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-03,2025-06-02,2,false,4,22,1182,32.1,3 +UD12034,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-04,2025-06-02,3,false,3,17,1167,32.1,4 +UD12035,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-05,2025-06-02,4,false,1,10,735,32.1,2 +UD12036,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-06,2025-06-02,5,false,1,10,651,31.9,1 +UD12037,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,5,270,32.3,1 +UD12038,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,5,351,33.3,1 +UD12039,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-09,2025-06-09,1,false,2,12,584,33.0,1 +UD12040,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-10,2025-06-09,2,false,3,21,1288,33.2,4 +UD12041,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-11,2025-06-09,3,false,3,17,786,32.8,3 +UD12042,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-12,2025-06-09,4,false,3,15,673,33.3,3 +UD12043,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-13,2025-06-09,5,false,2,11,680,33.1,2 +UD12044,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,5,315,33.3,1 +UD12045,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-15,2025-06-09,0,true,2,7,432,33.7,2 +UD12046,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-16,2025-06-16,1,false,3,16,832,33.0,2 +UD12047,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-17,2025-06-16,2,false,2,13,849,33.0,2 +UD12048,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-18,2025-06-16,3,false,1,12,740,34.4,3 +UD12049,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-19,2025-06-16,4,false,3,17,947,34.6,4 +UD12050,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-20,2025-06-16,5,false,2,12,823,33.7,2 +UD12051,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,8,603,35.3,1 +UD12052,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-22,2025-06-16,0,true,2,6,455,34.6,1 +UD12053,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-23,2025-06-23,1,false,3,14,649,34.0,4 +UD12054,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-24,2025-06-23,2,false,2,14,966,34.6,4 +UD12055,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-25,2025-06-23,3,false,2,15,1084,36.7,2 +UD12056,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-26,2025-06-23,4,false,3,18,909,34.1,5 +UD12057,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-27,2025-06-23,5,false,3,18,853,36.7,5 +UD12058,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-28,2025-06-23,6,true,3,10,503,35.5,1 +UD12059,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-29,2025-06-23,0,true,2,7,385,35.0,1 +UD12060,W2115,A1053,Bright Health,media,mid_market,NA,CA,bright-core,prod,active,true,2025-06-30,2025-06-30,1,false,4,22,1415,36.6,5 +UD12061,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-01,2025-05-26,0,true,1,6,313,38.8,2 +UD12062,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-02,2025-06-02,1,false,1,10,432,38.4,2 +UD12063,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-03,2025-06-02,2,false,2,13,648,38.1,3 +UD12064,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-04,2025-06-02,3,false,2,13,833,39.2,3 +UD12065,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-05,2025-06-02,4,false,2,12,822,38.7,2 +UD12066,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-06,2025-06-02,5,false,1,9,388,39.6,2 +UD12067,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-07,2025-06-02,6,true,1,6,349,39.9,2 +UD12068,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-08,2025-06-02,0,true,1,5,305,39.3,1 +UD12069,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-09,2025-06-09,1,false,2,12,873,40.2,3 +UD12070,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-10,2025-06-09,2,false,2,15,1006,39.9,3 +UD12071,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-11,2025-06-09,3,false,1,12,848,39.8,2 +UD12072,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-12,2025-06-09,4,false,2,13,824,39.6,2 +UD12073,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-13,2025-06-09,5,false,1,10,646,40.6,2 +UD12074,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-14,2025-06-09,6,true,1,5,266,39.7,1 +UD12075,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-15,2025-06-09,0,true,1,6,383,40.3,1 +UD12076,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-16,2025-06-16,1,false,2,14,720,40.3,3 +UD12077,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-17,2025-06-16,2,false,2,13,693,40.4,4 +UD12078,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-18,2025-06-16,3,false,1,10,587,39.7,2 +UD12079,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-19,2025-06-16,4,false,1,11,539,40.4,3 +UD12080,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-20,2025-06-16,5,false,1,10,517,40.7,3 +UD12081,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-21,2025-06-16,6,true,1,6,374,40.4,1 +UD12082,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-22,2025-06-16,0,true,1,5,366,42.5,1 +UD12083,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-23,2025-06-23,1,false,1,10,442,41.3,3 +UD12084,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-24,2025-06-23,2,false,1,12,775,40.8,3 +UD12085,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-25,2025-06-23,3,false,1,11,626,42.6,2 +UD12086,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-26,2025-06-23,4,false,1,11,622,42.4,3 +UD12087,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-27,2025-06-23,5,false,2,15,720,43.8,2 +UD12088,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-28,2025-06-23,6,true,2,6,377,42.6,2 +UD12089,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-29,2025-06-23,0,true,2,7,445,42.1,1 +UD12090,W2116,A1053,Bright Health,media,mid_market,NA,CA,bright-ops,prod,active,false,2025-06-30,2025-06-30,1,false,1,10,654,44.5,1 +UD12091,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-01,2025-05-26,0,true,2,7,448,39.0,2 +UD12092,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-02,2025-06-02,1,false,2,11,688,38.4,3 +UD12093,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-03,2025-06-02,2,false,4,25,1466,38.4,6 +UD12094,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-04,2025-06-02,3,false,3,17,1265,39.4,2 +UD12095,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-05,2025-06-02,4,false,2,15,669,39.0,3 +UD12096,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-06,2025-06-02,5,false,3,15,689,38.4,2 +UD12097,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-07,2025-06-02,6,true,1,5,256,39.4,1 +UD12098,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-08,2025-06-02,0,true,1,5,285,39.6,1 +UD12099,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-09,2025-06-09,1,false,3,14,635,39.9,4 +UD12100,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-10,2025-06-09,2,false,4,19,900,38.9,3 +UD12101,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-11,2025-06-09,3,false,3,16,790,39.2,3 +UD12102,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-12,2025-06-09,4,false,1,10,414,39.9,1 +UD12103,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-13,2025-06-09,5,false,2,12,599,40.7,2 +UD12104,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-14,2025-06-09,6,true,1,5,292,40.7,1 +UD12105,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-15,2025-06-09,0,true,2,7,396,41.6,1 +UD12106,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-16,2025-06-16,1,false,3,16,1102,39.9,4 +UD12107,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-17,2025-06-16,2,false,4,22,1358,40.9,6 +UD12108,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-18,2025-06-16,3,false,3,17,1133,42.3,3 +UD12109,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-19,2025-06-16,4,false,3,18,836,40.5,4 +UD12110,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-20,2025-06-16,5,false,3,17,1081,41.3,3 +UD12111,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-21,2025-06-16,6,true,1,5,234,40.6,1 +UD12112,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-22,2025-06-16,0,true,3,10,479,42.1,2 +UD12113,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-23,2025-06-23,1,false,2,13,930,41.0,3 +UD12114,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-24,2025-06-23,2,false,2,14,896,41.3,2 +UD12115,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-25,2025-06-23,3,false,4,24,1416,42.8,3 +UD12116,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-26,2025-06-23,4,false,4,21,1062,41.3,4 +UD12117,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-27,2025-06-23,5,false,2,12,582,41.0,2 +UD12118,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-28,2025-06-23,6,true,2,7,531,41.2,1 +UD12119,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-29,2025-06-23,0,true,2,6,286,42.6,1 +UD12120,W2117,A1053,Bright Health,media,mid_market,NA,CA,bright-finance,prod,active,false,2025-06-30,2025-06-30,1,false,2,13,664,41.6,2 +UD12121,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-01,2025-05-26,0,true,3,9,613,32.9,2 +UD12122,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-02,2025-06-02,1,false,3,18,1066,32.4,4 +UD12123,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-03,2025-06-02,2,false,5,28,1685,33.3,4 +UD12124,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-04,2025-06-02,3,false,4,23,1713,33.2,3 +UD12125,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-05,2025-06-02,4,false,2,15,958,32.4,4 +UD12126,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-06,2025-06-02,5,false,4,19,1428,33.7,3 +UD12127,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,5,325,32.6,1 +UD12128,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,6,442,33.8,1 +UD12129,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-09,2025-06-09,1,false,2,13,952,33.1,3 +UD12130,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-10,2025-06-09,2,false,3,20,1164,33.9,4 +UD12131,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-11,2025-06-09,3,false,2,16,1177,33.7,2 +UD12132,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-12,2025-06-09,4,false,3,16,1092,34.4,2 +UD12133,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-13,2025-06-09,5,false,4,19,904,34.7,5 +UD12134,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-14,2025-06-09,6,true,2,7,425,34.9,2 +UD12135,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,5,343,34.5,1 +UD12136,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-16,2025-06-16,1,false,2,13,812,35.1,3 +UD12137,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-17,2025-06-16,2,false,2,14,848,33.6,4 +UD12138,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-18,2025-06-16,3,false,2,16,1019,33.9,4 +UD12139,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-19,2025-06-16,4,false,3,15,685,34.2,3 +UD12140,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-20,2025-06-16,5,false,3,16,748,35.1,4 +UD12141,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,6,329,36.1,1 +UD12142,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,8,475,35.5,2 +UD12143,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-23,2025-06-23,1,false,4,21,1126,34.9,5 +UD12144,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-24,2025-06-23,2,false,4,19,865,34.6,2 +UD12145,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-25,2025-06-23,3,false,4,24,1033,34.5,5 +UD12146,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-26,2025-06-23,4,false,3,16,990,33.9,4 +UD12147,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-27,2025-06-23,5,false,2,15,775,35.4,4 +UD12148,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-28,2025-06-23,6,true,2,8,417,37.4,2 +UD12149,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-29,2025-06-23,0,true,3,8,486,34.9,2 +UD12150,W2118,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-core,prod,active,true,2025-06-30,2025-06-30,1,false,3,17,1041,36.5,2 +UD12151,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-01,2025-05-26,0,true,1,5,351,35.8,1 +UD12152,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-02,2025-06-02,1,false,4,19,916,36.3,4 +UD12153,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-03,2025-06-02,2,false,1,10,688,36.6,2 +UD12154,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-04,2025-06-02,3,false,1,12,537,36.1,2 +UD12155,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-05,2025-06-02,4,false,2,12,588,37.1,2 +UD12156,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-06,2025-06-02,5,false,3,16,698,36.7,3 +UD12157,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-07,2025-06-02,6,true,3,9,564,37.3,2 +UD12158,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-08,2025-06-02,0,true,2,7,373,36.8,1 +UD12159,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-09,2025-06-09,1,false,2,14,802,36.6,3 +UD12160,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-10,2025-06-09,2,false,2,14,950,36.6,2 +UD12161,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-11,2025-06-09,3,false,1,11,586,37.3,2 +UD12162,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-12,2025-06-09,4,false,2,13,956,37.5,2 +UD12163,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-13,2025-06-09,5,false,2,13,642,38.7,2 +UD12164,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-14,2025-06-09,6,true,2,7,499,36.4,1 +UD12165,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-15,2025-06-09,0,true,3,8,497,38.1,2 +UD12166,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-16,2025-06-16,1,false,3,16,705,37.8,4 +UD12167,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-17,2025-06-16,2,false,3,21,1029,39.1,4 +UD12168,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-18,2025-06-16,3,false,3,16,1185,38.5,4 +UD12169,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-19,2025-06-16,4,false,3,16,748,37.6,2 +UD12170,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-20,2025-06-16,5,false,1,10,654,40.0,2 +UD12171,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-21,2025-06-16,6,true,2,7,529,37.8,1 +UD12172,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-22,2025-06-16,0,true,2,7,472,37.6,2 +UD12173,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-23,2025-06-23,1,false,3,15,848,38.9,3 +UD12174,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-24,2025-06-23,2,false,3,20,1305,38.6,4 +UD12175,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-25,2025-06-23,3,false,2,14,672,38.4,2 +UD12176,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-26,2025-06-23,4,false,3,18,844,40.1,3 +UD12177,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-27,2025-06-23,5,false,2,14,1000,38.6,2 +UD12178,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-28,2025-06-23,6,true,3,10,608,38.2,3 +UD12179,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-29,2025-06-23,0,true,2,8,425,38.5,1 +UD12180,W2119,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-ops,prod,active,false,2025-06-30,2025-06-30,1,false,3,14,680,39.5,4 +UD12181,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-01,2025-05-26,0,true,1,6,393,40.1,1 +UD12182,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-02,2025-06-02,1,false,1,10,503,40.4,1 +UD12183,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-03,2025-06-02,2,false,4,21,1394,40.6,6 +UD12184,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-04,2025-06-02,3,false,3,20,956,40.3,3 +UD12185,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-05,2025-06-02,4,false,4,18,1160,40.4,4 +UD12186,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-06,2025-06-02,5,false,3,16,796,41.1,2 +UD12187,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-07,2025-06-02,6,true,3,8,385,40.0,2 +UD12188,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-08,2025-06-02,0,true,1,5,362,41.8,1 +UD12189,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-09,2025-06-09,1,false,2,14,891,41.5,4 +UD12190,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-10,2025-06-09,2,false,2,14,750,40.9,4 +UD12191,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-11,2025-06-09,3,false,2,13,788,41.2,2 +UD12192,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-12,2025-06-09,4,false,3,17,923,41.2,3 +UD12193,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-13,2025-06-09,5,false,3,18,894,42.6,5 +UD12194,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-14,2025-06-09,6,true,3,8,397,41.4,2 +UD12195,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-15,2025-06-09,0,true,2,7,418,42.6,2 +UD12196,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-16,2025-06-16,1,false,4,16,783,41.6,3 +UD12197,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-17,2025-06-16,2,false,3,16,978,42.0,2 +UD12198,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-18,2025-06-16,3,false,3,18,1261,43.2,3 +UD12199,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-19,2025-06-16,4,false,4,21,1292,42.7,3 +UD12200,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-20,2025-06-16,5,false,4,21,1525,43.7,4 +UD12201,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-21,2025-06-16,6,true,1,5,288,42.8,1 +UD12202,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-22,2025-06-16,0,true,3,9,572,44.2,2 +UD12203,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-23,2025-06-23,1,false,2,11,590,42.7,2 +UD12204,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-24,2025-06-23,2,false,4,25,1089,43.4,5 +UD12205,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-25,2025-06-23,3,false,2,15,861,43.0,4 +UD12206,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-26,2025-06-23,4,false,1,10,656,42.4,2 +UD12207,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-27,2025-06-23,5,false,4,17,882,43.2,3 +UD12208,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-28,2025-06-23,6,true,2,7,534,43.1,1 +UD12209,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-29,2025-06-23,0,true,2,6,432,45.6,1 +UD12210,W2120,A1054,Granite Labs,manufacturing,mid_market,APAC,NZ,granite-finance,prod,active,false,2025-06-30,2025-06-30,1,false,3,18,1164,45.3,3 +UD12211,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,6,437,28.0,1 +UD12212,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-02,2025-06-02,1,false,2,13,922,28.9,2 +UD12213,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-03,2025-06-02,2,false,2,13,783,28.9,3 +UD12214,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-04,2025-06-02,3,false,3,19,1340,29.3,3 +UD12215,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-05,2025-06-02,4,false,2,13,577,28.5,3 +UD12216,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-06,2025-06-02,5,false,4,19,914,29.6,4 +UD12217,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-07,2025-06-02,6,true,2,7,417,29.1,1 +UD12218,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,6,308,29.6,1 +UD12219,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-09,2025-06-09,1,false,2,13,801,30.5,2 +UD12220,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-10,2025-06-09,2,false,2,16,949,28.8,2 +UD12221,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-11,2025-06-09,3,false,3,16,864,30.6,3 +UD12222,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-12,2025-06-09,4,false,4,18,1038,30.3,4 +UD12223,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-13,2025-06-09,5,false,4,21,1548,30.3,5 +UD12224,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-14,2025-06-09,6,true,2,7,393,29.7,1 +UD12225,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-15,2025-06-09,0,true,2,7,330,30.3,1 +UD12226,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-16,2025-06-16,1,false,2,13,915,30.3,2 +UD12227,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-17,2025-06-16,2,false,2,14,740,29.8,3 +UD12228,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-18,2025-06-16,3,false,4,24,1705,30.4,5 +UD12229,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-19,2025-06-16,4,false,2,14,905,29.9,4 +UD12230,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-20,2025-06-16,5,false,1,11,535,31.2,2 +UD12231,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,7,483,31.4,2 +UD12232,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,9,626,31.8,2 +UD12233,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-23,2025-06-23,1,false,4,18,796,30.7,5 +UD12234,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-24,2025-06-23,2,false,4,19,1099,33.3,5 +UD12235,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-25,2025-06-23,3,false,1,12,677,31.8,2 +UD12236,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-26,2025-06-23,4,false,3,15,1004,33.4,2 +UD12237,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-27,2025-06-23,5,false,4,19,936,30.5,4 +UD12238,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-28,2025-06-23,6,true,2,7,315,32.2,2 +UD12239,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,5,239,33.5,1 +UD12240,W2121,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-core,prod,active,true,2025-06-30,2025-06-30,1,false,2,13,700,31.0,2 +UD12241,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-01,2025-05-26,0,true,2,7,261,20.4,1 +UD12242,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-02,2025-06-02,1,false,3,14,595,20.4,3 +UD12243,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-03,2025-06-02,2,false,4,24,724,20.8,3 +UD12244,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-04,2025-06-02,3,false,3,16,723,20.7,3 +UD12245,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-05,2025-06-02,4,false,2,14,642,20.6,3 +UD12246,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-06,2025-06-02,5,false,1,10,399,21.2,2 +UD12247,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-07,2025-06-02,6,true,1,5,170,21.5,1 +UD12248,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-08,2025-06-02,0,true,3,8,376,20.9,1 +UD12249,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-09,2025-06-09,1,false,4,21,988,21.4,4 +UD12250,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-10,2025-06-09,2,false,3,17,602,21.8,2 +UD12251,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-11,2025-06-09,3,false,2,13,530,22.5,2 +UD12252,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-12,2025-06-09,4,false,2,13,434,21.3,2 +UD12253,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-13,2025-06-09,5,false,3,16,600,21.4,3 +UD12254,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-14,2025-06-09,6,true,1,5,214,20.8,1 +UD12255,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-15,2025-06-09,0,true,2,7,205,22.3,2 +UD12256,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-16,2025-06-16,1,false,3,17,689,22.4,2 +UD12257,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-17,2025-06-16,2,false,2,14,461,23.0,3 +UD12258,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-18,2025-06-16,3,false,2,16,449,21.6,3 +UD12259,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-19,2025-06-16,4,false,2,14,635,21.5,2 +UD12260,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-20,2025-06-16,5,false,4,21,795,23.1,3 +UD12261,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-21,2025-06-16,6,true,2,7,273,22.9,1 +UD12262,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-22,2025-06-16,0,true,2,6,184,22.5,2 +UD12263,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-23,2025-06-23,1,false,2,14,525,23.3,4 +UD12264,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-24,2025-06-23,2,false,4,19,722,23.4,3 +UD12265,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-25,2025-06-23,3,false,2,14,496,24.5,2 +UD12266,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-26,2025-06-23,4,false,4,22,846,24.4,6 +UD12267,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-27,2025-06-23,5,false,3,17,483,24.8,3 +UD12268,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-28,2025-06-23,6,true,2,8,340,24.6,2 +UD12269,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-29,2025-06-23,0,true,2,8,297,23.2,2 +UD12270,W2122,A1055,Pioneer Systems,travel,mid_market,EMEA,FR,pioneer-ops,sandbox,active,false,2025-06-30,2025-06-30,1,false,3,16,753,24.4,4 +UD12271,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,5,356,39.4,1 +UD12272,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-02,2025-06-02,1,false,2,13,856,40.2,2 +UD12273,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-03,2025-06-02,2,false,4,18,1368,39.7,2 +UD12274,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-04,2025-06-02,3,false,3,19,1422,40.0,4 +UD12275,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-05,2025-06-02,4,false,2,12,720,39.6,3 +UD12276,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-06,2025-06-02,5,false,2,14,752,39.2,2 +UD12277,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,6,287,40.7,1 +UD12278,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-08,2025-06-02,0,true,2,6,294,40.1,1 +UD12279,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-09,2025-06-09,1,false,2,12,775,39.6,2 +UD12280,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-10,2025-06-09,2,false,2,13,648,41.3,2 +UD12281,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-11,2025-06-09,3,false,1,11,559,41.5,3 +UD12282,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-12,2025-06-09,4,false,1,10,460,40.2,2 +UD12283,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-13,2025-06-09,5,false,3,15,885,41.2,4 +UD12284,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,6,439,41.7,1 +UD12285,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-15,2025-06-09,0,true,3,9,551,40.4,2 +UD12286,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-16,2025-06-16,1,false,4,16,1183,40.6,4 +UD12287,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-17,2025-06-16,2,false,2,15,969,41.7,4 +UD12288,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-18,2025-06-16,3,false,3,19,936,41.4,4 +UD12289,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-19,2025-06-16,4,false,1,10,525,42.7,2 +UD12290,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-20,2025-06-16,5,false,4,18,1338,41.2,3 +UD12291,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-21,2025-06-16,6,true,1,6,368,43.0,2 +UD12292,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-22,2025-06-16,0,true,2,6,415,43.8,1 +UD12293,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-23,2025-06-23,1,false,4,16,1171,43.0,3 +UD12294,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-24,2025-06-23,2,false,1,10,611,43.9,2 +UD12295,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-25,2025-06-23,3,false,2,13,668,42.2,3 +UD12296,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-26,2025-06-23,4,false,4,17,816,44.4,3 +UD12297,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-27,2025-06-23,5,false,4,20,930,44.3,3 +UD12298,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-28,2025-06-23,6,true,2,7,420,45.1,2 +UD12299,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,6,336,44.5,1 +UD12300,W2123,A1056,Delta Global,retail,mid_market,APAC,AU,delta-core,prod,active,true,2025-06-30,2025-06-30,1,false,4,18,1169,44.2,2 +UD12301,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-01,2025-05-26,0,true,2,7,372,33.7,1 +UD12302,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-02,2025-06-02,1,false,2,14,843,34.3,2 +UD12303,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-03,2025-06-02,2,false,1,12,850,33.6,3 +UD12304,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-04,2025-06-02,3,false,1,12,659,34.2,2 +UD12305,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-05,2025-06-02,4,false,1,11,630,34.7,2 +UD12306,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-06,2025-06-02,5,false,2,12,744,34.6,2 +UD12307,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-07,2025-06-02,6,true,1,5,222,34.4,1 +UD12308,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-08,2025-06-02,0,true,1,5,356,35.1,1 +UD12309,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-09,2025-06-09,1,false,1,10,589,34.3,2 +UD12310,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-10,2025-06-09,2,false,2,15,741,34.9,2 +UD12311,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-11,2025-06-09,3,false,1,11,583,36.2,2 +UD12312,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-12,2025-06-09,4,false,2,14,1016,35.7,3 +UD12313,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-13,2025-06-09,5,false,2,12,690,35.5,3 +UD12314,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-14,2025-06-09,6,true,1,6,326,36.7,1 +UD12315,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-15,2025-06-09,0,true,1,5,331,36.6,1 +UD12316,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-16,2025-06-16,1,false,2,11,753,36.7,3 +UD12317,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-17,2025-06-16,2,false,2,14,728,36.1,3 +UD12318,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-18,2025-06-16,3,false,1,11,478,36.1,3 +UD12319,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-19,2025-06-16,4,false,1,11,568,36.6,2 +UD12320,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-20,2025-06-16,5,false,2,13,600,36.5,2 +UD12321,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-21,2025-06-16,6,true,1,6,314,35.9,1 +UD12322,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-22,2025-06-16,0,true,1,5,295,36.2,1 +UD12323,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-23,2025-06-23,1,false,2,12,759,36.7,3 +UD12324,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-24,2025-06-23,2,false,2,13,818,36.2,3 +UD12325,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-25,2025-06-23,3,false,2,14,765,36.0,3 +UD12326,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-26,2025-06-23,4,false,1,11,660,37.1,3 +UD12327,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-27,2025-06-23,5,false,1,11,685,38.5,2 +UD12328,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-28,2025-06-23,6,true,1,5,371,37.2,1 +UD12329,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-29,2025-06-23,0,true,1,5,315,38.2,1 +UD12330,W2124,A1056,Delta Global,retail,mid_market,APAC,AU,delta-ops,prod,active,false,2025-06-30,2025-06-30,1,false,2,14,844,37.4,3 +UD12331,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-01,2025-05-26,0,true,3,10,456,38.1,2 +UD12332,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-02,2025-06-02,1,false,4,17,1010,37.9,4 +UD12333,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-03,2025-06-02,2,false,2,16,1071,38.5,2 +UD12334,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-04,2025-06-02,3,false,3,20,1310,39.1,5 +UD12335,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-05,2025-06-02,4,false,4,18,1352,38.4,3 +UD12336,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-06,2025-06-02,5,false,4,20,1025,39.0,4 +UD12337,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-07,2025-06-02,6,true,2,6,295,39.3,1 +UD12338,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-08,2025-06-02,0,true,1,5,277,38.5,1 +UD12339,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-09,2025-06-09,1,false,3,17,1012,39.1,5 +UD12340,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-10,2025-06-09,2,false,5,23,1186,39.3,3 +UD12341,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-11,2025-06-09,3,false,3,20,1337,39.8,3 +UD12342,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-12,2025-06-09,4,false,5,24,1291,39.6,4 +UD12343,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-13,2025-06-09,5,false,2,13,776,39.6,2 +UD12344,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-14,2025-06-09,6,true,1,5,280,39.9,1 +UD12345,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-15,2025-06-09,0,true,1,5,352,40.6,1 +UD12346,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-16,2025-06-16,1,false,5,20,1520,39.5,5 +UD12347,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-17,2025-06-16,2,false,5,21,1473,39.0,4 +UD12348,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-18,2025-06-16,3,false,3,15,954,39.3,2 +UD12349,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-19,2025-06-16,4,false,2,12,828,40.6,2 +UD12350,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-20,2025-06-16,5,false,2,14,857,39.5,2 +UD12351,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-21,2025-06-16,6,true,1,5,365,40.1,1 +UD12352,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-22,2025-06-16,0,true,2,7,521,41.5,2 +UD12353,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-23,2025-06-23,1,false,3,15,1091,41.0,3 +UD12354,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-24,2025-06-23,2,false,4,22,1399,41.4,4 +UD12355,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-25,2025-06-23,3,false,5,28,2004,41.8,5 +UD12356,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-26,2025-06-23,4,false,3,15,1134,42.3,4 +UD12357,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-27,2025-06-23,5,false,2,14,727,42.1,3 +UD12358,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-28,2025-06-23,6,true,1,6,265,42.5,1 +UD12359,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-29,2025-06-23,0,true,2,7,357,40.0,1 +UD12360,W2125,A1056,Delta Global,retail,mid_market,APAC,AU,delta-finance,prod,active,false,2025-06-30,2025-06-30,1,false,3,18,1186,40.8,5 +UD12361,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-01,2025-05-26,0,true,2,10,467,34.7,2 +UD12362,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-02,2025-06-02,1,false,4,20,1426,35.0,3 +UD12363,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-03,2025-06-02,2,false,2,18,1143,35.1,3 +UD12364,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-04,2025-06-02,3,false,2,18,1253,35.2,2 +UD12365,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-05,2025-06-02,4,false,3,22,1440,36.2,5 +UD12366,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-06,2025-06-02,5,false,2,17,1080,36.0,3 +UD12367,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-07,2025-06-02,6,true,2,9,519,36.7,2 +UD12368,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-08,2025-06-02,0,true,2,9,568,35.4,1 +UD12369,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-09,2025-06-09,1,false,3,19,904,36.6,3 +UD12370,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-10,2025-06-09,2,false,2,20,869,37.2,3 +UD12371,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-11,2025-06-09,3,false,4,23,1691,36.4,3 +UD12372,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-12,2025-06-09,4,false,3,23,998,36.4,6 +UD12373,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-13,2025-06-09,5,false,2,16,829,36.8,3 +UD12374,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,8,463,37.0,1 +UD12375,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,8,390,36.3,1 +UD12376,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-16,2025-06-16,1,false,3,18,1314,36.6,5 +UD12377,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-17,2025-06-16,2,false,2,21,1159,37.5,4 +UD12378,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-18,2025-06-16,3,false,5,26,1272,37.0,5 +UD12379,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-19,2025-06-16,4,false,3,19,865,37.7,3 +UD12380,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-20,2025-06-16,5,false,2,19,1308,37.4,4 +UD12381,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-21,2025-06-16,6,true,1,7,361,37.2,2 +UD12382,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,12,867,37.5,2 +UD12383,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-23,2025-06-23,1,false,2,17,1002,39.9,4 +UD12384,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-24,2025-06-23,2,false,5,30,2208,38.2,8 +UD12385,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-25,2025-06-23,3,false,4,24,1056,39.4,4 +UD12386,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-26,2025-06-23,4,false,3,22,1595,39.0,3 +UD12387,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-27,2025-06-23,5,false,2,16,1186,39.9,4 +UD12388,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-28,2025-06-23,6,true,3,11,742,38.7,1 +UD12389,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-29,2025-06-23,0,true,3,10,637,39.4,1 +UD12390,W2126,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-core,prod,active,true,2025-06-30,2025-06-30,1,false,2,16,883,39.2,3 +UD12391,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-01,2025-05-26,0,true,1,7,315,38.2,1 +UD12392,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-02,2025-06-02,1,false,2,19,615,37.8,4 +UD12393,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-03,2025-06-02,2,false,0,13,517,38.8,3 +UD12394,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-04,2025-06-02,3,false,1,15,466,38.5,2 +UD12395,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-05,2025-06-02,4,false,2,18,839,39.1,5 +UD12396,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-06,2025-06-02,5,false,0,11,348,39.0,1 +UD12397,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-07,2025-06-02,6,true,1,8,360,39.1,1 +UD12398,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-08,2025-06-02,0,true,0,6,248,38.8,1 +UD12399,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-09,2025-06-09,1,false,0,11,327,39.1,3 +UD12400,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-10,2025-06-09,2,false,2,19,777,39.6,4 +UD12401,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-11,2025-06-09,3,false,1,16,671,38.8,4 +UD12402,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-12,2025-06-09,4,false,2,19,835,40.8,4 +UD12403,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-13,2025-06-09,5,false,0,11,367,39.8,2 +UD12404,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-14,2025-06-09,6,true,1,7,241,39.9,2 +UD12405,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-15,2025-06-09,0,true,0,6,199,40.3,1 +UD12406,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-16,2025-06-16,1,false,1,15,443,39.9,2 +UD12407,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-17,2025-06-16,2,false,1,16,655,41.7,2 +UD12408,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-18,2025-06-16,3,false,2,21,580,39.5,6 +UD12409,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-19,2025-06-16,4,false,0,12,378,40.5,3 +UD12410,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-20,2025-06-16,5,false,1,14,445,41.9,3 +UD12411,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-21,2025-06-16,6,true,1,8,223,40.7,2 +UD12412,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-22,2025-06-16,0,true,0,6,224,42.3,1 +UD12413,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-23,2025-06-23,1,false,1,15,694,40.3,2 +UD12414,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-24,2025-06-23,2,false,0,13,487,42.2,3 +UD12415,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-25,2025-06-23,3,false,2,19,834,40.0,3 +UD12416,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-26,2025-06-23,4,false,1,16,431,42.2,3 +UD12417,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-27,2025-06-23,5,false,1,15,664,40.9,4 +UD12418,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-28,2025-06-23,6,true,1,8,334,42.9,2 +UD12419,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-29,2025-06-23,0,true,0,6,185,43.9,1 +UD12420,W2127,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-ops,sandbox,active,false,2025-06-30,2025-06-30,1,false,1,15,678,41.8,4 +UD12421,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-01,2025-05-26,0,true,2,10,433,53.0,2 +UD12422,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-02,2025-06-02,1,false,2,17,1184,52.5,3 +UD12423,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-03,2025-06-02,2,false,1,15,1001,53.4,3 +UD12424,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-04,2025-06-02,3,false,1,17,1029,52.4,2 +UD12425,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-05,2025-06-02,4,false,2,18,945,52.5,3 +UD12426,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-06,2025-06-02,5,false,1,15,694,52.7,2 +UD12427,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-07,2025-06-02,6,true,1,8,457,53.9,2 +UD12428,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-08,2025-06-02,0,true,2,10,598,52.9,3 +UD12429,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-09,2025-06-09,1,false,1,14,598,54.2,2 +UD12430,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-10,2025-06-09,2,false,1,17,1023,54.4,4 +UD12431,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-11,2025-06-09,3,false,2,19,1324,54.2,4 +UD12432,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-12,2025-06-09,4,false,1,15,733,53.2,3 +UD12433,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-13,2025-06-09,5,false,2,16,1033,54.3,4 +UD12434,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-14,2025-06-09,6,true,1,8,467,54.9,2 +UD12435,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-15,2025-06-09,0,true,2,9,680,55.1,1 +UD12436,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-16,2025-06-16,1,false,2,17,1128,54.9,2 +UD12437,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-17,2025-06-16,2,false,1,16,886,55.7,4 +UD12438,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-18,2025-06-16,3,false,1,16,646,54.8,2 +UD12439,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-19,2025-06-16,4,false,2,19,1233,55.0,5 +UD12440,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-20,2025-06-16,5,false,2,16,689,55.3,3 +UD12441,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-21,2025-06-16,6,true,1,7,374,55.5,2 +UD12442,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-22,2025-06-16,0,true,1,8,556,55.2,2 +UD12443,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-23,2025-06-23,1,false,2,17,1207,54.7,3 +UD12444,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-24,2025-06-23,2,false,1,16,706,54.5,3 +UD12445,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-25,2025-06-23,3,false,2,21,1217,56.6,3 +UD12446,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-26,2025-06-23,4,false,2,17,894,57.2,3 +UD12447,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-27,2025-06-23,5,false,1,14,931,56.7,3 +UD12448,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-28,2025-06-23,6,true,2,10,442,56.8,3 +UD12449,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-29,2025-06-23,0,true,2,10,536,57.9,3 +UD12450,W2128,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-finance,prod,active,false,2025-06-30,2025-06-30,1,false,2,18,1169,57.8,3 +UD12451,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-01,2025-05-26,0,true,3,12,823,33.8,3 +UD12452,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-02,2025-06-02,1,false,4,20,1293,34.4,5 +UD12453,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-03,2025-06-02,2,false,4,27,1693,33.8,6 +UD12454,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-04,2025-06-02,3,false,4,26,1842,34.4,5 +UD12455,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-05,2025-06-02,4,false,3,22,1592,34.1,6 +UD12456,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-06,2025-06-02,5,false,3,20,861,34.4,5 +UD12457,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-07,2025-06-02,6,true,1,8,579,34.5,2 +UD12458,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-08,2025-06-02,0,true,2,9,639,34.4,3 +UD12459,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-09,2025-06-09,1,false,3,21,1209,35.0,5 +UD12460,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-10,2025-06-09,2,false,2,19,1229,34.8,2 +UD12461,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-11,2025-06-09,3,false,2,18,1207,35.4,2 +UD12462,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-12,2025-06-09,4,false,3,21,1218,35.4,5 +UD12463,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-13,2025-06-09,5,false,4,27,1923,34.8,5 +UD12464,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-14,2025-06-09,6,true,1,8,492,36.1,2 +UD12465,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-15,2025-06-09,0,true,1,8,590,36.5,1 +UD12466,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-16,2025-06-16,1,false,4,22,998,35.9,5 +UD12467,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-17,2025-06-16,2,false,4,23,1111,35.3,3 +UD12468,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-18,2025-06-16,3,false,2,21,1227,37.0,3 +UD12469,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-19,2025-06-16,4,false,3,24,1375,38.0,5 +UD12470,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-20,2025-06-16,5,false,3,20,995,36.7,4 +UD12471,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-21,2025-06-16,6,true,1,8,417,37.2,2 +UD12472,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-22,2025-06-16,0,true,2,10,695,36.9,2 +UD12473,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-23,2025-06-23,1,false,3,18,789,36.3,3 +UD12474,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-24,2025-06-23,2,false,2,21,1225,37.3,5 +UD12475,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-25,2025-06-23,3,false,2,21,909,37.2,3 +UD12476,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-26,2025-06-23,4,false,4,25,1328,38.2,4 +UD12477,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-27,2025-06-23,5,false,2,17,1147,37.2,3 +UD12478,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-28,2025-06-23,6,true,1,8,363,38.5,2 +UD12479,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-29,2025-06-23,0,true,1,7,508,40.0,1 +UD12480,W2129,A1057,Harbor Partners,education,enterprise,APAC,NZ,harbor-marketing,prod,active,false,2025-06-30,2025-06-30,1,false,2,19,1190,38.3,5 +UD12481,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,4,183,16.7,1 +UD12482,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-02,2025-06-02,1,false,2,11,525,16.8,2 +UD12483,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-03,2025-06-02,2,false,3,14,960,16.5,3 +UD12484,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-04,2025-06-02,3,false,3,16,1000,16.8,4 +UD12485,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-05,2025-06-02,4,false,3,16,1120,16.2,4 +UD12486,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-06,2025-06-02,5,false,2,10,676,16.8,3 +UD12487,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,4,308,17.4,1 +UD12488,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-08,2025-06-02,0,true,3,6,348,17.2,2 +UD12489,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-09,2025-06-09,1,false,4,19,1282,17.3,3 +UD12490,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-10,2025-06-09,2,false,3,12,555,18.0,3 +UD12491,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-11,2025-06-09,3,false,2,10,724,17.4,1 +UD12492,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-12,2025-06-09,4,false,4,18,917,18.1,5 +UD12493,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-13,2025-06-09,5,false,4,18,1320,17.7,4 +UD12494,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-14,2025-06-09,6,true,2,5,385,17.5,1 +UD12495,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-15,2025-06-09,0,true,2,5,348,17.1,1 +UD12496,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-16,2025-06-16,1,false,1,7,434,19.2,1 +UD12497,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-17,2025-06-16,2,false,2,11,774,18.2,2 +UD12498,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-18,2025-06-16,3,false,3,17,1211,19.8,4 +UD12499,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-19,2025-06-16,4,false,3,16,861,17.7,2 +UD12500,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-20,2025-06-16,5,false,4,15,1129,17.8,3 +UD12501,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,5,305,19.3,1 +UD12502,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,8,633,19.3,2 +UD12503,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-23,2025-06-23,1,false,2,10,434,19.4,1 +UD12504,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-24,2025-06-23,2,false,2,13,575,18.5,4 +UD12505,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-25,2025-06-23,3,false,2,10,552,18.0,2 +UD12506,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-26,2025-06-23,4,false,2,11,497,19.0,3 +UD12507,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-27,2025-06-23,5,false,3,14,749,21.2,3 +UD12508,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-28,2025-06-23,6,true,2,5,316,20.9,1 +UD12509,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,4,251,21.1,1 +UD12510,W2130,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-core,prod,active,true,2025-06-30,2025-06-30,1,false,3,12,609,21.0,2 +UD12511,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-01,2025-05-26,0,true,2,6,359,20.1,1 +UD12512,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-02,2025-06-02,1,false,2,10,732,20.4,2 +UD12513,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-03,2025-06-02,2,false,3,16,730,21.6,3 +UD12514,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-04,2025-06-02,3,false,3,16,1124,20.9,4 +UD12515,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-05,2025-06-02,4,false,1,8,376,20.6,1 +UD12516,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-06,2025-06-02,5,false,1,7,405,21.5,1 +UD12517,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-07,2025-06-02,6,true,2,6,433,20.9,1 +UD12518,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-08,2025-06-02,0,true,3,6,466,21.0,1 +UD12519,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-09,2025-06-09,1,false,1,8,376,22.3,2 +UD12520,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-10,2025-06-09,2,false,1,8,364,22.6,2 +UD12521,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-11,2025-06-09,3,false,1,8,512,22.3,2 +UD12522,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-12,2025-06-09,4,false,2,11,623,23.0,2 +UD12523,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-13,2025-06-09,5,false,2,12,889,22.7,2 +UD12524,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-14,2025-06-09,6,true,2,6,288,22.1,1 +UD12525,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-15,2025-06-09,0,true,2,5,368,22.5,1 +UD12526,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-16,2025-06-16,1,false,2,10,558,23.4,2 +UD12527,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-17,2025-06-16,2,false,2,12,569,23.6,2 +UD12528,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-18,2025-06-16,3,false,2,10,751,22.5,1 +UD12529,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-19,2025-06-16,4,false,3,13,993,23.9,2 +UD12530,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-20,2025-06-16,5,false,2,9,611,23.3,1 +UD12531,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-21,2025-06-16,6,true,1,4,235,23.9,1 +UD12532,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-22,2025-06-16,0,true,2,5,371,24.8,1 +UD12533,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-23,2025-06-23,1,false,2,10,449,24.1,3 +UD12534,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-24,2025-06-23,2,false,2,10,709,24.7,2 +UD12535,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-25,2025-06-23,3,false,2,10,668,25.1,2 +UD12536,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-26,2025-06-23,4,false,1,7,456,23.4,1 +UD12537,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-27,2025-06-23,5,false,2,9,417,23.5,2 +UD12538,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-28,2025-06-23,6,true,1,4,194,25.4,1 +UD12539,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-29,2025-06-23,0,true,3,8,403,24.6,1 +UD12540,W2131,A1058,Evergreen Analytics,travel,smb,EMEA,UK,evergreen-ops,prod,active,false,2025-06-30,2025-06-30,1,false,3,14,616,25.5,2 +UD12541,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-01,2025-05-26,0,true,2,7,468,37.1,2 +UD12542,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-02,2025-06-02,1,false,3,18,1345,37.1,5 +UD12543,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-03,2025-06-02,2,false,5,25,1433,37.1,6 +UD12544,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-04,2025-06-02,3,false,5,20,1471,38.2,4 +UD12545,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-05,2025-06-02,4,false,4,22,1309,37.4,5 +UD12546,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-06,2025-06-02,5,false,5,24,1323,38.5,4 +UD12547,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-07,2025-06-02,6,true,3,10,642,37.7,2 +UD12548,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-08,2025-06-02,0,true,2,6,428,38.4,1 +UD12549,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-09,2025-06-09,1,false,3,14,1037,38.4,2 +UD12550,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-10,2025-06-09,2,false,4,19,1217,38.9,3 +UD12551,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-11,2025-06-09,3,false,2,13,936,38.8,3 +UD12552,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-12,2025-06-09,4,false,5,23,1712,38.5,4 +UD12553,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-13,2025-06-09,5,false,3,15,1087,38.9,3 +UD12554,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,6,253,39.6,1 +UD12555,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,6,291,39.2,1 +UD12556,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-16,2025-06-16,1,false,3,16,999,38.4,3 +UD12557,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-17,2025-06-16,2,false,4,23,1233,41.1,5 +UD12558,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-18,2025-06-16,3,false,3,21,1373,38.7,6 +UD12559,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-19,2025-06-16,4,false,3,15,1064,40.2,2 +UD12560,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-20,2025-06-16,5,false,4,17,1213,39.7,5 +UD12561,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-21,2025-06-16,6,true,3,10,678,40.4,2 +UD12562,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,10,578,41.3,2 +UD12563,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-23,2025-06-23,1,false,4,16,741,40.1,4 +UD12564,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-24,2025-06-23,2,false,2,13,762,40.0,3 +UD12565,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-25,2025-06-23,3,false,4,22,1464,40.6,5 +UD12566,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-26,2025-06-23,4,false,3,17,1264,40.8,3 +UD12567,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-27,2025-06-23,5,false,4,18,1123,41.1,3 +UD12568,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-28,2025-06-23,6,true,1,5,263,42.7,1 +UD12569,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-29,2025-06-23,0,true,3,8,540,40.6,2 +UD12570,W2132,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-30,2025-06-30,1,false,2,14,861,42.1,2 +UD12571,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-01,2025-05-26,0,true,0,4,124,19.3,1 +UD12572,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-02,2025-06-02,1,false,0,7,283,19.3,2 +UD12573,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-03,2025-06-02,2,false,2,16,551,20.0,3 +UD12574,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-04,2025-06-02,3,false,0,8,293,20.1,1 +UD12575,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-05,2025-06-02,4,false,1,11,355,19.8,3 +UD12576,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-06,2025-06-02,5,false,1,9,322,20.0,1 +UD12577,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-07,2025-06-02,6,true,1,5,179,20.1,1 +UD12578,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-08,2025-06-02,0,true,1,6,264,19.9,1 +UD12579,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-09,2025-06-09,1,false,1,9,235,20.4,2 +UD12580,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-10,2025-06-09,2,false,2,13,407,20.2,3 +UD12581,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-11,2025-06-09,3,false,1,11,475,20.3,1 +UD12582,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-12,2025-06-09,4,false,0,7,300,20.9,1 +UD12583,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-13,2025-06-09,5,false,0,7,307,21.5,1 +UD12584,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-14,2025-06-09,6,true,2,7,252,21.7,1 +UD12585,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-15,2025-06-09,0,true,2,7,201,21.0,1 +UD12586,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-16,2025-06-16,1,false,3,14,608,21.7,3 +UD12587,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-17,2025-06-16,2,false,1,12,324,21.9,3 +UD12588,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-18,2025-06-16,3,false,1,11,367,21.6,2 +UD12589,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-19,2025-06-16,4,false,1,10,352,21.6,2 +UD12590,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-20,2025-06-16,5,false,3,16,483,22.1,3 +UD12591,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-21,2025-06-16,6,true,2,7,342,22.8,1 +UD12592,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-22,2025-06-16,0,true,0,4,167,21.5,1 +UD12593,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-23,2025-06-23,1,false,2,13,440,21.6,3 +UD12594,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-24,2025-06-23,2,false,1,10,336,23.1,3 +UD12595,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-25,2025-06-23,3,false,2,16,603,22.1,2 +UD12596,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-26,2025-06-23,4,false,2,13,435,21.6,2 +UD12597,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-27,2025-06-23,5,false,3,14,656,22.5,2 +UD12598,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-28,2025-06-23,6,true,0,4,115,22.6,1 +UD12599,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-29,2025-06-23,0,true,2,7,240,21.9,1 +UD12600,W2133,A1059,Evergreen Partners,education,mid_market,NA,CA,evergreen-ops,sandbox,active,false,2025-06-30,2025-06-30,1,false,3,18,756,25.0,4 +UD12601,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-01,2025-05-26,0,true,4,9,625,26.9,3 +UD12602,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-02,2025-06-02,1,false,7,33,1930,26.7,8 +UD12603,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-03,2025-06-02,2,false,6,24,1792,26.8,5 +UD12604,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-04,2025-06-02,3,false,6,31,1818,26.4,8 +UD12605,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-05,2025-06-02,4,false,5,23,1154,27.1,4 +UD12606,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-06,2025-06-02,5,false,6,25,1812,26.9,5 +UD12607,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-07,2025-06-02,6,true,5,14,1017,27.2,4 +UD12608,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-08,2025-06-02,0,true,3,10,769,27.9,1 +UD12609,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-09,2025-06-09,1,false,7,22,1683,27.8,4 +UD12610,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-10,2025-06-09,2,false,7,28,1909,27.8,5 +UD12611,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-11,2025-06-09,3,false,5,28,1754,28.0,7 +UD12612,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-12,2025-06-09,4,false,7,24,1685,26.9,4 +UD12613,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-13,2025-06-09,5,false,5,25,1203,27.5,4 +UD12614,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-14,2025-06-09,6,true,3,9,504,28.5,2 +UD12615,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-15,2025-06-09,0,true,3,9,539,28.9,2 +UD12616,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-16,2025-06-16,1,false,5,19,1330,28.4,4 +UD12617,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-17,2025-06-16,2,false,7,30,1840,28.9,5 +UD12618,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-18,2025-06-16,3,false,6,23,1534,29.9,3 +UD12619,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-19,2025-06-16,4,false,5,20,1119,28.7,5 +UD12620,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-20,2025-06-16,5,false,7,27,2025,29.2,4 +UD12621,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-21,2025-06-16,6,true,3,7,463,28.3,1 +UD12622,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,10,621,28.6,2 +UD12623,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-23,2025-06-23,1,false,6,26,1575,30.6,6 +UD12624,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-24,2025-06-23,2,false,5,21,981,30.1,5 +UD12625,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-25,2025-06-23,3,false,7,36,2348,28.4,8 +UD12626,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-26,2025-06-23,4,false,7,28,1449,29.0,7 +UD12627,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-27,2025-06-23,5,false,5,20,1432,29.1,2 +UD12628,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-28,2025-06-23,6,true,4,10,775,31.1,1 +UD12629,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-29,2025-06-23,0,true,4,9,683,30.7,2 +UD12630,W2134,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-core,prod,active,true,2025-06-30,2025-06-30,1,false,5,21,1599,29.5,5 +UD12631,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-01,2025-05-26,0,true,2,8,274,10.7,2 +UD12632,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-02,2025-06-02,1,false,1,10,366,10.2,3 +UD12633,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-03,2025-06-02,2,false,1,12,535,11.4,2 +UD12634,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-04,2025-06-02,3,false,1,11,350,11.6,2 +UD12635,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-05,2025-06-02,4,false,2,15,531,10.5,3 +UD12636,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-06,2025-06-02,5,false,0,7,249,10.7,1 +UD12637,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-07,2025-06-02,6,true,2,7,317,10.8,1 +UD12638,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-08,2025-06-02,0,true,0,4,100,11.5,1 +UD12639,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-09,2025-06-09,1,false,1,10,436,11.1,2 +UD12640,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-10,2025-06-09,2,false,0,8,229,11.7,1 +UD12641,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-11,2025-06-09,3,false,1,11,343,11.9,3 +UD12642,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-12,2025-06-09,4,false,2,14,457,12.0,2 +UD12643,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-13,2025-06-09,5,false,2,13,530,12.1,3 +UD12644,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-14,2025-06-09,6,true,0,4,182,11.6,1 +UD12645,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-15,2025-06-09,0,true,0,4,180,12.1,1 +UD12646,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-16,2025-06-16,1,false,2,14,594,12.2,3 +UD12647,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-17,2025-06-16,2,false,0,8,207,13.2,1 +UD12648,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-18,2025-06-16,3,false,2,15,449,12.3,3 +UD12649,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-19,2025-06-16,4,false,1,11,466,12.1,3 +UD12650,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-20,2025-06-16,5,false,0,7,308,14.5,1 +UD12651,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-21,2025-06-16,6,true,1,5,159,13.2,1 +UD12652,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-22,2025-06-16,0,true,1,5,192,13.3,1 +UD12653,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-23,2025-06-23,1,false,1,10,319,13.0,1 +UD12654,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-24,2025-06-23,2,false,1,11,471,12.7,3 +UD12655,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-25,2025-06-23,3,false,2,14,517,12.9,4 +UD12656,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-26,2025-06-23,4,false,0,7,203,13.5,2 +UD12657,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-27,2025-06-23,5,false,1,9,323,14.9,2 +UD12658,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-28,2025-06-23,6,true,1,5,163,14.4,1 +UD12659,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-29,2025-06-23,0,true,0,4,173,15.6,1 +UD12660,W2135,A1060,Cedar Foods,healthcare,mid_market,NA,CA,cedar-ops,sandbox,active,false,2025-06-30,2025-06-30,1,false,0,7,282,14.9,2 +UD12661,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-01,2025-05-26,0,true,5,14,750,42.8,2 +UD12662,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-02,2025-06-02,1,false,7,32,1495,42.9,4 +UD12663,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-03,2025-06-02,2,false,5,31,1816,44.0,4 +UD12664,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-04,2025-06-02,3,false,6,38,2379,43.2,6 +UD12665,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-05,2025-06-02,4,false,5,27,1271,44.2,5 +UD12666,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-06,2025-06-02,5,false,5,23,1692,43.7,5 +UD12667,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-07,2025-06-02,6,true,2,10,462,43.9,1 +UD12668,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-08,2025-06-02,0,true,3,11,725,43.8,2 +UD12669,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-09,2025-06-09,1,false,7,28,1999,44.6,6 +UD12670,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-10,2025-06-09,2,false,4,30,1998,44.6,4 +UD12671,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-11,2025-06-09,3,false,6,37,1607,45.6,6 +UD12672,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-12,2025-06-09,4,false,6,32,1858,44.8,4 +UD12673,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-13,2025-06-09,5,false,4,24,1489,45.3,7 +UD12674,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-14,2025-06-09,6,true,3,11,733,45.9,1 +UD12675,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-15,2025-06-09,0,true,4,15,685,46.1,2 +UD12676,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-16,2025-06-16,1,false,5,29,1599,46.2,8 +UD12677,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-17,2025-06-16,2,false,5,29,1973,44.3,7 +UD12678,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-18,2025-06-16,3,false,4,26,1869,46.1,6 +UD12679,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-19,2025-06-16,4,false,4,21,1496,45.2,5 +UD12680,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-20,2025-06-16,5,false,5,30,1690,46.8,4 +UD12681,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-21,2025-06-16,6,true,4,14,999,47.1,3 +UD12682,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,11,514,47.4,2 +UD12683,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-23,2025-06-23,1,false,4,22,1271,45.4,5 +UD12684,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-24,2025-06-23,2,false,4,24,1692,46.5,6 +UD12685,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-25,2025-06-23,3,false,5,34,2475,46.8,8 +UD12686,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-26,2025-06-23,4,false,6,26,1964,48.0,4 +UD12687,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-27,2025-06-23,5,false,6,32,2023,48.1,9 +UD12688,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-28,2025-06-23,6,true,2,10,651,46.2,1 +UD12689,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-29,2025-06-23,0,true,3,10,681,47.9,2 +UD12690,W2136,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-core,prod,active,true,2025-06-30,2025-06-30,1,false,5,26,1306,47.8,5 +UD12691,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-01,2025-05-26,0,true,0,6,218,25.0,2 +UD12692,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-02,2025-06-02,1,false,1,14,432,26.3,2 +UD12693,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-03,2025-06-02,2,false,2,17,466,25.4,3 +UD12694,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-04,2025-06-02,3,false,1,15,625,25.6,3 +UD12695,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-05,2025-06-02,4,false,3,19,814,25.8,4 +UD12696,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-06,2025-06-02,5,false,2,16,609,26.2,4 +UD12697,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-07,2025-06-02,6,true,0,6,241,26.4,1 +UD12698,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-08,2025-06-02,0,true,2,10,461,26.9,2 +UD12699,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-09,2025-06-09,1,false,1,15,637,27.1,3 +UD12700,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-10,2025-06-09,2,false,1,16,529,27.3,3 +UD12701,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-11,2025-06-09,3,false,3,24,996,27.5,3 +UD12702,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-12,2025-06-09,4,false,0,12,341,27.5,2 +UD12703,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-13,2025-06-09,5,false,2,16,565,27.7,3 +UD12704,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-14,2025-06-09,6,true,0,6,244,26.6,1 +UD12705,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-15,2025-06-09,0,true,0,6,264,27.9,1 +UD12706,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-16,2025-06-16,1,false,1,14,386,28.5,3 +UD12707,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-17,2025-06-16,2,false,0,13,319,26.7,2 +UD12708,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-18,2025-06-16,3,false,3,24,866,27.5,7 +UD12709,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-19,2025-06-16,4,false,0,12,486,27.7,2 +UD12710,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-20,2025-06-16,5,false,2,19,768,27.7,3 +UD12711,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-21,2025-06-16,6,true,2,9,324,29.0,2 +UD12712,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-22,2025-06-16,0,true,0,6,186,29.6,2 +UD12713,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-23,2025-06-23,1,false,0,11,387,29.7,2 +UD12714,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-24,2025-06-23,2,false,1,15,471,30.3,3 +UD12715,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-25,2025-06-23,3,false,3,20,618,29.2,5 +UD12716,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-26,2025-06-23,4,false,1,15,492,29.2,4 +UD12717,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-27,2025-06-23,5,false,0,11,414,30.4,3 +UD12718,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-28,2025-06-23,6,true,0,6,154,30.3,1 +UD12719,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-29,2025-06-23,0,true,0,6,230,29.3,1 +UD12720,W2137,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-ops,sandbox,active,false,2025-06-30,2025-06-30,1,false,0,11,296,31.6,2 +UD12721,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-01,2025-05-26,0,true,3,12,726,40.0,2 +UD12722,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-02,2025-06-02,1,false,2,17,737,40.8,5 +UD12723,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-03,2025-06-02,2,false,3,21,1029,40.8,4 +UD12724,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-04,2025-06-02,3,false,5,31,1697,41.3,4 +UD12725,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-05,2025-06-02,4,false,2,17,946,41.1,3 +UD12726,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-06,2025-06-02,5,false,3,20,1468,41.1,4 +UD12727,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-07,2025-06-02,6,true,2,10,517,41.4,2 +UD12728,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-08,2025-06-02,0,true,3,11,798,41.8,2 +UD12729,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-09,2025-06-09,1,false,5,25,1400,41.2,4 +UD12730,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-10,2025-06-09,2,false,2,19,893,41.4,3 +UD12731,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-11,2025-06-09,3,false,4,30,2107,42.5,4 +UD12732,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-12,2025-06-09,4,false,4,24,1425,41.8,6 +UD12733,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-13,2025-06-09,5,false,2,18,896,43.1,3 +UD12734,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-14,2025-06-09,6,true,3,12,775,42.6,2 +UD12735,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-15,2025-06-09,0,true,3,11,522,42.0,2 +UD12736,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-16,2025-06-16,1,false,5,29,1639,41.9,4 +UD12737,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-17,2025-06-16,2,false,4,28,2000,42.7,6 +UD12738,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-18,2025-06-16,3,false,2,21,927,42.5,4 +UD12739,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-19,2025-06-16,4,false,3,22,1302,42.5,5 +UD12740,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-20,2025-06-16,5,false,5,24,1388,43.6,5 +UD12741,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-21,2025-06-16,6,true,3,12,852,44.7,3 +UD12742,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-22,2025-06-16,0,true,2,9,666,43.1,2 +UD12743,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-23,2025-06-23,1,false,2,17,1151,43.3,4 +UD12744,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-24,2025-06-23,2,false,5,30,1806,42.7,5 +UD12745,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-25,2025-06-23,3,false,4,25,1078,44.4,6 +UD12746,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-26,2025-06-23,4,false,2,18,1301,43.8,4 +UD12747,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-27,2025-06-23,5,false,4,23,1582,44.6,6 +UD12748,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-28,2025-06-23,6,true,3,13,608,45.1,2 +UD12749,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-29,2025-06-23,0,true,3,12,558,46.3,3 +UD12750,W2138,A1061,Atlas Capital,travel,enterprise,EMEA,FR,atlas-finance,prod,active,false,2025-06-30,2025-06-30,1,false,5,29,1969,42.9,7 +UD12751,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-01,2025-05-26,0,true,2,10,492,55.6,3 +UD12752,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-02,2025-06-02,1,false,3,20,1206,56.5,5 +UD12753,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-03,2025-06-02,2,false,3,20,950,56.5,2 +UD12754,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-04,2025-06-02,3,false,3,24,1196,56.5,6 +UD12755,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-05,2025-06-02,4,false,3,24,1085,56.6,6 +UD12756,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-06,2025-06-02,5,false,5,28,1383,56.9,5 +UD12757,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,8,462,57.1,2 +UD12758,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-08,2025-06-02,0,true,2,9,547,57.2,2 +UD12759,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-09,2025-06-09,1,false,5,24,1737,58.1,3 +UD12760,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-10,2025-06-09,2,false,5,34,2421,58.1,7 +UD12761,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-11,2025-06-09,3,false,3,25,1369,58.3,5 +UD12762,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-12,2025-06-09,4,false,4,28,1501,57.5,4 +UD12763,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-13,2025-06-09,5,false,4,25,1756,57.1,7 +UD12764,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,8,402,58.3,1 +UD12765,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-15,2025-06-09,0,true,3,11,618,58.3,2 +UD12766,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-16,2025-06-16,1,false,2,18,958,58.1,4 +UD12767,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-17,2025-06-16,2,false,4,29,2115,57.9,5 +UD12768,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-18,2025-06-16,3,false,4,23,1106,58.8,3 +UD12769,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-19,2025-06-16,4,false,3,23,1486,60.4,5 +UD12770,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-20,2025-06-16,5,false,3,21,1393,59.5,6 +UD12771,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-21,2025-06-16,6,true,3,12,581,58.5,2 +UD12772,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-22,2025-06-16,0,true,1,8,441,59.1,2 +UD12773,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-23,2025-06-23,1,false,2,17,1124,58.7,4 +UD12774,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-24,2025-06-23,2,false,4,25,1871,60.1,4 +UD12775,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-25,2025-06-23,3,false,2,20,937,59.1,5 +UD12776,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-26,2025-06-23,4,false,3,22,1223,59.7,3 +UD12777,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-27,2025-06-23,5,false,3,21,1540,59.1,5 +UD12778,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-28,2025-06-23,6,true,3,12,567,60.0,1 +UD12779,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,8,526,60.9,1 +UD12780,W2139,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-core,prod,active,true,2025-06-30,2025-06-30,1,false,2,17,961,60.4,3 +UD12781,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-01,2025-05-26,0,true,3,12,640,35.6,2 +UD12782,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-02,2025-06-02,1,false,4,21,985,36.1,4 +UD12783,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-03,2025-06-02,2,false,2,19,1003,35.7,5 +UD12784,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-04,2025-06-02,3,false,4,26,1842,35.8,7 +UD12785,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-05,2025-06-02,4,false,3,21,899,36.2,3 +UD12786,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-06,2025-06-02,5,false,4,25,1491,36.7,4 +UD12787,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-07,2025-06-02,6,true,3,10,698,36.9,3 +UD12788,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-08,2025-06-02,0,true,2,10,684,36.9,2 +UD12789,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-09,2025-06-09,1,false,3,22,954,37.2,5 +UD12790,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-10,2025-06-09,2,false,3,23,1351,37.1,3 +UD12791,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-11,2025-06-09,3,false,5,34,1767,36.8,8 +UD12792,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-12,2025-06-09,4,false,4,25,1290,37.8,5 +UD12793,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-13,2025-06-09,5,false,4,20,1514,38.1,3 +UD12794,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-14,2025-06-09,6,true,2,10,717,38.1,2 +UD12795,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-15,2025-06-09,0,true,3,11,775,37.9,2 +UD12796,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-16,2025-06-16,1,false,4,25,1193,38.7,6 +UD12797,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-17,2025-06-16,2,false,2,19,910,38.1,3 +UD12798,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-18,2025-06-16,3,false,2,21,1257,38.9,5 +UD12799,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-19,2025-06-16,4,false,4,25,1458,37.9,5 +UD12800,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-20,2025-06-16,5,false,4,21,1496,37.2,5 +UD12801,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-21,2025-06-16,6,true,1,8,356,38.2,1 +UD12802,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-22,2025-06-16,0,true,2,9,445,37.8,2 +UD12803,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-23,2025-06-23,1,false,2,19,1257,39.8,3 +UD12804,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-24,2025-06-23,2,false,2,20,1257,40.2,2 +UD12805,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-25,2025-06-23,3,false,4,27,1442,40.4,4 +UD12806,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-26,2025-06-23,4,false,4,24,1545,40.4,6 +UD12807,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-27,2025-06-23,5,false,4,23,1239,40.3,6 +UD12808,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-28,2025-06-23,6,true,1,7,521,38.0,1 +UD12809,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-29,2025-06-23,0,true,3,10,666,40.8,2 +UD12810,W2140,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-ops,prod,active,false,2025-06-30,2025-06-30,1,false,3,19,1068,39.5,4 +UD12811,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-01,2025-05-26,0,true,2,10,700,45.4,2 +UD12812,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-02,2025-06-02,1,false,5,25,1243,44.8,6 +UD12813,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-03,2025-06-02,2,false,4,23,974,44.8,6 +UD12814,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-04,2025-06-02,3,false,4,29,1233,44.9,7 +UD12815,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-05,2025-06-02,4,false,4,21,1480,45.6,5 +UD12816,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-06,2025-06-02,5,false,4,25,1737,45.1,6 +UD12817,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-07,2025-06-02,6,true,4,11,555,45.8,2 +UD12818,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-08,2025-06-02,0,true,2,10,696,46.5,2 +UD12819,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-09,2025-06-09,1,false,4,21,1541,46.5,5 +UD12820,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-10,2025-06-09,2,false,5,28,1600,46.3,4 +UD12821,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-11,2025-06-09,3,false,5,29,1763,45.3,6 +UD12822,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-12,2025-06-09,4,false,4,23,1425,47.3,4 +UD12823,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-13,2025-06-09,5,false,5,29,2150,46.2,4 +UD12824,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-14,2025-06-09,6,true,3,12,769,47.2,2 +UD12825,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-15,2025-06-09,0,true,3,11,802,47.4,3 +UD12826,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-16,2025-06-16,1,false,3,21,1403,46.6,5 +UD12827,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-17,2025-06-16,2,false,4,29,1588,47.6,5 +UD12828,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-18,2025-06-16,3,false,4,28,1275,48.1,4 +UD12829,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-19,2025-06-16,4,false,3,21,1195,48.6,5 +UD12830,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-20,2025-06-16,5,false,5,30,2096,47.1,7 +UD12831,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-21,2025-06-16,6,true,2,10,678,48.9,2 +UD12832,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-22,2025-06-16,0,true,3,12,626,48.2,2 +UD12833,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-23,2025-06-23,1,false,4,21,1452,47.9,4 +UD12834,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-24,2025-06-23,2,false,4,28,1475,47.7,7 +UD12835,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-25,2025-06-23,3,false,3,20,956,48.7,4 +UD12836,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-26,2025-06-23,4,false,4,22,1147,49.2,6 +UD12837,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-27,2025-06-23,5,false,3,21,1272,48.0,3 +UD12838,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-28,2025-06-23,6,true,4,12,776,48.3,1 +UD12839,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-29,2025-06-23,0,true,1,8,474,48.4,2 +UD12840,W2141,A1062,Delta Manufacturing,travel,enterprise,EMEA,NL,delta-finance,prod,active,false,2025-06-30,2025-06-30,1,false,3,18,1120,47.2,4 +UD12841,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,4,281,19.0,1 +UD12842,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-02,2025-06-02,1,false,3,12,766,19.4,2 +UD12843,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-03,2025-06-02,2,false,1,8,477,19.9,2 +UD12844,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-04,2025-06-02,3,false,1,8,370,19.7,2 +UD12845,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-05,2025-06-02,4,false,2,10,507,19.9,2 +UD12846,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-06,2025-06-02,5,false,2,9,606,20.0,2 +UD12847,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,4,197,19.7,1 +UD12848,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,4,224,19.9,1 +UD12849,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-09,2025-06-09,1,false,1,7,505,19.9,1 +UD12850,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-10,2025-06-09,2,false,3,15,668,20.1,4 +UD12851,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-11,2025-06-09,3,false,3,17,1141,20.5,2 +UD12852,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-12,2025-06-09,4,false,1,7,317,20.9,2 +UD12853,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-13,2025-06-09,5,false,3,13,777,21.1,2 +UD12854,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-14,2025-06-09,6,true,2,5,370,21.8,1 +UD12855,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-15,2025-06-09,0,true,2,6,334,21.1,1 +UD12856,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-16,2025-06-16,1,false,1,7,355,21.9,1 +UD12857,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-17,2025-06-16,2,false,2,13,608,22.4,2 +UD12858,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-18,2025-06-16,3,false,3,15,948,19.9,2 +UD12859,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-19,2025-06-16,4,false,1,7,439,21.7,1 +UD12860,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-20,2025-06-16,5,false,3,11,595,21.5,2 +UD12861,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-21,2025-06-16,6,true,1,4,258,22.9,1 +UD12862,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-22,2025-06-16,0,true,2,5,393,21.6,1 +UD12863,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-23,2025-06-23,1,false,2,10,677,23.4,2 +UD12864,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-24,2025-06-23,2,false,1,8,458,22.7,1 +UD12865,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-25,2025-06-23,3,false,2,12,715,22.9,2 +UD12866,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-26,2025-06-23,4,false,2,11,795,23.6,2 +UD12867,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-27,2025-06-23,5,false,3,14,722,22.5,3 +UD12868,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-28,2025-06-23,6,true,3,6,383,23.7,1 +UD12869,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,4,213,22.3,1 +UD12870,W2142,A1063,Maple Global,education,smb,NA,CA,maple-core,prod,active,true,2025-06-30,2025-06-30,1,false,2,10,576,23.1,2 +UD12871,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,4,250,22.7,1 +UD12872,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-02,2025-06-02,1,false,4,16,1218,22.7,3 +UD12873,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-03,2025-06-02,2,false,3,12,552,23.0,2 +UD12874,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-04,2025-06-02,3,false,2,10,535,22.7,2 +UD12875,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-05,2025-06-02,4,false,1,7,361,23.3,2 +UD12876,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-06,2025-06-02,5,false,3,13,987,23.1,4 +UD12877,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-07,2025-06-02,6,true,3,8,575,23.3,2 +UD12878,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,4,257,24.5,1 +UD12879,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-09,2025-06-09,1,false,3,11,633,24.4,3 +UD12880,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-10,2025-06-09,2,false,2,11,468,24.2,2 +UD12881,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-11,2025-06-09,3,false,3,15,1069,24.2,3 +UD12882,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-12,2025-06-09,4,false,2,12,674,24.5,2 +UD12883,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-13,2025-06-09,5,false,3,15,1002,25.6,3 +UD12884,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-14,2025-06-09,6,true,2,6,472,24.6,1 +UD12885,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,4,183,24.9,1 +UD12886,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-16,2025-06-16,1,false,1,7,430,24.6,2 +UD12887,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-17,2025-06-16,2,false,4,20,876,25.0,4 +UD12888,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-18,2025-06-16,3,false,3,16,760,25.0,2 +UD12889,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-19,2025-06-16,4,false,2,10,539,24.5,2 +UD12890,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-20,2025-06-16,5,false,3,11,650,25.0,3 +UD12891,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,6,308,26.2,1 +UD12892,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,8,598,25.2,2 +UD12893,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-23,2025-06-23,1,false,3,11,609,25.2,2 +UD12894,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-24,2025-06-23,2,false,1,7,382,26.5,1 +UD12895,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-25,2025-06-23,3,false,2,12,653,27.4,3 +UD12896,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-26,2025-06-23,4,false,2,12,843,26.1,2 +UD12897,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-27,2025-06-23,5,false,4,16,872,26.8,4 +UD12898,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-28,2025-06-23,6,true,3,6,468,26.6,1 +UD12899,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-29,2025-06-23,0,true,3,7,371,26.8,1 +UD12900,W2143,A1064,Atlas Health,education,smb,NA,US,atlas-core,prod,active,true,2025-06-30,2025-06-30,1,false,2,9,421,26.6,2 +UD12901,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,6,327,21.1,1 +UD12902,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-02,2025-06-02,1,false,5,20,1448,21.7,5 +UD12903,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-03,2025-06-02,2,false,3,16,965,21.7,2 +UD12904,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-04,2025-06-02,3,false,3,18,1350,21.4,4 +UD12905,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-05,2025-06-02,4,false,4,22,1173,20.9,6 +UD12906,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-06,2025-06-02,5,false,4,20,1150,21.6,6 +UD12907,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,5,328,22.3,1 +UD12908,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-08,2025-06-02,0,true,2,6,399,22.9,1 +UD12909,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-09,2025-06-09,1,false,2,12,706,22.9,3 +UD12910,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-10,2025-06-09,2,false,2,13,668,22.4,2 +UD12911,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-11,2025-06-09,3,false,2,14,1022,23.0,2 +UD12912,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-12,2025-06-09,4,false,3,17,787,23.5,2 +UD12913,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-13,2025-06-09,5,false,4,20,1498,22.5,2 +UD12914,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,6,324,22.8,1 +UD12915,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-15,2025-06-09,0,true,2,6,402,22.8,1 +UD12916,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-16,2025-06-16,1,false,3,18,1129,22.6,3 +UD12917,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-17,2025-06-16,2,false,4,22,1176,24.0,6 +UD12918,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-18,2025-06-16,3,false,4,21,925,24.3,4 +UD12919,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-19,2025-06-16,4,false,4,19,1125,24.2,3 +UD12920,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-20,2025-06-16,5,false,3,17,992,23.5,3 +UD12921,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-21,2025-06-16,6,true,3,10,738,24.1,2 +UD12922,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,9,659,24.1,2 +UD12923,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-23,2025-06-23,1,false,2,11,480,24.0,3 +UD12924,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-24,2025-06-23,2,false,4,20,1500,25.6,5 +UD12925,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-25,2025-06-23,3,false,4,21,1334,25.0,3 +UD12926,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-26,2025-06-23,4,false,4,17,988,24.9,3 +UD12927,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-27,2025-06-23,5,false,2,14,1023,24.3,3 +UD12928,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-28,2025-06-23,6,true,2,7,443,23.4,2 +UD12929,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-29,2025-06-23,0,true,2,7,339,23.5,1 +UD12930,W2144,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-core,prod,active,true,2025-06-30,2025-06-30,1,false,3,15,1103,24.4,3 +UD12931,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-01,2025-05-26,0,true,4,9,467,19.3,2 +UD12932,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-02,2025-06-02,1,false,3,18,1226,19.5,5 +UD12933,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-03,2025-06-02,2,false,5,26,1919,19.3,5 +UD12934,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-04,2025-06-02,3,false,4,22,1383,19.6,3 +UD12935,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-05,2025-06-02,4,false,3,18,1219,19.5,5 +UD12936,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-06,2025-06-02,5,false,3,18,1250,20.3,3 +UD12937,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-07,2025-06-02,6,true,1,5,221,20.2,1 +UD12938,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-08,2025-06-02,0,true,2,7,393,20.6,1 +UD12939,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-09,2025-06-09,1,false,5,21,1332,20.4,3 +UD12940,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-10,2025-06-09,2,false,5,25,1801,21.4,6 +UD12941,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-11,2025-06-09,3,false,4,19,1137,20.5,4 +UD12942,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-12,2025-06-09,4,false,5,26,1492,21.4,6 +UD12943,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-13,2025-06-09,5,false,4,17,1009,21.0,3 +UD12944,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-14,2025-06-09,6,true,3,8,489,22.1,1 +UD12945,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-15,2025-06-09,0,true,2,7,357,20.2,1 +UD12946,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-16,2025-06-16,1,false,4,19,909,22.4,5 +UD12947,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-17,2025-06-16,2,false,3,16,747,21.6,4 +UD12948,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-18,2025-06-16,3,false,4,20,1472,22.5,5 +UD12949,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-19,2025-06-16,4,false,5,22,1224,22.6,3 +UD12950,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-20,2025-06-16,5,false,5,23,1394,20.5,3 +UD12951,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-21,2025-06-16,6,true,1,5,248,21.1,1 +UD12952,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-22,2025-06-16,0,true,2,7,338,22.4,1 +UD12953,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-23,2025-06-23,1,false,4,17,1235,21.2,4 +UD12954,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-24,2025-06-23,2,false,4,21,1322,23.9,5 +UD12955,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-25,2025-06-23,3,false,4,24,1616,22.6,6 +UD12956,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-26,2025-06-23,4,false,5,24,1154,22.6,5 +UD12957,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-27,2025-06-23,5,false,5,20,1203,23.3,6 +UD12958,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-28,2025-06-23,6,true,4,11,658,23.3,2 +UD12959,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-29,2025-06-23,0,true,4,12,681,22.7,2 +UD12960,W2145,A1065,Vertex Partners,manufacturing,mid_market,NA,US,vertex-ops,prod,active,false,2025-06-30,2025-06-30,1,false,4,21,919,21.3,5 +UD12961,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-01,2025-05-26,0,true,4,10,670,35.2,3 +UD12962,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-02,2025-06-02,1,false,4,19,938,35.3,5 +UD12963,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-03,2025-06-02,2,false,5,27,1606,35.6,6 +UD12964,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-04,2025-06-02,3,false,3,16,753,35.3,3 +UD12965,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-05,2025-06-02,4,false,4,22,1470,36.6,6 +UD12966,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-06,2025-06-02,5,false,3,15,1027,36.0,3 +UD12967,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-07,2025-06-02,6,true,4,10,554,37.0,2 +UD12968,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,6,406,36.0,1 +UD12969,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-09,2025-06-09,1,false,5,21,1119,35.7,6 +UD12970,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-10,2025-06-09,2,false,5,28,1475,37.3,6 +UD12971,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-11,2025-06-09,3,false,3,20,1058,37.1,5 +UD12972,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-12,2025-06-09,4,false,5,27,2006,36.9,4 +UD12973,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-13,2025-06-09,5,false,3,16,716,36.6,3 +UD12974,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-14,2025-06-09,6,true,2,7,448,37.3,1 +UD12975,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-15,2025-06-09,0,true,3,9,424,38.3,2 +UD12976,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-16,2025-06-16,1,false,5,21,1193,37.8,4 +UD12977,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-17,2025-06-16,2,false,4,18,1013,38.8,3 +UD12978,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-18,2025-06-16,3,false,3,18,893,38.3,4 +UD12979,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-19,2025-06-16,4,false,4,23,1546,37.8,3 +UD12980,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-20,2025-06-16,5,false,5,19,1414,38.2,4 +UD12981,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,8,479,39.2,2 +UD12982,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-22,2025-06-16,0,true,2,7,389,39.0,2 +UD12983,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-23,2025-06-23,1,false,5,23,1043,37.3,3 +UD12984,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-24,2025-06-23,2,false,4,19,1193,39.2,4 +UD12985,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-25,2025-06-23,3,false,5,22,1517,37.6,5 +UD12986,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-26,2025-06-23,4,false,5,21,1392,39.8,5 +UD12987,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-27,2025-06-23,5,false,4,17,790,39.6,3 +UD12988,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-28,2025-06-23,6,true,2,7,327,40.7,1 +UD12989,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-29,2025-06-23,0,true,3,8,487,39.7,2 +UD12990,W2146,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-core,prod,active,true,2025-06-30,2025-06-30,1,false,3,18,973,39.9,2 +UD12991,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-01,2025-05-26,0,true,2,7,427,37.3,1 +UD12992,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-02,2025-06-02,1,false,4,16,1011,36.5,4 +UD12993,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-03,2025-06-02,2,false,3,20,1360,37.8,5 +UD12994,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-04,2025-06-02,3,false,3,16,807,37.2,3 +UD12995,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-05,2025-06-02,4,false,4,17,770,36.7,4 +UD12996,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-06,2025-06-02,5,false,5,26,1899,36.8,7 +UD12997,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-07,2025-06-02,6,true,2,6,467,37.4,1 +UD12998,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-08,2025-06-02,0,true,2,7,489,38.3,1 +UD12999,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-09,2025-06-09,1,false,4,18,1318,38.0,2 +UD13000,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-10,2025-06-09,2,false,4,23,1065,38.1,4 +UD13001,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-11,2025-06-09,3,false,5,20,1383,38.5,4 +UD13002,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-12,2025-06-09,4,false,4,21,1388,38.1,5 +UD13003,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-13,2025-06-09,5,false,4,19,1326,38.3,4 +UD13004,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-14,2025-06-09,6,true,2,7,334,38.8,1 +UD13005,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-15,2025-06-09,0,true,1,6,259,39.5,2 +UD13006,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-16,2025-06-16,1,false,5,21,1608,38.0,5 +UD13007,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-17,2025-06-16,2,false,3,17,815,39.0,3 +UD13008,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-18,2025-06-16,3,false,3,19,1161,38.4,3 +UD13009,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-19,2025-06-16,4,false,3,18,1272,39.8,5 +UD13010,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-20,2025-06-16,5,false,5,24,1310,38.8,5 +UD13011,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-21,2025-06-16,6,true,4,11,767,40.5,3 +UD13012,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-22,2025-06-16,0,true,1,6,363,39.1,1 +UD13013,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-23,2025-06-23,1,false,5,19,883,38.7,3 +UD13014,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-24,2025-06-23,2,false,5,25,1893,41.7,5 +UD13015,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-25,2025-06-23,3,false,3,19,925,39.3,5 +UD13016,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-26,2025-06-23,4,false,5,21,1316,41.8,4 +UD13017,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-27,2025-06-23,5,false,4,22,1165,38.9,5 +UD13018,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-28,2025-06-23,6,true,1,5,362,41.5,1 +UD13019,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-29,2025-06-23,0,true,2,8,474,40.0,2 +UD13020,W2147,A1066,Pacific Capital,manufacturing,mid_market,APAC,NZ,pacific-ops,prod,active,false,2025-06-30,2025-06-30,1,false,3,17,974,41.5,4 +UD13021,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-01,2025-05-26,0,true,3,8,417,29.9,2 +UD13022,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-02,2025-06-02,1,false,2,14,778,28.8,2 +UD13023,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-03,2025-06-02,2,false,4,22,1469,30.0,5 +UD13024,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-04,2025-06-02,3,false,3,19,1345,30.3,5 +UD13025,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-05,2025-06-02,4,false,1,10,499,30.0,2 +UD13026,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-06,2025-06-02,5,false,3,18,800,30.2,4 +UD13027,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-07,2025-06-02,6,true,3,9,692,30.4,2 +UD13028,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,6,265,30.8,1 +UD13029,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-09,2025-06-09,1,false,3,17,958,30.3,3 +UD13030,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-10,2025-06-09,2,false,4,25,1718,30.3,5 +UD13031,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-11,2025-06-09,3,false,2,16,883,29.9,4 +UD13032,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-12,2025-06-09,4,false,2,13,625,30.8,2 +UD13033,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-13,2025-06-09,5,false,4,20,1066,31.2,4 +UD13034,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,5,360,31.7,1 +UD13035,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-15,2025-06-09,0,true,3,9,499,31.6,1 +UD13036,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-16,2025-06-16,1,false,2,14,1020,31.9,2 +UD13037,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-17,2025-06-16,2,false,3,17,1189,31.9,3 +UD13038,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-18,2025-06-16,3,false,2,16,938,32.3,4 +UD13039,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-19,2025-06-16,4,false,2,15,759,31.1,3 +UD13040,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-20,2025-06-16,5,false,2,14,754,32.5,3 +UD13041,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-21,2025-06-16,6,true,1,6,348,31.0,1 +UD13042,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-22,2025-06-16,0,true,1,6,419,31.5,1 +UD13043,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-23,2025-06-23,1,false,4,18,932,31.1,4 +UD13044,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-24,2025-06-23,2,false,1,12,689,32.9,3 +UD13045,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-25,2025-06-23,3,false,2,13,811,31.0,3 +UD13046,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-26,2025-06-23,4,false,3,16,998,32.8,3 +UD13047,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-27,2025-06-23,5,false,3,16,763,32.0,4 +UD13048,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-28,2025-06-23,6,true,2,7,460,31.4,2 +UD13049,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,6,424,31.9,1 +UD13050,W2148,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-core,prod,active,true,2025-06-30,2025-06-30,1,false,4,21,1443,32.2,5 +UD13051,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-01,2025-05-26,0,true,0,4,182,21.8,1 +UD13052,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-02,2025-06-02,1,false,0,7,194,22.1,2 +UD13053,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-03,2025-06-02,2,false,0,8,289,23.3,1 +UD13054,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-04,2025-06-02,3,false,2,13,453,22.6,3 +UD13055,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-05,2025-06-02,4,false,1,10,438,23.7,1 +UD13056,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-06,2025-06-02,5,false,0,7,189,22.9,1 +UD13057,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-07,2025-06-02,6,true,0,4,140,22.8,1 +UD13058,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-08,2025-06-02,0,true,1,6,184,23.9,1 +UD13059,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-09,2025-06-09,1,false,0,7,199,23.1,1 +UD13060,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-10,2025-06-09,2,false,0,8,272,24.0,1 +UD13061,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-11,2025-06-09,3,false,0,8,251,24.1,2 +UD13062,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-12,2025-06-09,4,false,0,7,304,23.7,2 +UD13063,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-13,2025-06-09,5,false,0,7,280,24.2,2 +UD13064,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-14,2025-06-09,6,true,1,5,168,24.7,1 +UD13065,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-15,2025-06-09,0,true,0,4,142,24.5,1 +UD13066,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-16,2025-06-16,1,false,2,12,359,23.5,3 +UD13067,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-17,2025-06-16,2,false,1,11,331,23.9,2 +UD13068,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-18,2025-06-16,3,false,2,15,452,24.9,2 +UD13069,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-19,2025-06-16,4,false,1,11,350,24.9,2 +UD13070,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-20,2025-06-16,5,false,2,12,379,23.7,2 +UD13071,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-21,2025-06-16,6,true,0,4,172,26.0,1 +UD13072,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-22,2025-06-16,0,true,1,6,199,26.0,1 +UD13073,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-23,2025-06-23,1,false,0,7,223,27.1,1 +UD13074,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-24,2025-06-23,2,false,1,10,458,25.0,2 +UD13075,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-25,2025-06-23,3,false,0,8,205,25.0,2 +UD13076,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-26,2025-06-23,4,false,1,10,390,24.6,2 +UD13077,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-27,2025-06-23,5,false,0,7,254,26.6,1 +UD13078,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-28,2025-06-23,6,true,0,4,153,27.8,1 +UD13079,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-29,2025-06-23,0,true,0,4,135,27.0,1 +UD13080,W2149,A1067,Maple Energy,healthcare,mid_market,NA,CA,maple-ops,sandbox,active,false,2025-06-30,2025-06-30,1,false,0,7,217,26.2,2 +UD13081,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-01,2025-05-26,0,true,2,10,535,27.7,3 +UD13082,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-02,2025-06-02,1,false,2,17,755,27.8,4 +UD13083,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-03,2025-06-02,2,false,2,20,1306,27.7,5 +UD13084,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-04,2025-06-02,3,false,1,17,834,28.7,4 +UD13085,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-05,2025-06-02,4,false,2,18,1174,27.5,3 +UD13086,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-06,2025-06-02,5,false,2,16,1127,28.2,4 +UD13087,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,7,386,28.6,2 +UD13088,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,8,532,27.9,2 +UD13089,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-09,2025-06-09,1,false,1,14,604,29.0,2 +UD13090,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-10,2025-06-09,2,false,2,18,882,28.1,3 +UD13091,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-11,2025-06-09,3,false,2,18,1030,28.5,4 +UD13092,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-12,2025-06-09,4,false,1,15,922,28.0,3 +UD13093,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-13,2025-06-09,5,false,1,13,529,29.9,2 +UD13094,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,8,433,29.9,2 +UD13095,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,8,401,29.1,2 +UD13096,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-16,2025-06-16,1,false,2,16,884,29.0,4 +UD13097,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-17,2025-06-16,2,false,1,16,754,31.1,4 +UD13098,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-18,2025-06-16,3,false,1,15,822,29.9,4 +UD13099,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-19,2025-06-16,4,false,2,18,1220,30.6,3 +UD13100,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-20,2025-06-16,5,false,2,18,744,30.9,4 +UD13101,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,10,566,31.9,2 +UD13102,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-22,2025-06-16,0,true,1,8,581,31.1,2 +UD13103,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-23,2025-06-23,1,false,1,14,898,30.8,2 +UD13104,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-24,2025-06-23,2,false,1,15,1074,30.0,4 +UD13105,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-25,2025-06-23,3,false,1,16,810,31.6,2 +UD13106,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-26,2025-06-23,4,false,2,17,1108,32.0,4 +UD13107,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-27,2025-06-23,5,false,2,16,1148,29.5,3 +UD13108,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-28,2025-06-23,6,true,1,8,339,32.3,1 +UD13109,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,8,553,32.2,2 +UD13110,W2150,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-core,prod,active,true,2025-06-30,2025-06-30,1,false,1,14,1012,30.5,2 +UD13111,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-01,2025-05-26,0,true,2,10,512,38.9,2 +UD13112,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-02,2025-06-02,1,false,4,24,1361,38.8,4 +UD13113,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-03,2025-06-02,2,false,5,30,1406,39.0,5 +UD13114,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-04,2025-06-02,3,false,3,20,963,39.1,3 +UD13115,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-05,2025-06-02,4,false,2,20,888,39.0,5 +UD13116,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-06,2025-06-02,5,false,3,21,1133,39.1,4 +UD13117,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-07,2025-06-02,6,true,2,9,423,39.9,2 +UD13118,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-08,2025-06-02,0,true,3,12,630,40.2,2 +UD13119,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-09,2025-06-09,1,false,4,26,1922,40.6,7 +UD13120,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-10,2025-06-09,2,false,4,23,1004,40.2,6 +UD13121,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-11,2025-06-09,3,false,4,23,1322,39.8,4 +UD13122,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-12,2025-06-09,4,false,3,21,1051,39.9,4 +UD13123,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-13,2025-06-09,5,false,3,23,1335,40.7,5 +UD13124,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-14,2025-06-09,6,true,1,8,390,41.0,2 +UD13125,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-15,2025-06-09,0,true,3,12,870,40.7,3 +UD13126,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-16,2025-06-16,1,false,4,25,1821,41.4,6 +UD13127,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-17,2025-06-16,2,false,3,24,1765,40.8,6 +UD13128,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-18,2025-06-16,3,false,3,23,1650,41.6,3 +UD13129,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-19,2025-06-16,4,false,4,24,1686,41.8,4 +UD13130,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-20,2025-06-16,5,false,5,29,1375,42.1,7 +UD13131,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-21,2025-06-16,6,true,2,10,642,41.3,2 +UD13132,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-22,2025-06-16,0,true,3,12,694,41.3,3 +UD13133,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-23,2025-06-23,1,false,3,18,906,42.7,4 +UD13134,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-24,2025-06-23,2,false,4,26,1452,43.1,4 +UD13135,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-25,2025-06-23,3,false,3,23,1274,43.8,5 +UD13136,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-26,2025-06-23,4,false,2,17,805,41.8,3 +UD13137,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-27,2025-06-23,5,false,3,21,1298,41.2,4 +UD13138,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-28,2025-06-23,6,true,3,12,738,42.5,2 +UD13139,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-29,2025-06-23,0,true,2,9,502,43.6,1 +UD13140,W2151,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-ops,prod,active,false,2025-06-30,2025-06-30,1,false,5,27,1747,44.6,6 +UD13141,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-01,2025-05-26,0,true,2,9,339,35.5,1 +UD13142,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-02,2025-06-02,1,false,3,22,797,35.7,4 +UD13143,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-03,2025-06-02,2,false,3,20,568,35.9,4 +UD13144,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-04,2025-06-02,3,false,0,13,488,36.5,3 +UD13145,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-05,2025-06-02,4,false,1,15,694,36.1,4 +UD13146,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-06,2025-06-02,5,false,3,21,714,37.1,5 +UD13147,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-07,2025-06-02,6,true,1,8,336,36.4,1 +UD13148,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-08,2025-06-02,0,true,0,6,236,36.7,1 +UD13149,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-09,2025-06-09,1,false,1,14,360,37.0,3 +UD13150,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-10,2025-06-09,2,false,1,16,640,36.7,3 +UD13151,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-11,2025-06-09,3,false,2,20,543,37.7,3 +UD13152,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-12,2025-06-09,4,false,3,20,902,38.5,2 +UD13153,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-13,2025-06-09,5,false,1,14,536,37.1,3 +UD13154,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-14,2025-06-09,6,true,1,8,254,37.8,2 +UD13155,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-15,2025-06-09,0,true,2,10,314,37.1,2 +UD13156,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-16,2025-06-16,1,false,3,22,781,37.6,5 +UD13157,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-17,2025-06-16,2,false,2,18,574,38.1,4 +UD13158,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-18,2025-06-16,3,false,0,13,371,38.8,2 +UD13159,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-19,2025-06-16,4,false,3,21,633,38.5,3 +UD13160,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-20,2025-06-16,5,false,2,17,663,38.7,3 +UD13161,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-21,2025-06-16,6,true,0,6,153,38.4,1 +UD13162,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-22,2025-06-16,0,true,2,10,395,38.6,2 +UD13163,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-23,2025-06-23,1,false,1,15,518,39.6,4 +UD13164,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-24,2025-06-23,2,false,2,18,470,39.9,4 +UD13165,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-25,2025-06-23,3,false,3,23,662,40.0,4 +UD13166,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-26,2025-06-23,4,false,3,19,535,37.8,4 +UD13167,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-27,2025-06-23,5,false,2,16,566,39.0,4 +UD13168,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-28,2025-06-23,6,true,1,7,213,39.3,2 +UD13169,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-29,2025-06-23,0,true,0,6,267,41.7,1 +UD13170,W2152,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-finance,sandbox,active,false,2025-06-30,2025-06-30,1,false,1,14,636,38.9,3 +UD13171,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-01,2025-05-26,0,true,1,8,527,56.6,2 +UD13172,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-02,2025-06-02,1,false,1,14,893,56.4,3 +UD13173,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-03,2025-06-02,2,false,2,20,820,56.1,4 +UD13174,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-04,2025-06-02,3,false,3,24,1053,56.1,3 +UD13175,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-05,2025-06-02,4,false,1,14,950,56.1,3 +UD13176,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-06,2025-06-02,5,false,2,17,1171,57.1,4 +UD13177,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-07,2025-06-02,6,true,1,8,434,56.9,2 +UD13178,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-08,2025-06-02,0,true,2,9,542,57.3,1 +UD13179,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-09,2025-06-09,1,false,2,18,1245,57.6,4 +UD13180,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-10,2025-06-09,2,false,2,19,1113,57.3,3 +UD13181,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-11,2025-06-09,3,false,2,20,1380,56.9,4 +UD13182,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-12,2025-06-09,4,false,3,20,1387,57.7,4 +UD13183,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-13,2025-06-09,5,false,1,14,626,57.2,3 +UD13184,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-14,2025-06-09,6,true,1,8,480,57.7,1 +UD13185,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-15,2025-06-09,0,true,2,9,407,58.7,2 +UD13186,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-16,2025-06-16,1,false,3,19,1046,58.5,3 +UD13187,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-17,2025-06-16,2,false,1,15,631,58.0,4 +UD13188,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-18,2025-06-16,3,false,2,19,1053,58.4,5 +UD13189,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-19,2025-06-16,4,false,2,19,1229,59.7,4 +UD13190,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-20,2025-06-16,5,false,1,14,979,58.5,2 +UD13191,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-21,2025-06-16,6,true,1,8,379,58.5,2 +UD13192,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-22,2025-06-16,0,true,2,9,525,58.5,2 +UD13193,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-23,2025-06-23,1,false,3,18,1285,58.1,5 +UD13194,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-24,2025-06-23,2,false,2,19,824,60.2,5 +UD13195,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-25,2025-06-23,3,false,3,21,1378,60.0,3 +UD13196,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-26,2025-06-23,4,false,1,15,765,60.8,4 +UD13197,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-27,2025-06-23,5,false,1,15,754,59.0,2 +UD13198,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-28,2025-06-23,6,true,1,7,355,59.2,1 +UD13199,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-29,2025-06-23,0,true,2,10,440,58.8,3 +UD13200,W2153,A1068,Helio Health,manufacturing,enterprise,APAC,SG,helio-marketing,prod,active,false,2025-06-30,2025-06-30,1,false,3,23,1489,60.2,6 +UD13201,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-01,2025-05-26,0,true,3,12,551,63.1,3 +UD13202,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-02,2025-06-02,1,false,2,19,1316,63.9,4 +UD13203,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-03,2025-06-02,2,false,3,22,949,63.9,6 +UD13204,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-04,2025-06-02,3,false,2,18,1017,63.0,3 +UD13205,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-05,2025-06-02,4,false,2,17,730,63.4,4 +UD13206,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-06,2025-06-02,5,false,3,22,1480,63.7,4 +UD13207,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,8,462,64.3,1 +UD13208,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-08,2025-06-02,0,true,2,10,555,64.0,3 +UD13209,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-09,2025-06-09,1,false,3,21,1472,64.1,4 +UD13210,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-10,2025-06-09,2,false,2,20,1066,65.3,3 +UD13211,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-11,2025-06-09,3,false,3,20,1033,65.4,4 +UD13212,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-12,2025-06-09,4,false,4,26,1731,64.8,5 +UD13213,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-13,2025-06-09,5,false,1,14,581,64.0,3 +UD13214,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-14,2025-06-09,6,true,2,9,619,64.4,2 +UD13215,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-15,2025-06-09,0,true,3,11,596,64.5,2 +UD13216,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-16,2025-06-16,1,false,3,19,1346,65.9,3 +UD13217,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-17,2025-06-16,2,false,3,22,921,64.6,4 +UD13218,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-18,2025-06-16,3,false,2,20,916,66.5,4 +UD13219,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-19,2025-06-16,4,false,3,21,947,64.3,5 +UD13220,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-20,2025-06-16,5,false,4,22,956,65.1,5 +UD13221,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-21,2025-06-16,6,true,3,11,839,66.4,1 +UD13222,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,12,747,64.9,2 +UD13223,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-23,2025-06-23,1,false,3,18,1130,67.3,2 +UD13224,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-24,2025-06-23,2,false,3,21,938,67.3,3 +UD13225,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-25,2025-06-23,3,false,3,22,1540,65.1,5 +UD13226,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-26,2025-06-23,4,false,4,22,1050,68.3,5 +UD13227,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-27,2025-06-23,5,false,3,19,1395,67.2,5 +UD13228,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-28,2025-06-23,6,true,1,8,482,66.2,1 +UD13229,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-29,2025-06-23,0,true,2,9,476,67.4,2 +UD13230,W2154,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-core,prod,active,true,2025-06-30,2025-06-30,1,false,3,21,1471,65.1,5 +UD13231,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-01,2025-05-26,0,true,1,7,414,41.1,2 +UD13232,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-02,2025-06-02,1,false,3,19,1105,41.4,5 +UD13233,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-03,2025-06-02,2,false,4,24,1049,41.4,5 +UD13234,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-04,2025-06-02,3,false,2,19,987,41.7,3 +UD13235,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-05,2025-06-02,4,false,2,18,962,41.5,3 +UD13236,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-06,2025-06-02,5,false,3,22,1616,41.4,6 +UD13237,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-07,2025-06-02,6,true,1,8,344,41.5,2 +UD13238,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-08,2025-06-02,0,true,2,9,433,41.0,2 +UD13239,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-09,2025-06-09,1,false,2,16,950,41.8,3 +UD13240,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-10,2025-06-09,2,false,1,16,1061,41.7,4 +UD13241,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-11,2025-06-09,3,false,3,23,1643,42.7,3 +UD13242,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-12,2025-06-09,4,false,4,27,1800,43.2,5 +UD13243,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-13,2025-06-09,5,false,2,17,860,43.8,4 +UD13244,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-14,2025-06-09,6,true,2,10,505,41.3,2 +UD13245,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-15,2025-06-09,0,true,1,8,551,42.5,2 +UD13246,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-16,2025-06-16,1,false,3,23,1328,41.8,6 +UD13247,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-17,2025-06-16,2,false,3,23,1425,41.8,6 +UD13248,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-18,2025-06-16,3,false,4,27,1971,44.1,3 +UD13249,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-19,2025-06-16,4,false,3,19,1208,43.1,4 +UD13250,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-20,2025-06-16,5,false,2,16,759,44.3,3 +UD13251,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-21,2025-06-16,6,true,2,9,644,44.6,2 +UD13252,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-22,2025-06-16,0,true,3,11,665,44.8,1 +UD13253,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-23,2025-06-23,1,false,2,17,712,42.6,3 +UD13254,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-24,2025-06-23,2,false,1,15,755,43.0,2 +UD13255,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-25,2025-06-23,3,false,3,20,1392,44.8,3 +UD13256,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-26,2025-06-23,4,false,2,17,1148,44.5,4 +UD13257,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-27,2025-06-23,5,false,4,20,1097,44.0,5 +UD13258,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-28,2025-06-23,6,true,1,8,401,44.5,1 +UD13259,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-29,2025-06-23,0,true,1,7,515,45.6,1 +UD13260,W2155,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-ops,prod,active,false,2025-06-30,2025-06-30,1,false,4,27,1782,44.2,6 +UD13261,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-01,2025-05-26,0,true,2,10,480,64.1,2 +UD13262,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-02,2025-06-02,1,false,4,24,1739,63.6,5 +UD13263,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-03,2025-06-02,2,false,4,23,1684,63.8,4 +UD13264,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-04,2025-06-02,3,false,3,26,1382,64.6,5 +UD13265,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-05,2025-06-02,4,false,3,23,1595,63.9,6 +UD13266,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-06,2025-06-02,5,false,4,21,1113,64.3,3 +UD13267,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-07,2025-06-02,6,true,2,10,716,64.3,2 +UD13268,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-08,2025-06-02,0,true,3,10,668,65.8,2 +UD13269,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-09,2025-06-09,1,false,4,25,1358,65.3,4 +UD13270,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-10,2025-06-09,2,false,5,30,2247,65.4,5 +UD13271,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-11,2025-06-09,3,false,5,34,2018,65.5,9 +UD13272,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-12,2025-06-09,4,false,5,25,1628,64.4,4 +UD13273,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-13,2025-06-09,5,false,5,24,1678,65.9,6 +UD13274,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-14,2025-06-09,6,true,1,8,331,64.5,2 +UD13275,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-15,2025-06-09,0,true,3,11,583,64.8,3 +UD13276,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-16,2025-06-16,1,false,4,23,1262,66.0,6 +UD13277,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-17,2025-06-16,2,false,5,29,1933,66.0,6 +UD13278,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-18,2025-06-16,3,false,4,26,1444,64.9,7 +UD13279,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-19,2025-06-16,4,false,3,19,1145,67.1,3 +UD13280,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-20,2025-06-16,5,false,5,23,1345,66.0,5 +UD13281,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-21,2025-06-16,6,true,2,9,405,67.0,2 +UD13282,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-22,2025-06-16,0,true,4,12,551,67.0,3 +UD13283,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-23,2025-06-23,1,false,5,26,1272,67.4,6 +UD13284,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-24,2025-06-23,2,false,4,27,1911,67.3,3 +UD13285,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-25,2025-06-23,3,false,4,29,1586,68.3,6 +UD13286,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-26,2025-06-23,4,false,5,25,1558,67.3,4 +UD13287,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-27,2025-06-23,5,false,4,22,1169,68.8,5 +UD13288,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-28,2025-06-23,6,true,3,11,546,67.2,2 +UD13289,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-29,2025-06-23,0,true,2,10,432,66.6,2 +UD13290,W2156,A1069,Bright Foods,manufacturing,enterprise,NA,CA,bright-finance,prod,active,false,2025-06-30,2025-06-30,1,false,3,21,1303,69.2,5 +UD13291,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-01,2025-05-26,0,true,3,7,468,13.8,1 +UD13292,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-02,2025-06-02,1,false,5,17,908,13.4,3 +UD13293,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-03,2025-06-02,2,false,5,26,1655,13.3,4 +UD13294,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-04,2025-06-02,3,false,5,22,978,14.3,4 +UD13295,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-05,2025-06-02,4,false,3,16,1002,14.2,3 +UD13296,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-06,2025-06-02,5,false,5,20,1358,14.1,4 +UD13297,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-07,2025-06-02,6,true,2,6,429,14.9,1 +UD13298,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,4,291,13.8,1 +UD13299,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-09,2025-06-09,1,false,3,15,802,14.8,2 +UD13300,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-10,2025-06-09,2,false,5,19,890,15.7,3 +UD13301,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-11,2025-06-09,3,false,4,17,1294,14.7,3 +UD13302,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-12,2025-06-09,4,false,5,18,1299,15.1,3 +UD13303,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-13,2025-06-09,5,false,5,15,1009,15.2,2 +UD13304,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-14,2025-06-09,6,true,3,8,617,14.9,2 +UD13305,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-15,2025-06-09,0,true,2,5,255,15.1,1 +UD13306,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-16,2025-06-16,1,false,3,14,927,15.3,3 +UD13307,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-17,2025-06-16,2,false,4,17,935,15.9,3 +UD13308,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-18,2025-06-16,3,false,5,21,1039,15.3,6 +UD13309,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-19,2025-06-16,4,false,3,16,904,15.6,4 +UD13310,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-20,2025-06-16,5,false,3,16,819,15.1,4 +UD13311,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-21,2025-06-16,6,true,4,9,634,17.0,2 +UD13312,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,8,550,16.5,1 +UD13313,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-23,2025-06-23,1,false,5,17,1129,16.8,3 +UD13314,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-24,2025-06-23,2,false,4,15,778,16.4,3 +UD13315,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-25,2025-06-23,3,false,3,17,833,16.7,3 +UD13316,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-26,2025-06-23,4,false,5,17,846,16.0,4 +UD13317,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-27,2025-06-23,5,false,3,14,674,17.3,4 +UD13318,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-28,2025-06-23,6,true,3,6,455,16.0,1 +UD13319,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-29,2025-06-23,0,true,4,7,368,15.9,2 +UD13320,W2157,A1070,Helio Manufacturing,manufacturing,smb,APAC,NZ,helio-core,prod,active,true,2025-06-30,2025-06-30,1,false,4,15,834,17.1,2 +UD13321,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-01,2025-05-26,0,true,3,10,733,19.1,2 +UD13322,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-02,2025-06-02,1,false,3,17,1108,18.4,4 +UD13323,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-03,2025-06-02,2,false,2,15,790,19.2,4 +UD13324,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-04,2025-06-02,3,false,3,20,966,19.8,3 +UD13325,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-05,2025-06-02,4,false,3,16,1115,19.7,2 +UD13326,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-06,2025-06-02,5,false,4,16,985,19.9,2 +UD13327,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,5,250,19.3,1 +UD13328,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,5,259,19.5,1 +UD13329,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-09,2025-06-09,1,false,4,17,1209,20.4,3 +UD13330,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-10,2025-06-09,2,false,2,14,900,20.4,4 +UD13331,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-11,2025-06-09,3,false,3,20,1279,19.4,4 +UD13332,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-12,2025-06-09,4,false,2,13,790,20.4,4 +UD13333,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-13,2025-06-09,5,false,5,22,1319,20.5,5 +UD13334,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-14,2025-06-09,6,true,3,9,632,20.2,2 +UD13335,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-15,2025-06-09,0,true,3,8,582,21.2,2 +UD13336,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-16,2025-06-16,1,false,4,16,1159,21.3,4 +UD13337,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-17,2025-06-16,2,false,2,15,932,22.1,3 +UD13338,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-18,2025-06-16,3,false,4,20,1369,21.0,6 +UD13339,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-19,2025-06-16,4,false,4,19,1245,22.0,5 +UD13340,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-20,2025-06-16,5,false,4,21,1505,21.1,6 +UD13341,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-21,2025-06-16,6,true,3,8,542,22.5,2 +UD13342,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-22,2025-06-16,0,true,2,8,560,22.2,2 +UD13343,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-23,2025-06-23,1,false,2,14,772,22.6,4 +UD13344,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-24,2025-06-23,2,false,2,15,840,22.1,3 +UD13345,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-25,2025-06-23,3,false,2,15,654,22.1,2 +UD13346,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-26,2025-06-23,4,false,2,13,694,23.2,2 +UD13347,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-27,2025-06-23,5,false,5,24,1259,22.1,5 +UD13348,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-28,2025-06-23,6,true,2,7,334,23.9,2 +UD13349,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,6,322,22.9,1 +UD13350,W2158,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-30,2025-06-30,1,false,5,20,1015,21.5,5 +UD13351,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-01,2025-05-26,0,true,2,6,444,34.0,1 +UD13352,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-02,2025-06-02,1,false,3,17,854,33.6,4 +UD13353,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-03,2025-06-02,2,false,5,28,1760,33.4,6 +UD13354,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-04,2025-06-02,3,false,4,19,922,34.3,3 +UD13355,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-05,2025-06-02,4,false,3,15,1125,33.7,2 +UD13356,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-06,2025-06-02,5,false,3,16,990,34.4,3 +UD13357,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-07,2025-06-02,6,true,2,7,320,33.7,2 +UD13358,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-08,2025-06-02,0,true,1,5,236,34.1,1 +UD13359,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-09,2025-06-09,1,false,5,24,1726,34.5,5 +UD13360,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-10,2025-06-09,2,false,3,15,1024,34.2,4 +UD13361,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-11,2025-06-09,3,false,2,14,1044,35.3,3 +UD13362,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-12,2025-06-09,4,false,5,23,1499,35.1,3 +UD13363,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-13,2025-06-09,5,false,4,19,1343,35.3,5 +UD13364,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-14,2025-06-09,6,true,2,7,338,35.6,2 +UD13365,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-15,2025-06-09,0,true,4,12,729,35.8,2 +UD13366,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-16,2025-06-16,1,false,3,14,884,35.2,2 +UD13367,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-17,2025-06-16,2,false,3,19,994,35.3,5 +UD13368,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-18,2025-06-16,3,false,4,23,1349,35.2,5 +UD13369,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-19,2025-06-16,4,false,2,12,893,36.4,2 +UD13370,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-20,2025-06-16,5,false,4,17,910,36.6,4 +UD13371,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-21,2025-06-16,6,true,2,7,335,35.9,1 +UD13372,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-22,2025-06-16,0,true,1,5,218,35.2,1 +UD13373,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-23,2025-06-23,1,false,4,21,1144,37.3,6 +UD13374,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-24,2025-06-23,2,false,5,24,1643,36.4,6 +UD13375,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-25,2025-06-23,3,false,3,20,871,37.1,3 +UD13376,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-26,2025-06-23,4,false,4,19,955,37.4,5 +UD13377,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-27,2025-06-23,5,false,3,17,983,37.7,2 +UD13378,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-28,2025-06-23,6,true,3,10,546,38.1,1 +UD13379,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-29,2025-06-23,0,true,2,7,455,36.2,2 +UD13380,W2159,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-30,2025-06-30,1,false,3,17,1147,36.4,4 +UD13381,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-01,2025-05-26,0,true,0,4,160,10.2,1 +UD13382,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-02,2025-06-02,1,false,2,14,606,10.3,3 +UD13383,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-03,2025-06-02,2,false,1,11,508,10.6,2 +UD13384,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-04,2025-06-02,3,false,1,10,317,11.2,2 +UD13385,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-05,2025-06-02,4,false,0,7,310,10.2,2 +UD13386,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-06,2025-06-02,5,false,1,10,370,10.4,2 +UD13387,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-07,2025-06-02,6,true,0,4,127,10.5,0 +UD13388,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-08,2025-06-02,0,true,0,4,135,10.1,1 +UD13389,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-09,2025-06-09,1,false,0,7,281,11.7,1 +UD13390,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-10,2025-06-09,2,false,1,11,390,10.5,1 +UD13391,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-11,2025-06-09,3,false,1,11,338,12.4,1 +UD13392,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-12,2025-06-09,4,false,0,7,222,11.2,1 +UD13393,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-13,2025-06-09,5,false,2,14,617,11.9,4 +UD13394,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-14,2025-06-09,6,true,2,7,270,12.1,1 +UD13395,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-15,2025-06-09,0,true,0,4,150,12.9,1 +UD13396,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-16,2025-06-16,1,false,1,10,321,13.2,1 +UD13397,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-17,2025-06-16,2,false,1,11,289,11.6,2 +UD13398,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-18,2025-06-16,3,false,2,13,575,12.8,3 +UD13399,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-19,2025-06-16,4,false,1,11,485,12.0,3 +UD13400,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-20,2025-06-16,5,false,2,11,503,12.6,1 +UD13401,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-21,2025-06-16,6,true,1,6,175,13.7,2 +UD13402,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-22,2025-06-16,0,true,0,4,131,11.8,1 +UD13403,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-23,2025-06-23,1,false,0,7,211,12.3,1 +UD13404,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-24,2025-06-23,2,false,2,14,550,13.2,3 +UD13405,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-25,2025-06-23,3,false,1,11,415,14.0,2 +UD13406,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-26,2025-06-23,4,false,1,10,274,12.6,3 +UD13407,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-27,2025-06-23,5,false,1,10,417,13.6,2 +UD13408,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-28,2025-06-23,6,true,2,7,333,13.1,1 +UD13409,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-29,2025-06-23,0,true,1,6,254,14.0,1 +UD13410,W2160,A1071,Evergreen Group,education,mid_market,NA,CA,evergreen-finance,sandbox,active,false,2025-06-30,2025-06-30,1,false,3,18,554,14.2,4 +UD13411,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-01,2025-05-26,0,true,4,11,629,28.3,3 +UD13412,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-02,2025-06-02,1,false,4,26,1256,29.2,5 +UD13413,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-03,2025-06-02,2,false,7,39,1769,28.7,9 +UD13414,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-04,2025-06-02,3,false,6,28,1226,28.8,8 +UD13415,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-05,2025-06-02,4,false,6,30,2216,29.5,7 +UD13416,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-06,2025-06-02,5,false,4,22,993,28.8,4 +UD13417,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-07,2025-06-02,6,true,4,13,924,29.3,3 +UD13418,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-08,2025-06-02,0,true,4,13,820,29.2,3 +UD13419,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-09,2025-06-09,1,false,6,28,1684,28.8,7 +UD13420,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-10,2025-06-09,2,false,6,28,2044,29.6,7 +UD13421,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-11,2025-06-09,3,false,5,27,1836,30.2,5 +UD13422,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-12,2025-06-09,4,false,6,28,1446,29.6,7 +UD13423,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-13,2025-06-09,5,false,7,35,2630,30.6,7 +UD13424,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-14,2025-06-09,6,true,4,13,598,30.9,4 +UD13425,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-15,2025-06-09,0,true,2,9,664,30.3,1 +UD13426,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-16,2025-06-16,1,false,7,32,2060,31.1,4 +UD13427,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-17,2025-06-16,2,false,6,35,2444,30.9,6 +UD13428,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-18,2025-06-16,3,false,7,30,2268,30.6,8 +UD13429,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-19,2025-06-16,4,false,6,29,1898,30.7,6 +UD13430,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-20,2025-06-16,5,false,6,34,1803,30.8,4 +UD13431,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-21,2025-06-16,6,true,3,10,572,31.9,2 +UD13432,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,11,711,30.1,2 +UD13433,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-23,2025-06-23,1,false,5,30,1680,31.4,5 +UD13434,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-24,2025-06-23,2,false,7,34,2031,31.5,4 +UD13435,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-25,2025-06-23,3,false,6,28,1336,32.7,4 +UD13436,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-26,2025-06-23,4,false,7,38,2850,32.1,9 +UD13437,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-27,2025-06-23,5,false,5,27,1664,32.8,5 +UD13438,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-28,2025-06-23,6,true,3,12,671,31.4,2 +UD13439,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-29,2025-06-23,0,true,3,10,531,32.3,2 +UD13440,W2161,A1072,Summit Ventures,software,enterprise,NA,US,summit-core,prod,active,true,2025-06-30,2025-06-30,1,false,7,32,2022,33.7,6 +UD13441,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-01,2025-05-26,0,true,1,8,566,66.7,1 +UD13442,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-02,2025-06-02,1,false,5,24,1320,66.1,5 +UD13443,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-03,2025-06-02,2,false,2,19,880,66.8,4 +UD13444,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-04,2025-06-02,3,false,2,18,1152,66.2,3 +UD13445,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-05,2025-06-02,4,false,4,27,1917,66.7,6 +UD13446,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-06,2025-06-02,5,false,3,22,1184,67.0,6 +UD13447,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-07,2025-06-02,6,true,2,9,546,67.2,2 +UD13448,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-08,2025-06-02,0,true,2,9,532,67.0,2 +UD13449,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-09,2025-06-09,1,false,3,20,1127,66.7,5 +UD13450,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-10,2025-06-09,2,false,3,24,1684,67.4,6 +UD13451,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-11,2025-06-09,3,false,5,32,1744,67.6,7 +UD13452,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-12,2025-06-09,4,false,4,22,1039,67.7,3 +UD13453,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-13,2025-06-09,5,false,3,20,1396,67.2,5 +UD13454,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-14,2025-06-09,6,true,3,11,498,69.0,3 +UD13455,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-15,2025-06-09,0,true,3,12,899,68.7,3 +UD13456,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-16,2025-06-16,1,false,4,24,1564,68.6,3 +UD13457,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-17,2025-06-16,2,false,5,34,2079,68.5,9 +UD13458,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-18,2025-06-16,3,false,4,29,1442,68.6,6 +UD13459,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-19,2025-06-16,4,false,5,30,1962,69.5,8 +UD13460,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-20,2025-06-16,5,false,5,26,1821,69.2,7 +UD13461,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-21,2025-06-16,6,true,3,11,765,68.3,2 +UD13462,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-22,2025-06-16,0,true,2,10,480,67.8,3 +UD13463,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-23,2025-06-23,1,false,4,25,1687,70.5,6 +UD13464,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-24,2025-06-23,2,false,2,20,1298,68.5,4 +UD13465,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-25,2025-06-23,3,false,4,29,1564,70.8,6 +UD13466,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-26,2025-06-23,4,false,4,25,1267,69.1,6 +UD13467,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-27,2025-06-23,5,false,3,20,936,68.7,6 +UD13468,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-28,2025-06-23,6,true,2,10,434,70.7,2 +UD13469,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-29,2025-06-23,0,true,2,10,677,69.6,2 +UD13470,W2162,A1072,Summit Ventures,software,enterprise,NA,US,summit-ops,prod,active,false,2025-06-30,2025-06-30,1,false,3,21,1326,70.8,3 +UD13471,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-01,2025-05-26,0,true,1,8,260,30.3,2 +UD13472,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-02,2025-06-02,1,false,1,14,590,31.3,3 +UD13473,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-03,2025-06-02,2,false,1,16,720,30.9,2 +UD13474,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-04,2025-06-02,3,false,2,19,606,31.6,3 +UD13475,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-05,2025-06-02,4,false,1,15,688,31.1,3 +UD13476,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-06,2025-06-02,5,false,1,14,434,31.1,4 +UD13477,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-07,2025-06-02,6,true,0,6,172,31.7,1 +UD13478,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-08,2025-06-02,0,true,2,10,318,32.2,2 +UD13479,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-09,2025-06-09,1,false,0,11,427,32.1,2 +UD13480,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-10,2025-06-09,2,false,2,20,538,31.9,5 +UD13481,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-11,2025-06-09,3,false,1,16,578,31.9,3 +UD13482,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-12,2025-06-09,4,false,1,16,428,32.5,3 +UD13483,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-13,2025-06-09,5,false,0,11,490,32.3,2 +UD13484,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-14,2025-06-09,6,true,0,6,203,31.8,1 +UD13485,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-15,2025-06-09,0,true,0,6,209,32.2,1 +UD13486,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-16,2025-06-16,1,false,0,11,302,33.3,2 +UD13487,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-17,2025-06-16,2,false,2,20,775,32.1,2 +UD13488,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-18,2025-06-16,3,false,0,13,354,33.3,2 +UD13489,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-19,2025-06-16,4,false,2,17,650,33.1,2 +UD13490,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-20,2025-06-16,5,false,2,16,622,34.3,2 +UD13491,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-21,2025-06-16,6,true,0,6,167,32.8,1 +UD13492,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-22,2025-06-16,0,true,1,7,190,34.2,2 +UD13493,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-23,2025-06-23,1,false,0,11,271,34.9,2 +UD13494,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-24,2025-06-23,2,false,1,17,515,34.1,3 +UD13495,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-25,2025-06-23,3,false,2,18,708,32.7,4 +UD13496,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-26,2025-06-23,4,false,3,19,801,35.5,5 +UD13497,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-27,2025-06-23,5,false,1,14,418,33.3,3 +UD13498,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-28,2025-06-23,6,true,0,6,156,34.2,1 +UD13499,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-29,2025-06-23,0,true,2,9,255,36.0,2 +UD13500,W2163,A1072,Summit Ventures,software,enterprise,NA,US,summit-finance,sandbox,active,false,2025-06-30,2025-06-30,1,false,3,18,567,33.4,3 +UD13501,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-01,2025-05-26,0,true,4,11,852,17.6,1 +UD13502,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-02,2025-06-02,1,false,5,23,1148,18.2,4 +UD13503,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-03,2025-06-02,2,false,5,25,1256,18.3,5 +UD13504,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-04,2025-06-02,3,false,7,31,1553,18.4,8 +UD13505,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-05,2025-06-02,4,false,4,16,1124,18.1,4 +UD13506,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-06,2025-06-02,5,false,5,18,1227,18.1,3 +UD13507,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-07,2025-06-02,6,true,3,7,527,18.4,2 +UD13508,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-08,2025-06-02,0,true,5,12,905,19.0,3 +UD13509,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-09,2025-06-09,1,false,5,25,1310,18.1,3 +UD13510,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-10,2025-06-09,2,false,6,29,1383,18.2,8 +UD13511,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-11,2025-06-09,3,false,4,21,1542,18.9,5 +UD13512,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-12,2025-06-09,4,false,4,20,1088,19.1,5 +UD13513,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-13,2025-06-09,5,false,6,29,1622,20.0,5 +UD13514,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-14,2025-06-09,6,true,2,7,518,20.1,2 +UD13515,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-15,2025-06-09,0,true,5,13,732,19.4,2 +UD13516,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-16,2025-06-16,1,false,5,25,1791,20.4,5 +UD13517,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-17,2025-06-16,2,false,7,25,1849,20.2,5 +UD13518,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-18,2025-06-16,3,false,5,28,1953,20.2,4 +UD13519,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-19,2025-06-16,4,false,5,25,1145,19.4,7 +UD13520,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-20,2025-06-16,5,false,7,28,1866,20.6,5 +UD13521,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-21,2025-06-16,6,true,3,10,571,19.7,2 +UD13522,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-22,2025-06-16,0,true,2,6,397,19.5,1 +UD13523,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-23,2025-06-23,1,false,5,19,1039,21.7,5 +UD13524,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-24,2025-06-23,2,false,6,29,1443,20.8,7 +UD13525,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-25,2025-06-23,3,false,4,21,1007,20.9,3 +UD13526,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-26,2025-06-23,4,false,6,28,1618,19.9,3 +UD13527,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-27,2025-06-23,5,false,5,22,1526,19.5,3 +UD13528,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-28,2025-06-23,6,true,3,10,669,19.9,1 +UD13529,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-29,2025-06-23,0,true,3,10,631,22.9,3 +UD13530,W2164,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-core,prod,active,true,2025-06-30,2025-06-30,1,false,5,20,901,22.1,4 +UD13531,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-01,2025-05-26,0,true,3,8,417,16.9,1 +UD13532,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-02,2025-06-02,1,false,4,20,1126,17.0,5 +UD13533,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-03,2025-06-02,2,false,5,28,1690,17.6,6 +UD13534,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-04,2025-06-02,3,false,3,20,926,18.1,4 +UD13535,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-05,2025-06-02,4,false,3,18,1256,18.0,3 +UD13536,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-06,2025-06-02,5,false,4,18,978,17.5,3 +UD13537,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-07,2025-06-02,6,true,3,8,603,18.2,2 +UD13538,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-08,2025-06-02,0,true,3,9,580,18.7,2 +UD13539,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-09,2025-06-09,1,false,4,17,985,18.0,4 +UD13540,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-10,2025-06-09,2,false,4,18,923,18.4,4 +UD13541,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-11,2025-06-09,3,false,2,13,947,19.3,3 +UD13542,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-12,2025-06-09,4,false,3,17,1022,20.0,4 +UD13543,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-13,2025-06-09,5,false,4,16,888,18.7,3 +UD13544,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-14,2025-06-09,6,true,4,9,690,19.3,2 +UD13545,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-15,2025-06-09,0,true,3,9,573,19.5,2 +UD13546,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-16,2025-06-16,1,false,3,14,804,19.8,3 +UD13547,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-17,2025-06-16,2,false,4,24,1473,20.2,4 +UD13548,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-18,2025-06-16,3,false,4,24,1470,18.6,5 +UD13549,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-19,2025-06-16,4,false,5,25,1360,19.7,5 +UD13550,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-20,2025-06-16,5,false,5,26,1874,19.4,5 +UD13551,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-21,2025-06-16,6,true,1,6,302,21.4,1 +UD13552,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-22,2025-06-16,0,true,3,9,539,20.4,2 +UD13553,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-23,2025-06-23,1,false,4,17,972,19.5,2 +UD13554,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-24,2025-06-23,2,false,3,16,1081,20.2,3 +UD13555,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-25,2025-06-23,3,false,4,25,1320,20.2,6 +UD13556,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-26,2025-06-23,4,false,2,15,653,19.7,4 +UD13557,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-27,2025-06-23,5,false,3,17,850,22.8,3 +UD13558,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-28,2025-06-23,6,true,3,9,603,21.3,2 +UD13559,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-29,2025-06-23,0,true,3,8,401,21.8,1 +UD13560,W2165,A1073,Silver Holdings,travel,mid_market,EMEA,DE,silver-ops,prod,active,false,2025-06-30,2025-06-30,1,false,4,19,970,20.8,4 +UD13561,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,6,357,29.3,1 +UD13562,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-02,2025-06-02,1,false,4,19,894,29.8,4 +UD13563,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-03,2025-06-02,2,false,1,11,550,30.3,1 +UD13564,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-04,2025-06-02,3,false,2,14,805,29.7,2 +UD13565,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-05,2025-06-02,4,false,2,15,782,30.6,4 +UD13566,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-06,2025-06-02,5,false,3,18,874,30.7,4 +UD13567,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,5,281,30.7,1 +UD13568,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-08,2025-06-02,0,true,3,9,592,29.9,1 +UD13569,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-09,2025-06-09,1,false,3,15,895,30.6,3 +UD13570,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-10,2025-06-09,2,false,3,18,1334,31.6,3 +UD13571,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-11,2025-06-09,3,false,1,11,459,31.0,2 +UD13572,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-12,2025-06-09,4,false,2,14,840,31.4,3 +UD13573,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-13,2025-06-09,5,false,2,12,873,31.6,3 +UD13574,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,5,258,30.4,1 +UD13575,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-15,2025-06-09,0,true,2,6,305,31.9,2 +UD13576,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-16,2025-06-16,1,false,2,11,551,32.3,3 +UD13577,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-17,2025-06-16,2,false,2,15,945,31.6,2 +UD13578,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-18,2025-06-16,3,false,2,14,842,33.0,2 +UD13579,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-19,2025-06-16,4,false,4,23,1334,31.5,5 +UD13580,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-20,2025-06-16,5,false,4,21,968,31.0,3 +UD13581,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,7,430,32.3,1 +UD13582,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-22,2025-06-16,0,true,1,5,223,31.8,1 +UD13583,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-23,2025-06-23,1,false,3,17,976,31.4,3 +UD13584,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-24,2025-06-23,2,false,4,21,1183,33.0,4 +UD13585,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-25,2025-06-23,3,false,1,11,536,31.7,1 +UD13586,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-26,2025-06-23,4,false,3,18,1023,33.6,4 +UD13587,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-27,2025-06-23,5,false,4,19,1410,35.1,5 +UD13588,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-28,2025-06-23,6,true,3,10,711,33.8,2 +UD13589,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-29,2025-06-23,0,true,2,7,387,34.5,1 +UD13590,W2166,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-core,prod,active,true,2025-06-30,2025-06-30,1,false,2,14,942,31.6,2 +UD13591,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-01,2025-05-26,0,true,1,6,320,29.2,1 +UD13592,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-02,2025-06-02,1,false,5,20,914,29.2,2 +UD13593,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-03,2025-06-02,2,false,5,23,1368,29.1,6 +UD13594,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-04,2025-06-02,3,false,5,25,1894,29.2,7 +UD13595,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-05,2025-06-02,4,false,5,20,1532,29.3,3 +UD13596,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-06,2025-06-02,5,false,4,19,1072,29.5,4 +UD13597,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-07,2025-06-02,6,true,3,9,555,30.0,2 +UD13598,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-08,2025-06-02,0,true,2,7,476,30.0,2 +UD13599,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-09,2025-06-09,1,false,5,23,1531,30.1,5 +UD13600,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-10,2025-06-09,2,false,4,23,1195,30.6,4 +UD13601,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-11,2025-06-09,3,false,3,20,1103,30.9,4 +UD13602,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-12,2025-06-09,4,false,5,22,1524,31.1,4 +UD13603,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-13,2025-06-09,5,false,4,19,1267,31.1,3 +UD13604,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-14,2025-06-09,6,true,3,10,618,30.7,2 +UD13605,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-15,2025-06-09,0,true,3,10,514,30.7,2 +UD13606,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-16,2025-06-16,1,false,3,17,1218,30.6,3 +UD13607,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-17,2025-06-16,2,false,4,19,1342,31.2,3 +UD13608,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-18,2025-06-16,3,false,6,32,1547,31.6,7 +UD13609,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-19,2025-06-16,4,false,5,27,1826,32.6,5 +UD13610,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-20,2025-06-16,5,false,4,21,1305,31.0,4 +UD13611,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-21,2025-06-16,6,true,3,10,551,31.2,1 +UD13612,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-22,2025-06-16,0,true,3,10,760,31.8,2 +UD13613,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-23,2025-06-23,1,false,3,16,1092,31.4,3 +UD13614,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-24,2025-06-23,2,false,6,32,2259,32.5,8 +UD13615,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-25,2025-06-23,3,false,5,22,1409,31.2,5 +UD13616,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-26,2025-06-23,4,false,4,18,1317,31.8,3 +UD13617,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-27,2025-06-23,5,false,4,18,960,32.4,4 +UD13618,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-28,2025-06-23,6,true,4,11,753,33.7,3 +UD13619,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-29,2025-06-23,0,true,2,8,441,31.9,2 +UD13620,W2167,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-ops,prod,active,false,2025-06-30,2025-06-30,1,false,5,25,1168,32.7,3 +UD13621,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-01,2025-05-26,0,true,1,5,359,27.5,1 +UD13622,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-02,2025-06-02,1,false,2,11,605,27.4,2 +UD13623,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-03,2025-06-02,2,false,3,17,980,27.4,3 +UD13624,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-04,2025-06-02,3,false,2,15,1057,27.6,3 +UD13625,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-05,2025-06-02,4,false,3,19,1024,26.9,4 +UD13626,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-06,2025-06-02,5,false,2,15,828,27.3,3 +UD13627,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-07,2025-06-02,6,true,1,6,373,27.9,1 +UD13628,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-08,2025-06-02,0,true,2,7,494,28.8,1 +UD13629,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-09,2025-06-09,1,false,3,15,919,27.7,2 +UD13630,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-10,2025-06-09,2,false,2,13,676,28.0,2 +UD13631,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-11,2025-06-09,3,false,3,16,980,28.1,2 +UD13632,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-12,2025-06-09,4,false,2,14,996,27.6,3 +UD13633,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-13,2025-06-09,5,false,2,12,878,28.4,2 +UD13634,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-14,2025-06-09,6,true,3,9,511,28.9,1 +UD13635,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-15,2025-06-09,0,true,1,5,281,29.9,1 +UD13636,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-16,2025-06-16,1,false,2,12,657,28.5,2 +UD13637,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-17,2025-06-16,2,false,3,16,1050,29.4,4 +UD13638,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-18,2025-06-16,3,false,1,10,539,29.9,3 +UD13639,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-19,2025-06-16,4,false,3,18,1149,30.2,4 +UD13640,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-20,2025-06-16,5,false,2,14,760,28.5,3 +UD13641,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-21,2025-06-16,6,true,1,6,368,28.4,2 +UD13642,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-22,2025-06-16,0,true,1,5,218,29.4,1 +UD13643,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-23,2025-06-23,1,false,2,12,728,30.3,3 +UD13644,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-24,2025-06-23,2,false,3,18,1327,29.4,4 +UD13645,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-25,2025-06-23,3,false,4,21,1479,30.8,5 +UD13646,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-26,2025-06-23,4,false,1,11,634,30.3,3 +UD13647,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-27,2025-06-23,5,false,2,13,647,31.3,3 +UD13648,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-28,2025-06-23,6,true,1,5,261,30.1,1 +UD13649,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-29,2025-06-23,0,true,1,5,264,30.0,1 +UD13650,W2168,A1074,Granite Analytics,retail,mid_market,NA,CA,granite-finance,prod,active,false,2025-06-30,2025-06-30,1,false,1,10,490,31.8,2 +UD13651,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-01,2025-05-26,0,true,3,9,672,22.3,1 +UD13652,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-02,2025-06-02,1,false,6,20,1262,23.6,2 +UD13653,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-03,2025-06-02,2,false,5,22,1391,23.3,3 +UD13654,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-04,2025-06-02,3,false,6,24,1448,23.7,5 +UD13655,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-05,2025-06-02,4,false,4,15,989,23.8,3 +UD13656,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-06,2025-06-02,5,false,4,15,1145,23.6,4 +UD13657,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-07,2025-06-02,6,true,5,11,644,23.6,2 +UD13658,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-08,2025-06-02,0,true,4,9,578,23.4,2 +UD13659,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-09,2025-06-09,1,false,5,22,1340,24.0,5 +UD13660,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-10,2025-06-09,2,false,6,24,1683,23.0,4 +UD13661,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-11,2025-06-09,3,false,6,24,1296,24.6,4 +UD13662,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-12,2025-06-09,4,false,6,22,1245,24.8,4 +UD13663,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-13,2025-06-09,5,false,6,19,1050,25.5,5 +UD13664,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-14,2025-06-09,6,true,5,11,638,24.2,2 +UD13665,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-15,2025-06-09,0,true,2,6,281,23.6,1 +UD13666,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-16,2025-06-16,1,false,5,17,1049,25.5,4 +UD13667,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-17,2025-06-16,2,false,6,29,1589,25.5,5 +UD13668,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-18,2025-06-16,3,false,5,22,1406,24.8,3 +UD13669,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-19,2025-06-16,4,false,4,15,710,25.7,3 +UD13670,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-20,2025-06-16,5,false,7,30,1431,25.0,6 +UD13671,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-21,2025-06-16,6,true,3,8,496,26.2,1 +UD13672,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-22,2025-06-16,0,true,4,9,676,26.7,2 +UD13673,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-23,2025-06-23,1,false,5,17,899,26.0,4 +UD13674,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-24,2025-06-23,2,false,7,22,1401,25.1,4 +UD13675,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-25,2025-06-23,3,false,5,21,1491,26.2,4 +UD13676,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-26,2025-06-23,4,false,6,26,1445,26.7,3 +UD13677,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-27,2025-06-23,5,false,4,15,980,28.4,4 +UD13678,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-28,2025-06-23,6,true,4,9,544,25.1,3 +UD13679,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-29,2025-06-23,0,true,3,8,470,25.9,2 +UD13680,W2169,A1075,Cedar Labs,software,smb,EMEA,UK,cedar-core,prod,active,true,2025-06-30,2025-06-30,1,false,6,19,1340,26.7,4 +UD13681,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-01,2025-05-26,0,true,3,9,435,21.1,2 +UD13682,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-02,2025-06-02,1,false,6,30,2176,20.6,5 +UD13683,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-03,2025-06-02,2,false,6,25,1818,21.5,4 +UD13684,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-04,2025-06-02,3,false,7,36,1689,21.5,7 +UD13685,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-05,2025-06-02,4,false,8,26,1772,21.7,4 +UD13686,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-06,2025-06-02,5,false,8,31,2361,21.2,4 +UD13687,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-07,2025-06-02,6,true,5,11,549,21.8,2 +UD13688,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-08,2025-06-02,0,true,5,10,726,22.3,2 +UD13689,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-09,2025-06-09,1,false,5,21,1566,22.0,4 +UD13690,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-10,2025-06-09,2,false,6,27,1192,22.0,4 +UD13691,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-11,2025-06-09,3,false,8,38,2606,22.2,6 +UD13692,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-12,2025-06-09,4,false,6,21,1023,22.1,3 +UD13693,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-13,2025-06-09,5,false,8,35,1837,22.4,4 +UD13694,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-14,2025-06-09,6,true,4,11,534,23.7,3 +UD13695,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-15,2025-06-09,0,true,3,9,690,21.9,2 +UD13696,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-16,2025-06-16,1,false,5,25,1637,23.4,4 +UD13697,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-17,2025-06-16,2,false,6,31,1972,24.1,5 +UD13698,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-18,2025-06-16,3,false,6,23,1269,23.1,5 +UD13699,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-19,2025-06-16,4,false,8,36,2016,22.5,8 +UD13700,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-20,2025-06-16,5,false,6,28,1888,23.5,7 +UD13701,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-21,2025-06-16,6,true,5,13,869,23.8,2 +UD13702,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-22,2025-06-16,0,true,5,10,673,24.0,2 +UD13703,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-23,2025-06-23,1,false,7,24,1776,24.3,6 +UD13704,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-24,2025-06-23,2,false,6,24,1744,24.1,5 +UD13705,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-25,2025-06-23,3,false,5,28,1706,24.7,6 +UD13706,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-26,2025-06-23,4,false,7,33,1994,24.3,8 +UD13707,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-27,2025-06-23,5,false,5,22,1169,25.1,4 +UD13708,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-28,2025-06-23,6,true,5,13,612,23.1,2 +UD13709,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-29,2025-06-23,0,true,4,11,674,25.1,1 +UD13710,W2170,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-core,prod,active,true,2025-06-30,2025-06-30,1,false,7,33,2148,23.0,9 +UD13711,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-01,2025-05-26,0,true,1,5,362,39.2,1 +UD13712,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-02,2025-06-02,1,false,3,14,789,38.8,3 +UD13713,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-03,2025-06-02,2,false,4,22,965,39.3,6 +UD13714,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-04,2025-06-02,3,false,5,20,1195,39.2,3 +UD13715,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-05,2025-06-02,4,false,4,21,1363,38.6,5 +UD13716,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-06,2025-06-02,5,false,5,22,1088,39.7,5 +UD13717,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-07,2025-06-02,6,true,3,9,688,39.2,2 +UD13718,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-08,2025-06-02,0,true,4,10,612,40.3,2 +UD13719,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-09,2025-06-09,1,false,4,18,1044,39.2,4 +UD13720,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-10,2025-06-09,2,false,3,16,1186,40.7,2 +UD13721,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-11,2025-06-09,3,false,5,21,1186,40.3,3 +UD13722,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-12,2025-06-09,4,false,4,23,1683,40.2,4 +UD13723,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-13,2025-06-09,5,false,5,21,1180,40.2,3 +UD13724,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-14,2025-06-09,6,true,2,8,391,40.7,1 +UD13725,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-15,2025-06-09,0,true,1,5,378,40.7,1 +UD13726,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-16,2025-06-16,1,false,4,16,729,40.5,4 +UD13727,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-17,2025-06-16,2,false,3,20,1185,41.2,3 +UD13728,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-18,2025-06-16,3,false,4,18,1054,41.0,4 +UD13729,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-19,2025-06-16,4,false,4,22,1539,41.9,5 +UD13730,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-20,2025-06-16,5,false,4,21,1428,41.0,5 +UD13731,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-21,2025-06-16,6,true,3,9,522,42.0,1 +UD13732,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-22,2025-06-16,0,true,2,8,457,41.8,2 +UD13733,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-23,2025-06-23,1,false,5,26,1770,43.5,7 +UD13734,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-24,2025-06-23,2,false,3,18,1126,42.6,3 +UD13735,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-25,2025-06-23,3,false,5,25,1305,42.5,4 +UD13736,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-26,2025-06-23,4,false,5,23,1215,42.8,6 +UD13737,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-27,2025-06-23,5,false,3,17,1026,40.8,2 +UD13738,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-28,2025-06-23,6,true,1,5,341,41.6,1 +UD13739,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-29,2025-06-23,0,true,3,10,594,42.1,3 +UD13740,W2171,A1076,Atlas Solutions,financial_services,mid_market,EMEA,UK,atlas-ops,prod,active,false,2025-06-30,2025-06-30,1,false,3,14,642,43.0,4 +UD13741,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,6,322,32.0,2 +UD13742,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-02,2025-06-02,1,false,3,18,1166,32.2,5 +UD13743,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-03,2025-06-02,2,false,3,19,959,32.8,4 +UD13744,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-04,2025-06-02,3,false,2,15,964,33.0,2 +UD13745,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-05,2025-06-02,4,false,1,10,414,33.0,1 +UD13746,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-06,2025-06-02,5,false,3,17,1157,32.5,2 +UD13747,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,6,355,32.5,1 +UD13748,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-08,2025-06-02,0,true,3,9,547,32.8,1 +UD13749,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-09,2025-06-09,1,false,2,11,523,32.7,2 +UD13750,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-10,2025-06-09,2,false,1,10,659,33.8,2 +UD13751,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-11,2025-06-09,3,false,2,14,924,32.9,4 +UD13752,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-12,2025-06-09,4,false,2,14,727,33.4,3 +UD13753,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-13,2025-06-09,5,false,1,9,420,34.2,2 +UD13754,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-14,2025-06-09,6,true,2,7,427,34.1,2 +UD13755,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,5,318,33.4,1 +UD13756,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-16,2025-06-16,1,false,3,15,881,34.2,3 +UD13757,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-17,2025-06-16,2,false,1,11,704,35.4,3 +UD13758,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-18,2025-06-16,3,false,3,17,1279,33.7,3 +UD13759,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-19,2025-06-16,4,false,3,18,843,33.3,5 +UD13760,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-20,2025-06-16,5,false,1,10,545,34.9,3 +UD13761,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,7,472,34.8,2 +UD13762,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-22,2025-06-16,0,true,1,5,279,36.6,1 +UD13763,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-23,2025-06-23,1,false,3,18,1219,35.0,4 +UD13764,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-24,2025-06-23,2,false,1,11,710,35.2,3 +UD13765,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-25,2025-06-23,3,false,1,12,712,34.7,3 +UD13766,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-26,2025-06-23,4,false,1,11,545,35.6,2 +UD13767,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-27,2025-06-23,5,false,2,14,1014,35.8,4 +UD13768,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-28,2025-06-23,6,true,3,8,503,35.4,1 +UD13769,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,5,230,36.4,1 +UD13770,W2172,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-core,prod,active,true,2025-06-30,2025-06-30,1,false,2,12,625,36.0,2 +UD13771,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-01,2025-05-26,0,true,1,5,314,21.8,1 +UD13772,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-02,2025-06-02,1,false,1,10,592,22.5,2 +UD13773,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-03,2025-06-02,2,false,1,10,453,22.1,1 +UD13774,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-04,2025-06-02,3,false,2,14,627,23.3,3 +UD13775,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-05,2025-06-02,4,false,1,11,526,23.0,2 +UD13776,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-06,2025-06-02,5,false,2,14,704,23.1,3 +UD13777,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-07,2025-06-02,6,true,2,6,354,23.2,1 +UD13778,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-08,2025-06-02,0,true,2,7,355,22.7,1 +UD13779,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-09,2025-06-09,1,false,1,10,615,22.9,2 +UD13780,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-10,2025-06-09,2,false,2,16,664,23.4,3 +UD13781,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-11,2025-06-09,3,false,2,15,1094,23.5,3 +UD13782,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-12,2025-06-09,4,false,1,10,587,23.0,2 +UD13783,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-13,2025-06-09,5,false,1,10,472,24.1,2 +UD13784,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-14,2025-06-09,6,true,2,6,326,23.9,1 +UD13785,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-15,2025-06-09,0,true,1,5,358,25.0,1 +UD13786,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-16,2025-06-16,1,false,1,10,638,24.0,2 +UD13787,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-17,2025-06-16,2,false,1,11,656,23.9,2 +UD13788,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-18,2025-06-16,3,false,2,16,960,25.5,4 +UD13789,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-19,2025-06-16,4,false,2,14,884,25.5,2 +UD13790,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-20,2025-06-16,5,false,2,14,587,23.9,2 +UD13791,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-21,2025-06-16,6,true,2,8,536,25.9,2 +UD13792,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-22,2025-06-16,0,true,1,6,372,25.5,1 +UD13793,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-23,2025-06-23,1,false,1,10,718,24.1,2 +UD13794,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-24,2025-06-23,2,false,1,12,832,25.9,2 +UD13795,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-25,2025-06-23,3,false,2,16,798,24.6,3 +UD13796,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-26,2025-06-23,4,false,2,13,611,25.9,2 +UD13797,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-27,2025-06-23,5,false,1,10,512,25.3,1 +UD13798,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-28,2025-06-23,6,true,1,5,278,26.4,1 +UD13799,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-29,2025-06-23,0,true,1,5,310,25.1,1 +UD13800,W2173,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-ops,prod,active,false,2025-06-30,2025-06-30,1,false,2,13,547,24.8,3 +UD13801,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-01,2025-05-26,0,true,1,6,424,27.8,1 +UD13802,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-02,2025-06-02,1,false,3,17,749,27.4,3 +UD13803,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-03,2025-06-02,2,false,1,12,509,28.1,2 +UD13804,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-04,2025-06-02,3,false,1,12,718,28.2,2 +UD13805,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-05,2025-06-02,4,false,2,12,843,28.9,3 +UD13806,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-06,2025-06-02,5,false,1,9,600,28.5,1 +UD13807,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-07,2025-06-02,6,true,2,8,535,28.8,1 +UD13808,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-08,2025-06-02,0,true,1,5,303,28.7,1 +UD13809,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-09,2025-06-09,1,false,3,14,874,29.6,3 +UD13810,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-10,2025-06-09,2,false,3,19,1018,28.6,5 +UD13811,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-11,2025-06-09,3,false,3,20,1073,29.5,4 +UD13812,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-12,2025-06-09,4,false,3,19,1205,29.1,4 +UD13813,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-13,2025-06-09,5,false,3,14,806,28.9,2 +UD13814,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-14,2025-06-09,6,true,2,7,362,29.3,1 +UD13815,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-15,2025-06-09,0,true,1,5,325,29.2,1 +UD13816,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-16,2025-06-16,1,false,3,17,757,29.5,4 +UD13817,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-17,2025-06-16,2,false,2,13,800,30.8,3 +UD13818,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-18,2025-06-16,3,false,1,11,541,30.5,2 +UD13819,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-19,2025-06-16,4,false,2,12,754,30.0,2 +UD13820,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-20,2025-06-16,5,false,2,13,796,28.7,3 +UD13821,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-21,2025-06-16,6,true,1,5,343,31.4,1 +UD13822,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-22,2025-06-16,0,true,1,6,383,32.2,1 +UD13823,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-23,2025-06-23,1,false,3,15,1041,30.1,2 +UD13824,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-24,2025-06-23,2,false,1,12,747,30.1,2 +UD13825,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-25,2025-06-23,3,false,3,16,864,32.2,3 +UD13826,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-26,2025-06-23,4,false,2,14,907,31.2,3 +UD13827,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-27,2025-06-23,5,false,1,9,575,31.0,1 +UD13828,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-28,2025-06-23,6,true,2,7,357,32.4,1 +UD13829,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-29,2025-06-23,0,true,1,5,237,32.4,1 +UD13830,W2174,A1077,Evergreen Foods,travel,mid_market,NA,CA,evergreen-finance,prod,active,false,2025-06-30,2025-06-30,1,false,2,13,932,30.7,2 +UD13831,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,6,389,32.1,1 +UD13832,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-02,2025-06-02,1,false,3,16,810,31.3,4 +UD13833,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-03,2025-06-02,2,false,2,14,892,32.6,2 +UD13834,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-04,2025-06-02,3,false,4,18,1206,31.9,4 +UD13835,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-05,2025-06-02,4,false,2,15,661,31.7,4 +UD13836,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-06,2025-06-02,5,false,1,9,426,32.8,2 +UD13837,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,5,377,33.4,1 +UD13838,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-08,2025-06-02,0,true,2,8,576,33.2,1 +UD13839,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-09,2025-06-09,1,false,2,12,708,33.4,3 +UD13840,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-10,2025-06-09,2,false,2,15,832,33.5,3 +UD13841,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-11,2025-06-09,3,false,3,19,992,33.6,3 +UD13842,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-12,2025-06-09,4,false,1,10,523,32.8,3 +UD13843,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-13,2025-06-09,5,false,2,13,763,32.5,3 +UD13844,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-14,2025-06-09,6,true,2,7,315,34.2,1 +UD13845,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,6,329,34.1,1 +UD13846,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-16,2025-06-16,1,false,4,20,1421,33.9,4 +UD13847,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-17,2025-06-16,2,false,2,15,1045,33.8,3 +UD13848,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-18,2025-06-16,3,false,2,13,770,32.9,3 +UD13849,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-19,2025-06-16,4,false,3,16,1007,34.9,4 +UD13850,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-20,2025-06-16,5,false,3,14,608,33.7,3 +UD13851,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-21,2025-06-16,6,true,3,8,590,34.6,2 +UD13852,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,10,623,34.8,3 +UD13853,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-23,2025-06-23,1,false,2,13,875,35.3,2 +UD13854,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-24,2025-06-23,2,false,3,19,1042,36.2,3 +UD13855,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-25,2025-06-23,3,false,3,15,956,34.4,3 +UD13856,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-26,2025-06-23,4,false,4,19,1426,34.9,4 +UD13857,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-27,2025-06-23,5,false,2,14,774,35.0,4 +UD13858,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-28,2025-06-23,6,true,2,7,322,36.9,1 +UD13859,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,6,257,35.4,1 +UD13860,W2175,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-core,prod,active,true,2025-06-30,2025-06-30,1,false,2,13,888,36.4,2 +UD13861,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-01,2025-05-26,0,true,2,8,464,25.5,2 +UD13862,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-02,2025-06-02,1,false,3,16,730,25.6,3 +UD13863,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-03,2025-06-02,2,false,2,16,1027,25.8,3 +UD13864,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-04,2025-06-02,3,false,2,13,863,25.9,2 +UD13865,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-05,2025-06-02,4,false,2,13,766,25.8,2 +UD13866,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-06,2025-06-02,5,false,4,16,758,25.7,4 +UD13867,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-07,2025-06-02,6,true,1,5,231,26.6,1 +UD13868,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-08,2025-06-02,0,true,1,5,330,25.6,1 +UD13869,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-09,2025-06-09,1,false,4,16,981,26.8,2 +UD13870,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-10,2025-06-09,2,false,3,18,897,26.1,3 +UD13871,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-11,2025-06-09,3,false,2,13,973,27.2,4 +UD13872,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-12,2025-06-09,4,false,2,13,664,27.5,3 +UD13873,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-13,2025-06-09,5,false,3,18,781,26.2,3 +UD13874,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-14,2025-06-09,6,true,2,6,409,27.6,1 +UD13875,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-15,2025-06-09,0,true,3,9,605,28.3,2 +UD13876,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-16,2025-06-16,1,false,2,14,888,27.2,2 +UD13877,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-17,2025-06-16,2,false,4,19,1272,26.9,4 +UD13878,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-18,2025-06-16,3,false,4,19,1379,29.3,5 +UD13879,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-19,2025-06-16,4,false,4,17,970,26.6,3 +UD13880,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-20,2025-06-16,5,false,1,9,563,28.6,2 +UD13881,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-21,2025-06-16,6,true,2,7,325,28.6,1 +UD13882,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-22,2025-06-16,0,true,3,10,670,27.5,2 +UD13883,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-23,2025-06-23,1,false,2,12,726,28.2,2 +UD13884,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-24,2025-06-23,2,false,2,15,839,28.6,3 +UD13885,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-25,2025-06-23,3,false,1,11,576,29.1,3 +UD13886,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-26,2025-06-23,4,false,2,14,796,31.0,3 +UD13887,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-27,2025-06-23,5,false,2,13,668,28.4,3 +UD13888,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-28,2025-06-23,6,true,1,5,266,28.9,1 +UD13889,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-29,2025-06-23,0,true,3,9,640,30.2,2 +UD13890,W2176,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-ops,prod,active,false,2025-06-30,2025-06-30,1,false,2,14,984,29.9,3 +UD13891,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-01,2025-05-26,0,true,1,5,221,19.2,1 +UD13892,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-02,2025-06-02,1,false,1,9,380,19.9,2 +UD13893,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-03,2025-06-02,2,false,1,12,635,20.1,3 +UD13894,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-04,2025-06-02,3,false,3,16,841,20.7,4 +UD13895,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-05,2025-06-02,4,false,1,10,451,19.7,2 +UD13896,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-06,2025-06-02,5,false,3,18,831,20.5,4 +UD13897,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-07,2025-06-02,6,true,3,8,412,20.3,1 +UD13898,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-08,2025-06-02,0,true,1,5,236,20.2,1 +UD13899,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-09,2025-06-09,1,false,1,10,606,21.1,2 +UD13900,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-10,2025-06-09,2,false,1,10,600,20.4,3 +UD13901,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-11,2025-06-09,3,false,2,15,921,21.2,4 +UD13902,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-12,2025-06-09,4,false,3,15,782,21.6,3 +UD13903,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-13,2025-06-09,5,false,2,12,528,22.1,3 +UD13904,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-14,2025-06-09,6,true,2,7,447,21.2,2 +UD13905,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-15,2025-06-09,0,true,1,5,320,20.3,1 +UD13906,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-16,2025-06-16,1,false,3,15,707,23.2,4 +UD13907,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-17,2025-06-16,2,false,2,14,918,21.8,4 +UD13908,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-18,2025-06-16,3,false,3,17,1050,22.1,4 +UD13909,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-19,2025-06-16,4,false,2,14,983,21.9,2 +UD13910,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-20,2025-06-16,5,false,1,11,502,21.5,2 +UD13911,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-21,2025-06-16,6,true,1,5,302,21.9,1 +UD13912,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-22,2025-06-16,0,true,1,6,317,22.9,1 +UD13913,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-23,2025-06-23,1,false,1,9,571,24.0,1 +UD13914,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-24,2025-06-23,2,false,3,20,1415,24.1,3 +UD13915,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-25,2025-06-23,3,false,1,11,504,22.9,3 +UD13916,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-26,2025-06-23,4,false,2,14,824,24.3,3 +UD13917,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-27,2025-06-23,5,false,1,10,620,21.8,1 +UD13918,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-28,2025-06-23,6,true,3,9,471,24.7,2 +UD13919,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-29,2025-06-23,0,true,1,5,350,25.0,1 +UD13920,W2177,A1078,Beacon Foods,software,mid_market,EMEA,FR,beacon-finance,prod,active,false,2025-06-30,2025-06-30,1,false,3,16,1022,24.4,2 +UD13921,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-01,2025-05-26,0,true,3,10,531,63.7,2 +UD13922,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-02,2025-06-02,1,false,2,17,892,64.3,3 +UD13923,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-03,2025-06-02,2,false,3,21,1001,63.5,3 +UD13924,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-04,2025-06-02,3,false,1,16,1107,64.1,3 +UD13925,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-05,2025-06-02,4,false,3,21,1191,64.3,4 +UD13926,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-06,2025-06-02,5,false,3,18,1084,65.0,3 +UD13927,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,8,534,64.7,1 +UD13928,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-08,2025-06-02,0,true,2,10,647,64.5,1 +UD13929,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-09,2025-06-09,1,false,3,22,1374,65.4,3 +UD13930,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-10,2025-06-09,2,false,1,16,1109,65.0,3 +UD13931,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-11,2025-06-09,3,false,3,26,1190,65.1,7 +UD13932,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-12,2025-06-09,4,false,2,19,1361,66.1,5 +UD13933,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-13,2025-06-09,5,false,2,17,718,65.2,3 +UD13934,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,8,531,65.7,2 +UD13935,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,8,389,66.5,1 +UD13936,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-16,2025-06-16,1,false,1,15,944,66.8,4 +UD13937,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-17,2025-06-16,2,false,1,15,673,66.1,4 +UD13938,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-18,2025-06-16,3,false,1,15,934,66.9,3 +UD13939,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-19,2025-06-16,4,false,1,16,1027,66.1,2 +UD13940,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-20,2025-06-16,5,false,3,19,1025,67.1,3 +UD13941,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-21,2025-06-16,6,true,1,8,452,66.4,2 +UD13942,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-22,2025-06-16,0,true,1,8,439,67.2,2 +UD13943,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-23,2025-06-23,1,false,3,18,1070,67.5,4 +UD13944,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-24,2025-06-23,2,false,1,16,1081,66.5,3 +UD13945,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-25,2025-06-23,3,false,2,19,856,65.8,3 +UD13946,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-26,2025-06-23,4,false,2,16,808,67.7,4 +UD13947,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-27,2025-06-23,5,false,3,18,860,65.7,5 +UD13948,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-28,2025-06-23,6,true,1,8,594,66.8,1 +UD13949,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-29,2025-06-23,0,true,3,11,812,65.5,2 +UD13950,W2178,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-core,prod,active,true,2025-06-30,2025-06-30,1,false,3,19,1404,66.5,3 +UD13951,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-01,2025-05-26,0,true,1,8,466,26.8,1 +UD13952,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-02,2025-06-02,1,false,1,14,935,27.3,2 +UD13953,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-03,2025-06-02,2,false,1,17,863,27.4,3 +UD13954,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-04,2025-06-02,3,false,1,16,665,27.5,3 +UD13955,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-05,2025-06-02,4,false,1,14,716,28.3,3 +UD13956,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-06,2025-06-02,5,false,1,14,605,27.8,2 +UD13957,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-07,2025-06-02,6,true,1,8,501,28.0,2 +UD13958,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-08,2025-06-02,0,true,1,8,379,27.9,2 +UD13959,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-09,2025-06-09,1,false,1,14,975,27.6,2 +UD13960,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-10,2025-06-09,2,false,1,16,1160,28.8,2 +UD13961,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-11,2025-06-09,3,false,1,16,869,29.5,3 +UD13962,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-12,2025-06-09,4,false,1,15,1067,29.2,2 +UD13963,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-13,2025-06-09,5,false,1,15,964,28.9,2 +UD13964,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-14,2025-06-09,6,true,1,8,579,29.2,1 +UD13965,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-15,2025-06-09,0,true,1,8,463,29.1,2 +UD13966,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-16,2025-06-16,1,false,1,14,927,29.1,3 +UD13967,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-17,2025-06-16,2,false,1,16,1091,28.7,4 +UD13968,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-18,2025-06-16,3,false,1,15,674,29.7,3 +UD13969,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-19,2025-06-16,4,false,1,14,748,29.0,2 +UD13970,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-20,2025-06-16,5,false,1,14,836,29.7,2 +UD13971,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-21,2025-06-16,6,true,1,7,369,30.9,2 +UD13972,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-22,2025-06-16,0,true,1,8,369,29.1,2 +UD13973,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-23,2025-06-23,1,false,1,14,669,30.1,2 +UD13974,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-24,2025-06-23,2,false,1,16,1108,29.4,3 +UD13975,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-25,2025-06-23,3,false,1,16,1016,31.4,4 +UD13976,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-26,2025-06-23,4,false,1,15,885,29.2,2 +UD13977,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-27,2025-06-23,5,false,1,14,889,30.9,3 +UD13978,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-28,2025-06-23,6,true,1,8,544,30.1,1 +UD13979,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-29,2025-06-23,0,true,1,8,345,32.5,1 +UD13980,W2179,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-ops,prod,active,false,2025-06-30,2025-06-30,1,false,1,15,1083,32.1,2 +UD13981,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-01,2025-05-26,0,true,3,12,599,54.8,2 +UD13982,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-02,2025-06-02,1,false,6,27,1539,54.2,7 +UD13983,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-03,2025-06-02,2,false,4,29,1774,54.0,5 +UD13984,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-04,2025-06-02,3,false,4,30,1667,54.5,4 +UD13985,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-05,2025-06-02,4,false,5,29,1552,55.2,4 +UD13986,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-06,2025-06-02,5,false,4,23,1446,55.0,5 +UD13987,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-07,2025-06-02,6,true,3,10,776,55.9,3 +UD13988,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-08,2025-06-02,0,true,2,9,561,54.4,1 +UD13989,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-09,2025-06-09,1,false,4,20,890,54.4,4 +UD13990,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-10,2025-06-09,2,false,6,34,1488,55.4,8 +UD13991,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-11,2025-06-09,3,false,5,32,2293,55.8,6 +UD13992,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-12,2025-06-09,4,false,5,29,1453,55.6,6 +UD13993,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-13,2025-06-09,5,false,5,30,1358,55.3,6 +UD13994,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-14,2025-06-09,6,true,3,13,994,56.2,3 +UD13995,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-15,2025-06-09,0,true,2,10,672,55.9,2 +UD13996,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-16,2025-06-16,1,false,6,33,2375,55.9,7 +UD13997,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-17,2025-06-16,2,false,6,32,2322,56.7,6 +UD13998,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-18,2025-06-16,3,false,4,26,1819,57.3,5 +UD13999,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-19,2025-06-16,4,false,4,27,1967,57.2,6 +UD14000,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-20,2025-06-16,5,false,6,29,1442,57.8,6 +UD14001,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-21,2025-06-16,6,true,2,9,404,57.1,2 +UD14002,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-22,2025-06-16,0,true,2,9,391,57.9,1 +UD14003,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-23,2025-06-23,1,false,4,22,1593,58.0,5 +UD14004,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-24,2025-06-23,2,false,5,30,1609,58.0,7 +UD14005,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-25,2025-06-23,3,false,4,25,1120,56.6,4 +UD14006,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-26,2025-06-23,4,false,4,25,1282,58.3,6 +UD14007,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-27,2025-06-23,5,false,6,28,1279,58.8,6 +UD14008,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-28,2025-06-23,6,true,4,14,1034,56.3,2 +UD14009,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-29,2025-06-23,0,true,4,14,1064,56.8,3 +UD14010,W2180,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-finance,prod,active,false,2025-06-30,2025-06-30,1,false,4,24,1686,58.2,5 +UD14011,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-01,2025-05-26,0,true,3,11,629,63.3,2 +UD14012,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-02,2025-06-02,1,false,6,30,1502,63.6,8 +UD14013,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-03,2025-06-02,2,false,4,29,2126,63.3,6 +UD14014,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-04,2025-06-02,3,false,4,26,1762,63.5,6 +UD14015,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-05,2025-06-02,4,false,5,29,1962,64.0,6 +UD14016,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-06,2025-06-02,5,false,3,23,999,63.8,6 +UD14017,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-07,2025-06-02,6,true,2,9,507,64.1,1 +UD14018,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-08,2025-06-02,0,true,2,10,434,64.7,1 +UD14019,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-09,2025-06-09,1,false,4,26,1382,64.6,6 +UD14020,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-10,2025-06-09,2,false,5,28,1917,64.7,7 +UD14021,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-11,2025-06-09,3,false,4,25,1054,65.0,3 +UD14022,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-12,2025-06-09,4,false,3,24,1328,65.2,5 +UD14023,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-13,2025-06-09,5,false,5,28,1308,64.8,6 +UD14024,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-14,2025-06-09,6,true,3,10,721,65.0,1 +UD14025,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-15,2025-06-09,0,true,3,12,776,64.2,3 +UD14026,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-16,2025-06-16,1,false,4,24,1729,65.8,7 +UD14027,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-17,2025-06-16,2,false,4,28,1649,66.4,6 +UD14028,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-18,2025-06-16,3,false,6,29,1929,67.0,4 +UD14029,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-19,2025-06-16,4,false,4,27,1899,66.2,3 +UD14030,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-20,2025-06-16,5,false,3,22,1492,64.6,4 +UD14031,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-21,2025-06-16,6,true,3,11,644,64.9,2 +UD14032,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-22,2025-06-16,0,true,3,12,889,66.4,3 +UD14033,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-23,2025-06-23,1,false,3,21,978,68.1,4 +UD14034,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-24,2025-06-23,2,false,5,30,1462,66.7,5 +UD14035,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-25,2025-06-23,3,false,4,29,1499,67.3,7 +UD14036,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-26,2025-06-23,4,false,4,25,1160,68.0,6 +UD14037,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-27,2025-06-23,5,false,3,21,913,67.0,5 +UD14038,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-28,2025-06-23,6,true,2,9,486,68.5,2 +UD14039,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-29,2025-06-23,0,true,4,13,940,68.3,2 +UD14040,W2181,A1079,Nova Foods,education,enterprise,EMEA,FR,nova-marketing,prod,active,false,2025-06-30,2025-06-30,1,false,4,21,1166,67.3,4 +UD14041,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-01,2025-05-26,0,true,3,10,725,18.1,2 +UD14042,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-02,2025-06-02,1,false,6,21,1131,19.1,5 +UD14043,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-03,2025-06-02,2,false,8,31,1617,18.6,6 +UD14044,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-04,2025-06-02,3,false,5,24,1320,18.6,6 +UD14045,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-05,2025-06-02,4,false,5,26,1446,19.1,6 +UD14046,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-06,2025-06-02,5,false,6,23,1699,19.4,5 +UD14047,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-07,2025-06-02,6,true,3,9,647,19.9,2 +UD14048,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-08,2025-06-02,0,true,4,10,515,19.7,3 +UD14049,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-09,2025-06-09,1,false,6,25,1365,18.8,7 +UD14050,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-10,2025-06-09,2,false,6,24,1329,20.2,5 +UD14051,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-11,2025-06-09,3,false,5,21,1367,19.9,5 +UD14052,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-12,2025-06-09,4,false,7,29,1598,20.7,5 +UD14053,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-13,2025-06-09,5,false,6,22,1248,20.1,4 +UD14054,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-14,2025-06-09,6,true,3,8,541,21.0,2 +UD14055,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-15,2025-06-09,0,true,4,10,591,20.3,2 +UD14056,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-16,2025-06-16,1,false,5,24,1712,19.6,4 +UD14057,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-17,2025-06-16,2,false,5,28,1519,21.8,6 +UD14058,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-18,2025-06-16,3,false,8,38,2851,20.1,9 +UD14059,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-19,2025-06-16,4,false,6,28,1771,21.2,7 +UD14060,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-20,2025-06-16,5,false,6,23,1566,22.1,3 +UD14061,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-21,2025-06-16,6,true,5,13,833,21.4,3 +UD14062,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,8,528,21.9,2 +UD14063,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-23,2025-06-23,1,false,6,23,1680,20.5,3 +UD14064,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-24,2025-06-23,2,false,7,35,2449,21.2,8 +UD14065,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-25,2025-06-23,3,false,6,27,1817,22.5,6 +UD14066,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-26,2025-06-23,4,false,6,27,1574,21.7,4 +UD14067,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-27,2025-06-23,5,false,7,28,1516,22.6,5 +UD14068,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-28,2025-06-23,6,true,4,9,667,22.2,2 +UD14069,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-29,2025-06-23,0,true,5,12,598,22.3,2 +UD14070,W2182,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-core,prod,active,true,2025-06-30,2025-06-30,1,false,5,24,1606,21.3,6 +UD14071,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-01,2025-05-26,0,true,2,7,508,40.4,2 +UD14072,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-02,2025-06-02,1,false,1,9,590,40.8,2 +UD14073,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-03,2025-06-02,2,false,3,19,1068,40.7,5 +UD14074,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-04,2025-06-02,3,false,1,10,510,41.1,1 +UD14075,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-05,2025-06-02,4,false,1,10,729,41.2,1 +UD14076,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-06,2025-06-02,5,false,3,14,994,40.6,3 +UD14077,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-07,2025-06-02,6,true,1,6,319,41.6,1 +UD14078,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-08,2025-06-02,0,true,1,5,297,41.3,1 +UD14079,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-09,2025-06-09,1,false,1,9,599,41.2,1 +UD14080,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-10,2025-06-09,2,false,1,12,808,40.8,3 +UD14081,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-11,2025-06-09,3,false,2,13,622,40.9,3 +UD14082,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-12,2025-06-09,4,false,1,10,606,41.8,2 +UD14083,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-13,2025-06-09,5,false,2,13,831,42.2,2 +UD14084,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-14,2025-06-09,6,true,2,7,513,42.1,1 +UD14085,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-15,2025-06-09,0,true,2,6,339,41.3,1 +UD14086,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-16,2025-06-16,1,false,1,11,717,43.8,1 +UD14087,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-17,2025-06-16,2,false,1,11,554,42.3,3 +UD14088,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-18,2025-06-16,3,false,1,11,688,42.7,3 +UD14089,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-19,2025-06-16,4,false,2,12,544,43.0,2 +UD14090,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-20,2025-06-16,5,false,3,14,860,41.9,2 +UD14091,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-21,2025-06-16,6,true,3,8,472,44.5,2 +UD14092,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-22,2025-06-16,0,true,2,7,433,44.8,1 +UD14093,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-23,2025-06-23,1,false,2,13,910,43.3,3 +UD14094,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-24,2025-06-23,2,false,3,18,829,44.7,3 +UD14095,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-25,2025-06-23,3,false,1,11,608,42.5,1 +UD14096,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-26,2025-06-23,4,false,3,18,922,45.2,3 +UD14097,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-27,2025-06-23,5,false,2,12,536,44.1,2 +UD14098,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-28,2025-06-23,6,true,3,9,648,43.7,2 +UD14099,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-29,2025-06-23,0,true,1,5,310,45.2,1 +UD14100,W2183,A1080,Beacon Global,financial_services,mid_market,EMEA,NL,beacon-ops,prod,active,false,2025-06-30,2025-06-30,1,false,1,9,374,44.9,2 +UD14101,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-01,2025-05-26,0,true,3,10,742,20.7,3 +UD14102,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-02,2025-06-02,1,false,4,22,1427,21.1,4 +UD14103,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-03,2025-06-02,2,false,5,21,1306,21.8,6 +UD14104,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-04,2025-06-02,3,false,3,20,861,22.1,2 +UD14105,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-05,2025-06-02,4,false,5,25,1648,21.9,3 +UD14106,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-06,2025-06-02,5,false,4,17,1203,21.7,3 +UD14107,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,5,258,22.1,1 +UD14108,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-08,2025-06-02,0,true,3,8,526,22.6,2 +UD14109,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-09,2025-06-09,1,false,2,11,716,23.0,2 +UD14110,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-10,2025-06-09,2,false,4,25,1563,22.7,3 +UD14111,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-11,2025-06-09,3,false,3,15,962,22.6,2 +UD14112,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-12,2025-06-09,4,false,5,26,1950,22.6,6 +UD14113,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-13,2025-06-09,5,false,2,13,556,22.8,3 +UD14114,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,6,320,24.0,2 +UD14115,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-15,2025-06-09,0,true,2,7,381,23.1,2 +UD14116,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-16,2025-06-16,1,false,2,12,747,22.2,3 +UD14117,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-17,2025-06-16,2,false,3,20,1081,23.5,6 +UD14118,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-18,2025-06-16,3,false,4,20,976,24.7,5 +UD14119,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-19,2025-06-16,4,false,5,25,1895,24.3,6 +UD14120,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-20,2025-06-16,5,false,4,22,948,25.2,4 +UD14121,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-21,2025-06-16,6,true,1,5,360,23.4,1 +UD14122,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,9,475,24.0,2 +UD14123,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-23,2025-06-23,1,false,4,22,1484,25.1,3 +UD14124,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-24,2025-06-23,2,false,5,25,1377,24.7,4 +UD14125,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-25,2025-06-23,3,false,4,22,1439,25.3,4 +UD14126,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-26,2025-06-23,4,false,2,15,1109,24.3,4 +UD14127,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-27,2025-06-23,5,false,3,16,1197,25.2,3 +UD14128,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-28,2025-06-23,6,true,4,11,564,24.0,2 +UD14129,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-29,2025-06-23,0,true,3,9,455,26.4,2 +UD14130,W2184,A1081,River Collective,financial_services,mid_market,NA,CA,river-core,prod,active,true,2025-06-30,2025-06-30,1,false,3,16,788,26.6,2 +UD14131,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-01,2025-05-26,0,true,0,4,161,16.3,1 +UD14132,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-02,2025-06-02,1,false,0,7,273,16.3,1 +UD14133,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-03,2025-06-02,2,false,0,8,289,16.5,1 +UD14134,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-04,2025-06-02,3,false,1,11,311,16.6,3 +UD14135,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-05,2025-06-02,4,false,0,7,296,17.0,1 +UD14136,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-06,2025-06-02,5,false,0,7,292,17.3,2 +UD14137,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-07,2025-06-02,6,true,1,6,247,17.5,1 +UD14138,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-08,2025-06-02,0,true,1,5,208,17.0,1 +UD14139,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-09,2025-06-09,1,false,0,7,295,17.3,1 +UD14140,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-10,2025-06-09,2,false,0,8,324,18.7,2 +UD14141,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-11,2025-06-09,3,false,0,8,206,17.0,1 +UD14142,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-12,2025-06-09,4,false,1,10,428,17.0,3 +UD14143,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-13,2025-06-09,5,false,0,7,208,18.6,2 +UD14144,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-14,2025-06-09,6,true,1,5,208,18.3,1 +UD14145,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-15,2025-06-09,0,true,1,6,232,19.0,2 +UD14146,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-16,2025-06-16,1,false,0,7,196,18.7,1 +UD14147,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-17,2025-06-16,2,false,0,8,260,19.8,1 +UD14148,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-18,2025-06-16,3,false,0,8,233,19.7,2 +UD14149,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-19,2025-06-16,4,false,0,7,215,18.5,1 +UD14150,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-20,2025-06-16,5,false,1,9,326,19.7,2 +UD14151,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-21,2025-06-16,6,true,0,4,170,19.7,1 +UD14152,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-22,2025-06-16,0,true,0,4,162,21.1,1 +UD14153,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-23,2025-06-23,1,false,1,10,308,19.3,2 +UD14154,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-24,2025-06-23,2,false,0,8,278,20.2,1 +UD14155,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-25,2025-06-23,3,false,0,8,294,21.6,2 +UD14156,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-26,2025-06-23,4,false,1,10,416,20.2,2 +UD14157,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-27,2025-06-23,5,false,0,7,224,21.4,2 +UD14158,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-28,2025-06-23,6,true,0,4,110,18.6,1 +UD14159,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-29,2025-06-23,0,true,0,4,138,20.5,1 +UD14160,W2185,A1081,River Collective,financial_services,mid_market,NA,CA,river-ops,sandbox,active,false,2025-06-30,2025-06-30,1,false,1,9,264,19.6,3 +UD14161,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-01,2025-05-26,0,true,2,7,370,25.3,2 +UD14162,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-02,2025-06-02,1,false,3,16,741,25.6,3 +UD14163,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-03,2025-06-02,2,false,3,17,1125,25.7,4 +UD14164,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-04,2025-06-02,3,false,1,10,412,25.8,2 +UD14165,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-05,2025-06-02,4,false,1,10,435,26.5,2 +UD14166,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-06,2025-06-02,5,false,3,14,997,27.0,2 +UD14167,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-07,2025-06-02,6,true,1,5,293,26.5,1 +UD14168,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-08,2025-06-02,0,true,1,5,317,27.1,1 +UD14169,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-09,2025-06-09,1,false,2,13,623,27.0,3 +UD14170,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-10,2025-06-09,2,false,1,10,522,27.8,2 +UD14171,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-11,2025-06-09,3,false,2,14,661,27.1,2 +UD14172,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-12,2025-06-09,4,false,2,12,522,26.4,3 +UD14173,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-13,2025-06-09,5,false,2,11,812,26.9,1 +UD14174,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-14,2025-06-09,6,true,1,6,409,28.1,1 +UD14175,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-15,2025-06-09,0,true,1,5,330,28.8,1 +UD14176,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-16,2025-06-16,1,false,3,14,958,27.0,2 +UD14177,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-17,2025-06-16,2,false,2,16,699,29.4,4 +UD14178,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-18,2025-06-16,3,false,3,17,893,29.1,2 +UD14179,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-19,2025-06-16,4,false,1,11,637,28.6,1 +UD14180,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-20,2025-06-16,5,false,1,10,587,28.1,1 +UD14181,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-21,2025-06-16,6,true,1,5,321,29.7,1 +UD14182,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-22,2025-06-16,0,true,1,5,281,28.4,1 +UD14183,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-23,2025-06-23,1,false,2,14,715,28.7,2 +UD14184,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-24,2025-06-23,2,false,1,11,680,29.6,2 +UD14185,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-25,2025-06-23,3,false,1,11,612,28.5,3 +UD14186,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-26,2025-06-23,4,false,2,13,676,27.6,3 +UD14187,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-27,2025-06-23,5,false,1,10,491,29.4,2 +UD14188,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-28,2025-06-23,6,true,2,7,412,28.0,2 +UD14189,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-29,2025-06-23,0,true,2,8,383,29.4,1 +UD14190,W2186,A1081,River Collective,financial_services,mid_market,NA,CA,river-finance,prod,active,false,2025-06-30,2025-06-30,1,false,1,10,552,29.4,2 +UD14191,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,5,263,30.8,1 +UD14192,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-02,2025-06-02,1,false,3,17,1080,31.5,4 +UD14193,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-03,2025-06-02,2,false,1,11,564,31.5,3 +UD14194,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-04,2025-06-02,3,false,1,12,735,31.2,2 +UD14195,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-05,2025-06-02,4,false,3,18,1116,31.5,3 +UD14196,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-06,2025-06-02,5,false,1,10,618,31.1,3 +UD14197,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,5,343,31.1,1 +UD14198,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,5,320,32.0,1 +UD14199,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-09,2025-06-09,1,false,3,15,825,32.0,3 +UD14200,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-10,2025-06-09,2,false,2,16,923,31.9,3 +UD14201,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-11,2025-06-09,3,false,1,11,557,32.3,2 +UD14202,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-12,2025-06-09,4,false,2,12,801,32.2,2 +UD14203,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-13,2025-06-09,5,false,1,9,455,32.1,1 +UD14204,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,6,442,32.8,1 +UD14205,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,5,282,33.5,1 +UD14206,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-16,2025-06-16,1,false,1,9,416,32.4,2 +UD14207,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-17,2025-06-16,2,false,3,19,1292,32.6,4 +UD14208,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-18,2025-06-16,3,false,2,14,846,33.6,3 +UD14209,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-19,2025-06-16,4,false,3,19,1123,32.7,3 +UD14210,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-20,2025-06-16,5,false,1,11,472,33.8,1 +UD14211,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,6,381,33.2,1 +UD14212,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-22,2025-06-16,0,true,1,6,281,34.4,1 +UD14213,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-23,2025-06-23,1,false,3,18,946,34.2,4 +UD14214,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-24,2025-06-23,2,false,3,17,910,33.5,5 +UD14215,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-25,2025-06-23,3,false,3,16,1157,33.3,2 +UD14216,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-26,2025-06-23,4,false,1,10,633,35.6,1 +UD14217,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-27,2025-06-23,5,false,2,12,875,34.6,2 +UD14218,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-28,2025-06-23,6,true,1,5,368,33.9,1 +UD14219,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-29,2025-06-23,0,true,1,5,361,35.5,1 +UD14220,W2188,A1083,Falcon Works,education,mid_market,NA,CA,falcon-core,prod,active,true,2025-06-30,2025-06-30,1,false,3,18,1212,34.5,2 +UD14221,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-01,2025-05-26,0,true,1,5,235,12.2,1 +UD14222,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-02,2025-06-02,1,false,2,12,375,12.2,2 +UD14223,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-03,2025-06-02,2,false,1,10,396,12.6,2 +UD14224,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-04,2025-06-02,3,false,1,11,378,12.5,3 +UD14225,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-05,2025-06-02,4,false,0,7,278,13.3,1 +UD14226,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-06,2025-06-02,5,false,1,9,346,12.8,2 +UD14227,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-07,2025-06-02,6,true,0,4,160,13.9,1 +UD14228,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-08,2025-06-02,0,true,1,5,142,14.5,1 +UD14229,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-09,2025-06-09,1,false,1,11,344,13.7,3 +UD14230,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-10,2025-06-09,2,false,0,8,342,13.7,2 +UD14231,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-11,2025-06-09,3,false,2,14,431,14.3,2 +UD14232,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-12,2025-06-09,4,false,2,15,704,14.1,4 +UD14233,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-13,2025-06-09,5,false,2,14,374,14.9,2 +UD14234,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-14,2025-06-09,6,true,0,4,101,14.6,1 +UD14235,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-15,2025-06-09,0,true,0,4,132,15.1,1 +UD14236,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-16,2025-06-16,1,false,1,10,297,14.5,2 +UD14237,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-17,2025-06-16,2,false,2,15,523,14.0,2 +UD14238,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-18,2025-06-16,3,false,2,15,687,14.2,3 +UD14239,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-19,2025-06-16,4,false,0,7,314,14.9,1 +UD14240,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-20,2025-06-16,5,false,1,9,283,16.0,2 +UD14241,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-21,2025-06-16,6,true,2,8,371,14.6,2 +UD14242,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-22,2025-06-16,0,true,0,4,122,15.9,1 +UD14243,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-23,2025-06-23,1,false,1,9,395,15.1,2 +UD14244,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-24,2025-06-23,2,false,2,14,490,15.6,4 +UD14245,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-25,2025-06-23,3,false,1,11,361,14.1,3 +UD14246,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-26,2025-06-23,4,false,1,10,388,16.9,1 +UD14247,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-27,2025-06-23,5,false,1,9,264,15.3,2 +UD14248,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-28,2025-06-23,6,true,0,4,107,17.1,1 +UD14249,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-29,2025-06-23,0,true,1,5,197,17.2,1 +UD14250,W2189,A1083,Falcon Works,education,mid_market,NA,CA,falcon-ops,sandbox,active,false,2025-06-30,2025-06-30,1,false,2,13,585,15.6,3 +UD14251,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,5,335,34.5,1 +UD14252,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-02,2025-06-02,1,false,5,20,1376,34.7,5 +UD14253,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-03,2025-06-02,2,false,3,19,1184,34.9,4 +UD14254,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-04,2025-06-02,3,false,4,24,1539,35.3,6 +UD14255,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-05,2025-06-02,4,false,2,14,917,35.2,2 +UD14256,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-06,2025-06-02,5,false,4,19,1444,35.3,3 +UD14257,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-07,2025-06-02,6,true,2,7,345,35.8,2 +UD14258,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-08,2025-06-02,0,true,3,9,468,35.7,3 +UD14259,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-09,2025-06-09,1,false,3,15,1028,36.1,2 +UD14260,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-10,2025-06-09,2,false,5,25,1821,35.1,6 +UD14261,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-11,2025-06-09,3,false,3,20,1489,36.3,4 +UD14262,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-12,2025-06-09,4,false,2,15,1034,37.0,2 +UD14263,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-13,2025-06-09,5,false,4,18,1210,37.5,5 +UD14264,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-14,2025-06-09,6,true,2,6,389,36.0,2 +UD14265,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,6,354,36.6,1 +UD14266,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-16,2025-06-16,1,false,3,14,870,36.3,2 +UD14267,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-17,2025-06-16,2,false,3,20,1404,38.0,4 +UD14268,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-18,2025-06-16,3,false,4,24,1281,37.3,4 +UD14269,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-19,2025-06-16,4,false,5,26,1668,37.0,7 +UD14270,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-20,2025-06-16,5,false,4,22,1368,38.3,4 +UD14271,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-21,2025-06-16,6,true,1,5,247,36.6,1 +UD14272,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,8,401,37.0,1 +UD14273,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-23,2025-06-23,1,false,3,18,909,36.9,5 +UD14274,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-24,2025-06-23,2,false,2,13,758,37.5,3 +UD14275,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-25,2025-06-23,3,false,2,13,913,38.0,3 +UD14276,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-26,2025-06-23,4,false,4,22,1546,37.2,5 +UD14277,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-27,2025-06-23,5,false,5,24,1056,37.4,3 +UD14278,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-28,2025-06-23,6,true,2,6,310,39.8,1 +UD14279,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-29,2025-06-23,0,true,2,7,361,36.9,1 +UD14280,W2190,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-core,prod,active,true,2025-06-30,2025-06-30,1,false,3,18,811,37.9,4 +UD14281,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-01,2025-05-26,0,true,3,10,473,40.0,2 +UD14282,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-02,2025-06-02,1,false,4,16,1232,41.1,4 +UD14283,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-03,2025-06-02,2,false,3,19,1237,41.4,3 +UD14284,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-04,2025-06-02,3,false,5,26,1922,40.6,5 +UD14285,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-05,2025-06-02,4,false,4,20,951,40.6,5 +UD14286,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-06,2025-06-02,5,false,3,18,1111,41.2,4 +UD14287,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-07,2025-06-02,6,true,1,6,437,40.8,1 +UD14288,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-08,2025-06-02,0,true,3,9,442,41.8,2 +UD14289,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-09,2025-06-09,1,false,4,17,1271,41.4,5 +UD14290,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-10,2025-06-09,2,false,4,23,1231,42.1,6 +UD14291,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-11,2025-06-09,3,false,3,16,928,41.6,3 +UD14292,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-12,2025-06-09,4,false,4,16,848,42.0,3 +UD14293,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-13,2025-06-09,5,false,5,24,1222,41.7,6 +UD14294,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-14,2025-06-09,6,true,2,7,487,43.6,2 +UD14295,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-15,2025-06-09,0,true,2,7,436,42.7,1 +UD14296,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-16,2025-06-16,1,false,5,23,1338,43.5,6 +UD14297,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-17,2025-06-16,2,false,5,23,1416,41.8,5 +UD14298,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-18,2025-06-16,3,false,6,30,2167,43.6,6 +UD14299,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-19,2025-06-16,4,false,5,27,1493,43.2,3 +UD14300,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-20,2025-06-16,5,false,5,19,1356,43.3,5 +UD14301,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-21,2025-06-16,6,true,2,7,498,43.2,1 +UD14302,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-22,2025-06-16,0,true,2,7,509,44.2,1 +UD14303,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-23,2025-06-23,1,false,5,19,1079,43.0,4 +UD14304,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-24,2025-06-23,2,false,4,18,956,42.9,4 +UD14305,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-25,2025-06-23,3,false,3,17,831,43.9,3 +UD14306,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-26,2025-06-23,4,false,5,20,1379,42.6,3 +UD14307,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-27,2025-06-23,5,false,4,22,1288,43.7,4 +UD14308,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-28,2025-06-23,6,true,4,11,759,44.0,3 +UD14309,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-29,2025-06-23,0,true,2,8,460,44.6,1 +UD14310,W2191,A1084,Silver Foods,manufacturing,mid_market,NA,CA,silver-ops,prod,active,false,2025-06-30,2025-06-30,1,false,5,23,1103,45.6,4 +UD14311,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,4,199,16.2,1 +UD14312,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-02,2025-06-02,1,false,4,16,1159,16.8,4 +UD14313,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-03,2025-06-02,2,false,2,10,518,16.4,2 +UD14314,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-04,2025-06-02,3,false,3,14,965,16.8,3 +UD14315,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-05,2025-06-02,4,false,4,14,892,16.9,2 +UD14316,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-06,2025-06-02,5,false,3,12,705,17.7,3 +UD14317,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-07,2025-06-02,6,true,3,6,475,17.5,2 +UD14318,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-08,2025-06-02,0,true,1,4,291,18.2,1 +UD14319,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-09,2025-06-09,1,false,2,9,433,18.1,1 +UD14320,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-10,2025-06-09,2,false,2,13,703,18.5,3 +UD14321,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-11,2025-06-09,3,false,3,17,732,18.6,3 +UD14322,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-12,2025-06-09,4,false,4,19,965,19.3,4 +UD14323,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-13,2025-06-09,5,false,3,15,885,18.0,3 +UD14324,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-14,2025-06-09,6,true,1,4,277,18.8,1 +UD14325,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,4,282,18.9,1 +UD14326,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-16,2025-06-16,1,false,2,9,426,19.3,2 +UD14327,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-17,2025-06-16,2,false,3,13,819,19.1,3 +UD14328,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-18,2025-06-16,3,false,3,12,760,18.3,3 +UD14329,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-19,2025-06-16,4,false,2,10,652,19.6,2 +UD14330,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-20,2025-06-16,5,false,3,16,852,18.8,4 +UD14331,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-21,2025-06-16,6,true,1,4,297,19.5,1 +UD14332,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-22,2025-06-16,0,true,1,4,213,20.2,1 +UD14333,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-23,2025-06-23,1,false,4,18,1286,20.5,5 +UD14334,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-24,2025-06-23,2,false,4,17,1063,19.0,4 +UD14335,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-25,2025-06-23,3,false,4,19,1004,18.8,5 +UD14336,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-26,2025-06-23,4,false,2,12,607,21.0,3 +UD14337,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-27,2025-06-23,5,false,2,11,673,21.3,3 +UD14338,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-28,2025-06-23,6,true,3,8,569,20.6,1 +UD14339,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-29,2025-06-23,0,true,2,5,360,21.7,1 +UD14340,W2192,A1085,Sierra Capital,financial_services,smb,NA,US,sierra-core,prod,active,true,2025-06-30,2025-06-30,1,false,4,16,993,22.4,2 +UD14341,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,4,265,22.2,1 +UD14342,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-02,2025-06-02,1,false,4,13,987,22.3,3 +UD14343,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-03,2025-06-02,2,false,3,16,1117,22.9,2 +UD14344,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-04,2025-06-02,3,false,4,16,990,22.2,3 +UD14345,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-05,2025-06-02,4,false,3,11,735,22.9,2 +UD14346,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-06,2025-06-02,5,false,3,12,838,22.4,2 +UD14347,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-07,2025-06-02,6,true,1,4,201,23.1,1 +UD14348,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-08,2025-06-02,0,true,2,5,398,22.7,1 +UD14349,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-09,2025-06-09,1,false,3,12,806,23.1,2 +UD14350,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-10,2025-06-09,2,false,3,14,640,23.2,3 +UD14351,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-11,2025-06-09,3,false,1,7,447,23.2,2 +UD14352,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-12,2025-06-09,4,false,3,14,714,24.5,4 +UD14353,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-13,2025-06-09,5,false,1,7,457,22.9,1 +UD14354,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-14,2025-06-09,6,true,2,6,338,23.7,1 +UD14355,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,4,216,23.8,1 +UD14356,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-16,2025-06-16,1,false,2,12,649,23.6,2 +UD14357,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-17,2025-06-16,2,false,1,8,360,25.1,2 +UD14358,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-18,2025-06-16,3,false,4,17,916,25.0,3 +UD14359,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-19,2025-06-16,4,false,3,11,588,24.6,3 +UD14360,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-20,2025-06-16,5,false,3,16,689,23.5,2 +UD14361,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-21,2025-06-16,6,true,2,5,338,23.5,1 +UD14362,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,8,637,23.7,2 +UD14363,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-23,2025-06-23,1,false,2,8,424,25.3,2 +UD14364,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-24,2025-06-23,2,false,3,12,919,26.8,2 +UD14365,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-25,2025-06-23,3,false,3,17,972,27.3,2 +UD14366,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-26,2025-06-23,4,false,3,14,902,25.6,3 +UD14367,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-27,2025-06-23,5,false,4,18,904,23.7,3 +UD14368,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-28,2025-06-23,6,true,2,5,374,25.8,1 +UD14369,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-29,2025-06-23,0,true,2,5,253,24.7,1 +UD14370,W2193,A1086,River Labs,software,smb,EMEA,FR,river-core,prod,active,true,2025-06-30,2025-06-30,1,false,3,13,841,28.2,4 +UD14371,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-01,2025-05-26,0,true,1,4,255,15.9,1 +UD14372,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-02,2025-06-02,1,false,5,20,1457,15.3,4 +UD14373,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-03,2025-06-02,2,false,3,14,996,16.2,4 +UD14374,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-04,2025-06-02,3,false,5,18,1374,16.4,3 +UD14375,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-05,2025-06-02,4,false,3,13,780,15.8,3 +UD14376,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-06,2025-06-02,5,false,4,16,706,15.8,3 +UD14377,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-07,2025-06-02,6,true,3,7,474,16.4,1 +UD14378,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-08,2025-06-02,0,true,2,5,333,16.2,1 +UD14379,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-09,2025-06-09,1,false,4,16,945,16.0,3 +UD14380,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-10,2025-06-09,2,false,5,22,1216,17.2,5 +UD14381,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-11,2025-06-09,3,false,3,14,993,17.3,2 +UD14382,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-12,2025-06-09,4,false,4,19,935,17.1,3 +UD14383,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-13,2025-06-09,5,false,2,10,429,17.8,1 +UD14384,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-14,2025-06-09,6,true,2,5,265,17.2,1 +UD14385,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-15,2025-06-09,0,true,1,4,265,17.3,1 +UD14386,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-16,2025-06-16,1,false,5,22,1609,17.1,5 +UD14387,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-17,2025-06-16,2,false,5,20,1186,17.9,3 +UD14388,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-18,2025-06-16,3,false,4,15,961,17.3,4 +UD14389,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-19,2025-06-16,4,false,4,19,1162,17.6,5 +UD14390,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-20,2025-06-16,5,false,3,15,789,18.8,3 +UD14391,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-21,2025-06-16,6,true,3,6,414,17.4,1 +UD14392,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-22,2025-06-16,0,true,3,8,412,18.5,2 +UD14393,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-23,2025-06-23,1,false,2,12,732,17.4,2 +UD14394,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-24,2025-06-23,2,false,3,15,767,16.9,4 +UD14395,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-25,2025-06-23,3,false,3,13,931,19.2,2 +UD14396,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-26,2025-06-23,4,false,5,19,843,19.8,4 +UD14397,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-27,2025-06-23,5,false,3,15,950,19.2,2 +UD14398,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-28,2025-06-23,6,true,1,4,257,18.9,1 +UD14399,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-29,2025-06-23,0,true,3,7,474,18.1,2 +UD14400,W2195,A1088,Cedar Partners,energy,smb,APAC,NZ,cedar-core,prod,active,true,2025-06-30,2025-06-30,1,false,2,11,796,21.1,2 +UD14401,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-01,2025-05-26,0,true,4,10,661,31.9,1 +UD14402,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-02,2025-06-02,1,false,4,20,1063,32.4,4 +UD14403,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-03,2025-06-02,2,false,5,24,1695,32.8,7 +UD14404,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-04,2025-06-02,3,false,6,32,1976,32.7,9 +UD14405,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-05,2025-06-02,4,false,5,20,1322,31.9,5 +UD14406,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-06,2025-06-02,5,false,6,22,1372,32.8,4 +UD14407,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-07,2025-06-02,6,true,3,10,710,32.6,3 +UD14408,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-08,2025-06-02,0,true,3,9,618,33.3,2 +UD14409,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-09,2025-06-09,1,false,5,25,1164,32.9,6 +UD14410,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-10,2025-06-09,2,false,4,18,1308,33.7,4 +UD14411,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-11,2025-06-09,3,false,4,18,1204,32.5,3 +UD14412,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-12,2025-06-09,4,false,6,29,1496,34.3,5 +UD14413,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-13,2025-06-09,5,false,4,22,1276,33.9,6 +UD14414,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-14,2025-06-09,6,true,3,10,669,33.1,2 +UD14415,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-15,2025-06-09,0,true,3,9,588,33.4,2 +UD14416,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-16,2025-06-16,1,false,6,25,1813,33.2,6 +UD14417,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-17,2025-06-16,2,false,5,28,1817,33.0,7 +UD14418,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-18,2025-06-16,3,false,5,28,2053,33.1,4 +UD14419,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-19,2025-06-16,4,false,4,21,1203,35.2,5 +UD14420,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-20,2025-06-16,5,false,4,19,1303,34.0,4 +UD14421,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-21,2025-06-16,6,true,4,11,526,34.1,3 +UD14422,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-22,2025-06-16,0,true,2,8,571,35.5,1 +UD14423,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-23,2025-06-23,1,false,4,18,1265,34.0,4 +UD14424,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-24,2025-06-23,2,false,5,28,1707,34.5,5 +UD14425,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-25,2025-06-23,3,false,4,23,1582,36.8,4 +UD14426,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-26,2025-06-23,4,false,5,19,1282,36.0,3 +UD14427,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-27,2025-06-23,5,false,4,21,1242,36.2,5 +UD14428,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-28,2025-06-23,6,true,4,12,887,36.2,2 +UD14429,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-29,2025-06-23,0,true,2,7,365,36.5,1 +UD14430,W2196,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-core,prod,active,true,2025-06-30,2025-06-30,1,false,5,23,1248,36.4,4 +UD14431,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-01,2025-05-26,0,true,2,6,356,22.1,1 +UD14432,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-02,2025-06-02,1,false,5,25,1578,22.7,5 +UD14433,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-03,2025-06-02,2,false,4,20,974,23.3,2 +UD14434,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-04,2025-06-02,3,false,3,16,953,23.5,3 +UD14435,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-05,2025-06-02,4,false,4,22,1209,23.1,4 +UD14436,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-06,2025-06-02,5,false,5,21,1492,23.3,3 +UD14437,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-07,2025-06-02,6,true,3,7,533,22.7,2 +UD14438,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-08,2025-06-02,0,true,2,8,610,23.9,1 +UD14439,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-09,2025-06-09,1,false,3,16,1126,23.6,3 +UD14440,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-10,2025-06-09,2,false,4,20,1299,23.7,4 +UD14441,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-11,2025-06-09,3,false,3,17,1193,24.4,3 +UD14442,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-12,2025-06-09,4,false,3,19,1419,24.2,3 +UD14443,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-13,2025-06-09,5,false,3,15,644,23.7,2 +UD14444,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-14,2025-06-09,6,true,2,7,411,24.8,1 +UD14445,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-15,2025-06-09,0,true,3,9,460,24.3,2 +UD14446,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-16,2025-06-16,1,false,4,21,1103,23.6,4 +UD14447,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-17,2025-06-16,2,false,3,15,761,24.5,3 +UD14448,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-18,2025-06-16,3,false,3,20,901,25.7,4 +UD14449,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-19,2025-06-16,4,false,4,18,911,24.4,5 +UD14450,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-20,2025-06-16,5,false,3,17,968,24.1,4 +UD14451,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-21,2025-06-16,6,true,2,6,472,27.1,1 +UD14452,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-22,2025-06-16,0,true,2,7,362,25.7,1 +UD14453,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-23,2025-06-23,1,false,3,18,1267,26.1,3 +UD14454,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-24,2025-06-23,2,false,3,18,888,26.2,2 +UD14455,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-25,2025-06-23,3,false,4,19,1193,27.1,4 +UD14456,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-26,2025-06-23,4,false,5,27,1336,26.9,8 +UD14457,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-27,2025-06-23,5,false,4,22,1072,26.4,5 +UD14458,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-28,2025-06-23,6,true,3,10,510,25.6,3 +UD14459,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-29,2025-06-23,0,true,3,8,635,27.8,2 +UD14460,W2197,A1089,Beacon Network,healthcare,mid_market,NA,US,beacon-ops,prod,active,false,2025-06-30,2025-06-30,1,false,4,18,1082,27.4,5 +UD14461,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-01,2025-05-26,0,true,2,6,433,19.1,1 +UD14462,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-02,2025-06-02,1,false,3,15,921,19.8,2 +UD14463,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-03,2025-06-02,2,false,2,10,732,20.2,2 +UD14464,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-04,2025-06-02,3,false,2,11,536,19.8,1 +UD14465,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-05,2025-06-02,4,false,3,12,533,20.3,3 +UD14466,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-06,2025-06-02,5,false,4,14,696,20.7,4 +UD14467,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-07,2025-06-02,6,true,3,6,302,20.5,2 +UD14468,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-08,2025-06-02,0,true,2,5,268,20.2,1 +UD14469,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-09,2025-06-09,1,false,3,15,890,20.7,3 +UD14470,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-10,2025-06-09,2,false,2,12,517,21.1,2 +UD14471,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-11,2025-06-09,3,false,4,17,1090,20.9,5 +UD14472,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-12,2025-06-09,4,false,4,14,767,21.0,4 +UD14473,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-13,2025-06-09,5,false,3,13,636,20.9,2 +UD14474,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-14,2025-06-09,6,true,3,7,467,20.8,1 +UD14475,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-15,2025-06-09,0,true,3,6,315,21.7,1 +UD14476,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-16,2025-06-16,1,false,2,10,547,22.8,3 +UD14477,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-17,2025-06-16,2,false,1,8,408,20.2,2 +UD14478,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-18,2025-06-16,3,false,1,8,363,20.5,2 +UD14479,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-19,2025-06-16,4,false,2,9,400,21.7,2 +UD14480,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-20,2025-06-16,5,false,2,11,554,23.3,3 +UD14481,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-21,2025-06-16,6,true,1,4,281,23.7,1 +UD14482,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-22,2025-06-16,0,true,2,5,387,22.8,1 +UD14483,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-23,2025-06-23,1,false,1,6,287,23.3,1 +UD14484,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-24,2025-06-23,2,false,2,13,962,21.6,2 +UD14485,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-25,2025-06-23,3,false,3,17,1138,22.2,2 +UD14486,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-26,2025-06-23,4,false,2,9,521,22.3,2 +UD14487,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-27,2025-06-23,5,false,2,11,531,23.0,2 +UD14488,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-28,2025-06-23,6,true,1,4,293,23.4,1 +UD14489,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-29,2025-06-23,0,true,2,6,319,22.0,1 +UD14490,W2198,A1090,Vertex Labs,energy,smb,NA,US,vertex-core,prod,active,true,2025-06-30,2025-06-30,1,false,2,10,707,22.2,2 diff --git a/tasks/helixops_saas010/seeds/solution__int_workspace_roster.csv b/tasks/helixops_saas010/seeds/solution__int_workspace_roster.csv new file mode 100644 index 00000000..e7b0a03a --- /dev/null +++ b/tasks/helixops_saas010/seeds/solution__int_workspace_roster.csv @@ -0,0 +1,1072 @@ +membership_id,workspace_id,workspace_name,environment_tier,workspace_status,is_primary,account_id,account_name,segment,region,billing_country,user_id,email,full_name,title,department,user_status,is_active_user,role,invited_at,joined_at,membership_status,is_current_membership +M4001,W2001,helio-core,prod,active,true,A1001,Helio Systems,mid_market,EMEA,NL,U3001,lena.park@heliosystems.example,Lena Park,Technical Program Manager,product,active,true,owner,2024-09-05 20:52:48,2024-09-05 21:49:48,active,true +M4002,W2001,helio-core,prod,active,true,A1001,Helio Systems,mid_market,EMEA,NL,U3002,mei.lewis@heliosystems.example,Mei Lewis,BI Analyst,analytics,active,true,viewer,2024-09-22 18:57:48,2024-09-22 21:52:48,active,true +M4003,W2002,helio-ops,prod,active,false,A1001,Helio Systems,mid_market,EMEA,NL,U3003,marcus.saeed@heliosystems.example,Marcus Saeed,Operations Manager,operations,active,true,admin,2024-08-17 15:02:48,2024-08-17 17:37:48,active,true +M4004,W2001,helio-core,prod,active,true,A1001,Helio Systems,mid_market,EMEA,NL,U3004,peter.ng@heliosystems.example,Peter Ng,Operations Director,operations,inactive,false,editor,2024-09-09 18:06:48,2024-09-09 19:02:48,removed,false +M4005,W2001,helio-core,prod,active,true,A1001,Helio Systems,mid_market,EMEA,NL,U3005,sofia.fischer@heliosystems.example,Sofia Fischer,Demand Gen Manager,marketing,active,true,editor,2024-08-17 17:24:48,2024-08-17 18:32:48,active,true +M4006,W2003,helio-finance,prod,active,false,A1001,Helio Systems,mid_market,EMEA,NL,U3006,marcus.silva@heliosystems.example,Marcus Silva,Finance Manager,finance,inactive,false,editor,2024-08-14 16:39:48,2024-08-14 18:41:48,removed,false +M4007,W2001,helio-core,prod,active,true,A1001,Helio Systems,mid_market,EMEA,NL,U3007,naomi.turner@heliosystems.example,Naomi Turner,Product Manager,product,active,true,viewer,2024-08-17 11:49:48,2024-08-17 13:50:48,active,true +M4008,W2002,helio-ops,prod,active,false,A1001,Helio Systems,mid_market,EMEA,NL,U3008,peter.saeed@heliosystems.example,Peter Saeed,Revenue Operations Manager,sales,active,true,viewer,2024-08-30 16:03:48,2024-08-30 17:48:48,active,true +M4009,W2003,helio-finance,prod,active,false,A1001,Helio Systems,mid_market,EMEA,NL,U3009,victor.price@heliosystems.example,Victor Price,Product Manager,product,active,true,viewer,2024-08-19 19:48:48,2024-08-19 20:56:48,active,true +M4010,W2004,summit-core,prod,active,true,A1002,Summit Foods,mid_market,NA,US,U3010,sofia.alvarez@summitfoods.example,Sofia Alvarez,FP&A Analyst,finance,active,true,owner,2025-02-06 21:48:29,2025-02-07 00:31:29,active,true +M4011,W2006,summit-finance,prod,active,false,A1002,Summit Foods,mid_market,NA,US,U3011,lena.price@summitfoods.example,Lena Price,Controller,finance,active,true,editor,2025-02-21 21:46:29,2025-02-21 22:37:29,active,true +M4012,W2006,summit-finance,prod,active,false,A1002,Summit Foods,mid_market,NA,US,U3012,tomas.saeed@summitfoods.example,Tomas Saeed,Analytics Engineer,data,active,true,editor,2025-02-09 22:05:29,2025-02-09 23:11:29,active,true +M4013,W2004,summit-core,prod,active,true,A1002,Summit Foods,mid_market,NA,US,U3013,nina.romero@summitfoods.example,Nina Romero,Founder,executive,active,true,editor,2025-02-02 00:33:29,2025-02-02 03:28:29,active,true +M4014,W2004,summit-core,prod,active,true,A1002,Summit Foods,mid_market,NA,US,U3014,marcus.silva@summitfoods.example,Marcus Silva,Finance Manager,finance,active,true,viewer,2025-02-02 05:43:29,2025-02-02 07:54:29,active,true +M4015,W2005,summit-ops,sandbox,active,false,A1002,Summit Foods,mid_market,NA,US,U3015,kenji.ward@summitfoods.example,Kenji Ward,Product Manager,product,active,true,viewer,2025-01-18 22:23:29,2025-01-18 22:47:29,active,true +M4016,W2004,summit-core,prod,active,true,A1002,Summit Foods,mid_market,NA,US,U3016,priya.meyer@summitfoods.example,Priya Meyer,Marketing Operations Lead,marketing,active,true,editor,2025-01-22 21:18:29,2025-01-22 23:18:29,active,true +M4017,W2004,summit-core,prod,active,true,A1002,Summit Foods,mid_market,NA,US,U3017,sofia.morgan@summitfoods.example,Sofia Morgan,Technical Program Manager,product,active,true,editor,2025-01-13 00:11:29,2025-01-13 00:22:29,active,true +M4018,W2004,summit-core,prod,active,true,A1002,Summit Foods,mid_market,NA,US,U3018,hannah.silva@summitfoods.example,Hannah Silva,BI Analyst,analytics,inactive,false,viewer,2025-02-03 03:11:29,2025-02-03 04:53:29,removed,false +M4019,W2005,summit-ops,sandbox,active,false,A1002,Summit Foods,mid_market,NA,US,U3019,lina.silva@summitfoods.example,Lina Silva,FP&A Analyst,finance,active,true,viewer,2025-02-24 05:09:29,2025-02-24 06:18:29,active,true +M4020,W2004,summit-core,prod,active,true,A1002,Summit Foods,mid_market,NA,US,U3020,mateo.dubois@summitfoods.example,Mateo Dubois,Workflow Analyst,operations,active,true,viewer,2025-02-06 22:08:29,2025-02-07 00:11:29,active,true +M4021,W2006,summit-finance,prod,active,false,A1002,Summit Foods,mid_market,NA,US,U3020,mateo.dubois@summitfoods.example,Mateo Dubois,Workflow Analyst,operations,active,true,viewer,2025-02-06 23:02:29,2025-02-06 23:28:29,active,true +M4022,W2006,summit-finance,prod,active,false,A1002,Summit Foods,mid_market,NA,US,U3021,kenji.nash@summitfoods.example,Kenji Nash,Analytics Manager,analytics,active,true,viewer,2025-01-16 21:23:29,2025-01-16 22:09:29,active,true +M4023,W2005,summit-ops,sandbox,active,false,A1002,Summit Foods,mid_market,NA,US,U3021,kenji.nash@summitfoods.example,Kenji Nash,Analytics Manager,analytics,active,true,viewer,2025-01-16 22:49:29,2025-01-16 22:58:29,active,true +M4024,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3022,owen.ng@novaventures.example,Owen Ng,Controller,finance,active,true,owner,2025-01-08 07:57:52,2025-01-08 09:17:52,active,true +M4025,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3023,marta.ng@novaventures.example,Marta Ng,Insights Lead,analytics,active,true,editor,2024-12-14 04:10:52,2024-12-14 07:06:52,active,true +M4026,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3024,derek.hart@novaventures.example,Derek Hart,Finance Manager,finance,active,true,viewer,2024-12-20 09:57:52,2024-12-20 10:57:52,active,true +M4027,W2009,nova-finance,prod,active,false,A1003,Nova Ventures,enterprise,NA,US,U3024,derek.hart@novaventures.example,Derek Hart,Finance Manager,finance,active,true,viewer,2024-12-20 08:48:52,2024-12-20 09:01:52,active,true +M4028,W2008,nova-ops,sandbox,archived,false,A1003,Nova Ventures,enterprise,NA,US,U3025,victor.fischer@novaventures.example,Victor Fischer,CFO,executive,active,true,viewer,2025-01-16 01:36:52,2025-01-16 03:54:52,removed,false +M4029,W2009,nova-finance,prod,active,false,A1003,Nova Ventures,enterprise,NA,US,U3026,owen.fischer@novaventures.example,Owen Fischer,CFO,executive,active,true,viewer,2024-12-15 04:23:52,2024-12-15 04:41:52,active,true +M4030,W2008,nova-ops,sandbox,archived,false,A1003,Nova Ventures,enterprise,NA,US,U3026,owen.fischer@novaventures.example,Owen Fischer,CFO,executive,active,true,editor,2024-12-15 04:03:52,2024-12-15 04:09:52,removed,false +M4031,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3027,alma.dubois@novaventures.example,Alma Dubois,Marketing Operations Lead,marketing,active,true,viewer,2024-12-12 04:49:52,2024-12-12 05:45:52,active,true +M4032,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3028,arjun.grant@novaventures.example,Arjun Grant,Analytics Manager,analytics,active,true,admin,2025-01-25 09:36:52,2025-01-25 10:30:52,active,true +M4033,W2008,nova-ops,sandbox,archived,false,A1003,Nova Ventures,enterprise,NA,US,U3028,arjun.grant@novaventures.example,Arjun Grant,Analytics Manager,analytics,active,true,viewer,2025-01-25 08:52:52,2025-01-25 11:48:52,removed,false +M4034,W2009,nova-finance,prod,active,false,A1003,Nova Ventures,enterprise,NA,US,U3029,claire.rossi@novaventures.example,Claire Rossi,Marketing Operations Lead,marketing,active,true,admin,2024-12-19 03:14:52,2024-12-19 03:46:52,active,true +M4035,W2008,nova-ops,sandbox,archived,false,A1003,Nova Ventures,enterprise,NA,US,U3029,claire.rossi@novaventures.example,Claire Rossi,Marketing Operations Lead,marketing,active,true,viewer,2024-12-19 02:35:52,2024-12-19 04:03:52,removed,false +M4036,W2009,nova-finance,prod,active,false,A1003,Nova Ventures,enterprise,NA,US,U3030,owen.petrova@novaventures.example,Owen Petrova,VP Data,executive,active,true,editor,2025-01-25 03:25:52,2025-01-25 04:00:52,active,true +M4037,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3031,jonas.rahman@novaventures.example,Jonas Rahman,FP&A Analyst,finance,active,true,editor,2025-01-12 05:57:52,2025-01-12 06:05:52,active,true +M4038,W2008,nova-ops,sandbox,archived,false,A1003,Nova Ventures,enterprise,NA,US,U3032,naomi.alvarez@novaventures.example,Naomi Alvarez,Product Manager,product,active,true,viewer,2025-01-03 10:21:52,2025-01-03 11:22:52,removed,false +M4039,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3032,naomi.alvarez@novaventures.example,Naomi Alvarez,Product Manager,product,active,true,editor,2025-01-03 09:35:52,2025-01-03 10:51:52,active,true +M4040,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3033,arjun.lewis@novaventures.example,Arjun Lewis,Operations Director,operations,inactive,false,admin,2024-12-30 07:41:52,2024-12-30 10:19:52,removed,false +M4041,W2009,nova-finance,prod,active,false,A1003,Nova Ventures,enterprise,NA,US,U3033,arjun.lewis@novaventures.example,Arjun Lewis,Operations Director,operations,inactive,false,viewer,2024-12-30 09:06:52,2024-12-30 11:28:52,active,true +M4042,W2008,nova-ops,sandbox,archived,false,A1003,Nova Ventures,enterprise,NA,US,U3034,kai.price@novaventures.example,Kai Price,Operations Director,operations,active,true,viewer,2024-12-31 02:59:52,2024-12-31 04:43:52,removed,false +M4043,W2009,nova-finance,prod,active,false,A1003,Nova Ventures,enterprise,NA,US,U3035,mateo.cole@novaventures.example,Mateo Cole,Controller,finance,active,true,admin,2025-01-20 03:31:52,2025-01-20 06:26:52,active,true +M4044,W2008,nova-ops,sandbox,archived,false,A1003,Nova Ventures,enterprise,NA,US,U3035,mateo.cole@novaventures.example,Mateo Cole,Controller,finance,active,true,editor,2025-01-20 04:18:52,2025-01-20 04:40:52,removed,false +M4045,W2008,nova-ops,sandbox,archived,false,A1003,Nova Ventures,enterprise,NA,US,U3036,ivy.hart@novaventures.example,Ivy Hart,Data Engineer,data,active,true,editor,2025-01-13 04:15:52,2025-01-13 06:50:52,removed,false +M4046,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3037,alma.patel@novaventures.example,Alma Patel,VP Data,executive,active,true,editor,2024-12-16 05:25:52,2024-12-16 06:01:52,active,true +M4047,W2010,silver-core,prod,archived,true,A1004,Silver Solutions,enterprise,NA,US,U3038,jonas.nash@silversolutions.example,Jonas Nash,Workflow Analyst,operations,inactive,false,owner,2024-10-18 14:46:43,2024-10-18 15:51:43,removed,false +M4048,W2010,silver-core,prod,archived,true,A1004,Silver Solutions,enterprise,NA,US,U3039,mila.silva@silversolutions.example,Mila Silva,Data Engineer,data,inactive,false,viewer,2024-09-12 12:22:43,2024-09-12 13:42:43,removed,false +M4049,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3039,mila.silva@silversolutions.example,Mila Silva,Data Engineer,data,inactive,false,viewer,2024-09-12 12:37:43,2024-09-12 13:34:43,removed,false +M4050,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3040,daniel.price@silversolutions.example,Daniel Price,Analytics Engineer,data,inactive,false,viewer,2024-10-17 20:50:43,2024-10-17 22:16:43,removed,false +M4051,W2010,silver-core,prod,archived,true,A1004,Silver Solutions,enterprise,NA,US,U3041,victor.morgan@silversolutions.example,Victor Morgan,Analytics Manager,analytics,active,true,editor,2024-09-11 12:03:43,2024-09-11 13:21:43,removed,false +M4052,W2010,silver-core,prod,archived,true,A1004,Silver Solutions,enterprise,NA,US,U3042,leo.ward@silversolutions.example,Leo Ward,Demand Gen Manager,marketing,inactive,false,viewer,2024-10-15 14:54:43,2024-10-15 15:51:43,removed,false +M4053,W2010,silver-core,prod,archived,true,A1004,Silver Solutions,enterprise,NA,US,U3043,marta.morgan@silversolutions.example,Marta Morgan,FP&A Analyst,finance,active,true,viewer,2024-10-09 20:57:43,2024-10-09 23:37:43,active,true +M4054,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3044,ava.grant@silversolutions.example,Ava Grant,Analytics Manager,analytics,active,true,editor,2024-09-22 15:17:43,2024-09-22 17:27:43,removed,false +M4055,W2010,silver-core,prod,archived,true,A1004,Silver Solutions,enterprise,NA,US,U3045,lina.price@silversolutions.example,Lina Price,Marketing Operations Lead,marketing,active,true,admin,2024-09-27 17:59:43,2024-09-27 18:36:43,removed,false +M4056,W2010,silver-core,prod,archived,true,A1004,Silver Solutions,enterprise,NA,US,U3046,tara.hart@silversolutions.example,Tara Hart,Technical Program Manager,product,active,true,editor,2024-09-26 19:46:43,2024-09-26 20:33:43,removed,false +M4057,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3046,tara.hart@silversolutions.example,Tara Hart,Technical Program Manager,product,active,true,viewer,2024-09-26 19:54:43,2024-09-26 21:47:43,removed,false +M4058,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3047,sofia.ward@silversolutions.example,Sofia Ward,Marketing Operations Lead,marketing,active,true,editor,2024-10-14 17:04:43,2024-10-14 18:00:43,removed,false +M4059,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3048,tara.turner@silversolutions.example,Tara Turner,Insights Lead,analytics,inactive,false,admin,2024-09-07 13:35:43,2024-09-07 15:16:43,removed,false +M4060,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3049,derek.morgan@silversolutions.example,Derek Morgan,Founder,executive,inactive,false,editor,2024-10-02 12:30:43,2024-10-02 13:14:43,active,true +M4061,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3050,claire.keller@silversolutions.example,Claire Keller,Sales Analyst,sales,inactive,false,admin,2024-10-12 15:36:43,2024-10-12 16:02:43,removed,false +M4062,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3051,olivia.lewis@silversolutions.example,Olivia Lewis,Operations Manager,operations,inactive,false,editor,2024-09-30 17:53:43,2024-09-30 19:35:43,removed,false +M4063,W2010,silver-core,prod,archived,true,A1004,Silver Solutions,enterprise,NA,US,U3051,olivia.lewis@silversolutions.example,Olivia Lewis,Operations Manager,operations,inactive,false,editor,2024-09-30 17:27:43,2024-09-30 18:44:43,removed,false +M4064,W2012,pacific-core,prod,active,true,A1005,Pacific Labs,enterprise,EMEA,UK,U3052,ben.hart@pacificlabs.example,Ben Hart,Revenue Operations Manager,sales,active,true,owner,2024-09-02 14:17:15,2024-09-02 15:47:15,active,true +M4065,W2012,pacific-core,prod,active,true,A1005,Pacific Labs,enterprise,EMEA,UK,U3053,leo.saeed@pacificlabs.example,Leo Saeed,Product Manager,product,active,true,viewer,2024-10-08 22:26:15,2024-10-08 22:34:15,active,true +M4066,W2013,pacific-ops,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3053,leo.saeed@pacificlabs.example,Leo Saeed,Product Manager,product,active,true,editor,2024-10-08 20:36:15,2024-10-08 22:49:15,active,true +M4067,W2013,pacific-ops,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3054,alma.rahman@pacificlabs.example,Alma Rahman,Sales Analyst,sales,active,true,editor,2024-10-07 18:36:15,2024-10-07 20:16:15,active,true +M4068,W2013,pacific-ops,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3055,isla.rossi@pacificlabs.example,Isla Rossi,Analytics Manager,analytics,active,true,editor,2024-09-01 18:11:15,2024-09-01 18:34:15,active,true +M4069,W2013,pacific-ops,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3056,kai.singh@pacificlabs.example,Kai Singh,Data Platform Manager,data,inactive,false,viewer,2024-09-30 18:11:15,2024-09-30 19:54:15,active,true +M4070,W2012,pacific-core,prod,active,true,A1005,Pacific Labs,enterprise,EMEA,UK,U3057,helena.patel@pacificlabs.example,Helena Patel,Data Platform Manager,data,active,true,editor,2024-09-30 15:54:15,2024-09-30 17:28:15,active,true +M4071,W2014,pacific-finance,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3058,mila.kim@pacificlabs.example,Mila Kim,Controller,finance,active,true,viewer,2024-09-15 13:39:15,2024-09-15 13:58:15,active,true +M4072,W2014,pacific-finance,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3059,olivia.tan@pacificlabs.example,Olivia Tan,Analytics Engineer,data,active,true,editor,2024-09-20 19:55:15,2024-09-20 21:02:15,active,true +M4073,W2013,pacific-ops,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3060,daniel.price@pacificlabs.example,Daniel Price,Product Manager,product,active,true,admin,2024-10-15 15:06:15,2024-10-15 18:04:15,active,true +M4074,W2012,pacific-core,prod,active,true,A1005,Pacific Labs,enterprise,EMEA,UK,U3061,alma.turner@pacificlabs.example,Alma Turner,Sales Analyst,sales,inactive,false,viewer,2024-09-11 20:53:15,2024-09-11 23:32:15,removed,false +M4075,W2014,pacific-finance,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3062,nina.turner@pacificlabs.example,Nina Turner,Marketing Operations Lead,marketing,active,true,admin,2024-09-17 21:12:15,2024-09-18 00:06:15,active,true +M4076,W2012,pacific-core,prod,active,true,A1005,Pacific Labs,enterprise,EMEA,UK,U3063,claire.reed@pacificlabs.example,Claire Reed,Technical Program Manager,product,active,true,admin,2024-09-30 18:04:15,2024-09-30 19:47:15,active,true +M4077,W2013,pacific-ops,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3064,evan.meyer@pacificlabs.example,Evan Meyer,Workflow Analyst,operations,active,true,viewer,2024-10-13 22:16:15,2024-10-14 00:33:15,active,true +M4078,W2012,pacific-core,prod,active,true,A1005,Pacific Labs,enterprise,EMEA,UK,U3065,marta.shah@pacificlabs.example,Marta Shah,BI Analyst,analytics,active,true,viewer,2024-09-18 14:54:15,2024-09-18 16:16:15,active,true +M4079,W2014,pacific-finance,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3065,marta.shah@pacificlabs.example,Marta Shah,BI Analyst,analytics,active,true,editor,2024-09-18 14:22:15,2024-09-18 16:43:15,active,true +M4080,W2014,pacific-finance,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3066,nina.turner2@pacificlabs.example,Nina Turner,Marketing Operations Lead,marketing,inactive,false,editor,2024-10-04 16:34:15,2024-10-04 17:01:15,removed,false +M4081,W2015,helio-core,prod,active,true,A1006,Helio Works,mid_market,EMEA,UK,U3067,mila.alvarez@helioworks.example,Mila Alvarez,Marketing Operations Lead,marketing,active,true,owner,2025-01-02 16:02:28,2025-01-02 17:35:28,active,true +M4082,W2015,helio-core,prod,active,true,A1006,Helio Works,mid_market,EMEA,UK,U3068,hannah.hill@helioworks.example,Hannah Hill,Sales Analyst,sales,active,true,editor,2025-01-05 14:46:28,2025-01-05 16:09:28,active,true +M4083,W2016,helio-ops,prod,active,false,A1006,Helio Works,mid_market,EMEA,UK,U3068,hannah.hill@helioworks.example,Hannah Hill,Sales Analyst,sales,active,true,editor,2025-01-05 16:15:28,2025-01-05 17:03:28,active,true +M4084,W2015,helio-core,prod,active,true,A1006,Helio Works,mid_market,EMEA,UK,U3069,naomi.chen@helioworks.example,Naomi Chen,FP&A Analyst,finance,active,true,admin,2025-01-01 15:22:28,2025-01-01 17:41:28,active,true +M4085,W2016,helio-ops,prod,active,false,A1006,Helio Works,mid_market,EMEA,UK,U3070,claire.khan@helioworks.example,Claire Khan,Insights Lead,analytics,active,true,viewer,2024-11-24 09:54:28,2024-11-24 10:44:28,active,true +M4086,W2016,helio-ops,prod,active,false,A1006,Helio Works,mid_market,EMEA,UK,U3071,isla.desai@helioworks.example,Isla Desai,FP&A Analyst,finance,inactive,false,editor,2024-12-02 08:52:28,2024-12-02 11:05:28,active,true +M4087,W2015,helio-core,prod,active,true,A1006,Helio Works,mid_market,EMEA,UK,U3071,isla.desai@helioworks.example,Isla Desai,FP&A Analyst,finance,inactive,false,viewer,2024-12-02 08:18:28,2024-12-02 10:48:28,active,true +M4088,W2015,helio-core,prod,active,true,A1006,Helio Works,mid_market,EMEA,UK,U3072,kenji.meyer@helioworks.example,Kenji Meyer,Data Engineer,data,inactive,false,admin,2024-12-10 09:42:28,2024-12-10 11:31:28,removed,false +M4089,W2016,helio-ops,prod,active,false,A1006,Helio Works,mid_market,EMEA,UK,U3072,kenji.meyer@helioworks.example,Kenji Meyer,Data Engineer,data,inactive,false,viewer,2024-12-10 08:19:28,2024-12-10 11:03:28,removed,false +M4090,W2015,helio-core,prod,active,true,A1006,Helio Works,mid_market,EMEA,UK,U3073,isla.saeed@helioworks.example,Isla Saeed,Product Manager,product,active,true,editor,2024-12-23 15:40:28,2024-12-23 16:01:28,active,true +M4091,W2017,silver-core,prod,active,true,A1007,Silver Systems,smb,EMEA,FR,U3074,samir.rahman@silversystems.example,Samir Rahman,Technical Program Manager,product,active,true,owner,2025-02-05 19:35:12,2025-02-05 19:47:12,active,true +M4092,W2017,silver-core,prod,active,true,A1007,Silver Systems,smb,EMEA,FR,U3075,claire.tan@silversystems.example,Claire Tan,Controller,finance,active,true,editor,2025-01-31 22:52:12,2025-01-31 23:22:12,active,true +M4093,W2017,silver-core,prod,active,true,A1007,Silver Systems,smb,EMEA,FR,U3076,alma.petrova@silversystems.example,Alma Petrova,Revenue Operations Manager,sales,active,true,admin,2025-01-02 18:42:12,2025-01-02 18:48:12,active,true +M4094,W2017,silver-core,prod,active,true,A1007,Silver Systems,smb,EMEA,FR,U3077,maya.lopez@silversystems.example,Maya Lopez,Revenue Operations Manager,sales,inactive,false,admin,2025-01-19 21:12:12,2025-01-19 21:18:12,removed,false +M4095,W2018,pacific-core,prod,active,true,A1008,Pacific Works,mid_market,EMEA,UK,U3078,maya.lopez@pacificworks.example,Maya Lopez,COO,executive,active,true,owner,2024-10-09 10:59:40,2024-10-09 12:12:40,active,true +M4096,W2019,pacific-ops,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3079,noah.hart@pacificworks.example,Noah Hart,Insights Lead,analytics,active,true,editor,2024-10-13 14:11:40,2024-10-13 15:42:40,active,true +M4097,W2019,pacific-ops,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3080,zoe.lewis@pacificworks.example,Zoe Lewis,Product Manager,product,active,true,viewer,2024-11-04 15:25:40,2024-11-04 16:31:40,active,true +M4098,W2019,pacific-ops,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3081,leo.nash@pacificworks.example,Leo Nash,Marketing Operations Lead,marketing,active,true,viewer,2024-11-18 11:58:40,2024-11-18 13:34:40,active,true +M4099,W2019,pacific-ops,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3082,derek.keller@pacificworks.example,Derek Keller,Operations Director,operations,active,true,viewer,2024-11-10 17:33:40,2024-11-10 18:13:40,active,true +M4100,W2020,pacific-finance,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3082,derek.keller@pacificworks.example,Derek Keller,Operations Director,operations,active,true,viewer,2024-11-10 19:02:40,2024-11-10 21:41:40,active,true +M4101,W2020,pacific-finance,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3083,peter.rahman@pacificworks.example,Peter Rahman,CFO,executive,active,true,editor,2024-10-13 12:21:40,2024-10-13 13:29:40,active,true +M4102,W2019,pacific-ops,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3084,elena.hart@pacificworks.example,Elena Hart,Product Manager,product,active,true,editor,2024-11-04 11:14:40,2024-11-04 13:20:40,active,true +M4103,W2020,pacific-finance,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3085,lena.brooks@pacificworks.example,Lena Brooks,Technical Program Manager,product,active,true,editor,2024-10-07 17:03:40,2024-10-07 19:50:40,active,true +M4104,W2019,pacific-ops,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3085,lena.brooks@pacificworks.example,Lena Brooks,Technical Program Manager,product,active,true,editor,2024-10-07 16:19:40,2024-10-07 16:35:40,active,true +M4105,W2020,pacific-finance,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3086,daniel.keller@pacificworks.example,Daniel Keller,Analytics Engineer,data,active,true,editor,2024-10-28 11:14:40,2024-10-28 13:55:40,active,true +M4106,W2018,pacific-core,prod,active,true,A1008,Pacific Works,mid_market,EMEA,UK,U3087,tomas.turner@pacificworks.example,Tomas Turner,Analytics Engineer,data,active,true,editor,2024-11-01 12:05:40,2024-11-01 14:58:40,active,true +M4107,W2020,pacific-finance,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3088,kai.fischer@pacificworks.example,Kai Fischer,Sales Analyst,sales,active,true,viewer,2024-10-30 16:28:40,2024-10-30 19:08:40,active,true +M4108,W2021,summit-core,prod,active,true,A1009,Summit Group,mid_market,NA,US,U3089,isla.lewis@summitgroup.example,Isla Lewis,Founder,executive,active,true,owner,2024-09-03 00:56:46,2024-09-03 01:37:46,active,true +M4109,W2021,summit-core,prod,active,true,A1009,Summit Group,mid_market,NA,US,U3090,zoe.chen@summitgroup.example,Zoe Chen,Analytics Engineer,data,active,true,admin,2024-09-21 00:42:46,2024-09-21 03:39:46,active,true +M4110,W2022,summit-ops,prod,active,false,A1009,Summit Group,mid_market,NA,US,U3091,zoe.alvarez@summitgroup.example,Zoe Alvarez,Technical Program Manager,product,active,true,admin,2024-08-31 21:06:46,2024-08-31 23:14:46,active,true +M4111,W2021,summit-core,prod,active,true,A1009,Summit Group,mid_market,NA,US,U3092,olivia.desai@summitgroup.example,Olivia Desai,Revenue Operations Manager,sales,active,true,editor,2024-09-06 20:07:46,2024-09-06 22:03:46,active,true +M4112,W2022,summit-ops,prod,active,false,A1009,Summit Group,mid_market,NA,US,U3092,olivia.desai@summitgroup.example,Olivia Desai,Revenue Operations Manager,sales,active,true,viewer,2024-09-06 18:49:46,2024-09-06 19:01:46,active,true +M4113,W2022,summit-ops,prod,active,false,A1009,Summit Group,mid_market,NA,US,U3093,priya.park@summitgroup.example,Priya Park,Data Engineer,data,active,true,viewer,2024-08-24 22:52:46,2024-08-25 00:02:46,active,true +M4114,W2022,summit-ops,prod,active,false,A1009,Summit Group,mid_market,NA,US,U3094,daniel.brooks@summitgroup.example,Daniel Brooks,Controller,finance,active,true,viewer,2024-09-09 18:55:46,2024-09-09 19:34:46,active,true +M4115,W2022,summit-ops,prod,active,false,A1009,Summit Group,mid_market,NA,US,U3095,lena.khan@summitgroup.example,Lena Khan,COO,executive,inactive,false,admin,2024-09-10 17:29:46,2024-09-10 18:31:46,active,true +M4116,W2021,summit-core,prod,active,true,A1009,Summit Group,mid_market,NA,US,U3096,jonas.dubois@summitgroup.example,Jonas Dubois,Data Platform Manager,data,active,true,viewer,2024-09-28 17:49:46,2024-09-28 19:31:46,active,true +M4117,W2022,summit-ops,prod,active,false,A1009,Summit Group,mid_market,NA,US,U3097,arjun.rossi@summitgroup.example,Arjun Rossi,Analytics Engineer,data,active,true,viewer,2024-10-02 23:06:46,2024-10-03 00:25:46,active,true +M4118,W2021,summit-core,prod,active,true,A1009,Summit Group,mid_market,NA,US,U3098,kai.price@summitgroup.example,Kai Price,FP&A Analyst,finance,active,true,admin,2024-09-15 18:05:46,2024-09-15 18:58:46,active,true +M4119,W2021,summit-core,prod,active,true,A1009,Summit Group,mid_market,NA,US,U3099,victor.patel@summitgroup.example,Victor Patel,Insights Lead,analytics,inactive,false,editor,2024-08-31 23:32:46,2024-09-01 02:04:46,removed,false +M4120,W2022,summit-ops,prod,active,false,A1009,Summit Group,mid_market,NA,US,U3099,victor.patel@summitgroup.example,Victor Patel,Insights Lead,analytics,inactive,false,viewer,2024-08-31 23:41:46,2024-09-01 00:01:46,removed,false +M4121,W2022,summit-ops,prod,active,false,A1009,Summit Group,mid_market,NA,US,U3100,arjun.saeed@summitgroup.example,Arjun Saeed,FP&A Analyst,finance,active,true,viewer,2024-09-06 20:34:46,2024-09-06 23:32:46,active,true +M4122,W2021,summit-core,prod,active,true,A1009,Summit Group,mid_market,NA,US,U3101,elena.park@summitgroup.example,Elena Park,Founder,executive,active,true,editor,2024-09-25 19:52:46,2024-09-25 20:24:46,active,true +M4123,W2023,orchid-core,prod,active,true,A1010,Orchid Foods,smb,NA,CA,U3102,ben.desai@orchidfoods.example,Ben Desai,Operations Director,operations,active,true,owner,2025-03-20 04:18:21,2025-03-20 04:25:21,active,true +M4124,W2023,orchid-core,prod,active,true,A1010,Orchid Foods,smb,NA,CA,U3103,samir.singh@orchidfoods.example,Samir Singh,Data Engineer,data,active,true,editor,2025-02-22 20:24:21,2025-02-22 21:44:21,active,true +M4125,W2023,orchid-core,prod,active,true,A1010,Orchid Foods,smb,NA,CA,U3104,leo.alvarez@orchidfoods.example,Leo Alvarez,Demand Gen Manager,marketing,active,true,editor,2025-02-26 04:10:21,2025-02-26 04:52:21,active,true +M4126,W2023,orchid-core,prod,active,true,A1010,Orchid Foods,smb,NA,CA,U3105,lina.ward@orchidfoods.example,Lina Ward,VP Data,executive,active,true,admin,2025-02-27 00:43:21,2025-02-27 00:56:21,active,true +M4127,W2023,orchid-core,prod,active,true,A1010,Orchid Foods,smb,NA,CA,U3106,ava.hill@orchidfoods.example,Ava Hill,Technical Program Manager,product,active,true,editor,2025-02-24 00:40:21,2025-02-24 01:16:21,active,true +M4128,W2023,orchid-core,prod,active,true,A1010,Orchid Foods,smb,NA,CA,U3107,lena.patel@orchidfoods.example,Lena Patel,Finance Manager,finance,inactive,false,viewer,2025-02-27 03:38:21,2025-02-27 06:09:21,removed,false +M4129,W2023,orchid-core,prod,active,true,A1010,Orchid Foods,smb,NA,CA,U3108,claire.shah@orchidfoods.example,Claire Shah,Demand Gen Manager,marketing,active,true,editor,2025-02-25 01:38:21,2025-02-25 03:19:21,active,true +M4130,W2023,orchid-core,prod,active,true,A1010,Orchid Foods,smb,NA,CA,U3109,tara.silva@orchidfoods.example,Tara Silva,Analytics Manager,analytics,active,true,viewer,2025-03-24 03:26:21,2025-03-24 04:10:21,active,true +M4131,W2024,vertex-core,prod,active,true,A1011,Vertex Energy,smb,NA,CA,U3110,aisha.lewis@vertexenergy.example,Aisha Lewis,Product Manager,product,active,true,owner,2025-02-17 07:30:33,2025-02-17 08:28:33,active,true +M4132,W2024,vertex-core,prod,active,true,A1011,Vertex Energy,smb,NA,CA,U3111,tomas.brooks@vertexenergy.example,Tomas Brooks,Analytics Engineer,data,active,true,viewer,2025-01-22 12:09:33,2025-01-22 12:59:33,active,true +M4133,W2024,vertex-core,prod,active,true,A1011,Vertex Energy,smb,NA,CA,U3112,maya.reed@vertexenergy.example,Maya Reed,Technical Program Manager,product,active,true,viewer,2025-01-17 15:37:33,2025-01-17 18:30:33,active,true +M4134,W2024,vertex-core,prod,active,true,A1011,Vertex Energy,smb,NA,CA,U3113,maya.nash@vertexenergy.example,Maya Nash,Revenue Operations Manager,sales,active,true,viewer,2025-01-15 16:05:33,2025-01-15 17:50:33,active,true +M4135,W2024,vertex-core,prod,active,true,A1011,Vertex Energy,smb,NA,CA,U3114,claire.romero@vertexenergy.example,Claire Romero,Revenue Operations Manager,sales,active,true,editor,2025-01-20 09:15:33,2025-01-20 10:49:33,active,true +M4136,W2024,vertex-core,prod,active,true,A1011,Vertex Energy,smb,NA,CA,U3115,mei.saeed@vertexenergy.example,Mei Saeed,Analytics Manager,analytics,active,true,editor,2025-01-31 14:08:33,2025-01-31 15:25:33,active,true +M4137,W2025,cedar-core,prod,active,true,A1012,Cedar Ventures,smb,APAC,JP,U3116,lena.alvarez@cedarventures.example,Lena Alvarez,Demand Gen Manager,marketing,active,true,owner,2024-10-01 07:31:23,2024-10-01 08:25:23,active,true +M4138,W2026,cedar-ops,sandbox,active,false,A1012,Cedar Ventures,smb,APAC,JP,U3117,priya.petrova@cedarventures.example,Priya Petrova,Sales Analyst,sales,active,true,admin,2024-09-12 13:26:23,2024-09-12 15:59:23,active,true +M4139,W2025,cedar-core,prod,active,true,A1012,Cedar Ventures,smb,APAC,JP,U3118,maya.rahman@cedarventures.example,Maya Rahman,Operations Manager,operations,active,true,viewer,2024-09-15 11:09:23,2024-09-15 14:01:23,active,true +M4140,W2025,cedar-core,prod,active,true,A1012,Cedar Ventures,smb,APAC,JP,U3119,mateo.desai@cedarventures.example,Mateo Desai,Marketing Operations Lead,marketing,active,true,editor,2024-10-02 13:06:23,2024-10-02 14:25:23,active,true +M4141,W2025,cedar-core,prod,active,true,A1012,Cedar Ventures,smb,APAC,JP,U3120,evan.nash@cedarventures.example,Evan Nash,Data Engineer,data,inactive,false,editor,2024-09-08 06:42:23,2024-09-08 09:33:23,removed,false +M4142,W2025,cedar-core,prod,active,true,A1012,Cedar Ventures,smb,APAC,JP,U3121,noah.keller@cedarventures.example,Noah Keller,BI Analyst,analytics,active,true,viewer,2024-09-24 09:49:23,2024-09-24 11:30:23,active,true +M4143,W2026,cedar-ops,sandbox,active,false,A1012,Cedar Ventures,smb,APAC,JP,U3122,isla.silva@cedarventures.example,Isla Silva,Revenue Operations Manager,sales,active,true,viewer,2024-10-02 07:55:23,2024-10-02 09:31:23,active,true +M4144,W2025,cedar-core,prod,active,true,A1012,Cedar Ventures,smb,APAC,JP,U3122,isla.silva@cedarventures.example,Isla Silva,Revenue Operations Manager,sales,active,true,viewer,2024-10-02 07:07:23,2024-10-02 07:57:23,active,true +M4145,W2027,river-core,prod,active,true,A1013,River Foods,mid_market,NA,US,U3123,marcus.ng@riverfoods.example,Marcus Ng,Marketing Operations Lead,marketing,inactive,false,owner,2025-01-17 10:39:58,2025-01-17 12:55:58,removed,false +M4146,W2029,river-finance,prod,active,false,A1013,River Foods,mid_market,NA,US,U3124,evan.park@riverfoods.example,Evan Park,Product Manager,product,inactive,false,editor,2025-01-18 12:23:58,2025-01-18 12:36:58,removed,false +M4147,W2028,river-ops,prod,active,false,A1013,River Foods,mid_market,NA,US,U3124,evan.park@riverfoods.example,Evan Park,Product Manager,product,inactive,false,viewer,2025-01-18 12:04:58,2025-01-18 14:14:58,removed,false +M4148,W2029,river-finance,prod,active,false,A1013,River Foods,mid_market,NA,US,U3125,helena.kim@riverfoods.example,Helena Kim,Workflow Analyst,operations,active,true,viewer,2025-01-14 06:13:58,2025-01-14 09:09:58,active,true +M4149,W2029,river-finance,prod,active,false,A1013,River Foods,mid_market,NA,US,U3126,evan.shah@riverfoods.example,Evan Shah,Revenue Operations Manager,sales,active,true,admin,2025-01-20 08:10:58,2025-01-20 11:01:58,active,true +M4150,W2028,river-ops,prod,active,false,A1013,River Foods,mid_market,NA,US,U3127,maya.singh@riverfoods.example,Maya Singh,Technical Program Manager,product,active,true,editor,2025-01-13 05:07:58,2025-01-13 05:14:58,active,true +M4151,W2027,river-core,prod,active,true,A1013,River Foods,mid_market,NA,US,U3128,ivy.park@riverfoods.example,Ivy Park,Revenue Operations Manager,sales,active,true,admin,2024-12-28 05:52:58,2024-12-28 08:27:58,active,true +M4152,W2028,river-ops,prod,active,false,A1013,River Foods,mid_market,NA,US,U3128,ivy.park@riverfoods.example,Ivy Park,Revenue Operations Manager,sales,active,true,editor,2024-12-28 04:41:58,2024-12-28 07:12:58,active,true +M4153,W2028,river-ops,prod,active,false,A1013,River Foods,mid_market,NA,US,U3129,ben.khan@riverfoods.example,Ben Khan,Revenue Operations Manager,sales,active,true,viewer,2025-01-14 10:05:58,2025-01-14 12:13:58,active,true +M4154,W2027,river-core,prod,active,true,A1013,River Foods,mid_market,NA,US,U3129,ben.khan@riverfoods.example,Ben Khan,Revenue Operations Manager,sales,active,true,editor,2025-01-14 09:32:58,2025-01-14 11:28:58,active,true +M4155,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3130,lena.saeed@evergreenglobal.example,Lena Saeed,Controller,finance,active,true,owner,2024-10-15 20:14:43,2024-10-15 20:51:43,removed,false +M4156,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3131,evan.rossi@evergreenglobal.example,Evan Rossi,Finance Manager,finance,inactive,false,viewer,2024-10-01 23:37:43,2024-10-02 01:59:43,removed,false +M4157,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3132,tomas.fischer@evergreenglobal.example,Tomas Fischer,BI Analyst,analytics,inactive,false,editor,2024-11-01 00:43:43,2024-11-01 03:05:43,active,true +M4158,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3133,naomi.singh@evergreenglobal.example,Naomi Singh,Analytics Engineer,data,inactive,false,admin,2024-10-12 23:40:43,2024-10-13 02:14:43,removed,false +M4159,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3134,ivy.lewis@evergreenglobal.example,Ivy Lewis,Analytics Manager,analytics,inactive,false,viewer,2024-10-29 22:01:43,2024-10-30 00:54:43,active,true +M4160,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3135,alma.meyer@evergreenglobal.example,Alma Meyer,Product Manager,product,inactive,false,viewer,2024-10-11 23:59:43,2024-10-12 00:50:43,removed,false +M4161,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3136,olivia.tan@evergreenglobal.example,Olivia Tan,Controller,finance,inactive,false,viewer,2024-10-26 19:12:43,2024-10-26 19:27:43,removed,false +M4162,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3137,daniel.park@evergreenglobal.example,Daniel Park,Insights Lead,analytics,inactive,false,viewer,2024-09-26 01:16:43,2024-09-26 03:44:43,removed,false +M4163,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3138,victor.lopez@evergreenglobal.example,Victor Lopez,Controller,finance,active,true,admin,2024-10-19 01:12:43,2024-10-19 03:26:43,removed,false +M4164,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3139,leo.morgan@evergreenglobal.example,Leo Morgan,Revenue Operations Manager,sales,inactive,false,editor,2024-10-15 02:03:43,2024-10-15 02:08:43,removed,false +M4165,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3140,victor.cole@evergreenglobal.example,Victor Cole,Controller,finance,inactive,false,viewer,2024-10-30 18:21:43,2024-10-30 19:41:43,removed,false +M4166,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3141,noah.silva@evergreenglobal.example,Noah Silva,Revenue Operations Manager,sales,inactive,false,admin,2024-09-21 19:25:43,2024-09-21 20:50:43,removed,false +M4167,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3142,arjun.patel@evergreenglobal.example,Arjun Patel,Technical Program Manager,product,inactive,false,viewer,2024-10-17 01:22:43,2024-10-17 02:20:43,removed,false +M4168,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3143,peter.cole@evergreenglobal.example,Peter Cole,Analytics Engineer,data,inactive,false,editor,2024-09-27 23:03:43,2024-09-27 23:44:43,removed,false +M4169,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3144,peter.cole2@evergreenglobal.example,Peter Cole,Analytics Manager,analytics,inactive,false,viewer,2024-10-20 21:10:43,2024-10-20 23:36:43,removed,false +M4170,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3145,owen.park@evergreenglobal.example,Owen Park,Founder,executive,inactive,false,editor,2024-10-10 17:54:43,2024-10-10 20:38:43,removed,false +M4171,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3146,samir.hill@evergreenglobal.example,Samir Hill,Controller,finance,active,true,editor,2024-10-07 02:04:43,2024-10-07 02:50:43,removed,false +M4172,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3147,samir.ng@evergreenglobal.example,Samir Ng,Product Manager,product,active,true,viewer,2024-10-16 20:01:43,2024-10-16 21:54:43,active,true +M4173,W2031,delta-core,prod,archived,true,A1015,Delta Network,smb,NA,US,U3148,luis.tan@deltanetwork.example,Luis Tan,Technical Program Manager,product,inactive,false,owner,2024-09-28 16:14:41,2024-09-28 18:36:41,removed,false +M4174,W2032,delta-ops,sandbox,archived,false,A1015,Delta Network,smb,NA,US,U3149,tomas.hill@deltanetwork.example,Tomas Hill,FP&A Analyst,finance,inactive,false,viewer,2024-09-24 19:08:41,2024-09-24 20:48:41,removed,false +M4175,W2031,delta-core,prod,archived,true,A1015,Delta Network,smb,NA,US,U3150,tara.saeed@deltanetwork.example,Tara Saeed,CFO,executive,inactive,false,editor,2024-10-13 21:44:41,2024-10-13 21:55:41,active,true +M4176,W2032,delta-ops,sandbox,archived,false,A1015,Delta Network,smb,NA,US,U3150,tara.saeed@deltanetwork.example,Tara Saeed,CFO,executive,inactive,false,viewer,2024-10-13 22:01:41,2024-10-13 22:25:41,removed,false +M4177,W2033,bluepeak-core,prod,active,true,A1016,BluePeak Capital,enterprise,EMEA,DE,U3151,mila.sato@bluepeakcapital.example,Mila Sato,Insights Lead,analytics,active,true,owner,2025-01-30 04:38:46,2025-01-30 07:03:46,active,true +M4178,W2036,bluepeak-marketing,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3152,olivia.alvarez@bluepeakcapital.example,Olivia Alvarez,BI Analyst,analytics,active,true,admin,2025-01-04 09:19:46,2025-01-04 10:49:46,active,true +M4179,W2035,bluepeak-finance,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3153,lina.price@bluepeakcapital.example,Lina Price,Controller,finance,active,true,admin,2025-01-17 10:30:46,2025-01-17 10:37:46,active,true +M4180,W2033,bluepeak-core,prod,active,true,A1016,BluePeak Capital,enterprise,EMEA,DE,U3154,isla.sato@bluepeakcapital.example,Isla Sato,FP&A Analyst,finance,active,true,editor,2025-01-11 06:17:46,2025-01-11 06:48:46,active,true +M4181,W2033,bluepeak-core,prod,active,true,A1016,BluePeak Capital,enterprise,EMEA,DE,U3155,owen.brooks@bluepeakcapital.example,Owen Brooks,Founder,executive,active,true,admin,2025-01-24 06:26:46,2025-01-24 09:01:46,active,true +M4182,W2036,bluepeak-marketing,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3156,arjun.hart@bluepeakcapital.example,Arjun Hart,Technical Program Manager,product,active,true,admin,2025-02-05 10:52:46,2025-02-05 12:09:46,active,true +M4183,W2035,bluepeak-finance,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3157,owen.rossi@bluepeakcapital.example,Owen Rossi,Finance Manager,finance,active,true,viewer,2025-01-29 04:44:46,2025-01-29 06:10:46,active,true +M4184,W2036,bluepeak-marketing,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3158,claire.desai@bluepeakcapital.example,Claire Desai,BI Analyst,analytics,active,true,editor,2025-01-27 07:39:46,2025-01-27 10:00:46,active,true +M4185,W2036,bluepeak-marketing,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3159,lena.rossi@bluepeakcapital.example,Lena Rossi,Workflow Analyst,operations,active,true,editor,2024-12-31 07:38:46,2024-12-31 09:54:46,active,true +M4186,W2033,bluepeak-core,prod,active,true,A1016,BluePeak Capital,enterprise,EMEA,DE,U3159,lena.rossi@bluepeakcapital.example,Lena Rossi,Workflow Analyst,operations,active,true,viewer,2024-12-31 07:34:46,2024-12-31 08:18:46,active,true +M4187,W2034,bluepeak-ops,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3160,derek.nash@bluepeakcapital.example,Derek Nash,Data Platform Manager,data,active,true,editor,2025-01-21 12:59:46,2025-01-21 15:47:46,active,true +M4188,W2035,bluepeak-finance,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3161,marcus.alvarez@bluepeakcapital.example,Marcus Alvarez,BI Analyst,analytics,active,true,viewer,2025-01-21 07:48:46,2025-01-21 09:40:46,active,true +M4189,W2036,bluepeak-marketing,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3162,elena.park@bluepeakcapital.example,Elena Park,Operations Director,operations,active,true,editor,2025-01-06 08:23:46,2025-01-06 10:27:46,active,true +M4190,W2035,bluepeak-finance,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3163,ivy.rahman@bluepeakcapital.example,Ivy Rahman,Finance Manager,finance,active,true,editor,2025-01-06 03:34:46,2025-01-06 04:37:46,active,true +M4191,W2035,bluepeak-finance,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3164,evan.nash@bluepeakcapital.example,Evan Nash,FP&A Analyst,finance,active,true,viewer,2025-02-07 08:13:46,2025-02-07 09:38:46,active,true +M4192,W2034,bluepeak-ops,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3164,evan.nash@bluepeakcapital.example,Evan Nash,FP&A Analyst,finance,active,true,viewer,2025-02-07 07:17:46,2025-02-07 07:45:46,active,true +M4193,W2033,bluepeak-core,prod,active,true,A1016,BluePeak Capital,enterprise,EMEA,DE,U3165,sofia.hill@bluepeakcapital.example,Sofia Hill,FP&A Analyst,finance,active,true,viewer,2024-12-27 08:44:46,2024-12-27 11:16:46,active,true +M4194,W2033,bluepeak-core,prod,active,true,A1016,BluePeak Capital,enterprise,EMEA,DE,U3166,naomi.alvarez@bluepeakcapital.example,Naomi Alvarez,Controller,finance,active,true,admin,2025-01-13 06:07:46,2025-01-13 08:18:46,active,true +M4195,W2033,bluepeak-core,prod,active,true,A1016,BluePeak Capital,enterprise,EMEA,DE,U3167,noah.rossi@bluepeakcapital.example,Noah Rossi,Controller,finance,active,true,viewer,2025-02-02 08:00:46,2025-02-02 08:39:46,active,true +M4196,W2036,bluepeak-marketing,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3168,owen.keller@bluepeakcapital.example,Owen Keller,Operations Manager,operations,active,true,editor,2025-01-25 07:39:46,2025-01-25 10:00:46,active,true +M4197,W2033,bluepeak-core,prod,active,true,A1016,BluePeak Capital,enterprise,EMEA,DE,U3169,ava.rossi@bluepeakcapital.example,Ava Rossi,Founder,executive,active,true,editor,2024-12-29 10:09:46,2024-12-29 10:15:46,active,true +M4198,W2037,summit-core,prod,active,true,A1017,Summit Analytics,mid_market,EMEA,UK,U3170,tomas.nash@summitanalytics.example,Tomas Nash,Revenue Operations Manager,sales,active,true,owner,2024-12-25 11:41:21,2024-12-25 13:34:21,active,true +M4199,W2038,summit-ops,prod,active,false,A1017,Summit Analytics,mid_market,EMEA,UK,U3171,claire.silva@summitanalytics.example,Claire Silva,Controller,finance,inactive,false,editor,2024-12-29 13:15:21,2024-12-29 15:35:21,removed,false +M4200,W2037,summit-core,prod,active,true,A1017,Summit Analytics,mid_market,EMEA,UK,U3172,marcus.ward@summitanalytics.example,Marcus Ward,Data Engineer,data,active,true,viewer,2024-12-08 15:46:21,2024-12-08 18:05:21,active,true +M4201,W2037,summit-core,prod,active,true,A1017,Summit Analytics,mid_market,EMEA,UK,U3173,mei.lewis@summitanalytics.example,Mei Lewis,BI Analyst,analytics,active,true,admin,2024-12-15 10:55:21,2024-12-15 13:11:21,active,true +M4202,W2038,summit-ops,prod,active,false,A1017,Summit Analytics,mid_market,EMEA,UK,U3174,elena.fischer@summitanalytics.example,Elena Fischer,Finance Manager,finance,active,true,viewer,2024-12-23 13:24:21,2024-12-23 14:12:21,active,true +M4203,W2038,summit-ops,prod,active,false,A1017,Summit Analytics,mid_market,EMEA,UK,U3175,zoe.ng@summitanalytics.example,Zoe Ng,Workflow Analyst,operations,active,true,viewer,2024-12-04 08:46:21,2024-12-04 09:54:21,active,true +M4204,W2037,summit-core,prod,active,true,A1017,Summit Analytics,mid_market,EMEA,UK,U3176,naomi.patel@summitanalytics.example,Naomi Patel,Product Manager,product,active,true,editor,2024-11-28 14:39:21,2024-11-28 15:38:21,active,true +M4205,W2037,summit-core,prod,active,true,A1017,Summit Analytics,mid_market,EMEA,UK,U3177,naomi.turner@summitanalytics.example,Naomi Turner,Operations Director,operations,active,true,viewer,2024-12-22 10:45:21,2024-12-22 12:08:21,active,true +M4206,W2037,summit-core,prod,active,true,A1017,Summit Analytics,mid_market,EMEA,UK,U3178,marcus.khan@summitanalytics.example,Marcus Khan,VP Data,executive,active,true,viewer,2024-12-06 14:24:21,2024-12-06 16:33:21,active,true +M4207,W2039,harbor-core,prod,archived,true,A1018,Harbor Manufacturing,smb,EMEA,UK,U3179,tomas.saeed@harbormanufacturing.example,Tomas Saeed,Data Platform Manager,data,inactive,false,owner,2024-10-29 22:01:22,2024-10-29 23:37:22,removed,false +M4208,W2040,harbor-ops,prod,archived,false,A1018,Harbor Manufacturing,smb,EMEA,UK,U3180,peter.price@harbormanufacturing.example,Peter Price,Product Manager,product,active,true,editor,2024-09-23 21:08:22,2024-09-23 22:42:22,active,true +M4209,W2039,harbor-core,prod,archived,true,A1018,Harbor Manufacturing,smb,EMEA,UK,U3181,helena.kim@harbormanufacturing.example,Helena Kim,CFO,executive,active,true,editor,2024-10-08 21:06:22,2024-10-08 22:01:22,removed,false +M4210,W2040,harbor-ops,prod,archived,false,A1018,Harbor Manufacturing,smb,EMEA,UK,U3181,helena.kim@harbormanufacturing.example,Helena Kim,CFO,executive,active,true,editor,2024-10-08 21:03:22,2024-10-08 21:47:22,removed,false +M4211,W2041,sierra-core,prod,active,true,A1019,Sierra Systems,smb,APAC,JP,U3182,victor.meyer@sierrasystems.example,Victor Meyer,Data Platform Manager,data,active,true,owner,2025-03-17 13:34:13,2025-03-17 14:18:13,active,true +M4212,W2042,sierra-ops,sandbox,active,false,A1019,Sierra Systems,smb,APAC,JP,U3183,mei.morgan@sierrasystems.example,Mei Morgan,Insights Lead,analytics,active,true,editor,2025-03-01 12:56:13,2025-03-01 14:34:13,active,true +M4213,W2042,sierra-ops,sandbox,active,false,A1019,Sierra Systems,smb,APAC,JP,U3184,victor.rossi@sierrasystems.example,Victor Rossi,Workflow Analyst,operations,inactive,false,viewer,2025-02-26 15:00:13,2025-02-26 15:32:13,active,true +M4214,W2042,sierra-ops,sandbox,active,false,A1019,Sierra Systems,smb,APAC,JP,U3185,lena.price@sierrasystems.example,Lena Price,COO,executive,active,true,admin,2025-03-28 10:39:13,2025-03-28 10:45:13,active,true +M4215,W2043,pioneer-core,prod,active,true,A1020,Pioneer Network,smb,EMEA,FR,U3186,nina.reed@pioneernetwork.example,Nina Reed,Data Engineer,data,active,true,owner,2025-03-15 07:22:23,2025-03-15 08:17:23,active,true +M4216,W2043,pioneer-core,prod,active,true,A1020,Pioneer Network,smb,EMEA,FR,U3187,sofia.price@pioneernetwork.example,Sofia Price,Sales Analyst,sales,active,true,editor,2025-02-23 08:02:23,2025-02-23 08:41:23,active,true +M4217,W2043,pioneer-core,prod,active,true,A1020,Pioneer Network,smb,EMEA,FR,U3188,evan.petrova@pioneernetwork.example,Evan Petrova,BI Analyst,analytics,inactive,false,editor,2025-03-22 02:25:23,2025-03-22 02:38:23,removed,false +M4218,W2043,pioneer-core,prod,active,true,A1020,Pioneer Network,smb,EMEA,FR,U3189,noah.keller@pioneernetwork.example,Noah Keller,Insights Lead,analytics,active,true,viewer,2025-03-17 01:42:23,2025-03-17 02:55:23,active,true +M4219,W2044,apex-core,prod,active,true,A1021,Apex Logistics,smb,NA,US,U3190,olivia.ward@apexlogistics.example,Olivia Ward,Analytics Engineer,data,active,true,owner,2024-12-06 14:17:29,2024-12-06 16:09:29,active,true +M4220,W2044,apex-core,prod,active,true,A1021,Apex Logistics,smb,NA,US,U3191,naomi.chen@apexlogistics.example,Naomi Chen,FP&A Analyst,finance,active,true,editor,2024-11-16 18:50:29,2024-11-16 21:49:29,active,true +M4221,W2044,apex-core,prod,active,true,A1021,Apex Logistics,smb,NA,US,U3192,nina.rahman@apexlogistics.example,Nina Rahman,COO,executive,active,true,editor,2024-11-11 11:55:29,2024-11-11 13:42:29,active,true +M4222,W2044,apex-core,prod,active,true,A1021,Apex Logistics,smb,NA,US,U3193,samir.ng@apexlogistics.example,Samir Ng,Insights Lead,analytics,active,true,admin,2024-10-29 16:19:29,2024-10-29 16:29:29,active,true +M4223,W2044,apex-core,prod,active,true,A1021,Apex Logistics,smb,NA,US,U3194,tomas.rossi@apexlogistics.example,Tomas Rossi,Technical Program Manager,product,active,true,admin,2024-10-28 18:28:29,2024-10-28 18:36:29,active,true +M4224,W2044,apex-core,prod,active,true,A1021,Apex Logistics,smb,NA,US,U3195,derek.rahman@apexlogistics.example,Derek Rahman,BI Analyst,analytics,active,true,admin,2024-11-30 11:46:29,2024-11-30 13:18:29,active,true +M4225,W2044,apex-core,prod,active,true,A1021,Apex Logistics,smb,NA,US,U3196,maya.desai@apexlogistics.example,Maya Desai,Data Engineer,data,active,true,viewer,2024-10-27 17:58:29,2024-10-27 18:05:29,active,true +M4226,W2045,summit-core,prod,active,true,A1022,Summit Collective,smb,APAC,NZ,U3197,priya.price@summitcollective.example,Priya Price,Demand Gen Manager,marketing,inactive,false,owner,2025-03-03 21:19:56,2025-03-03 23:26:56,removed,false +M4227,W2046,summit-ops,sandbox,active,false,A1022,Summit Collective,smb,APAC,NZ,U3198,tomas.fischer@summitcollective.example,Tomas Fischer,Workflow Analyst,operations,active,true,admin,2025-03-31 14:55:56,2025-03-31 15:39:56,active,true +M4228,W2045,summit-core,prod,active,true,A1022,Summit Collective,smb,APAC,NZ,U3199,mateo.desai@summitcollective.example,Mateo Desai,Revenue Operations Manager,sales,active,true,editor,2025-03-17 18:24:56,2025-03-17 19:36:56,active,true +M4229,W2045,summit-core,prod,active,true,A1022,Summit Collective,smb,APAC,NZ,U3200,alma.petrova@summitcollective.example,Alma Petrova,Product Manager,product,active,true,viewer,2025-03-11 18:14:56,2025-03-11 18:45:56,active,true +M4230,W2045,summit-core,prod,active,true,A1022,Summit Collective,smb,APAC,NZ,U3201,jonas.alvarez@summitcollective.example,Jonas Alvarez,Technical Program Manager,product,inactive,false,editor,2025-03-25 21:54:56,2025-03-26 00:41:56,removed,false +M4231,W2047,atlas-core,prod,active,true,A1023,Atlas Systems,smb,NA,CA,U3202,victor.shah@atlassystems.example,Victor Shah,Analytics Engineer,data,active,true,owner,2025-02-01 19:08:38,2025-02-01 19:46:38,active,true +M4232,W2047,atlas-core,prod,active,true,A1023,Atlas Systems,smb,NA,CA,U3203,maya.silva@atlassystems.example,Maya Silva,Data Platform Manager,data,active,true,admin,2025-02-24 19:59:38,2025-02-24 20:41:38,active,true +M4233,W2047,atlas-core,prod,active,true,A1023,Atlas Systems,smb,NA,CA,U3204,victor.price@atlassystems.example,Victor Price,Product Manager,product,active,true,admin,2025-02-09 19:58:38,2025-02-09 20:26:38,active,true +M4234,W2047,atlas-core,prod,active,true,A1023,Atlas Systems,smb,NA,CA,U3205,mateo.price@atlassystems.example,Mateo Price,CFO,executive,active,true,editor,2025-02-05 16:16:38,2025-02-05 17:39:38,active,true +M4235,W2047,atlas-core,prod,active,true,A1023,Atlas Systems,smb,NA,CA,U3206,noah.keller@atlassystems.example,Noah Keller,Analytics Engineer,data,active,true,editor,2025-03-14 17:29:38,2025-03-14 19:36:38,active,true +M4236,W2047,atlas-core,prod,active,true,A1023,Atlas Systems,smb,NA,CA,U3207,alma.morgan@atlassystems.example,Alma Morgan,VP Data,executive,active,true,editor,2025-02-28 19:01:38,2025-02-28 19:19:38,active,true +M4237,W2047,atlas-core,prod,active,true,A1023,Atlas Systems,smb,NA,CA,U3208,naomi.hill@atlassystems.example,Naomi Hill,Finance Manager,finance,active,true,admin,2025-02-10 22:37:38,2025-02-10 23:53:38,active,true +M4238,W2047,atlas-core,prod,active,true,A1023,Atlas Systems,smb,NA,CA,U3209,olivia.nash@atlassystems.example,Olivia Nash,COO,executive,active,true,viewer,2025-02-28 19:52:38,2025-02-28 21:18:38,active,true +M4239,W2048,sierra-core,prod,active,true,A1024,Sierra Group,smb,NA,CA,U3210,aisha.singh@sierragroup.example,Aisha Singh,Data Engineer,data,active,true,owner,2025-02-18 09:03:07,2025-02-18 09:20:07,active,true +M4240,W2048,sierra-core,prod,active,true,A1024,Sierra Group,smb,NA,CA,U3211,marta.morgan@sierragroup.example,Marta Morgan,Data Platform Manager,data,active,true,admin,2025-02-17 12:30:07,2025-02-17 13:48:07,active,true +M4241,W2049,sierra-ops,prod,active,false,A1024,Sierra Group,smb,NA,CA,U3211,marta.morgan@sierragroup.example,Marta Morgan,Data Platform Manager,data,active,true,viewer,2025-02-17 11:57:07,2025-02-17 13:13:07,active,true +M4242,W2049,sierra-ops,prod,active,false,A1024,Sierra Group,smb,NA,CA,U3212,luis.morgan@sierragroup.example,Luis Morgan,Product Manager,product,active,true,editor,2025-02-04 15:11:07,2025-02-04 16:41:07,active,true +M4243,W2049,sierra-ops,prod,active,false,A1024,Sierra Group,smb,NA,CA,U3213,naomi.grant@sierragroup.example,Naomi Grant,Data Engineer,data,active,true,admin,2025-02-12 09:30:07,2025-02-12 11:56:07,active,true +M4244,W2050,bright-core,prod,active,true,A1025,Bright Capital,smb,EMEA,UK,U3214,elena.lopez@brightcapital.example,Elena Lopez,Operations Director,operations,inactive,false,owner,2024-10-18 11:04:56,2024-10-18 11:42:56,removed,false +M4245,W2050,bright-core,prod,active,true,A1025,Bright Capital,smb,EMEA,UK,U3215,elena.silva@brightcapital.example,Elena Silva,Operations Director,operations,active,true,viewer,2024-11-12 08:27:56,2024-11-12 10:47:56,active,true +M4246,W2050,bright-core,prod,active,true,A1025,Bright Capital,smb,EMEA,UK,U3216,ivy.morgan@brightcapital.example,Ivy Morgan,Product Manager,product,active,true,editor,2024-11-07 15:07:56,2024-11-07 16:05:56,active,true +M4247,W2050,bright-core,prod,active,true,A1025,Bright Capital,smb,EMEA,UK,U3217,kenji.dubois@brightcapital.example,Kenji Dubois,Analytics Manager,analytics,active,true,admin,2024-10-23 09:29:56,2024-10-23 10:07:56,active,true +M4248,W2050,bright-core,prod,active,true,A1025,Bright Capital,smb,EMEA,UK,U3218,victor.meyer@brightcapital.example,Victor Meyer,Technical Program Manager,product,active,true,admin,2024-11-18 14:46:56,2024-11-18 17:38:56,active,true +M4249,W2050,bright-core,prod,active,true,A1025,Bright Capital,smb,EMEA,UK,U3219,lina.lewis@brightcapital.example,Lina Lewis,Revenue Operations Manager,sales,active,true,editor,2024-11-24 16:45:56,2024-11-24 17:15:56,active,true +M4250,W2051,pioneer-core,prod,active,true,A1026,Pioneer Capital,smb,NA,CA,U3220,luis.kim@pioneercapital.example,Luis Kim,CFO,executive,active,true,owner,2024-10-03 13:27:17,2024-10-03 15:51:17,active,true +M4251,W2051,pioneer-core,prod,active,true,A1026,Pioneer Capital,smb,NA,CA,U3221,sofia.khan@pioneercapital.example,Sofia Khan,Sales Analyst,sales,active,true,editor,2024-09-10 05:36:17,2024-09-10 06:32:17,active,true +M4252,W2051,pioneer-core,prod,active,true,A1026,Pioneer Capital,smb,NA,CA,U3222,luis.dubois@pioneercapital.example,Luis Dubois,Analytics Engineer,data,active,true,admin,2024-10-02 11:12:17,2024-10-02 13:04:17,active,true +M4253,W2051,pioneer-core,prod,active,true,A1026,Pioneer Capital,smb,NA,CA,U3223,aisha.hill@pioneercapital.example,Aisha Hill,Marketing Operations Lead,marketing,active,true,viewer,2024-09-16 12:59:17,2024-09-16 15:27:17,active,true +M4254,W2051,pioneer-core,prod,active,true,A1026,Pioneer Capital,smb,NA,CA,U3224,hannah.patel@pioneercapital.example,Hannah Patel,Sales Analyst,sales,active,true,viewer,2024-09-10 07:39:17,2024-09-10 10:25:17,active,true +M4255,W2051,pioneer-core,prod,active,true,A1026,Pioneer Capital,smb,NA,CA,U3225,marta.romero@pioneercapital.example,Marta Romero,COO,executive,active,true,viewer,2024-10-05 09:28:17,2024-10-05 11:36:17,active,true +M4256,W2051,pioneer-core,prod,active,true,A1026,Pioneer Capital,smb,NA,CA,U3226,tara.nash@pioneercapital.example,Tara Nash,BI Analyst,analytics,active,true,editor,2024-09-30 05:32:17,2024-09-30 05:42:17,active,true +M4257,W2051,pioneer-core,prod,active,true,A1026,Pioneer Capital,smb,NA,CA,U3227,ben.patel@pioneercapital.example,Ben Patel,Data Platform Manager,data,active,true,editor,2024-09-29 05:07:17,2024-09-29 05:45:17,active,true +M4258,W2052,bluepeak-core,prod,active,true,A1027,BluePeak Health,smb,APAC,SG,U3228,naomi.silva@bluepeakhealth.example,Naomi Silva,FP&A Analyst,finance,active,true,owner,2024-11-03 18:33:59,2024-11-03 18:49:59,active,true +M4259,W2052,bluepeak-core,prod,active,true,A1027,BluePeak Health,smb,APAC,SG,U3229,peter.grant@bluepeakhealth.example,Peter Grant,Founder,executive,active,true,viewer,2024-11-23 23:36:59,2024-11-24 01:22:59,active,true +M4260,W2053,bluepeak-ops,prod,active,false,A1027,BluePeak Health,smb,APAC,SG,U3230,jonas.khan@bluepeakhealth.example,Jonas Khan,Finance Manager,finance,active,true,viewer,2024-11-28 02:01:59,2024-11-28 02:48:59,active,true +M4261,W2053,bluepeak-ops,prod,active,false,A1027,BluePeak Health,smb,APAC,SG,U3231,arjun.cole@bluepeakhealth.example,Arjun Cole,Marketing Operations Lead,marketing,active,true,viewer,2024-11-24 21:31:59,2024-11-24 23:15:59,active,true +M4262,W2053,bluepeak-ops,prod,active,false,A1027,BluePeak Health,smb,APAC,SG,U3232,naomi.sato@bluepeakhealth.example,Naomi Sato,Data Platform Manager,data,active,true,viewer,2024-12-07 00:50:59,2024-12-07 03:21:59,active,true +M4263,W2052,bluepeak-core,prod,active,true,A1027,BluePeak Health,smb,APAC,SG,U3232,naomi.sato@bluepeakhealth.example,Naomi Sato,Data Platform Manager,data,active,true,viewer,2024-12-07 00:43:59,2024-12-07 03:19:59,active,true +M4264,W2054,apex-core,prod,active,true,A1028,Apex Energy,mid_market,APAC,SG,U3233,priya.sato@apexenergy.example,Priya Sato,COO,executive,inactive,false,owner,2025-02-04 03:23:07,2025-02-04 05:39:07,removed,false +M4265,W2055,apex-ops,sandbox,active,false,A1028,Apex Energy,mid_market,APAC,SG,U3234,tomas.alvarez@apexenergy.example,Tomas Alvarez,VP Data,executive,active,true,editor,2025-01-05 03:45:07,2025-01-05 04:58:07,active,true +M4266,W2054,apex-core,prod,active,true,A1028,Apex Energy,mid_market,APAC,SG,U3235,samir.park@apexenergy.example,Samir Park,Analytics Engineer,data,active,true,admin,2025-01-08 06:38:07,2025-01-08 06:53:07,active,true +M4267,W2055,apex-ops,sandbox,active,false,A1028,Apex Energy,mid_market,APAC,SG,U3235,samir.park@apexenergy.example,Samir Park,Analytics Engineer,data,active,true,editor,2025-01-08 05:54:07,2025-01-08 06:36:07,active,true +M4268,W2054,apex-core,prod,active,true,A1028,Apex Energy,mid_market,APAC,SG,U3236,nina.hill@apexenergy.example,Nina Hill,Data Engineer,data,active,true,editor,2025-01-19 09:53:07,2025-01-19 11:01:07,active,true +M4269,W2054,apex-core,prod,active,true,A1028,Apex Energy,mid_market,APAC,SG,U3237,kai.rossi@apexenergy.example,Kai Rossi,Sales Analyst,sales,active,true,editor,2025-01-29 08:55:07,2025-01-29 11:34:07,active,true +M4270,W2055,apex-ops,sandbox,active,false,A1028,Apex Energy,mid_market,APAC,SG,U3237,kai.rossi@apexenergy.example,Kai Rossi,Sales Analyst,sales,active,true,viewer,2025-01-29 09:28:07,2025-01-29 10:56:07,active,true +M4271,W2055,apex-ops,sandbox,active,false,A1028,Apex Energy,mid_market,APAC,SG,U3238,lena.patel@apexenergy.example,Lena Patel,FP&A Analyst,finance,active,true,viewer,2024-12-30 02:57:07,2024-12-30 04:17:07,active,true +M4272,W2055,apex-ops,sandbox,active,false,A1028,Apex Energy,mid_market,APAC,SG,U3239,nina.hill2@apexenergy.example,Nina Hill,Operations Manager,operations,active,true,viewer,2025-01-05 10:14:07,2025-01-05 11:50:07,active,true +M4273,W2054,apex-core,prod,active,true,A1028,Apex Energy,mid_market,APAC,SG,U3240,arjun.petrova@apexenergy.example,Arjun Petrova,CFO,executive,active,true,viewer,2025-02-09 03:43:07,2025-02-09 03:52:07,active,true +M4274,W2054,apex-core,prod,active,true,A1028,Apex Energy,mid_market,APAC,SG,U3241,aisha.ng@apexenergy.example,Aisha Ng,Finance Manager,finance,active,true,viewer,2025-01-01 07:52:07,2025-01-01 09:02:07,active,true +M4275,W2054,apex-core,prod,active,true,A1028,Apex Energy,mid_market,APAC,SG,U3242,kai.nash@apexenergy.example,Kai Nash,Insights Lead,analytics,active,true,viewer,2025-01-13 07:41:07,2025-01-13 08:38:07,active,true +M4276,W2055,apex-ops,sandbox,active,false,A1028,Apex Energy,mid_market,APAC,SG,U3243,noah.rossi@apexenergy.example,Noah Rossi,Finance Manager,finance,active,true,admin,2025-01-18 02:43:07,2025-01-18 04:39:07,active,true +M4277,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3244,marcus.romero@brightlabs.example,Marcus Romero,Marketing Operations Lead,marketing,inactive,false,owner,2024-10-10 04:35:19,2024-10-10 05:17:19,active,true +M4278,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3245,jonas.morgan@brightlabs.example,Jonas Morgan,Technical Program Manager,product,active,true,editor,2024-10-12 04:24:19,2024-10-12 05:16:19,active,true +M4279,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3246,lina.sato@brightlabs.example,Lina Sato,CFO,executive,inactive,false,editor,2024-09-23 02:20:19,2024-09-23 03:11:19,removed,false +M4280,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3247,nina.patel@brightlabs.example,Nina Patel,Insights Lead,analytics,inactive,false,editor,2024-09-03 01:29:19,2024-09-03 02:19:19,active,true +M4281,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3248,marta.nash@brightlabs.example,Marta Nash,Revenue Operations Manager,sales,inactive,false,admin,2024-10-05 01:13:19,2024-10-05 03:07:19,removed,false +M4282,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3249,isla.turner@brightlabs.example,Isla Turner,Demand Gen Manager,marketing,inactive,false,admin,2024-09-19 01:15:19,2024-09-19 01:55:19,removed,false +M4283,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3250,sofia.saeed@brightlabs.example,Sofia Saeed,Finance Manager,finance,inactive,false,viewer,2024-09-28 02:34:19,2024-09-28 04:17:19,removed,false +M4284,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3251,mei.lewis@brightlabs.example,Mei Lewis,Analytics Engineer,data,active,true,viewer,2024-09-05 06:00:19,2024-09-05 06:16:19,removed,false +M4285,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3252,peter.lopez@brightlabs.example,Peter Lopez,Founder,executive,inactive,false,editor,2024-09-05 06:02:19,2024-09-05 08:40:19,removed,false +M4286,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3253,evan.saeed@brightlabs.example,Evan Saeed,Product Manager,product,inactive,false,viewer,2024-10-14 09:09:19,2024-10-14 11:32:19,removed,false +M4287,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3254,peter.hill@brightlabs.example,Peter Hill,Workflow Analyst,operations,inactive,false,viewer,2024-09-06 05:12:19,2024-09-06 06:08:19,removed,false +M4288,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3255,kai.lopez@brightlabs.example,Kai Lopez,Sales Analyst,sales,active,true,viewer,2024-10-06 07:43:19,2024-10-06 09:12:19,removed,false +M4289,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3256,noah.shah@brightlabs.example,Noah Shah,Revenue Operations Manager,sales,provisioned,false,admin,2024-09-25 04:54:19,,pending,false +M4290,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3257,leo.dubois@brightlabs.example,Leo Dubois,Founder,executive,inactive,false,viewer,2024-09-21 05:07:19,2024-09-21 05:17:19,active,true +M4291,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3258,marcus.patel@brightlabs.example,Marcus Patel,FP&A Analyst,finance,inactive,false,editor,2024-09-28 06:09:19,2024-09-28 08:24:19,active,true +M4292,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3259,elena.tan@brightlabs.example,Elena Tan,Product Manager,product,inactive,false,admin,2024-09-26 06:26:19,2024-09-26 07:28:19,removed,false +M4293,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3260,hannah.hart@brightlabs.example,Hannah Hart,Finance Manager,finance,inactive,false,editor,2024-09-19 08:37:19,2024-09-19 11:29:19,removed,false +M4294,W2057,northwind-core,prod,active,true,A1030,Northwind Analytics,enterprise,EMEA,UK,U3261,kenji.tan@northwindanalytics.example,Kenji Tan,Marketing Operations Lead,marketing,active,true,owner,2024-09-07 02:50:08,2024-09-07 05:50:08,active,true +M4295,W2060,northwind-marketing,prod,active,false,A1030,Northwind Analytics,enterprise,EMEA,UK,U3262,mei.dubois@northwindanalytics.example,Mei Dubois,CFO,executive,active,true,viewer,2024-09-24 08:52:08,2024-09-24 09:25:08,active,true +M4296,W2060,northwind-marketing,prod,active,false,A1030,Northwind Analytics,enterprise,EMEA,UK,U3263,luis.alvarez@northwindanalytics.example,Luis Alvarez,CFO,executive,active,true,admin,2024-09-30 11:11:08,2024-09-30 12:47:08,active,true +M4297,W2057,northwind-core,prod,active,true,A1030,Northwind Analytics,enterprise,EMEA,UK,U3263,luis.alvarez@northwindanalytics.example,Luis Alvarez,CFO,executive,active,true,editor,2024-09-30 11:38:08,2024-09-30 14:20:08,active,true +M4298,W2057,northwind-core,prod,active,true,A1030,Northwind Analytics,enterprise,EMEA,UK,U3264,helena.cole@northwindanalytics.example,Helena Cole,COO,executive,active,true,editor,2024-09-08 05:37:08,2024-09-08 05:53:08,active,true +M4299,W2058,northwind-ops,prod,active,false,A1030,Northwind Analytics,enterprise,EMEA,UK,U3265,hannah.rahman@northwindanalytics.example,Hannah Rahman,Marketing Operations Lead,marketing,active,true,admin,2024-10-03 06:31:08,2024-10-03 07:22:08,active,true +M4300,W2060,northwind-marketing,prod,active,false,A1030,Northwind Analytics,enterprise,EMEA,UK,U3266,kai.hart@northwindanalytics.example,Kai Hart,Data Platform Manager,data,inactive,false,admin,2024-08-23 11:09:08,2024-08-23 13:53:08,active,true +M4301,W2059,northwind-finance,prod,active,false,A1030,Northwind Analytics,enterprise,EMEA,UK,U3267,maya.patel@northwindanalytics.example,Maya Patel,Insights Lead,analytics,active,true,viewer,2024-09-11 07:44:08,2024-09-11 10:38:08,active,true +M4302,W2059,northwind-finance,prod,active,false,A1030,Northwind Analytics,enterprise,EMEA,UK,U3268,marta.ward@northwindanalytics.example,Marta Ward,BI Analyst,analytics,active,true,viewer,2024-09-21 07:16:08,2024-09-21 07:40:08,active,true +M4303,W2057,northwind-core,prod,active,true,A1030,Northwind Analytics,enterprise,EMEA,UK,U3269,mila.morgan@northwindanalytics.example,Mila Morgan,Operations Director,operations,active,true,viewer,2024-09-24 08:08:08,2024-09-24 11:00:08,active,true +M4304,W2058,northwind-ops,prod,active,false,A1030,Northwind Analytics,enterprise,EMEA,UK,U3270,ben.meyer@northwindanalytics.example,Ben Meyer,Insights Lead,analytics,active,true,editor,2024-08-29 10:15:08,2024-08-29 12:22:08,active,true +M4305,W2057,northwind-core,prod,active,true,A1030,Northwind Analytics,enterprise,EMEA,UK,U3271,alma.dubois@northwindanalytics.example,Alma Dubois,Insights Lead,analytics,active,true,admin,2024-10-07 07:14:08,2024-10-07 08:30:08,active,true +M4306,W2058,northwind-ops,prod,active,false,A1030,Northwind Analytics,enterprise,EMEA,UK,U3272,victor.brooks@northwindanalytics.example,Victor Brooks,Sales Analyst,sales,active,true,admin,2024-10-05 06:24:08,2024-10-05 08:07:08,active,true +M4307,W2061,helio-core,prod,active,true,A1031,Helio Holdings,mid_market,APAC,AU,U3273,claire.lopez@helioholdings.example,Claire Lopez,Sales Analyst,sales,active,true,owner,2025-03-10 04:31:16,2025-03-10 05:57:16,active,true +M4308,W2062,helio-ops,prod,active,false,A1031,Helio Holdings,mid_market,APAC,AU,U3274,mei.silva@helioholdings.example,Mei Silva,Demand Gen Manager,marketing,active,true,editor,2025-03-28 09:24:16,2025-03-28 12:03:16,active,true +M4309,W2063,helio-finance,prod,active,false,A1031,Helio Holdings,mid_market,APAC,AU,U3275,aisha.sato@helioholdings.example,Aisha Sato,BI Analyst,analytics,active,true,editor,2025-03-16 05:53:16,2025-03-16 07:00:16,active,true +M4310,W2062,helio-ops,prod,active,false,A1031,Helio Holdings,mid_market,APAC,AU,U3276,arjun.sato@helioholdings.example,Arjun Sato,Founder,executive,active,true,editor,2025-02-28 09:08:16,2025-02-28 11:19:16,active,true +M4311,W2063,helio-finance,prod,active,false,A1031,Helio Holdings,mid_market,APAC,AU,U3277,kai.silva@helioholdings.example,Kai Silva,VP Data,executive,active,true,editor,2025-03-23 09:06:16,2025-03-23 11:39:16,active,true +M4312,W2063,helio-finance,prod,active,false,A1031,Helio Holdings,mid_market,APAC,AU,U3278,leo.brooks@helioholdings.example,Leo Brooks,Operations Manager,operations,active,true,editor,2025-02-26 11:48:16,2025-02-26 12:49:16,active,true +M4313,W2063,helio-finance,prod,active,false,A1031,Helio Holdings,mid_market,APAC,AU,U3279,lina.saeed@helioholdings.example,Lina Saeed,Analytics Manager,analytics,active,true,admin,2025-02-17 06:50:16,2025-02-17 06:59:16,active,true +M4314,W2062,helio-ops,prod,active,false,A1031,Helio Holdings,mid_market,APAC,AU,U3280,samir.price@helioholdings.example,Samir Price,Product Manager,product,active,true,editor,2025-03-06 05:19:16,2025-03-06 05:52:16,active,true +M4315,W2061,helio-core,prod,active,true,A1031,Helio Holdings,mid_market,APAC,AU,U3281,samir.sato@helioholdings.example,Samir Sato,Founder,executive,active,true,viewer,2025-02-14 10:28:16,2025-02-14 11:08:16,active,true +M4316,W2062,helio-ops,prod,active,false,A1031,Helio Holdings,mid_market,APAC,AU,U3282,aisha.rahman@helioholdings.example,Aisha Rahman,Product Manager,product,active,true,editor,2025-02-22 10:06:16,2025-02-22 11:58:16,active,true +M4317,W2064,vertex-core,prod,archived,true,A1032,Vertex Works,mid_market,EMEA,DE,U3283,lina.chen@vertexworks.example,Lina Chen,Data Platform Manager,data,inactive,false,owner,2024-09-28 17:52:27,2024-09-28 18:50:27,active,true +M4318,W2064,vertex-core,prod,archived,true,A1032,Vertex Works,mid_market,EMEA,DE,U3284,mateo.tan@vertexworks.example,Mateo Tan,Data Platform Manager,data,active,true,viewer,2024-09-16 15:35:27,2024-09-16 15:46:27,removed,false +M4319,W2065,vertex-ops,prod,archived,false,A1032,Vertex Works,mid_market,EMEA,DE,U3284,mateo.tan@vertexworks.example,Mateo Tan,Data Platform Manager,data,active,true,viewer,2024-09-16 15:29:27,2024-09-16 17:09:27,removed,false +M4320,W2064,vertex-core,prod,archived,true,A1032,Vertex Works,mid_market,EMEA,DE,U3285,jonas.lewis@vertexworks.example,Jonas Lewis,Operations Manager,operations,active,true,editor,2024-10-18 17:03:27,2024-10-18 17:15:27,removed,false +M4321,W2064,vertex-core,prod,archived,true,A1032,Vertex Works,mid_market,EMEA,DE,U3286,priya.singh@vertexworks.example,Priya Singh,Analytics Manager,analytics,inactive,false,admin,2024-10-19 21:04:27,2024-10-19 21:55:27,removed,false +M4322,W2065,vertex-ops,prod,archived,false,A1032,Vertex Works,mid_market,EMEA,DE,U3286,priya.singh@vertexworks.example,Priya Singh,Analytics Manager,analytics,inactive,false,editor,2024-10-19 21:06:27,2024-10-19 23:26:27,removed,false +M4323,W2065,vertex-ops,prod,archived,false,A1032,Vertex Works,mid_market,EMEA,DE,U3287,samir.rossi@vertexworks.example,Samir Rossi,COO,executive,active,true,editor,2024-09-26 17:43:27,2024-09-26 20:33:27,removed,false +M4324,W2065,vertex-ops,prod,archived,false,A1032,Vertex Works,mid_market,EMEA,DE,U3288,naomi.reed@vertexworks.example,Naomi Reed,Data Platform Manager,data,active,true,admin,2024-10-18 14:06:27,2024-10-18 14:55:27,removed,false +M4325,W2064,vertex-core,prod,archived,true,A1032,Vertex Works,mid_market,EMEA,DE,U3288,naomi.reed@vertexworks.example,Naomi Reed,Data Platform Manager,data,active,true,editor,2024-10-18 15:22:27,2024-10-18 17:08:27,active,true +M4326,W2066,lighthouse-core,prod,active,true,A1033,Lighthouse Global,mid_market,NA,CA,U3289,priya.kim@lighthouseglobal.example,Priya Kim,Insights Lead,analytics,active,true,owner,2024-11-27 06:38:01,2024-11-27 07:49:01,active,true +M4327,W2067,lighthouse-ops,prod,active,false,A1033,Lighthouse Global,mid_market,NA,CA,U3290,marcus.romero@lighthouseglobal.example,Marcus Romero,Data Platform Manager,data,active,true,viewer,2024-10-26 13:28:01,2024-10-26 14:42:01,active,true +M4328,W2066,lighthouse-core,prod,active,true,A1033,Lighthouse Global,mid_market,NA,CA,U3291,arjun.lopez@lighthouseglobal.example,Arjun Lopez,Product Manager,product,active,true,editor,2024-11-01 07:32:01,2024-11-01 08:31:01,active,true +M4329,W2067,lighthouse-ops,prod,active,false,A1033,Lighthouse Global,mid_market,NA,CA,U3292,marcus.saeed@lighthouseglobal.example,Marcus Saeed,Insights Lead,analytics,active,true,viewer,2024-11-26 08:03:01,2024-11-26 10:31:01,active,true +M4330,W2066,lighthouse-core,prod,active,true,A1033,Lighthouse Global,mid_market,NA,CA,U3292,marcus.saeed@lighthouseglobal.example,Marcus Saeed,Insights Lead,analytics,active,true,editor,2024-11-26 08:31:01,2024-11-26 08:55:01,active,true +M4331,W2067,lighthouse-ops,prod,active,false,A1033,Lighthouse Global,mid_market,NA,CA,U3293,sofia.grant@lighthouseglobal.example,Sofia Grant,BI Analyst,analytics,active,true,editor,2024-10-25 13:03:01,2024-10-25 14:45:01,active,true +M4332,W2066,lighthouse-core,prod,active,true,A1033,Lighthouse Global,mid_market,NA,CA,U3294,nina.saeed@lighthouseglobal.example,Nina Saeed,Demand Gen Manager,marketing,active,true,admin,2024-12-03 12:54:01,2024-12-03 13:48:01,active,true +M4333,W2067,lighthouse-ops,prod,active,false,A1033,Lighthouse Global,mid_market,NA,CA,U3295,arjun.rossi@lighthouseglobal.example,Arjun Rossi,Demand Gen Manager,marketing,active,true,admin,2024-11-09 10:45:01,2024-11-09 11:51:01,active,true +M4334,W2066,lighthouse-core,prod,active,true,A1033,Lighthouse Global,mid_market,NA,CA,U3295,arjun.rossi@lighthouseglobal.example,Arjun Rossi,Demand Gen Manager,marketing,active,true,viewer,2024-11-09 10:12:01,2024-11-09 10:58:01,active,true +M4335,W2066,lighthouse-core,prod,active,true,A1033,Lighthouse Global,mid_market,NA,CA,U3296,elena.grant@lighthouseglobal.example,Elena Grant,Product Manager,product,active,true,editor,2024-10-24 15:24:01,2024-10-24 17:50:01,active,true +M4336,W2067,lighthouse-ops,prod,active,false,A1033,Lighthouse Global,mid_market,NA,CA,U3296,elena.grant@lighthouseglobal.example,Elena Grant,Product Manager,product,active,true,viewer,2024-10-24 15:23:01,2024-10-24 18:11:01,active,true +M4337,W2066,lighthouse-core,prod,active,true,A1033,Lighthouse Global,mid_market,NA,CA,U3297,marcus.lopez@lighthouseglobal.example,Marcus Lopez,Demand Gen Manager,marketing,active,true,editor,2024-11-06 10:36:01,2024-11-06 10:52:01,active,true +M4338,W2067,lighthouse-ops,prod,active,false,A1033,Lighthouse Global,mid_market,NA,CA,U3298,kenji.desai@lighthouseglobal.example,Kenji Desai,Analytics Manager,analytics,active,true,admin,2024-12-01 12:09:01,2024-12-01 12:16:01,active,true +M4339,W2067,lighthouse-ops,prod,active,false,A1033,Lighthouse Global,mid_market,NA,CA,U3299,marcus.desai@lighthouseglobal.example,Marcus Desai,Data Engineer,data,active,true,viewer,2024-11-30 08:44:01,2024-11-30 09:38:01,active,true +M4340,W2067,lighthouse-ops,prod,active,false,A1033,Lighthouse Global,mid_market,NA,CA,U3300,mila.dubois@lighthouseglobal.example,Mila Dubois,Operations Manager,operations,active,true,viewer,2024-11-09 09:32:01,2024-11-09 12:29:01,active,true +M4341,W2068,helio-core,prod,active,true,A1034,Helio Partners,smb,NA,CA,U3301,evan.kim@heliopartners.example,Evan Kim,Technical Program Manager,product,active,true,owner,2025-01-11 20:45:06,2025-01-11 22:14:06,active,true +M4342,W2069,helio-ops,sandbox,active,false,A1034,Helio Partners,smb,NA,CA,U3302,hannah.rahman@heliopartners.example,Hannah Rahman,Operations Manager,operations,active,true,viewer,2025-01-08 00:53:06,2025-01-08 01:36:06,active,true +M4343,W2068,helio-core,prod,active,true,A1034,Helio Partners,smb,NA,CA,U3303,owen.sato@heliopartners.example,Owen Sato,Sales Analyst,sales,active,true,editor,2025-01-09 17:42:06,2025-01-09 17:56:06,active,true +M4344,W2069,helio-ops,sandbox,active,false,A1034,Helio Partners,smb,NA,CA,U3304,naomi.turner@heliopartners.example,Naomi Turner,Product Manager,product,active,true,admin,2024-12-28 01:47:06,2024-12-28 04:32:06,active,true +M4345,W2068,helio-core,prod,active,true,A1034,Helio Partners,smb,NA,CA,U3305,alma.chen@heliopartners.example,Alma Chen,Demand Gen Manager,marketing,active,true,viewer,2025-01-04 02:30:06,2025-01-04 05:29:06,active,true +M4346,W2068,helio-core,prod,active,true,A1034,Helio Partners,smb,NA,CA,U3306,marcus.ng@heliopartners.example,Marcus Ng,Demand Gen Manager,marketing,active,true,viewer,2024-12-24 00:00:06,2024-12-24 00:38:06,active,true +M4347,W2069,helio-ops,sandbox,active,false,A1034,Helio Partners,smb,NA,CA,U3306,marcus.ng@heliopartners.example,Marcus Ng,Demand Gen Manager,marketing,active,true,editor,2024-12-24 00:14:06,2024-12-24 01:33:06,active,true +M4348,W2069,helio-ops,sandbox,active,false,A1034,Helio Partners,smb,NA,CA,U3307,arjun.brooks@heliopartners.example,Arjun Brooks,Data Platform Manager,data,active,true,admin,2024-12-12 01:30:06,2024-12-12 03:14:06,active,true +M4349,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3308,aisha.keller@brightretail.example,Aisha Keller,Technical Program Manager,product,provisioned,false,owner,2025-03-12 23:34:57,,pending,false +M4350,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3309,zoe.kim@brightretail.example,Zoe Kim,Revenue Operations Manager,sales,active,true,viewer,2025-03-03 01:45:57,2025-03-03 04:15:57,active,true +M4351,W2072,bright-finance,prod,active,false,A1035,Bright Retail,mid_market,EMEA,UK,U3310,owen.petrova@brightretail.example,Owen Petrova,Technical Program Manager,product,inactive,false,viewer,2025-03-17 19:46:57,2025-03-17 21:10:57,removed,false +M4352,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3310,owen.petrova@brightretail.example,Owen Petrova,Technical Program Manager,product,inactive,false,editor,2025-03-17 18:22:57,2025-03-17 18:49:57,removed,false +M4353,W2071,bright-ops,sandbox,active,false,A1035,Bright Retail,mid_market,EMEA,UK,U3311,marcus.morgan@brightretail.example,Marcus Morgan,Revenue Operations Manager,sales,active,true,admin,2025-04-02 02:56:57,2025-04-02 04:12:57,active,true +M4354,W2072,bright-finance,prod,active,false,A1035,Bright Retail,mid_market,EMEA,UK,U3312,ben.singh@brightretail.example,Ben Singh,Demand Gen Manager,marketing,active,true,editor,2025-03-18 22:34:57,2025-03-19 00:36:57,active,true +M4355,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3312,ben.singh@brightretail.example,Ben Singh,Demand Gen Manager,marketing,active,true,editor,2025-03-18 23:31:57,2025-03-19 01:37:57,active,true +M4356,W2071,bright-ops,sandbox,active,false,A1035,Bright Retail,mid_market,EMEA,UK,U3313,zoe.ward@brightretail.example,Zoe Ward,CFO,executive,active,true,viewer,2025-04-11 22:52:57,2025-04-12 01:01:57,active,true +M4357,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3313,zoe.ward@brightretail.example,Zoe Ward,CFO,executive,active,true,editor,2025-04-11 23:59:57,2025-04-12 01:37:57,active,true +M4358,W2071,bright-ops,sandbox,active,false,A1035,Bright Retail,mid_market,EMEA,UK,U3314,marcus.patel@brightretail.example,Marcus Patel,Analytics Engineer,data,active,true,editor,2025-03-19 21:37:57,2025-03-19 22:15:57,active,true +M4359,W2071,bright-ops,sandbox,active,false,A1035,Bright Retail,mid_market,EMEA,UK,U3315,marcus.desai@brightretail.example,Marcus Desai,FP&A Analyst,finance,active,true,editor,2025-03-06 00:24:57,2025-03-06 02:04:57,active,true +M4360,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3316,mei.tan@brightretail.example,Mei Tan,Operations Manager,operations,active,true,viewer,2025-03-11 01:31:57,2025-03-11 04:30:57,active,true +M4361,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3317,samir.hill@brightretail.example,Samir Hill,Revenue Operations Manager,sales,active,true,viewer,2025-04-06 18:30:57,2025-04-06 19:37:57,active,true +M4362,W2072,bright-finance,prod,active,false,A1035,Bright Retail,mid_market,EMEA,UK,U3318,ava.hart@brightretail.example,Ava Hart,FP&A Analyst,finance,active,true,viewer,2025-02-26 02:27:57,2025-02-26 04:08:57,active,true +M4363,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3318,ava.hart@brightretail.example,Ava Hart,FP&A Analyst,finance,active,true,editor,2025-02-26 02:44:57,2025-02-26 05:14:57,active,true +M4364,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3319,ivy.turner@brightretail.example,Ivy Turner,Controller,finance,active,true,editor,2025-04-03 19:39:57,2025-04-03 20:07:57,active,true +M4365,W2071,bright-ops,sandbox,active,false,A1035,Bright Retail,mid_market,EMEA,UK,U3320,marcus.kim@brightretail.example,Marcus Kim,CFO,executive,active,true,editor,2025-03-23 20:09:57,2025-03-23 22:13:57,active,true +M4366,W2073,granite-core,prod,archived,true,A1036,Granite Holdings,smb,NA,US,U3321,naomi.lewis@graniteholdings.example,Naomi Lewis,Sales Analyst,sales,inactive,false,owner,2025-02-04 19:59:31,2025-02-04 20:25:31,removed,false +M4367,W2073,granite-core,prod,archived,true,A1036,Granite Holdings,smb,NA,US,U3322,daniel.tan@graniteholdings.example,Daniel Tan,Demand Gen Manager,marketing,inactive,false,viewer,2025-02-03 15:34:31,2025-02-03 17:29:31,removed,false +M4368,W2074,granite-ops,sandbox,archived,false,A1036,Granite Holdings,smb,NA,US,U3323,kenji.hart@graniteholdings.example,Kenji Hart,Founder,executive,inactive,false,admin,2025-01-13 18:55:31,2025-01-13 21:04:31,removed,false +M4369,W2075,lighthouse-core,prod,active,true,A1037,Lighthouse Network,enterprise,EMEA,UK,U3324,isla.meyer@lighthousenetwork.example,Isla Meyer,Revenue Operations Manager,sales,active,true,owner,2024-12-28 05:48:43,2024-12-28 07:54:43,active,true +M4370,W2075,lighthouse-core,prod,active,true,A1037,Lighthouse Network,enterprise,EMEA,UK,U3325,hannah.brooks@lighthousenetwork.example,Hannah Brooks,Demand Gen Manager,marketing,active,true,editor,2024-12-05 09:22:43,2024-12-05 10:04:43,active,true +M4371,W2076,lighthouse-ops,prod,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3325,hannah.brooks@lighthousenetwork.example,Hannah Brooks,Demand Gen Manager,marketing,active,true,editor,2024-12-05 09:01:43,2024-12-05 10:00:43,active,true +M4372,W2075,lighthouse-core,prod,active,true,A1037,Lighthouse Network,enterprise,EMEA,UK,U3326,hannah.meyer@lighthousenetwork.example,Hannah Meyer,Marketing Operations Lead,marketing,active,true,viewer,2024-12-17 13:15:43,2024-12-17 14:52:43,active,true +M4373,W2078,lighthouse-marketing,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3327,arjun.patel@lighthousenetwork.example,Arjun Patel,Revenue Operations Manager,sales,active,true,viewer,2024-12-27 08:31:43,2024-12-27 08:41:43,active,true +M4374,W2075,lighthouse-core,prod,active,true,A1037,Lighthouse Network,enterprise,EMEA,UK,U3327,arjun.patel@lighthousenetwork.example,Arjun Patel,Revenue Operations Manager,sales,active,true,editor,2024-12-27 08:45:43,2024-12-27 11:45:43,active,true +M4375,W2077,lighthouse-finance,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3328,lina.kim@lighthousenetwork.example,Lina Kim,Sales Analyst,sales,active,true,editor,2024-12-30 06:14:43,2024-12-30 07:29:43,active,true +M4376,W2075,lighthouse-core,prod,active,true,A1037,Lighthouse Network,enterprise,EMEA,UK,U3328,lina.kim@lighthousenetwork.example,Lina Kim,Sales Analyst,sales,active,true,editor,2024-12-30 05:31:43,2024-12-30 05:56:43,active,true +M4377,W2078,lighthouse-marketing,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3329,mei.park@lighthousenetwork.example,Mei Park,Demand Gen Manager,marketing,active,true,viewer,2025-01-01 12:57:43,2025-01-01 14:08:43,active,true +M4378,W2076,lighthouse-ops,prod,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3330,mei.meyer@lighthousenetwork.example,Mei Meyer,Product Manager,product,active,true,viewer,2025-01-07 06:39:43,2025-01-07 08:00:43,active,true +M4379,W2077,lighthouse-finance,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3330,mei.meyer@lighthousenetwork.example,Mei Meyer,Product Manager,product,active,true,editor,2025-01-07 07:01:43,2025-01-07 07:56:43,active,true +M4380,W2078,lighthouse-marketing,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3331,sofia.grant@lighthousenetwork.example,Sofia Grant,Revenue Operations Manager,sales,active,true,editor,2024-12-22 08:42:43,2024-12-22 09:28:43,active,true +M4381,W2078,lighthouse-marketing,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3332,aisha.lopez@lighthousenetwork.example,Aisha Lopez,Analytics Engineer,data,active,true,editor,2024-12-24 07:33:43,2024-12-24 07:40:43,active,true +M4382,W2076,lighthouse-ops,prod,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3333,ben.brooks@lighthousenetwork.example,Ben Brooks,Analytics Manager,analytics,active,true,admin,2024-12-31 13:04:43,2024-12-31 13:46:43,active,true +M4383,W2077,lighthouse-finance,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3334,alma.saeed@lighthousenetwork.example,Alma Saeed,Marketing Operations Lead,marketing,active,true,viewer,2024-12-28 05:49:43,2024-12-28 07:15:43,active,true +M4384,W2075,lighthouse-core,prod,active,true,A1037,Lighthouse Network,enterprise,EMEA,UK,U3335,kai.nash@lighthousenetwork.example,Kai Nash,Revenue Operations Manager,sales,inactive,false,admin,2024-12-17 09:04:43,2024-12-17 11:16:43,active,true +M4385,W2075,lighthouse-core,prod,active,true,A1037,Lighthouse Network,enterprise,EMEA,UK,U3336,derek.meyer@lighthousenetwork.example,Derek Meyer,Demand Gen Manager,marketing,active,true,viewer,2024-12-30 05:49:43,2024-12-30 08:07:43,active,true +M4386,W2075,lighthouse-core,prod,active,true,A1037,Lighthouse Network,enterprise,EMEA,UK,U3337,owen.alvarez@lighthousenetwork.example,Owen Alvarez,Marketing Operations Lead,marketing,active,true,viewer,2025-01-07 09:33:43,2025-01-07 10:10:43,active,true +M4387,W2078,lighthouse-marketing,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3338,olivia.kim@lighthousenetwork.example,Olivia Kim,Insights Lead,analytics,inactive,false,viewer,2024-12-13 06:18:43,2024-12-13 07:18:43,removed,false +M4388,W2076,lighthouse-ops,prod,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3339,sofia.hart@lighthousenetwork.example,Sofia Hart,Technical Program Manager,product,inactive,false,editor,2024-11-27 10:01:43,2024-11-27 12:39:43,removed,false +M4389,W2077,lighthouse-finance,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3340,elena.hill@lighthousenetwork.example,Elena Hill,Controller,finance,active,true,editor,2024-12-29 05:09:43,2024-12-29 05:17:43,active,true +M4390,W2078,lighthouse-marketing,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3340,elena.hill@lighthousenetwork.example,Elena Hill,Controller,finance,active,true,viewer,2024-12-29 05:35:43,2024-12-29 07:13:43,active,true +M4391,W2077,lighthouse-finance,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3341,daniel.ng@lighthousenetwork.example,Daniel Ng,Operations Director,operations,active,true,viewer,2024-12-29 10:31:43,2024-12-29 11:07:43,active,true +M4392,W2079,river-core,prod,active,true,A1038,River Systems,smb,APAC,AU,U3342,luis.ward@riversystems.example,Luis Ward,Founder,executive,active,true,owner,2024-11-23 09:38:31,2024-11-23 11:50:31,active,true +M4393,W2080,river-ops,prod,active,false,A1038,River Systems,smb,APAC,AU,U3343,nina.keller@riversystems.example,Nina Keller,Demand Gen Manager,marketing,active,true,editor,2024-12-14 14:21:31,2024-12-14 16:44:31,active,true +M4394,W2080,river-ops,prod,active,false,A1038,River Systems,smb,APAC,AU,U3344,ivy.khan@riversystems.example,Ivy Khan,Analytics Engineer,data,active,true,editor,2024-12-31 10:53:31,2024-12-31 11:43:31,active,true +M4395,W2080,river-ops,prod,active,false,A1038,River Systems,smb,APAC,AU,U3345,mila.keller@riversystems.example,Mila Keller,Data Platform Manager,data,inactive,false,editor,2024-11-22 13:58:31,2024-11-22 15:54:31,removed,false +M4396,W2079,river-core,prod,active,true,A1038,River Systems,smb,APAC,AU,U3345,mila.keller@riversystems.example,Mila Keller,Data Platform Manager,data,inactive,false,editor,2024-11-22 13:19:31,2024-11-22 16:12:31,removed,false +M4397,W2080,river-ops,prod,active,false,A1038,River Systems,smb,APAC,AU,U3346,jonas.petrova@riversystems.example,Jonas Petrova,Analytics Manager,analytics,active,true,viewer,2024-12-12 14:12:31,2024-12-12 14:42:31,active,true +M4398,W2081,nova-core,prod,active,true,A1039,Nova Group,smb,EMEA,FR,U3347,aisha.nash@novagroup.example,Aisha Nash,Marketing Operations Lead,marketing,active,true,owner,2025-03-04 01:13:48,2025-03-04 01:44:48,active,true +M4399,W2081,nova-core,prod,active,true,A1039,Nova Group,smb,EMEA,FR,U3348,peter.singh@novagroup.example,Peter Singh,Founder,executive,active,true,viewer,2025-03-14 00:06:48,2025-03-14 01:56:48,active,true +M4400,W2081,nova-core,prod,active,true,A1039,Nova Group,smb,EMEA,FR,U3349,maya.morgan@novagroup.example,Maya Morgan,Operations Manager,operations,active,true,editor,2025-02-19 20:48:48,2025-02-19 23:32:48,active,true +M4401,W2081,nova-core,prod,active,true,A1039,Nova Group,smb,EMEA,FR,U3350,sofia.shah@novagroup.example,Sofia Shah,Finance Manager,finance,active,true,viewer,2025-02-20 20:20:48,2025-02-20 22:53:48,active,true +M4402,W2081,nova-core,prod,active,true,A1039,Nova Group,smb,EMEA,FR,U3351,lena.brooks@novagroup.example,Lena Brooks,Product Manager,product,active,true,viewer,2025-02-24 16:35:48,2025-02-24 18:27:48,active,true +M4403,W2081,nova-core,prod,active,true,A1039,Nova Group,smb,EMEA,FR,U3352,helena.rossi@novagroup.example,Helena Rossi,VP Data,executive,active,true,editor,2025-02-14 19:26:48,2025-02-14 21:52:48,active,true +M4404,W2081,nova-core,prod,active,true,A1039,Nova Group,smb,EMEA,FR,U3353,tomas.tan@novagroup.example,Tomas Tan,CFO,executive,active,true,admin,2025-03-06 20:35:48,2025-03-06 22:40:48,active,true +M4405,W2082,harbor-core,prod,active,true,A1040,Harbor Collective,mid_market,APAC,SG,U3354,helena.shah@harborcollective.example,Helena Shah,VP Data,executive,active,true,owner,2025-01-04 14:41:20,2025-01-04 16:15:20,active,true +M4406,W2083,harbor-ops,sandbox,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3355,zoe.ng@harborcollective.example,Zoe Ng,Analytics Manager,analytics,active,true,editor,2024-12-16 16:26:20,2024-12-16 18:12:20,active,true +M4407,W2082,harbor-core,prod,active,true,A1040,Harbor Collective,mid_market,APAC,SG,U3356,owen.cole@harborcollective.example,Owen Cole,Analytics Manager,analytics,active,true,viewer,2025-01-12 12:52:20,2025-01-12 14:09:20,active,true +M4408,W2083,harbor-ops,sandbox,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3357,elena.dubois@harborcollective.example,Elena Dubois,Controller,finance,active,true,viewer,2024-12-20 15:09:20,2024-12-20 17:00:20,active,true +M4409,W2084,harbor-finance,prod,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3358,tomas.keller@harborcollective.example,Tomas Keller,Data Platform Manager,data,active,true,editor,2025-01-17 12:03:20,2025-01-17 12:16:20,active,true +M4410,W2082,harbor-core,prod,active,true,A1040,Harbor Collective,mid_market,APAC,SG,U3359,noah.reed@harborcollective.example,Noah Reed,Data Platform Manager,data,inactive,false,admin,2024-12-24 19:09:20,2024-12-24 21:26:20,active,true +M4411,W2084,harbor-finance,prod,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3360,peter.fischer@harborcollective.example,Peter Fischer,Revenue Operations Manager,sales,active,true,editor,2025-01-14 16:26:20,2025-01-14 18:53:20,active,true +M4412,W2083,harbor-ops,sandbox,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3360,peter.fischer@harborcollective.example,Peter Fischer,Revenue Operations Manager,sales,active,true,editor,2025-01-14 16:06:20,2025-01-14 17:00:20,active,true +M4413,W2082,harbor-core,prod,active,true,A1040,Harbor Collective,mid_market,APAC,SG,U3361,sofia.petrova@harborcollective.example,Sofia Petrova,Sales Analyst,sales,active,true,viewer,2025-01-09 12:40:20,2025-01-09 15:27:20,active,true +M4414,W2083,harbor-ops,sandbox,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3362,mila.rahman@harborcollective.example,Mila Rahman,FP&A Analyst,finance,active,true,viewer,2024-12-18 13:50:20,2024-12-18 14:35:20,active,true +M4415,W2084,harbor-finance,prod,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3362,mila.rahman@harborcollective.example,Mila Rahman,FP&A Analyst,finance,active,true,viewer,2024-12-18 14:01:20,2024-12-18 15:05:20,active,true +M4416,W2084,harbor-finance,prod,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3363,peter.turner@harborcollective.example,Peter Turner,Founder,executive,active,true,viewer,2024-12-22 18:36:20,2024-12-22 21:08:20,active,true +M4417,W2083,harbor-ops,sandbox,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3364,derek.patel@harborcollective.example,Derek Patel,Data Platform Manager,data,inactive,false,viewer,2024-12-21 20:23:20,2024-12-21 22:49:20,removed,false +M4418,W2083,harbor-ops,sandbox,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3365,ava.desai@harborcollective.example,Ava Desai,Data Platform Manager,data,active,true,editor,2024-12-28 13:55:20,2024-12-28 16:40:20,active,true +M4419,W2084,harbor-finance,prod,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3365,ava.desai@harborcollective.example,Ava Desai,Data Platform Manager,data,active,true,viewer,2024-12-28 12:18:20,2024-12-28 14:54:20,active,true +M4420,W2085,cedar-core,prod,active,true,A1041,Cedar Logistics,mid_market,EMEA,NL,U3366,evan.lopez@cedarlogistics.example,Evan Lopez,FP&A Analyst,finance,active,true,owner,2024-09-15 00:02:41,2024-09-15 02:45:41,active,true +M4421,W2087,cedar-finance,prod,active,false,A1041,Cedar Logistics,mid_market,EMEA,NL,U3367,tomas.saeed@cedarlogistics.example,Tomas Saeed,Analytics Manager,analytics,active,true,editor,2024-08-19 00:52:41,2024-08-19 02:34:41,active,true +M4422,W2085,cedar-core,prod,active,true,A1041,Cedar Logistics,mid_market,EMEA,NL,U3368,marta.rossi@cedarlogistics.example,Marta Rossi,Product Manager,product,active,true,viewer,2024-09-05 18:44:41,2024-09-05 21:30:41,active,true +M4423,W2087,cedar-finance,prod,active,false,A1041,Cedar Logistics,mid_market,EMEA,NL,U3368,marta.rossi@cedarlogistics.example,Marta Rossi,Product Manager,product,active,true,viewer,2024-09-05 18:26:41,2024-09-05 20:02:41,active,true +M4424,W2085,cedar-core,prod,active,true,A1041,Cedar Logistics,mid_market,EMEA,NL,U3369,tomas.hart@cedarlogistics.example,Tomas Hart,BI Analyst,analytics,active,true,viewer,2024-08-13 19:41:41,2024-08-13 22:03:41,active,true +M4425,W2085,cedar-core,prod,active,true,A1041,Cedar Logistics,mid_market,EMEA,NL,U3370,olivia.patel@cedarlogistics.example,Olivia Patel,Sales Analyst,sales,active,true,viewer,2024-08-12 00:17:41,2024-08-12 01:28:41,active,true +M4426,W2087,cedar-finance,prod,active,false,A1041,Cedar Logistics,mid_market,EMEA,NL,U3371,daniel.rahman@cedarlogistics.example,Daniel Rahman,Revenue Operations Manager,sales,active,true,admin,2024-08-19 16:45:41,2024-08-19 16:55:41,active,true +M4427,W2085,cedar-core,prod,active,true,A1041,Cedar Logistics,mid_market,EMEA,NL,U3371,daniel.rahman@cedarlogistics.example,Daniel Rahman,Revenue Operations Manager,sales,active,true,viewer,2024-08-19 16:44:41,2024-08-19 19:17:41,active,true +M4428,W2085,cedar-core,prod,active,true,A1041,Cedar Logistics,mid_market,EMEA,NL,U3372,aisha.lewis@cedarlogistics.example,Aisha Lewis,Data Platform Manager,data,active,true,editor,2024-08-13 17:52:41,2024-08-13 18:33:41,active,true +M4429,W2086,cedar-ops,sandbox,active,false,A1041,Cedar Logistics,mid_market,EMEA,NL,U3373,mateo.morgan@cedarlogistics.example,Mateo Morgan,Data Platform Manager,data,inactive,false,editor,2024-09-15 21:02:41,2024-09-15 22:39:41,active,true +M4430,W2085,cedar-core,prod,active,true,A1041,Cedar Logistics,mid_market,EMEA,NL,U3373,mateo.morgan@cedarlogistics.example,Mateo Morgan,Data Platform Manager,data,inactive,false,viewer,2024-09-15 21:39:41,2024-09-15 23:24:41,removed,false +M4431,W2086,cedar-ops,sandbox,active,false,A1041,Cedar Logistics,mid_market,EMEA,NL,U3374,leo.turner@cedarlogistics.example,Leo Turner,Finance Manager,finance,active,true,admin,2024-08-30 19:56:41,2024-08-30 20:54:41,active,true +M4432,W2087,cedar-finance,prod,active,false,A1041,Cedar Logistics,mid_market,EMEA,NL,U3375,kenji.hart@cedarlogistics.example,Kenji Hart,BI Analyst,analytics,inactive,false,editor,2024-09-16 21:44:41,2024-09-16 23:44:41,active,true +M4433,W2085,cedar-core,prod,active,true,A1041,Cedar Logistics,mid_market,EMEA,NL,U3376,zoe.kim@cedarlogistics.example,Zoe Kim,Revenue Operations Manager,sales,active,true,editor,2024-08-10 16:41:41,2024-08-10 19:11:41,active,true +M4434,W2087,cedar-finance,prod,active,false,A1041,Cedar Logistics,mid_market,EMEA,NL,U3377,kai.shah@cedarlogistics.example,Kai Shah,Operations Director,operations,active,true,viewer,2024-09-03 17:21:41,2024-09-03 19:29:41,active,true +M4435,W2086,cedar-ops,sandbox,active,false,A1041,Cedar Logistics,mid_market,EMEA,NL,U3377,kai.shah@cedarlogistics.example,Kai Shah,Operations Director,operations,active,true,viewer,2024-09-03 16:47:41,2024-09-03 19:25:41,active,true +M4436,W2088,northwind-core,prod,active,true,A1042,Northwind Labs,mid_market,APAC,AU,U3378,olivia.petrova@northwindlabs.example,Olivia Petrova,Product Manager,product,active,true,owner,2024-10-27 19:30:42,2024-10-27 21:48:42,active,true +M4437,W2090,northwind-finance,prod,active,false,A1042,Northwind Labs,mid_market,APAC,AU,U3379,ivy.saeed@northwindlabs.example,Ivy Saeed,Sales Analyst,sales,active,true,editor,2024-09-21 18:42:42,2024-09-21 18:52:42,active,true +M4438,W2088,northwind-core,prod,active,true,A1042,Northwind Labs,mid_market,APAC,AU,U3379,ivy.saeed@northwindlabs.example,Ivy Saeed,Sales Analyst,sales,active,true,viewer,2024-09-21 18:44:42,2024-09-21 21:00:42,active,true +M4439,W2088,northwind-core,prod,active,true,A1042,Northwind Labs,mid_market,APAC,AU,U3380,leo.kim@northwindlabs.example,Leo Kim,Founder,executive,active,true,viewer,2024-10-16 13:47:42,2024-10-16 15:15:42,active,true +M4440,W2089,northwind-ops,sandbox,active,false,A1042,Northwind Labs,mid_market,APAC,AU,U3380,leo.kim@northwindlabs.example,Leo Kim,Founder,executive,active,true,viewer,2024-10-16 13:33:42,2024-10-16 14:34:42,active,true +M4441,W2090,northwind-finance,prod,active,false,A1042,Northwind Labs,mid_market,APAC,AU,U3381,zoe.petrova@northwindlabs.example,Zoe Petrova,Insights Lead,analytics,active,true,viewer,2024-10-23 16:49:42,2024-10-23 17:45:42,active,true +M4442,W2089,northwind-ops,sandbox,active,false,A1042,Northwind Labs,mid_market,APAC,AU,U3381,zoe.petrova@northwindlabs.example,Zoe Petrova,Insights Lead,analytics,active,true,editor,2024-10-23 17:39:42,2024-10-23 19:13:42,active,true +M4443,W2089,northwind-ops,sandbox,active,false,A1042,Northwind Labs,mid_market,APAC,AU,U3382,maya.saeed@northwindlabs.example,Maya Saeed,Workflow Analyst,operations,active,true,viewer,2024-09-19 16:45:42,2024-09-19 18:32:42,active,true +M4444,W2088,northwind-core,prod,active,true,A1042,Northwind Labs,mid_market,APAC,AU,U3383,alma.price@northwindlabs.example,Alma Price,Founder,executive,active,true,editor,2024-09-28 17:00:42,2024-09-28 17:31:42,active,true +M4445,W2090,northwind-finance,prod,active,false,A1042,Northwind Labs,mid_market,APAC,AU,U3383,alma.price@northwindlabs.example,Alma Price,Founder,executive,active,true,editor,2024-09-28 16:36:42,2024-09-28 19:11:42,active,true +M4446,W2088,northwind-core,prod,active,true,A1042,Northwind Labs,mid_market,APAC,AU,U3384,nina.nash@northwindlabs.example,Nina Nash,Sales Analyst,sales,inactive,false,viewer,2024-10-28 14:48:42,2024-10-28 16:43:42,active,true +M4447,W2089,northwind-ops,sandbox,active,false,A1042,Northwind Labs,mid_market,APAC,AU,U3385,kai.turner@northwindlabs.example,Kai Turner,FP&A Analyst,finance,active,true,editor,2024-10-24 19:10:42,2024-10-24 21:54:42,active,true +M4448,W2088,northwind-core,prod,active,true,A1042,Northwind Labs,mid_market,APAC,AU,U3386,lena.cole@northwindlabs.example,Lena Cole,Revenue Operations Manager,sales,active,true,viewer,2024-10-31 11:38:42,2024-10-31 13:13:42,active,true +M4449,W2089,northwind-ops,sandbox,active,false,A1042,Northwind Labs,mid_market,APAC,AU,U3387,aisha.hill@northwindlabs.example,Aisha Hill,Demand Gen Manager,marketing,active,true,viewer,2024-10-10 18:53:42,2024-10-10 19:40:42,active,true +M4450,W2088,northwind-core,prod,active,true,A1042,Northwind Labs,mid_market,APAC,AU,U3388,hannah.rahman@northwindlabs.example,Hannah Rahman,Revenue Operations Manager,sales,active,true,viewer,2024-09-24 12:58:42,2024-09-24 14:18:42,active,true +M4451,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3389,elena.keller@lighthouseworks.example,Elena Keller,BI Analyst,analytics,active,true,owner,2024-11-13 13:44:18,2024-11-13 16:34:18,active,true +M4452,W2093,lighthouse-finance,prod,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3390,lina.morgan@lighthouseworks.example,Lina Morgan,Insights Lead,analytics,inactive,false,editor,2024-11-28 13:07:18,2024-11-28 13:59:18,removed,false +M4453,W2092,lighthouse-ops,sandbox,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3390,lina.morgan@lighthouseworks.example,Lina Morgan,Insights Lead,analytics,inactive,false,editor,2024-11-28 13:52:18,2024-11-28 14:52:18,removed,false +M4454,W2092,lighthouse-ops,sandbox,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3391,tara.park@lighthouseworks.example,Tara Park,Data Engineer,data,active,true,viewer,2024-12-02 20:33:18,2024-12-02 20:40:18,active,true +M4455,W2093,lighthouse-finance,prod,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3391,tara.park@lighthouseworks.example,Tara Park,Data Engineer,data,active,true,viewer,2024-12-02 20:30:18,2024-12-02 21:59:18,active,true +M4456,W2094,lighthouse-marketing,prod,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3392,ben.hart@lighthouseworks.example,Ben Hart,Marketing Operations Lead,marketing,active,true,editor,2024-12-03 13:32:18,2024-12-03 16:00:18,active,true +M4457,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3393,maya.rahman@lighthouseworks.example,Maya Rahman,Operations Manager,operations,active,true,editor,2024-11-15 17:54:18,2024-11-15 18:54:18,active,true +M4458,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3394,helena.tan@lighthouseworks.example,Helena Tan,Data Platform Manager,data,inactive,false,editor,2024-12-05 13:08:18,2024-12-05 16:04:18,removed,false +M4459,W2094,lighthouse-marketing,prod,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3395,arjun.cole@lighthouseworks.example,Arjun Cole,VP Data,executive,active,true,viewer,2024-11-04 15:17:18,2024-11-04 16:43:18,active,true +M4460,W2092,lighthouse-ops,sandbox,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3396,lena.chen@lighthouseworks.example,Lena Chen,BI Analyst,analytics,active,true,editor,2024-11-16 20:58:18,2024-11-16 21:14:18,active,true +M4461,W2093,lighthouse-finance,prod,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3397,sofia.meyer@lighthouseworks.example,Sofia Meyer,Founder,executive,active,true,editor,2024-11-22 16:45:18,2024-11-22 18:13:18,active,true +M4462,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3397,sofia.meyer@lighthouseworks.example,Sofia Meyer,Founder,executive,active,true,viewer,2024-11-22 16:46:18,2024-11-22 18:29:18,active,true +M4463,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3398,lena.lopez@lighthouseworks.example,Lena Lopez,Technical Program Manager,product,active,true,editor,2024-11-26 19:12:18,2024-11-26 21:44:18,active,true +M4464,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3399,samir.ward@lighthouseworks.example,Samir Ward,Product Manager,product,active,true,viewer,2024-11-20 13:14:18,2024-11-20 15:02:18,active,true +M4465,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3400,zoe.patel@lighthouseworks.example,Zoe Patel,CFO,executive,active,true,viewer,2024-11-12 21:56:18,2024-11-12 23:27:18,active,true +M4466,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3401,nina.alvarez@lighthouseworks.example,Nina Alvarez,BI Analyst,analytics,active,true,admin,2024-11-15 17:29:18,2024-11-15 18:51:18,active,true +M4467,W2093,lighthouse-finance,prod,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3401,nina.alvarez@lighthouseworks.example,Nina Alvarez,BI Analyst,analytics,active,true,editor,2024-11-15 18:26:18,2024-11-15 19:52:18,active,true +M4468,W2094,lighthouse-marketing,prod,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3402,leo.khan@lighthouseworks.example,Leo Khan,COO,executive,active,true,admin,2024-11-26 16:58:18,2024-11-26 19:39:18,active,true +M4469,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3403,mei.rossi@lighthouseworks.example,Mei Rossi,Marketing Operations Lead,marketing,active,true,editor,2024-11-05 17:03:18,2024-11-05 19:14:18,active,true +M4470,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3404,victor.cole@lighthouseworks.example,Victor Cole,Finance Manager,finance,active,true,viewer,2024-10-28 14:48:18,2024-10-28 15:00:18,active,true +M4471,W2092,lighthouse-ops,sandbox,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3405,tara.chen@lighthouseworks.example,Tara Chen,Analytics Engineer,data,active,true,admin,2024-11-13 18:20:18,2024-11-13 20:16:18,active,true +M4472,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3405,tara.chen@lighthouseworks.example,Tara Chen,Analytics Engineer,data,active,true,viewer,2024-11-13 18:33:18,2024-11-13 19:21:18,active,true +M4473,W2092,lighthouse-ops,sandbox,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3406,evan.rossi@lighthouseworks.example,Evan Rossi,Controller,finance,active,true,viewer,2024-11-07 18:17:18,2024-11-07 20:39:18,active,true +M4474,W2095,summit-core,prod,active,true,A1044,Summit Holdings,smb,EMEA,NL,U3407,hannah.saeed@summitholdings.example,Hannah Saeed,Sales Analyst,sales,active,true,owner,2024-11-03 00:30:29,2024-11-03 00:48:29,active,true +M4475,W2095,summit-core,prod,active,true,A1044,Summit Holdings,smb,EMEA,NL,U3408,kenji.ward@summitholdings.example,Kenji Ward,Workflow Analyst,operations,active,true,viewer,2024-11-02 07:25:29,2024-11-02 07:58:29,active,true +M4476,W2095,summit-core,prod,active,true,A1044,Summit Holdings,smb,EMEA,NL,U3409,maya.reed@summitholdings.example,Maya Reed,Revenue Operations Manager,sales,active,true,viewer,2024-10-20 05:21:29,2024-10-20 06:33:29,active,true +M4477,W2095,summit-core,prod,active,true,A1044,Summit Holdings,smb,EMEA,NL,U3410,kenji.lopez@summitholdings.example,Kenji Lopez,Demand Gen Manager,marketing,active,true,viewer,2024-10-30 03:49:29,2024-10-30 05:31:29,active,true +M4478,W2095,summit-core,prod,active,true,A1044,Summit Holdings,smb,EMEA,NL,U3411,ivy.reed@summitholdings.example,Ivy Reed,Sales Analyst,sales,active,true,viewer,2024-10-23 04:32:29,2024-10-23 05:12:29,active,true +M4479,W2096,nova-core,prod,active,true,A1045,Nova Holdings,enterprise,NA,CA,U3412,lena.patel@novaholdings.example,Lena Patel,Workflow Analyst,operations,active,true,owner,2024-11-22 10:49:10,2024-11-22 12:51:10,active,true +M4480,W2096,nova-core,prod,active,true,A1045,Nova Holdings,enterprise,NA,CA,U3413,mei.shah@novaholdings.example,Mei Shah,FP&A Analyst,finance,active,true,admin,2024-11-05 09:27:10,2024-11-05 12:01:10,active,true +M4481,W2099,nova-marketing,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3414,mateo.nash@novaholdings.example,Mateo Nash,CFO,executive,active,true,viewer,2024-11-24 11:57:10,2024-11-24 14:17:10,active,true +M4482,W2097,nova-ops,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3415,hannah.morgan@novaholdings.example,Hannah Morgan,Workflow Analyst,operations,active,true,editor,2024-11-15 08:28:10,2024-11-15 09:55:10,active,true +M4483,W2099,nova-marketing,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3416,leo.hill@novaholdings.example,Leo Hill,Technical Program Manager,product,active,true,editor,2024-11-21 13:26:10,2024-11-21 13:52:10,active,true +M4484,W2098,nova-finance,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3417,nina.cole@novaholdings.example,Nina Cole,Analytics Engineer,data,active,true,editor,2024-11-12 12:39:10,2024-11-12 15:29:10,active,true +M4485,W2097,nova-ops,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3418,mei.nash@novaholdings.example,Mei Nash,FP&A Analyst,finance,active,true,viewer,2024-11-27 13:56:10,2024-11-27 14:55:10,active,true +M4486,W2098,nova-finance,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3418,mei.nash@novaholdings.example,Mei Nash,FP&A Analyst,finance,active,true,viewer,2024-11-27 14:02:10,2024-11-27 16:58:10,active,true +M4487,W2099,nova-marketing,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3419,owen.petrova@novaholdings.example,Owen Petrova,Sales Analyst,sales,active,true,viewer,2024-12-04 10:20:10,2024-12-04 11:18:10,active,true +M4488,W2096,nova-core,prod,active,true,A1045,Nova Holdings,enterprise,NA,CA,U3419,owen.petrova@novaholdings.example,Owen Petrova,Sales Analyst,sales,active,true,editor,2024-12-04 09:19:10,2024-12-04 11:55:10,active,true +M4489,W2098,nova-finance,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3420,samir.price@novaholdings.example,Samir Price,Revenue Operations Manager,sales,active,true,viewer,2024-11-10 09:15:10,2024-11-10 11:29:10,active,true +M4490,W2096,nova-core,prod,active,true,A1045,Nova Holdings,enterprise,NA,CA,U3421,alma.meyer@novaholdings.example,Alma Meyer,Insights Lead,analytics,active,true,viewer,2024-12-16 14:14:10,2024-12-16 16:14:10,active,true +M4491,W2098,nova-finance,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3421,alma.meyer@novaholdings.example,Alma Meyer,Insights Lead,analytics,active,true,viewer,2024-12-16 13:12:10,2024-12-16 15:55:10,active,true +M4492,W2099,nova-marketing,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3422,derek.saeed@novaholdings.example,Derek Saeed,Technical Program Manager,product,active,true,editor,2024-11-15 10:42:10,2024-11-15 13:42:10,active,true +M4493,W2098,nova-finance,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3423,victor.lopez@novaholdings.example,Victor Lopez,Operations Director,operations,active,true,viewer,2024-11-15 14:50:10,2024-11-15 15:32:10,active,true +M4494,W2099,nova-marketing,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3424,leo.brooks@novaholdings.example,Leo Brooks,Analytics Engineer,data,active,true,viewer,2024-12-08 09:33:10,2024-12-08 09:42:10,active,true +M4495,W2099,nova-marketing,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3425,peter.petrova@novaholdings.example,Peter Petrova,Sales Analyst,sales,active,true,editor,2024-11-19 10:56:10,2024-11-19 12:56:10,active,true +M4496,W2098,nova-finance,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3425,peter.petrova@novaholdings.example,Peter Petrova,Sales Analyst,sales,active,true,viewer,2024-11-19 11:18:10,2024-11-19 12:30:10,active,true +M4497,W2100,pioneer-core,prod,active,true,A1046,Pioneer Solutions,smb,NA,CA,U3426,naomi.saeed@pioneersolutions.example,Naomi Saeed,Finance Manager,finance,active,true,owner,2024-10-19 15:09:12,2024-10-19 17:34:12,active,true +M4498,W2100,pioneer-core,prod,active,true,A1046,Pioneer Solutions,smb,NA,CA,U3427,leo.ward@pioneersolutions.example,Leo Ward,Insights Lead,analytics,inactive,false,editor,2024-11-14 13:40:12,2024-11-14 14:23:12,removed,false +M4499,W2100,pioneer-core,prod,active,true,A1046,Pioneer Solutions,smb,NA,CA,U3428,helena.ward@pioneersolutions.example,Helena Ward,Sales Analyst,sales,active,true,editor,2024-11-08 19:01:12,2024-11-08 20:58:12,active,true +M4500,W2100,pioneer-core,prod,active,true,A1046,Pioneer Solutions,smb,NA,CA,U3429,elena.park@pioneersolutions.example,Elena Park,Analytics Manager,analytics,active,true,editor,2024-11-12 16:01:12,2024-11-12 18:52:12,active,true +M4501,W2100,pioneer-core,prod,active,true,A1046,Pioneer Solutions,smb,NA,CA,U3430,maya.saeed@pioneersolutions.example,Maya Saeed,FP&A Analyst,finance,active,true,viewer,2024-11-04 18:13:12,2024-11-04 19:07:12,active,true +M4502,W2101,orchid-core,prod,active,true,A1047,Orchid Global,enterprise,APAC,AU,U3431,leo.singh@orchidglobal.example,Leo Singh,Analytics Engineer,data,active,true,owner,2024-11-02 02:27:00,2024-11-02 03:20:00,active,true +M4503,W2102,orchid-ops,sandbox,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3432,derek.tan@orchidglobal.example,Derek Tan,Sales Analyst,sales,active,true,admin,2024-11-09 01:47:00,2024-11-09 03:58:00,active,true +M4504,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3433,lina.kim@orchidglobal.example,Lina Kim,Demand Gen Manager,marketing,active,true,editor,2024-10-20 04:42:00,2024-10-20 05:50:00,active,true +M4505,W2101,orchid-core,prod,active,true,A1047,Orchid Global,enterprise,APAC,AU,U3434,mila.dubois@orchidglobal.example,Mila Dubois,Insights Lead,analytics,active,true,editor,2024-11-18 02:51:00,2024-11-18 04:04:00,active,true +M4506,W2102,orchid-ops,sandbox,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3434,mila.dubois@orchidglobal.example,Mila Dubois,Insights Lead,analytics,active,true,viewer,2024-11-18 03:34:00,2024-11-18 03:55:00,active,true +M4507,W2102,orchid-ops,sandbox,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3435,kenji.lewis@orchidglobal.example,Kenji Lewis,BI Analyst,analytics,active,true,editor,2024-11-24 05:33:00,2024-11-24 07:21:00,active,true +M4508,W2102,orchid-ops,sandbox,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3436,mila.rossi@orchidglobal.example,Mila Rossi,Demand Gen Manager,marketing,active,true,editor,2024-10-16 01:01:00,2024-10-16 01:58:00,active,true +M4509,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3436,mila.rossi@orchidglobal.example,Mila Rossi,Demand Gen Manager,marketing,active,true,editor,2024-10-16 01:43:00,2024-10-16 02:40:00,active,true +M4510,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3437,luis.sato@orchidglobal.example,Luis Sato,Operations Manager,operations,active,true,editor,2024-11-01 00:31:00,2024-11-01 00:36:00,active,true +M4511,W2101,orchid-core,prod,active,true,A1047,Orchid Global,enterprise,APAC,AU,U3438,maya.patel@orchidglobal.example,Maya Patel,Operations Director,operations,active,true,editor,2024-10-15 05:45:00,2024-10-15 07:52:00,active,true +M4512,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3439,jonas.rossi@orchidglobal.example,Jonas Rossi,CFO,executive,active,true,editor,2024-11-27 23:34:00,2024-11-28 00:22:00,active,true +M4513,W2102,orchid-ops,sandbox,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3440,peter.brooks@orchidglobal.example,Peter Brooks,Analytics Manager,analytics,active,true,viewer,2024-10-19 06:09:00,2024-10-19 08:10:00,active,true +M4514,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3440,peter.brooks@orchidglobal.example,Peter Brooks,Analytics Manager,analytics,active,true,editor,2024-10-19 07:46:00,2024-10-19 07:54:00,active,true +M4515,W2102,orchid-ops,sandbox,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3441,nina.kim@orchidglobal.example,Nina Kim,Data Engineer,data,active,true,editor,2024-11-29 01:12:00,2024-11-29 01:36:00,active,true +M4516,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3441,nina.kim@orchidglobal.example,Nina Kim,Data Engineer,data,active,true,viewer,2024-11-29 02:43:00,2024-11-29 05:41:00,active,true +M4517,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3442,victor.desai@orchidglobal.example,Victor Desai,Demand Gen Manager,marketing,active,true,editor,2024-10-21 08:04:00,2024-10-21 10:14:00,active,true +M4518,W2101,orchid-core,prod,active,true,A1047,Orchid Global,enterprise,APAC,AU,U3443,leo.kim@orchidglobal.example,Leo Kim,Analytics Manager,analytics,active,true,editor,2024-10-24 22:52:00,2024-10-25 01:51:00,active,true +M4519,W2102,orchid-ops,sandbox,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3443,leo.kim@orchidglobal.example,Leo Kim,Analytics Manager,analytics,active,true,viewer,2024-10-24 23:27:00,2024-10-25 00:30:00,active,true +M4520,W2101,orchid-core,prod,active,true,A1047,Orchid Global,enterprise,APAC,AU,U3444,mateo.grant@orchidglobal.example,Mateo Grant,Analytics Manager,analytics,active,true,viewer,2024-11-24 03:07:00,2024-11-24 05:17:00,active,true +M4521,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3444,mateo.grant@orchidglobal.example,Mateo Grant,Analytics Manager,analytics,active,true,editor,2024-11-24 02:30:00,2024-11-24 04:04:00,active,true +M4522,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3445,daniel.grant@orchidglobal.example,Daniel Grant,Demand Gen Manager,marketing,active,true,editor,2024-11-04 00:03:00,2024-11-04 01:38:00,active,true +M4523,W2102,orchid-ops,sandbox,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3446,helena.grant@orchidglobal.example,Helena Grant,Revenue Operations Manager,sales,active,true,viewer,2024-10-14 22:25:00,2024-10-15 01:19:00,active,true +M4524,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3447,leo.shah@orchidglobal.example,Leo Shah,Founder,executive,active,true,editor,2024-10-30 00:58:00,2024-10-30 03:46:00,active,true +M4525,W2101,orchid-core,prod,active,true,A1047,Orchid Global,enterprise,APAC,AU,U3448,mila.silva@orchidglobal.example,Mila Silva,Data Engineer,data,active,true,admin,2024-11-06 01:36:00,2024-11-06 04:29:00,active,true +M4526,W2101,orchid-core,prod,active,true,A1047,Orchid Global,enterprise,APAC,AU,U3449,marcus.lewis@orchidglobal.example,Marcus Lewis,Product Manager,product,active,true,editor,2024-11-04 07:18:00,2024-11-04 08:15:00,active,true +M4527,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3449,marcus.lewis@orchidglobal.example,Marcus Lewis,Product Manager,product,active,true,viewer,2024-11-04 06:29:00,2024-11-04 06:56:00,active,true +M4528,W2104,orchid-core,prod,active,true,A1048,Orchid Capital,enterprise,APAC,NZ,U3450,owen.tan@orchidcapital.example,Owen Tan,Data Platform Manager,data,active,true,owner,2025-03-10 23:01:18,2025-03-11 00:42:18,active,true +M4529,W2106,orchid-finance,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3451,priya.rossi@orchidcapital.example,Priya Rossi,Technical Program Manager,product,active,true,admin,2025-03-21 01:38:18,2025-03-21 04:36:18,active,true +M4530,W2106,orchid-finance,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3452,isla.cole@orchidcapital.example,Isla Cole,CFO,executive,active,true,viewer,2025-03-04 02:06:18,2025-03-04 04:25:18,active,true +M4531,W2104,orchid-core,prod,active,true,A1048,Orchid Capital,enterprise,APAC,NZ,U3453,peter.park@orchidcapital.example,Peter Park,Analytics Manager,analytics,active,true,editor,2025-03-20 23:05:18,2025-03-21 00:34:18,active,true +M4532,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3454,sofia.kim@orchidcapital.example,Sofia Kim,Finance Manager,finance,active,true,editor,2025-03-26 00:23:18,2025-03-26 01:47:18,active,true +M4533,W2104,orchid-core,prod,active,true,A1048,Orchid Capital,enterprise,APAC,NZ,U3455,alma.keller@orchidcapital.example,Alma Keller,Revenue Operations Manager,sales,active,true,admin,2025-03-20 02:15:18,2025-03-20 04:56:18,active,true +M4534,W2104,orchid-core,prod,active,true,A1048,Orchid Capital,enterprise,APAC,NZ,U3456,mila.meyer@orchidcapital.example,Mila Meyer,CFO,executive,active,true,editor,2025-03-27 23:17:18,2025-03-28 00:50:18,active,true +M4535,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3457,tomas.desai@orchidcapital.example,Tomas Desai,Finance Manager,finance,active,true,admin,2025-02-16 21:59:18,2025-02-17 00:58:18,active,true +M4536,W2104,orchid-core,prod,active,true,A1048,Orchid Capital,enterprise,APAC,NZ,U3457,tomas.desai@orchidcapital.example,Tomas Desai,Finance Manager,finance,active,true,editor,2025-02-16 22:39:18,2025-02-17 00:57:18,active,true +M4537,W2106,orchid-finance,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3458,marcus.desai@orchidcapital.example,Marcus Desai,Sales Analyst,sales,active,true,editor,2025-03-19 23:22:18,2025-03-19 23:43:18,active,true +M4538,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3458,marcus.desai@orchidcapital.example,Marcus Desai,Sales Analyst,sales,active,true,viewer,2025-03-19 22:16:18,2025-03-19 23:36:18,active,true +M4539,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3459,ben.keller@orchidcapital.example,Ben Keller,Data Engineer,data,inactive,false,admin,2025-03-28 01:43:18,2025-03-28 02:19:18,removed,false +M4540,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3460,hannah.fischer@orchidcapital.example,Hannah Fischer,Sales Analyst,sales,active,true,admin,2025-03-31 18:12:18,2025-03-31 18:17:18,active,true +M4541,W2104,orchid-core,prod,active,true,A1048,Orchid Capital,enterprise,APAC,NZ,U3461,mateo.desai@orchidcapital.example,Mateo Desai,Operations Manager,operations,inactive,false,editor,2025-02-18 22:22:18,2025-02-19 00:35:18,removed,false +M4542,W2106,orchid-finance,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3462,zoe.nash@orchidcapital.example,Zoe Nash,Revenue Operations Manager,sales,active,true,admin,2025-02-27 03:40:18,2025-02-27 04:35:18,active,true +M4543,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3462,zoe.nash@orchidcapital.example,Zoe Nash,Revenue Operations Manager,sales,active,true,viewer,2025-02-27 03:03:18,2025-02-27 05:37:18,active,true +M4544,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3463,kenji.price@orchidcapital.example,Kenji Price,Workflow Analyst,operations,active,true,editor,2025-03-23 00:13:18,2025-03-23 01:21:18,active,true +M4545,W2106,orchid-finance,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3464,ivy.hill@orchidcapital.example,Ivy Hill,Finance Manager,finance,active,true,viewer,2025-03-22 00:03:18,2025-03-22 00:33:18,active,true +M4546,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3465,aisha.nash@orchidcapital.example,Aisha Nash,Technical Program Manager,product,inactive,false,viewer,2025-03-07 03:36:18,2025-03-07 06:05:18,removed,false +M4547,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3466,kai.ng@orchidcapital.example,Kai Ng,COO,executive,active,true,viewer,2025-03-23 03:26:18,2025-03-23 04:05:18,active,true +M4548,W2104,orchid-core,prod,active,true,A1048,Orchid Capital,enterprise,APAC,NZ,U3466,kai.ng@orchidcapital.example,Kai Ng,COO,executive,active,true,viewer,2025-03-23 03:05:18,2025-03-23 05:31:18,active,true +M4549,W2107,northwind-core,prod,active,true,A1049,Northwind Network,enterprise,NA,CA,U3467,nina.fischer@northwindnetwork.example,Nina Fischer,Technical Program Manager,product,active,true,owner,2024-12-07 01:39:33,2024-12-07 03:02:33,active,true +M4550,W2107,northwind-core,prod,active,true,A1049,Northwind Network,enterprise,NA,CA,U3468,ben.romero@northwindnetwork.example,Ben Romero,FP&A Analyst,finance,inactive,false,editor,2024-11-12 05:18:33,2024-11-12 07:42:33,removed,false +M4551,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3469,luis.dubois@northwindnetwork.example,Luis Dubois,Finance Manager,finance,active,true,admin,2024-11-14 07:49:33,2024-11-14 09:14:33,active,true +M4552,W2109,northwind-finance,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3470,nina.fischer2@northwindnetwork.example,Nina Fischer,Marketing Operations Lead,marketing,active,true,viewer,2024-11-28 05:18:33,2024-11-28 06:53:33,active,true +M4553,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3471,lena.reed@northwindnetwork.example,Lena Reed,Workflow Analyst,operations,active,true,editor,2024-12-02 08:18:33,2024-12-02 08:30:33,active,true +M4554,W2109,northwind-finance,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3472,lena.hill@northwindnetwork.example,Lena Hill,BI Analyst,analytics,active,true,admin,2024-12-18 08:06:33,2024-12-18 08:46:33,active,true +M4555,W2109,northwind-finance,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3473,samir.cole@northwindnetwork.example,Samir Cole,Sales Analyst,sales,active,true,viewer,2024-11-19 04:03:33,2024-11-19 06:19:33,active,true +M4556,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3474,maya.kim@northwindnetwork.example,Maya Kim,Analytics Engineer,data,active,true,admin,2024-12-15 01:05:33,2024-12-15 02:25:33,active,true +M4557,W2107,northwind-core,prod,active,true,A1049,Northwind Network,enterprise,NA,CA,U3475,peter.khan@northwindnetwork.example,Peter Khan,Marketing Operations Lead,marketing,inactive,false,viewer,2024-11-15 07:26:33,2024-11-15 10:22:33,removed,false +M4558,W2109,northwind-finance,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3476,sofia.petrova@northwindnetwork.example,Sofia Petrova,Demand Gen Manager,marketing,active,true,editor,2024-11-30 07:43:33,2024-11-30 10:34:33,active,true +M4559,W2107,northwind-core,prod,active,true,A1049,Northwind Network,enterprise,NA,CA,U3476,sofia.petrova@northwindnetwork.example,Sofia Petrova,Demand Gen Manager,marketing,active,true,viewer,2024-11-30 08:04:33,2024-11-30 09:34:33,active,true +M4560,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3477,elena.turner@northwindnetwork.example,Elena Turner,Data Platform Manager,data,active,true,editor,2024-12-07 04:27:33,2024-12-07 04:47:33,active,true +M4561,W2107,northwind-core,prod,active,true,A1049,Northwind Network,enterprise,NA,CA,U3478,ivy.lewis@northwindnetwork.example,Ivy Lewis,FP&A Analyst,finance,active,true,viewer,2024-12-17 03:43:33,2024-12-17 04:01:33,active,true +M4562,W2109,northwind-finance,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3479,lena.tan@northwindnetwork.example,Lena Tan,Marketing Operations Lead,marketing,active,true,editor,2024-11-16 06:00:33,2024-11-16 07:02:33,active,true +M4563,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3479,lena.tan@northwindnetwork.example,Lena Tan,Marketing Operations Lead,marketing,active,true,viewer,2024-11-16 04:23:33,2024-11-16 07:20:33,active,true +M4564,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3480,lena.petrova@northwindnetwork.example,Lena Petrova,Workflow Analyst,operations,active,true,viewer,2024-12-08 08:17:33,2024-12-08 10:26:33,active,true +M4565,W2109,northwind-finance,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3481,alma.cole@northwindnetwork.example,Alma Cole,Analytics Engineer,data,active,true,viewer,2024-11-22 06:58:33,2024-11-22 09:37:33,active,true +M4566,W2107,northwind-core,prod,active,true,A1049,Northwind Network,enterprise,NA,CA,U3481,alma.cole@northwindnetwork.example,Alma Cole,Analytics Engineer,data,active,true,viewer,2024-11-22 05:25:33,2024-11-22 06:00:33,active,true +M4567,W2107,northwind-core,prod,active,true,A1049,Northwind Network,enterprise,NA,CA,U3482,owen.shah@northwindnetwork.example,Owen Shah,Product Manager,product,active,true,editor,2024-11-26 03:31:33,2024-11-26 05:45:33,active,true +M4568,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3483,elena.grant@northwindnetwork.example,Elena Grant,Data Engineer,data,active,true,editor,2024-12-21 03:39:33,2024-12-21 05:27:33,active,true +M4569,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3484,claire.chen@northwindnetwork.example,Claire Chen,Founder,executive,active,true,viewer,2024-12-01 07:30:33,2024-12-01 09:54:33,active,true +M4570,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3485,daniel.nash@northwindnetwork.example,Daniel Nash,Marketing Operations Lead,marketing,active,true,viewer,2024-12-16 08:28:33,2024-12-16 11:21:33,active,true +M4571,W2109,northwind-finance,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3486,leo.shah@northwindnetwork.example,Leo Shah,Analytics Engineer,data,active,true,admin,2024-12-19 09:54:33,2024-12-19 10:35:33,active,true +M4572,W2107,northwind-core,prod,active,true,A1049,Northwind Network,enterprise,NA,CA,U3486,leo.shah@northwindnetwork.example,Leo Shah,Analytics Engineer,data,active,true,viewer,2024-12-19 08:33:33,2024-12-19 11:26:33,active,true +M4573,W2110,cedar-core,prod,active,true,A1050,Cedar Energy,smb,APAC,JP,U3487,claire.tan@cedarenergy.example,Claire Tan,BI Analyst,analytics,active,true,owner,2025-03-16 14:25:30,2025-03-16 16:40:30,active,true +M4574,W2110,cedar-core,prod,active,true,A1050,Cedar Energy,smb,APAC,JP,U3488,evan.fischer@cedarenergy.example,Evan Fischer,Operations Director,operations,active,true,editor,2025-03-05 19:21:30,2025-03-05 19:51:30,active,true +M4575,W2111,cedar-ops,sandbox,active,false,A1050,Cedar Energy,smb,APAC,JP,U3489,sofia.hill@cedarenergy.example,Sofia Hill,CFO,executive,active,true,editor,2025-03-25 21:57:30,2025-03-25 22:29:30,active,true +M4576,W2111,cedar-ops,sandbox,active,false,A1050,Cedar Energy,smb,APAC,JP,U3490,sofia.ward@cedarenergy.example,Sofia Ward,Data Engineer,data,active,true,editor,2025-03-02 22:43:30,2025-03-03 00:00:30,active,true +M4577,W2112,lighthouse-core,prod,active,true,A1051,Lighthouse Systems,smb,EMEA,UK,U3491,aisha.romero@lighthousesystems.example,Aisha Romero,VP Data,executive,active,true,owner,2025-03-20 05:44:10,2025-03-20 06:19:10,active,true +M4578,W2112,lighthouse-core,prod,active,true,A1051,Lighthouse Systems,smb,EMEA,UK,U3492,evan.brooks@lighthousesystems.example,Evan Brooks,Analytics Manager,analytics,inactive,false,admin,2025-02-27 10:04:10,2025-02-27 10:17:10,removed,false +M4579,W2112,lighthouse-core,prod,active,true,A1051,Lighthouse Systems,smb,EMEA,UK,U3493,noah.lewis@lighthousesystems.example,Noah Lewis,Workflow Analyst,operations,inactive,false,admin,2025-03-22 08:46:10,2025-03-22 10:21:10,active,true +M4580,W2112,lighthouse-core,prod,active,true,A1051,Lighthouse Systems,smb,EMEA,UK,U3494,zoe.price@lighthousesystems.example,Zoe Price,Marketing Operations Lead,marketing,inactive,false,viewer,2025-03-25 05:44:10,2025-03-25 06:59:10,removed,false +M4581,W2112,lighthouse-core,prod,active,true,A1051,Lighthouse Systems,smb,EMEA,UK,U3495,naomi.reed@lighthousesystems.example,Naomi Reed,Controller,finance,active,true,editor,2025-04-01 03:53:10,2025-04-01 06:06:10,active,true +M4582,W2112,lighthouse-core,prod,active,true,A1051,Lighthouse Systems,smb,EMEA,UK,U3496,mateo.lewis@lighthousesystems.example,Mateo Lewis,Revenue Operations Manager,sales,active,true,editor,2025-04-08 03:12:10,2025-04-08 05:31:10,active,true +M4583,W2112,lighthouse-core,prod,active,true,A1051,Lighthouse Systems,smb,EMEA,UK,U3497,isla.grant@lighthousesystems.example,Isla Grant,FP&A Analyst,finance,active,true,editor,2025-03-07 02:20:10,2025-03-07 05:12:10,active,true +M4584,W2113,sierra-core,prod,active,true,A1052,Sierra Labs,mid_market,APAC,NZ,U3498,jonas.park@sierralabs.example,Jonas Park,BI Analyst,analytics,active,true,owner,2024-12-12 22:33:21,2024-12-13 00:08:21,active,true +M4585,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3499,mila.dubois@sierralabs.example,Mila Dubois,Marketing Operations Lead,marketing,active,true,editor,2024-12-14 21:35:21,2024-12-14 22:51:21,active,true +M4586,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3500,leo.lewis@sierralabs.example,Leo Lewis,Technical Program Manager,product,active,true,viewer,2024-12-12 03:04:21,2024-12-12 05:09:21,active,true +M4587,W2113,sierra-core,prod,active,true,A1052,Sierra Labs,mid_market,APAC,NZ,U3500,leo.lewis@sierralabs.example,Leo Lewis,Technical Program Manager,product,active,true,viewer,2024-12-12 02:35:21,2024-12-12 05:28:21,active,true +M4588,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3501,aisha.tan@sierralabs.example,Aisha Tan,Marketing Operations Lead,marketing,inactive,false,admin,2024-12-26 20:38:21,2024-12-26 22:12:21,removed,false +M4589,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3502,mei.reed@sierralabs.example,Mei Reed,Operations Director,operations,active,true,admin,2024-12-29 04:23:21,2024-12-29 04:52:21,active,true +M4590,W2113,sierra-core,prod,active,true,A1052,Sierra Labs,mid_market,APAC,NZ,U3502,mei.reed@sierralabs.example,Mei Reed,Operations Director,operations,active,true,editor,2024-12-29 03:27:21,2024-12-29 03:59:21,active,true +M4591,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3503,victor.ng@sierralabs.example,Victor Ng,Revenue Operations Manager,sales,active,true,editor,2025-01-08 02:14:21,2025-01-08 03:19:21,active,true +M4592,W2113,sierra-core,prod,active,true,A1052,Sierra Labs,mid_market,APAC,NZ,U3504,mila.nash@sierralabs.example,Mila Nash,Data Platform Manager,data,active,true,viewer,2024-12-07 03:16:21,2024-12-07 05:08:21,active,true +M4593,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3504,mila.nash@sierralabs.example,Mila Nash,Data Platform Manager,data,active,true,viewer,2024-12-07 02:54:21,2024-12-07 03:15:21,active,true +M4594,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3505,victor.saeed@sierralabs.example,Victor Saeed,Revenue Operations Manager,sales,active,true,admin,2025-01-05 03:43:21,2025-01-05 05:41:21,active,true +M4595,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3506,hannah.tan@sierralabs.example,Hannah Tan,Analytics Manager,analytics,active,true,viewer,2024-12-25 23:54:21,2024-12-26 00:43:21,active,true +M4596,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3507,ava.rahman@sierralabs.example,Ava Rahman,Sales Analyst,sales,active,true,admin,2025-01-08 21:35:21,2025-01-09 00:23:21,active,true +M4597,W2115,bright-core,prod,active,true,A1053,Bright Health,mid_market,NA,CA,U3508,owen.petrova@brighthealth.example,Owen Petrova,Operations Director,operations,active,true,owner,2024-10-26 17:09:29,2024-10-26 19:36:29,active,true +M4598,W2115,bright-core,prod,active,true,A1053,Bright Health,mid_market,NA,CA,U3509,alma.park@brighthealth.example,Alma Park,Data Engineer,data,inactive,false,editor,2024-10-18 11:56:29,2024-10-18 13:14:29,removed,false +M4599,W2117,bright-finance,prod,active,false,A1053,Bright Health,mid_market,NA,CA,U3510,aisha.grant@brighthealth.example,Aisha Grant,Operations Director,operations,active,true,admin,2024-11-03 15:39:29,2024-11-03 16:33:29,active,true +M4600,W2115,bright-core,prod,active,true,A1053,Bright Health,mid_market,NA,CA,U3511,mateo.kim@brighthealth.example,Mateo Kim,FP&A Analyst,finance,active,true,editor,2024-10-24 14:57:29,2024-10-24 15:26:29,active,true +M4601,W2115,bright-core,prod,active,true,A1053,Bright Health,mid_market,NA,CA,U3512,samir.shah@brighthealth.example,Samir Shah,Finance Manager,finance,active,true,admin,2024-09-30 09:36:29,2024-09-30 11:25:29,active,true +M4602,W2116,bright-ops,prod,active,false,A1053,Bright Health,mid_market,NA,CA,U3512,samir.shah@brighthealth.example,Samir Shah,Finance Manager,finance,active,true,viewer,2024-09-30 09:10:29,2024-09-30 11:34:29,active,true +M4603,W2116,bright-ops,prod,active,false,A1053,Bright Health,mid_market,NA,CA,U3513,owen.meyer@brighthealth.example,Owen Meyer,Finance Manager,finance,active,true,editor,2024-09-27 11:26:29,2024-09-27 14:15:29,active,true +M4604,W2117,bright-finance,prod,active,false,A1053,Bright Health,mid_market,NA,CA,U3514,nina.chen@brighthealth.example,Nina Chen,Technical Program Manager,product,active,true,editor,2024-10-20 17:09:29,2024-10-20 19:15:29,active,true +M4605,W2117,bright-finance,prod,active,false,A1053,Bright Health,mid_market,NA,CA,U3515,tara.alvarez@brighthealth.example,Tara Alvarez,Demand Gen Manager,marketing,active,true,editor,2024-10-18 15:11:29,2024-10-18 15:51:29,active,true +M4606,W2115,bright-core,prod,active,true,A1053,Bright Health,mid_market,NA,CA,U3516,ben.chen@brighthealth.example,Ben Chen,Demand Gen Manager,marketing,active,true,editor,2024-10-28 16:31:29,2024-10-28 16:54:29,active,true +M4607,W2117,bright-finance,prod,active,false,A1053,Bright Health,mid_market,NA,CA,U3517,hannah.sato@brighthealth.example,Hannah Sato,Finance Manager,finance,active,true,admin,2024-10-30 14:44:29,2024-10-30 15:14:29,active,true +M4608,W2118,granite-core,prod,active,true,A1054,Granite Labs,mid_market,APAC,NZ,U3518,lena.singh@granitelabs.example,Lena Singh,Founder,executive,active,true,owner,2024-08-04 04:30:01,2024-08-04 06:42:01,active,true +M4609,W2118,granite-core,prod,active,true,A1054,Granite Labs,mid_market,APAC,NZ,U3519,aisha.meyer@granitelabs.example,Aisha Meyer,FP&A Analyst,finance,inactive,false,admin,2024-09-07 08:43:01,2024-09-07 09:45:01,active,true +M4610,W2119,granite-ops,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3520,alma.fischer@granitelabs.example,Alma Fischer,Revenue Operations Manager,sales,active,true,viewer,2024-08-28 10:15:01,2024-08-28 11:51:01,active,true +M4611,W2118,granite-core,prod,active,true,A1054,Granite Labs,mid_market,APAC,NZ,U3521,naomi.grant@granitelabs.example,Naomi Grant,Analytics Manager,analytics,active,true,viewer,2024-09-03 09:36:01,2024-09-03 11:57:01,active,true +M4612,W2120,granite-finance,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3521,naomi.grant@granitelabs.example,Naomi Grant,Analytics Manager,analytics,active,true,editor,2024-09-03 08:32:01,2024-09-03 09:38:01,active,true +M4613,W2119,granite-ops,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3522,daniel.brooks@granitelabs.example,Daniel Brooks,Workflow Analyst,operations,inactive,false,viewer,2024-09-10 09:51:01,2024-09-10 10:24:01,removed,false +M4614,W2119,granite-ops,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3523,ben.meyer@granitelabs.example,Ben Meyer,Sales Analyst,sales,active,true,viewer,2024-08-17 11:12:01,2024-08-17 12:08:01,active,true +M4615,W2120,granite-finance,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3523,ben.meyer@granitelabs.example,Ben Meyer,Sales Analyst,sales,active,true,viewer,2024-08-17 11:03:01,2024-08-17 11:23:01,active,true +M4616,W2118,granite-core,prod,active,true,A1054,Granite Labs,mid_market,APAC,NZ,U3524,marta.lewis@granitelabs.example,Marta Lewis,Technical Program Manager,product,inactive,false,editor,2024-09-01 03:47:01,2024-09-01 06:41:01,active,true +M4617,W2118,granite-core,prod,active,true,A1054,Granite Labs,mid_market,APAC,NZ,U3525,mei.chen@granitelabs.example,Mei Chen,Operations Director,operations,active,true,editor,2024-08-30 04:01:01,2024-08-30 04:24:01,active,true +M4618,W2119,granite-ops,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3525,mei.chen@granitelabs.example,Mei Chen,Operations Director,operations,active,true,viewer,2024-08-30 03:52:01,2024-08-30 06:30:01,active,true +M4619,W2120,granite-finance,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3526,mila.price@granitelabs.example,Mila Price,Revenue Operations Manager,sales,active,true,editor,2024-08-22 08:32:01,2024-08-22 08:46:01,active,true +M4620,W2118,granite-core,prod,active,true,A1054,Granite Labs,mid_market,APAC,NZ,U3526,mila.price@granitelabs.example,Mila Price,Revenue Operations Manager,sales,active,true,viewer,2024-08-22 07:42:01,2024-08-22 09:56:01,active,true +M4621,W2120,granite-finance,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3527,daniel.chen@granitelabs.example,Daniel Chen,Demand Gen Manager,marketing,active,true,editor,2024-08-17 03:05:01,2024-08-17 04:08:01,active,true +M4622,W2118,granite-core,prod,active,true,A1054,Granite Labs,mid_market,APAC,NZ,U3528,arjun.khan@granitelabs.example,Arjun Khan,Data Engineer,data,active,true,viewer,2024-09-13 07:37:01,2024-09-13 10:17:01,active,true +M4623,W2119,granite-ops,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3528,arjun.khan@granitelabs.example,Arjun Khan,Data Engineer,data,active,true,viewer,2024-09-13 06:55:01,2024-09-13 08:37:01,active,true +M4624,W2120,granite-finance,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3529,lena.romero@granitelabs.example,Lena Romero,Finance Manager,finance,inactive,false,editor,2024-08-22 07:57:01,2024-08-22 08:34:01,removed,false +M4625,W2121,pioneer-core,prod,active,true,A1055,Pioneer Systems,mid_market,EMEA,FR,U3530,priya.lewis@pioneersystems.example,Priya Lewis,Product Manager,product,inactive,false,owner,2025-02-28 19:48:38,2025-02-28 22:13:38,removed,false +M4626,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3531,ava.price@pioneersystems.example,Ava Price,Data Platform Manager,data,active,true,admin,2025-02-07 16:47:38,2025-02-07 18:26:38,active,true +M4627,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3532,daniel.silva@pioneersystems.example,Daniel Silva,Founder,executive,active,true,editor,2025-01-28 17:35:38,2025-01-28 18:40:38,active,true +M4628,W2121,pioneer-core,prod,active,true,A1055,Pioneer Systems,mid_market,EMEA,FR,U3533,lina.nash@pioneersystems.example,Lina Nash,Controller,finance,active,true,admin,2025-02-26 18:07:38,2025-02-26 20:29:38,active,true +M4629,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3533,lina.nash@pioneersystems.example,Lina Nash,Controller,finance,active,true,viewer,2025-02-26 18:30:38,2025-02-26 18:46:38,active,true +M4630,W2121,pioneer-core,prod,active,true,A1055,Pioneer Systems,mid_market,EMEA,FR,U3534,jonas.khan@pioneersystems.example,Jonas Khan,Analytics Engineer,data,active,true,viewer,2025-02-14 13:46:38,2025-02-14 14:37:38,active,true +M4631,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3534,jonas.khan@pioneersystems.example,Jonas Khan,Analytics Engineer,data,active,true,editor,2025-02-14 14:06:38,2025-02-14 14:22:38,active,true +M4632,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3535,derek.park@pioneersystems.example,Derek Park,BI Analyst,analytics,active,true,viewer,2025-02-21 17:05:38,2025-02-21 17:43:38,active,true +M4633,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3536,priya.tan@pioneersystems.example,Priya Tan,Operations Manager,operations,active,true,editor,2025-02-20 13:33:38,2025-02-20 14:42:38,active,true +M4634,W2121,pioneer-core,prod,active,true,A1055,Pioneer Systems,mid_market,EMEA,FR,U3536,priya.tan@pioneersystems.example,Priya Tan,Operations Manager,operations,active,true,editor,2025-02-20 12:33:38,2025-02-20 13:30:38,active,true +M4635,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3537,peter.tan@pioneersystems.example,Peter Tan,CFO,executive,active,true,viewer,2025-02-21 16:46:38,2025-02-21 18:08:38,active,true +M4636,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3538,marcus.saeed@pioneersystems.example,Marcus Saeed,Finance Manager,finance,active,true,viewer,2025-01-21 19:19:38,2025-01-21 20:26:38,active,true +M4637,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3539,olivia.chen@pioneersystems.example,Olivia Chen,BI Analyst,analytics,active,true,editor,2025-03-03 14:29:38,2025-03-03 14:47:38,active,true +M4638,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3540,marcus.saeed2@pioneersystems.example,Marcus Saeed,BI Analyst,analytics,active,true,viewer,2025-02-24 16:23:38,2025-02-24 18:32:38,active,true +M4639,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3541,alma.tan@pioneersystems.example,Alma Tan,Demand Gen Manager,marketing,active,true,admin,2025-02-05 19:55:38,2025-02-05 22:13:38,active,true +M4640,W2121,pioneer-core,prod,active,true,A1055,Pioneer Systems,mid_market,EMEA,FR,U3542,olivia.dubois@pioneersystems.example,Olivia Dubois,Finance Manager,finance,active,true,editor,2025-02-05 14:27:38,2025-02-05 16:07:38,active,true +M4641,W2123,delta-core,prod,active,true,A1056,Delta Global,mid_market,APAC,AU,U3543,sofia.hill@deltaglobal.example,Sofia Hill,Demand Gen Manager,marketing,active,true,owner,2024-12-24 08:30:51,2024-12-24 09:11:51,active,true +M4642,W2123,delta-core,prod,active,true,A1056,Delta Global,mid_market,APAC,AU,U3544,claire.alvarez@deltaglobal.example,Claire Alvarez,Finance Manager,finance,active,true,viewer,2024-12-08 08:39:51,2024-12-08 10:40:51,active,true +M4643,W2123,delta-core,prod,active,true,A1056,Delta Global,mid_market,APAC,AU,U3545,naomi.romero@deltaglobal.example,Naomi Romero,Product Manager,product,active,true,admin,2024-11-25 10:28:51,2024-11-25 11:44:51,active,true +M4644,W2125,delta-finance,prod,active,false,A1056,Delta Global,mid_market,APAC,AU,U3546,noah.sato@deltaglobal.example,Noah Sato,Technical Program Manager,product,active,true,editor,2024-12-08 09:52:51,2024-12-08 10:12:51,active,true +M4645,W2124,delta-ops,prod,active,false,A1056,Delta Global,mid_market,APAC,AU,U3547,isla.petrova@deltaglobal.example,Isla Petrova,Product Manager,product,active,true,viewer,2024-11-24 12:00:51,2024-11-24 13:42:51,active,true +M4646,W2124,delta-ops,prod,active,false,A1056,Delta Global,mid_market,APAC,AU,U3548,ava.turner@deltaglobal.example,Ava Turner,Marketing Operations Lead,marketing,inactive,false,editor,2024-11-28 08:14:51,2024-11-28 09:06:51,removed,false +M4647,W2125,delta-finance,prod,active,false,A1056,Delta Global,mid_market,APAC,AU,U3549,samir.khan@deltaglobal.example,Samir Khan,Technical Program Manager,product,active,true,admin,2024-11-20 04:53:51,2024-11-20 06:27:51,active,true +M4648,W2123,delta-core,prod,active,true,A1056,Delta Global,mid_market,APAC,AU,U3550,leo.ward@deltaglobal.example,Leo Ward,FP&A Analyst,finance,active,true,viewer,2024-12-11 06:19:51,2024-12-11 07:31:51,active,true +M4649,W2125,delta-finance,prod,active,false,A1056,Delta Global,mid_market,APAC,AU,U3551,marcus.khan@deltaglobal.example,Marcus Khan,Operations Manager,operations,active,true,editor,2024-12-23 10:12:51,2024-12-23 12:06:51,active,true +M4650,W2124,delta-ops,prod,active,false,A1056,Delta Global,mid_market,APAC,AU,U3551,marcus.khan@deltaglobal.example,Marcus Khan,Operations Manager,operations,active,true,viewer,2024-12-23 10:22:51,2024-12-23 10:41:51,active,true +M4651,W2125,delta-finance,prod,active,false,A1056,Delta Global,mid_market,APAC,AU,U3552,victor.alvarez@deltaglobal.example,Victor Alvarez,FP&A Analyst,finance,active,true,editor,2024-12-13 04:36:51,2024-12-13 05:54:51,active,true +M4652,W2125,delta-finance,prod,active,false,A1056,Delta Global,mid_market,APAC,AU,U3553,helena.ng@deltaglobal.example,Helena Ng,Sales Analyst,sales,active,true,editor,2024-12-23 06:50:51,2024-12-23 09:07:51,active,true +M4653,W2126,harbor-core,prod,active,true,A1057,Harbor Partners,enterprise,APAC,NZ,U3554,lena.rossi@harborpartners.example,Lena Rossi,Workflow Analyst,operations,active,true,owner,2024-11-24 14:26:31,2024-11-24 15:12:31,active,true +M4654,W2129,harbor-marketing,prod,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3555,owen.sato@harborpartners.example,Owen Sato,Analytics Manager,analytics,active,true,editor,2024-10-21 08:29:31,2024-10-21 09:07:31,active,true +M4655,W2126,harbor-core,prod,active,true,A1057,Harbor Partners,enterprise,APAC,NZ,U3556,lina.khan@harborpartners.example,Lina Khan,Product Manager,product,active,true,editor,2024-10-22 10:24:31,2024-10-22 10:50:31,active,true +M4656,W2127,harbor-ops,sandbox,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3557,maya.shah@harborpartners.example,Maya Shah,FP&A Analyst,finance,active,true,viewer,2024-11-20 10:46:31,2024-11-20 12:32:31,active,true +M4657,W2126,harbor-core,prod,active,true,A1057,Harbor Partners,enterprise,APAC,NZ,U3558,owen.tan@harborpartners.example,Owen Tan,Demand Gen Manager,marketing,inactive,false,viewer,2024-11-05 10:35:31,2024-11-05 11:44:31,active,true +M4658,W2126,harbor-core,prod,active,true,A1057,Harbor Partners,enterprise,APAC,NZ,U3559,marta.petrova@harborpartners.example,Marta Petrova,Data Platform Manager,data,active,true,admin,2024-11-18 13:18:31,2024-11-18 14:30:31,active,true +M4659,W2127,harbor-ops,sandbox,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3560,hannah.fischer@harborpartners.example,Hannah Fischer,Data Engineer,data,active,true,editor,2024-12-01 15:00:31,2024-12-01 15:14:31,active,true +M4660,W2126,harbor-core,prod,active,true,A1057,Harbor Partners,enterprise,APAC,NZ,U3560,hannah.fischer@harborpartners.example,Hannah Fischer,Data Engineer,data,active,true,viewer,2024-12-01 15:14:31,2024-12-01 17:21:31,active,true +M4661,W2129,harbor-marketing,prod,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3561,olivia.meyer@harborpartners.example,Olivia Meyer,Data Engineer,data,active,true,admin,2024-11-13 13:24:31,2024-11-13 16:05:31,active,true +M4662,W2128,harbor-finance,prod,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3562,lina.morgan@harborpartners.example,Lina Morgan,Sales Analyst,sales,active,true,viewer,2024-11-20 10:26:31,2024-11-20 11:41:31,active,true +M4663,W2128,harbor-finance,prod,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3563,naomi.tan@harborpartners.example,Naomi Tan,Sales Analyst,sales,active,true,viewer,2024-11-12 09:37:31,2024-11-12 10:19:31,active,true +M4664,W2129,harbor-marketing,prod,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3563,naomi.tan@harborpartners.example,Naomi Tan,Sales Analyst,sales,active,true,viewer,2024-11-12 08:08:31,2024-11-12 10:51:31,active,true +M4665,W2127,harbor-ops,sandbox,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3564,naomi.lewis@harborpartners.example,Naomi Lewis,Data Engineer,data,active,true,admin,2024-11-27 06:55:31,2024-11-27 08:52:31,active,true +M4666,W2129,harbor-marketing,prod,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3564,naomi.lewis@harborpartners.example,Naomi Lewis,Data Engineer,data,active,true,viewer,2024-11-27 06:45:31,2024-11-27 08:11:31,active,true +M4667,W2127,harbor-ops,sandbox,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3565,ivy.lewis@harborpartners.example,Ivy Lewis,Operations Director,operations,active,true,admin,2024-11-27 13:26:31,2024-11-27 14:36:31,active,true +M4668,W2126,harbor-core,prod,active,true,A1057,Harbor Partners,enterprise,APAC,NZ,U3566,ben.ng@harborpartners.example,Ben Ng,FP&A Analyst,finance,active,true,viewer,2024-11-18 13:14:31,2024-11-18 15:37:31,active,true +M4669,W2130,evergreen-core,prod,active,true,A1058,Evergreen Analytics,smb,EMEA,UK,U3567,marta.patel@evergreenanalytics.example,Marta Patel,FP&A Analyst,finance,active,true,owner,2025-02-15 21:19:12,2025-02-15 21:35:12,active,true +M4670,W2130,evergreen-core,prod,active,true,A1058,Evergreen Analytics,smb,EMEA,UK,U3568,victor.hart@evergreenanalytics.example,Victor Hart,Analytics Manager,analytics,active,true,editor,2025-02-12 03:36:12,2025-02-12 05:51:12,active,true +M4671,W2131,evergreen-ops,prod,active,false,A1058,Evergreen Analytics,smb,EMEA,UK,U3568,victor.hart@evergreenanalytics.example,Victor Hart,Analytics Manager,analytics,active,true,viewer,2025-02-12 03:41:12,2025-02-12 04:46:12,active,true +M4672,W2131,evergreen-ops,prod,active,false,A1058,Evergreen Analytics,smb,EMEA,UK,U3569,lena.turner@evergreenanalytics.example,Lena Turner,Founder,executive,inactive,false,editor,2025-02-15 04:23:12,2025-02-15 06:14:12,removed,false +M4673,W2131,evergreen-ops,prod,active,false,A1058,Evergreen Analytics,smb,EMEA,UK,U3570,mateo.dubois@evergreenanalytics.example,Mateo Dubois,Product Manager,product,active,true,viewer,2025-02-10 22:33:12,2025-02-11 00:10:12,active,true +M4674,W2130,evergreen-core,prod,active,true,A1058,Evergreen Analytics,smb,EMEA,UK,U3570,mateo.dubois@evergreenanalytics.example,Mateo Dubois,Product Manager,product,active,true,editor,2025-02-10 23:08:12,2025-02-11 00:57:12,active,true +M4675,W2131,evergreen-ops,prod,active,false,A1058,Evergreen Analytics,smb,EMEA,UK,U3571,tomas.nash@evergreenanalytics.example,Tomas Nash,Insights Lead,analytics,active,true,viewer,2025-01-12 03:47:12,2025-01-12 04:33:12,active,true +M4676,W2131,evergreen-ops,prod,active,false,A1058,Evergreen Analytics,smb,EMEA,UK,U3572,leo.ward@evergreenanalytics.example,Leo Ward,Technical Program Manager,product,inactive,false,admin,2025-02-04 01:54:12,2025-02-04 04:30:12,removed,false +M4677,W2130,evergreen-core,prod,active,true,A1058,Evergreen Analytics,smb,EMEA,UK,U3573,aisha.desai@evergreenanalytics.example,Aisha Desai,Insights Lead,analytics,active,true,viewer,2025-02-14 01:11:12,2025-02-14 03:26:12,active,true +M4678,W2132,evergreen-core,prod,active,true,A1059,Evergreen Partners,mid_market,NA,CA,U3574,aisha.brooks@evergreenpartners.example,Aisha Brooks,Insights Lead,analytics,active,true,owner,2024-11-05 05:45:52,2024-11-05 08:18:52,active,true +M4679,W2133,evergreen-ops,sandbox,active,false,A1059,Evergreen Partners,mid_market,NA,CA,U3575,naomi.hart@evergreenpartners.example,Naomi Hart,Operations Manager,operations,active,true,viewer,2024-10-13 08:11:52,2024-10-13 08:24:52,active,true +M4680,W2132,evergreen-core,prod,active,true,A1059,Evergreen Partners,mid_market,NA,CA,U3576,nina.chen@evergreenpartners.example,Nina Chen,Workflow Analyst,operations,active,true,editor,2024-10-08 09:15:52,2024-10-08 09:39:52,active,true +M4681,W2132,evergreen-core,prod,active,true,A1059,Evergreen Partners,mid_market,NA,CA,U3577,kenji.lopez@evergreenpartners.example,Kenji Lopez,Demand Gen Manager,marketing,active,true,editor,2024-10-08 14:05:52,2024-10-08 16:30:52,active,true +M4682,W2133,evergreen-ops,sandbox,active,false,A1059,Evergreen Partners,mid_market,NA,CA,U3578,elena.shah@evergreenpartners.example,Elena Shah,FP&A Analyst,finance,active,true,editor,2024-10-23 12:08:52,2024-10-23 14:13:52,active,true +M4683,W2132,evergreen-core,prod,active,true,A1059,Evergreen Partners,mid_market,NA,CA,U3578,elena.shah@evergreenpartners.example,Elena Shah,FP&A Analyst,finance,active,true,editor,2024-10-23 12:01:52,2024-10-23 14:20:52,active,true +M4684,W2133,evergreen-ops,sandbox,active,false,A1059,Evergreen Partners,mid_market,NA,CA,U3579,aisha.reed@evergreenpartners.example,Aisha Reed,Founder,executive,active,true,editor,2024-11-07 10:48:52,2024-11-07 11:55:52,active,true +M4685,W2133,evergreen-ops,sandbox,active,false,A1059,Evergreen Partners,mid_market,NA,CA,U3580,hannah.rahman@evergreenpartners.example,Hannah Rahman,Technical Program Manager,product,active,true,editor,2024-10-27 10:39:52,2024-10-27 11:43:52,active,true +M4686,W2133,evergreen-ops,sandbox,active,false,A1059,Evergreen Partners,mid_market,NA,CA,U3581,isla.patel@evergreenpartners.example,Isla Patel,Sales Analyst,sales,active,true,editor,2024-10-27 09:57:52,2024-10-27 11:03:52,active,true +M4687,W2133,evergreen-ops,sandbox,active,false,A1059,Evergreen Partners,mid_market,NA,CA,U3582,maya.meyer@evergreenpartners.example,Maya Meyer,Technical Program Manager,product,inactive,false,viewer,2024-11-09 11:39:52,2024-11-09 12:04:52,removed,false +M4688,W2132,evergreen-core,prod,active,true,A1059,Evergreen Partners,mid_market,NA,CA,U3583,marcus.nash@evergreenpartners.example,Marcus Nash,CFO,executive,active,true,viewer,2024-11-05 10:08:52,2024-11-05 11:11:52,active,true +M4689,W2133,evergreen-ops,sandbox,active,false,A1059,Evergreen Partners,mid_market,NA,CA,U3584,marcus.lopez@evergreenpartners.example,Marcus Lopez,Sales Analyst,sales,active,true,viewer,2024-11-09 08:40:52,2024-11-09 09:17:52,active,true +M4690,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3585,mei.saeed@cedarfoods.example,Mei Saeed,COO,executive,active,true,owner,2024-11-26 00:41:46,2024-11-26 03:03:46,active,true +M4691,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3586,tomas.chen@cedarfoods.example,Tomas Chen,Revenue Operations Manager,sales,active,true,viewer,2024-12-08 18:25:46,2024-12-08 21:20:46,active,true +M4692,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3587,zoe.meyer@cedarfoods.example,Zoe Meyer,BI Analyst,analytics,active,true,viewer,2024-11-07 17:56:46,2024-11-07 19:21:46,active,true +M4693,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3588,ben.reed@cedarfoods.example,Ben Reed,Workflow Analyst,operations,active,true,admin,2024-11-12 19:21:46,2024-11-12 21:53:46,active,true +M4694,W2135,cedar-ops,sandbox,active,false,A1060,Cedar Foods,mid_market,NA,CA,U3589,lina.sato@cedarfoods.example,Lina Sato,Workflow Analyst,operations,active,true,viewer,2024-11-16 20:44:46,2024-11-16 21:35:46,active,true +M4695,W2135,cedar-ops,sandbox,active,false,A1060,Cedar Foods,mid_market,NA,CA,U3590,tomas.ward@cedarfoods.example,Tomas Ward,Analytics Manager,analytics,active,true,admin,2024-12-19 22:02:46,2024-12-20 00:28:46,active,true +M4696,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3590,tomas.ward@cedarfoods.example,Tomas Ward,Analytics Manager,analytics,active,true,viewer,2024-12-19 22:08:46,2024-12-20 00:13:46,active,true +M4697,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3591,tomas.dubois@cedarfoods.example,Tomas Dubois,Analytics Engineer,data,inactive,false,viewer,2024-11-29 23:36:46,2024-11-30 00:23:46,active,true +M4698,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3592,nina.sato@cedarfoods.example,Nina Sato,Product Manager,product,active,true,editor,2024-12-06 20:50:46,2024-12-06 22:43:46,active,true +M4699,W2135,cedar-ops,sandbox,active,false,A1060,Cedar Foods,mid_market,NA,CA,U3593,tara.hill@cedarfoods.example,Tara Hill,Controller,finance,active,true,admin,2024-12-02 21:09:46,2024-12-02 22:29:46,active,true +M4700,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3594,owen.lopez@cedarfoods.example,Owen Lopez,Operations Director,operations,active,true,editor,2024-11-09 18:56:46,2024-11-09 21:32:46,active,true +M4701,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3595,owen.romero@cedarfoods.example,Owen Romero,Product Manager,product,inactive,false,viewer,2024-12-16 17:42:46,2024-12-16 19:31:46,removed,false +M4702,W2135,cedar-ops,sandbox,active,false,A1060,Cedar Foods,mid_market,NA,CA,U3595,owen.romero@cedarfoods.example,Owen Romero,Product Manager,product,inactive,false,editor,2024-12-16 17:05:46,2024-12-16 19:01:46,removed,false +M4703,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3596,peter.silva@cedarfoods.example,Peter Silva,Revenue Operations Manager,sales,active,true,viewer,2024-12-08 00:24:46,2024-12-08 02:39:46,active,true +M4704,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3597,tomas.nash@cedarfoods.example,Tomas Nash,Marketing Operations Lead,marketing,active,true,admin,2024-11-30 00:13:46,2024-11-30 03:04:46,active,true +M4705,W2135,cedar-ops,sandbox,active,false,A1060,Cedar Foods,mid_market,NA,CA,U3597,tomas.nash@cedarfoods.example,Tomas Nash,Marketing Operations Lead,marketing,active,true,editor,2024-11-30 00:41:46,2024-11-30 02:23:46,active,true +M4706,W2136,atlas-core,prod,active,true,A1061,Atlas Capital,enterprise,EMEA,FR,U3598,samir.singh@atlascapital.example,Samir Singh,Revenue Operations Manager,sales,active,true,owner,2025-03-25 00:54:24,2025-03-25 01:44:24,active,true +M4707,W2138,atlas-finance,prod,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3599,elena.ward@atlascapital.example,Elena Ward,Insights Lead,analytics,active,true,viewer,2025-02-25 01:12:24,2025-02-25 01:41:24,active,true +M4708,W2136,atlas-core,prod,active,true,A1061,Atlas Capital,enterprise,EMEA,FR,U3600,mei.singh@atlascapital.example,Mei Singh,Revenue Operations Manager,sales,active,true,editor,2025-03-25 04:38:24,2025-03-25 06:55:24,active,true +M4709,W2138,atlas-finance,prod,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3601,owen.tan@atlascapital.example,Owen Tan,Finance Manager,finance,active,true,editor,2025-02-24 23:56:24,2025-02-25 01:14:24,active,true +M4710,W2137,atlas-ops,sandbox,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3602,victor.rossi@atlascapital.example,Victor Rossi,Revenue Operations Manager,sales,active,true,editor,2025-03-19 04:32:24,2025-03-19 04:47:24,active,true +M4711,W2138,atlas-finance,prod,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3603,owen.romero@atlascapital.example,Owen Romero,Analytics Engineer,data,active,true,viewer,2025-02-16 04:55:24,2025-02-16 07:12:24,active,true +M4712,W2137,atlas-ops,sandbox,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3604,noah.grant@atlascapital.example,Noah Grant,Demand Gen Manager,marketing,active,true,editor,2025-03-28 08:38:24,2025-03-28 10:11:24,active,true +M4713,W2137,atlas-ops,sandbox,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3605,zoe.keller@atlascapital.example,Zoe Keller,Data Platform Manager,data,active,true,admin,2025-02-22 06:48:24,2025-02-22 08:45:24,active,true +M4714,W2136,atlas-core,prod,active,true,A1061,Atlas Capital,enterprise,EMEA,FR,U3606,mila.desai@atlascapital.example,Mila Desai,Marketing Operations Lead,marketing,active,true,viewer,2025-02-13 00:53:24,2025-02-13 02:04:24,active,true +M4715,W2138,atlas-finance,prod,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3607,marcus.ward@atlascapital.example,Marcus Ward,Controller,finance,active,true,viewer,2025-02-17 00:25:24,2025-02-17 01:41:24,active,true +M4716,W2136,atlas-core,prod,active,true,A1061,Atlas Capital,enterprise,EMEA,FR,U3608,mila.patel@atlascapital.example,Mila Patel,Operations Director,operations,active,true,admin,2025-03-12 04:45:24,2025-03-12 05:33:24,active,true +M4717,W2136,atlas-core,prod,active,true,A1061,Atlas Capital,enterprise,EMEA,FR,U3609,noah.khan@atlascapital.example,Noah Khan,Workflow Analyst,operations,active,true,editor,2025-03-21 08:50:24,2025-03-21 11:00:24,active,true +M4718,W2137,atlas-ops,sandbox,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3609,noah.khan@atlascapital.example,Noah Khan,Workflow Analyst,operations,active,true,editor,2025-03-21 07:04:24,2025-03-21 07:15:24,active,true +M4719,W2136,atlas-core,prod,active,true,A1061,Atlas Capital,enterprise,EMEA,FR,U3610,daniel.desai@atlascapital.example,Daniel Desai,FP&A Analyst,finance,active,true,editor,2025-02-17 00:56:24,2025-02-17 02:54:24,active,true +M4720,W2138,atlas-finance,prod,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3611,kai.rahman@atlascapital.example,Kai Rahman,COO,executive,provisioned,false,admin,2025-03-13 01:53:24,,pending,false +M4721,W2136,atlas-core,prod,active,true,A1061,Atlas Capital,enterprise,EMEA,FR,U3612,marcus.kim@atlascapital.example,Marcus Kim,Finance Manager,finance,active,true,viewer,2025-03-16 01:35:24,2025-03-16 03:33:24,active,true +M4722,W2137,atlas-ops,sandbox,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3613,elena.meyer@atlascapital.example,Elena Meyer,Sales Analyst,sales,active,true,editor,2025-03-29 02:15:24,2025-03-29 05:11:24,active,true +M4723,W2136,atlas-core,prod,active,true,A1061,Atlas Capital,enterprise,EMEA,FR,U3613,elena.meyer@atlascapital.example,Elena Meyer,Sales Analyst,sales,active,true,viewer,2025-03-29 02:36:24,2025-03-29 04:11:24,active,true +M4724,W2138,atlas-finance,prod,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3614,evan.saeed@atlascapital.example,Evan Saeed,Technical Program Manager,product,active,true,viewer,2025-02-28 02:09:24,2025-02-28 02:54:24,active,true +M4725,W2139,delta-core,prod,active,true,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3615,tara.petrova@deltamanufacturing.example,Tara Petrova,Analytics Manager,analytics,active,true,owner,2024-12-05 14:44:25,2024-12-05 16:14:25,active,true +M4726,W2140,delta-ops,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3616,olivia.saeed@deltamanufacturing.example,Olivia Saeed,Workflow Analyst,operations,active,true,editor,2024-12-02 22:22:25,2024-12-02 22:45:25,active,true +M4727,W2141,delta-finance,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3617,daniel.dubois@deltamanufacturing.example,Daniel Dubois,Data Engineer,data,active,true,viewer,2024-11-16 17:44:25,2024-11-16 19:39:25,active,true +M4728,W2139,delta-core,prod,active,true,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3618,tara.sato@deltamanufacturing.example,Tara Sato,Controller,finance,active,true,viewer,2024-11-11 15:08:25,2024-11-11 16:01:25,active,true +M4729,W2141,delta-finance,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3619,daniel.ng@deltamanufacturing.example,Daniel Ng,Analytics Manager,analytics,active,true,viewer,2024-12-18 22:44:25,2024-12-19 01:31:25,active,true +M4730,W2141,delta-finance,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3620,hannah.nash@deltamanufacturing.example,Hannah Nash,Finance Manager,finance,active,true,admin,2024-11-10 20:57:25,2024-11-10 21:58:25,active,true +M4731,W2140,delta-ops,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3620,hannah.nash@deltamanufacturing.example,Hannah Nash,Finance Manager,finance,active,true,editor,2024-11-10 21:22:25,2024-11-10 22:17:25,active,true +M4732,W2140,delta-ops,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3621,victor.park@deltamanufacturing.example,Victor Park,CFO,executive,active,true,admin,2024-11-21 19:15:25,2024-11-21 21:27:25,active,true +M4733,W2140,delta-ops,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3622,alma.patel@deltamanufacturing.example,Alma Patel,Operations Director,operations,active,true,admin,2024-12-05 18:37:25,2024-12-05 20:54:25,active,true +M4734,W2141,delta-finance,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3623,tomas.turner@deltamanufacturing.example,Tomas Turner,Product Manager,product,active,true,viewer,2024-12-06 16:46:25,2024-12-06 19:13:25,active,true +M4735,W2139,delta-core,prod,active,true,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3623,tomas.turner@deltamanufacturing.example,Tomas Turner,Product Manager,product,active,true,viewer,2024-12-06 16:30:25,2024-12-06 17:28:25,active,true +M4736,W2139,delta-core,prod,active,true,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3624,ava.sato@deltamanufacturing.example,Ava Sato,Sales Analyst,sales,active,true,editor,2024-11-17 22:00:25,2024-11-18 00:46:25,active,true +M4737,W2141,delta-finance,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3625,marta.dubois@deltamanufacturing.example,Marta Dubois,Demand Gen Manager,marketing,active,true,editor,2024-11-17 14:41:25,2024-11-17 17:34:25,active,true +M4738,W2139,delta-core,prod,active,true,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3626,evan.lewis@deltamanufacturing.example,Evan Lewis,Operations Manager,operations,active,true,viewer,2024-12-08 19:56:25,2024-12-08 21:15:25,active,true +M4739,W2141,delta-finance,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3627,zoe.meyer@deltamanufacturing.example,Zoe Meyer,Controller,finance,active,true,editor,2024-12-18 16:58:25,2024-12-18 19:36:25,active,true +M4740,W2140,delta-ops,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3628,zoe.petrova@deltamanufacturing.example,Zoe Petrova,Sales Analyst,sales,active,true,editor,2024-11-22 22:20:25,2024-11-22 22:53:25,active,true +M4741,W2142,maple-core,prod,active,true,A1063,Maple Global,smb,NA,CA,U3629,ivy.alvarez@mapleglobal.example,Ivy Alvarez,Demand Gen Manager,marketing,inactive,false,owner,2024-12-11 13:40:06,2024-12-11 14:58:06,removed,false +M4742,W2142,maple-core,prod,active,true,A1063,Maple Global,smb,NA,CA,U3630,lena.chen@mapleglobal.example,Lena Chen,Revenue Operations Manager,sales,active,true,editor,2024-11-16 18:08:06,2024-11-16 20:01:06,active,true +M4743,W2142,maple-core,prod,active,true,A1063,Maple Global,smb,NA,CA,U3631,priya.ng@mapleglobal.example,Priya Ng,Sales Analyst,sales,active,true,admin,2024-12-28 12:52:06,2024-12-28 15:46:06,active,true +M4744,W2142,maple-core,prod,active,true,A1063,Maple Global,smb,NA,CA,U3632,elena.chen@mapleglobal.example,Elena Chen,Revenue Operations Manager,sales,active,true,editor,2024-11-22 16:42:06,2024-11-22 17:19:06,active,true +M4745,W2143,atlas-core,prod,active,true,A1064,Atlas Health,smb,NA,US,U3633,luis.turner@atlashealth.example,Luis Turner,BI Analyst,analytics,active,true,owner,2024-10-10 03:58:22,2024-10-10 06:06:22,active,true +M4746,W2143,atlas-core,prod,active,true,A1064,Atlas Health,smb,NA,US,U3634,helena.romero@atlashealth.example,Helena Romero,Technical Program Manager,product,active,true,viewer,2024-09-03 03:10:22,2024-09-03 04:15:22,active,true +M4747,W2143,atlas-core,prod,active,true,A1064,Atlas Health,smb,NA,US,U3635,ava.chen@atlashealth.example,Ava Chen,Operations Manager,operations,active,true,editor,2024-10-09 02:33:22,2024-10-09 03:33:22,active,true +M4748,W2143,atlas-core,prod,active,true,A1064,Atlas Health,smb,NA,US,U3636,ivy.dubois@atlashealth.example,Ivy Dubois,Marketing Operations Lead,marketing,active,true,admin,2024-10-04 01:59:22,2024-10-04 03:26:22,active,true +M4749,W2144,vertex-core,prod,active,true,A1065,Vertex Partners,mid_market,NA,US,U3637,derek.brooks@vertexpartners.example,Derek Brooks,Operations Manager,operations,active,true,owner,2025-01-22 12:36:13,2025-01-22 15:33:13,active,true +M4750,W2145,vertex-ops,prod,active,false,A1065,Vertex Partners,mid_market,NA,US,U3638,derek.sato@vertexpartners.example,Derek Sato,Workflow Analyst,operations,active,true,editor,2025-02-13 08:15:13,2025-02-13 10:02:13,active,true +M4751,W2145,vertex-ops,prod,active,false,A1065,Vertex Partners,mid_market,NA,US,U3639,victor.nash@vertexpartners.example,Victor Nash,Workflow Analyst,operations,active,true,viewer,2025-01-29 07:36:13,2025-01-29 08:37:13,active,true +M4752,W2145,vertex-ops,prod,active,false,A1065,Vertex Partners,mid_market,NA,US,U3640,zoe.khan@vertexpartners.example,Zoe Khan,VP Data,executive,active,true,viewer,2025-01-31 11:17:13,2025-01-31 12:18:13,active,true +M4753,W2144,vertex-core,prod,active,true,A1065,Vertex Partners,mid_market,NA,US,U3640,zoe.khan@vertexpartners.example,Zoe Khan,VP Data,executive,active,true,viewer,2025-01-31 10:56:13,2025-01-31 11:43:13,active,true +M4754,W2144,vertex-core,prod,active,true,A1065,Vertex Partners,mid_market,NA,US,U3641,derek.cole@vertexpartners.example,Derek Cole,Technical Program Manager,product,active,true,viewer,2025-01-31 13:27:13,2025-01-31 14:05:13,active,true +M4755,W2144,vertex-core,prod,active,true,A1065,Vertex Partners,mid_market,NA,US,U3642,isla.nash@vertexpartners.example,Isla Nash,Analytics Manager,analytics,active,true,viewer,2025-02-07 10:58:13,2025-02-07 12:28:13,active,true +M4756,W2145,vertex-ops,prod,active,false,A1065,Vertex Partners,mid_market,NA,US,U3642,isla.nash@vertexpartners.example,Isla Nash,Analytics Manager,analytics,active,true,viewer,2025-02-07 09:13:13,2025-02-07 10:48:13,active,true +M4757,W2144,vertex-core,prod,active,true,A1065,Vertex Partners,mid_market,NA,US,U3643,tomas.tan@vertexpartners.example,Tomas Tan,Product Manager,product,inactive,false,editor,2025-01-04 11:44:13,2025-01-04 12:29:13,active,true +M4758,W2145,vertex-ops,prod,active,false,A1065,Vertex Partners,mid_market,NA,US,U3644,marcus.rahman@vertexpartners.example,Marcus Rahman,BI Analyst,analytics,active,true,viewer,2025-02-12 06:27:13,2025-02-12 07:13:13,active,true +M4759,W2145,vertex-ops,prod,active,false,A1065,Vertex Partners,mid_market,NA,US,U3645,mateo.romero@vertexpartners.example,Mateo Romero,Analytics Manager,analytics,inactive,false,editor,2025-02-11 14:08:13,2025-02-11 14:22:13,active,true +M4760,W2144,vertex-core,prod,active,true,A1065,Vertex Partners,mid_market,NA,US,U3645,mateo.romero@vertexpartners.example,Mateo Romero,Analytics Manager,analytics,inactive,false,editor,2025-02-11 12:33:13,2025-02-11 14:52:13,removed,false +M4761,W2145,vertex-ops,prod,active,false,A1065,Vertex Partners,mid_market,NA,US,U3646,owen.romero@vertexpartners.example,Owen Romero,BI Analyst,analytics,active,true,admin,2025-01-03 06:06:13,2025-01-03 07:09:13,active,true +M4762,W2144,vertex-core,prod,active,true,A1065,Vertex Partners,mid_market,NA,US,U3647,mateo.silva@vertexpartners.example,Mateo Silva,Sales Analyst,sales,active,true,admin,2025-02-09 09:25:13,2025-02-09 11:06:13,active,true +M4763,W2146,pacific-core,prod,active,true,A1066,Pacific Capital,mid_market,APAC,NZ,U3648,mateo.park@pacificcapital.example,Mateo Park,Technical Program Manager,product,inactive,false,owner,2025-02-15 18:08:41,2025-02-15 19:55:41,removed,false +M4764,W2147,pacific-ops,prod,active,false,A1066,Pacific Capital,mid_market,APAC,NZ,U3649,nina.patel@pacificcapital.example,Nina Patel,Technical Program Manager,product,active,true,viewer,2025-01-28 17:29:41,2025-01-28 17:37:41,active,true +M4765,W2146,pacific-core,prod,active,true,A1066,Pacific Capital,mid_market,APAC,NZ,U3649,nina.patel@pacificcapital.example,Nina Patel,Technical Program Manager,product,active,true,viewer,2025-01-28 15:56:41,2025-01-28 18:19:41,active,true +M4766,W2146,pacific-core,prod,active,true,A1066,Pacific Capital,mid_market,APAC,NZ,U3650,ava.rahman@pacificcapital.example,Ava Rahman,Controller,finance,active,true,viewer,2025-02-13 21:07:41,2025-02-13 23:47:41,active,true +M4767,W2147,pacific-ops,prod,active,false,A1066,Pacific Capital,mid_market,APAC,NZ,U3651,peter.rahman@pacificcapital.example,Peter Rahman,Marketing Operations Lead,marketing,active,true,viewer,2025-01-12 20:56:41,2025-01-12 21:06:41,active,true +M4768,W2147,pacific-ops,prod,active,false,A1066,Pacific Capital,mid_market,APAC,NZ,U3652,nina.fischer@pacificcapital.example,Nina Fischer,Finance Manager,finance,active,true,editor,2025-02-14 16:08:41,2025-02-14 18:40:41,active,true +M4769,W2146,pacific-core,prod,active,true,A1066,Pacific Capital,mid_market,APAC,NZ,U3652,nina.fischer@pacificcapital.example,Nina Fischer,Finance Manager,finance,active,true,editor,2025-02-14 16:31:41,2025-02-14 18:12:41,active,true +M4770,W2147,pacific-ops,prod,active,false,A1066,Pacific Capital,mid_market,APAC,NZ,U3653,peter.fischer@pacificcapital.example,Peter Fischer,Product Manager,product,active,true,admin,2025-02-13 20:20:41,2025-02-13 21:36:41,active,true +M4771,W2147,pacific-ops,prod,active,false,A1066,Pacific Capital,mid_market,APAC,NZ,U3654,noah.rossi@pacificcapital.example,Noah Rossi,FP&A Analyst,finance,active,true,editor,2025-01-30 18:27:41,2025-01-30 19:34:41,active,true +M4772,W2147,pacific-ops,prod,active,false,A1066,Pacific Capital,mid_market,APAC,NZ,U3655,isla.hart@pacificcapital.example,Isla Hart,VP Data,executive,inactive,false,admin,2025-02-09 20:41:41,2025-02-09 22:21:41,removed,false +M4773,W2146,pacific-core,prod,active,true,A1066,Pacific Capital,mid_market,APAC,NZ,U3656,peter.park@pacificcapital.example,Peter Park,Founder,executive,active,true,editor,2025-02-09 17:28:41,2025-02-09 19:14:41,active,true +M4774,W2146,pacific-core,prod,active,true,A1066,Pacific Capital,mid_market,APAC,NZ,U3657,olivia.singh@pacificcapital.example,Olivia Singh,Analytics Engineer,data,active,true,editor,2025-02-18 20:18:41,2025-02-18 23:07:41,active,true +M4775,W2147,pacific-ops,prod,active,false,A1066,Pacific Capital,mid_market,APAC,NZ,U3658,alma.brooks@pacificcapital.example,Alma Brooks,Marketing Operations Lead,marketing,active,true,editor,2025-01-27 20:21:41,2025-01-27 20:50:41,active,true +M4776,W2146,pacific-core,prod,active,true,A1066,Pacific Capital,mid_market,APAC,NZ,U3659,owen.petrova@pacificcapital.example,Owen Petrova,Revenue Operations Manager,sales,active,true,editor,2025-02-10 21:16:41,2025-02-10 22:24:41,active,true +M4777,W2148,maple-core,prod,active,true,A1067,Maple Energy,mid_market,NA,CA,U3660,derek.morgan@mapleenergy.example,Derek Morgan,Controller,finance,active,true,owner,2025-01-26 05:12:42,2025-01-26 05:53:42,active,true +M4778,W2149,maple-ops,sandbox,active,false,A1067,Maple Energy,mid_market,NA,CA,U3661,claire.cole@mapleenergy.example,Claire Cole,VP Data,executive,active,true,viewer,2025-01-27 06:50:42,2025-01-27 09:20:42,active,true +M4779,W2148,maple-core,prod,active,true,A1067,Maple Energy,mid_market,NA,CA,U3662,owen.price@mapleenergy.example,Owen Price,Technical Program Manager,product,active,true,admin,2025-01-09 05:30:42,2025-01-09 06:54:42,active,true +M4780,W2149,maple-ops,sandbox,active,false,A1067,Maple Energy,mid_market,NA,CA,U3663,naomi.petrova@mapleenergy.example,Naomi Petrova,Finance Manager,finance,inactive,false,viewer,2025-01-18 05:31:42,2025-01-18 05:37:42,removed,false +M4781,W2148,maple-core,prod,active,true,A1067,Maple Energy,mid_market,NA,CA,U3663,naomi.petrova@mapleenergy.example,Naomi Petrova,Finance Manager,finance,inactive,false,editor,2025-01-18 06:56:42,2025-01-18 09:24:42,active,true +M4782,W2149,maple-ops,sandbox,active,false,A1067,Maple Energy,mid_market,NA,CA,U3664,tomas.kim@mapleenergy.example,Tomas Kim,Operations Director,operations,active,true,viewer,2025-01-25 03:23:42,2025-01-25 05:31:42,active,true +M4783,W2148,maple-core,prod,active,true,A1067,Maple Energy,mid_market,NA,CA,U3665,ava.lewis@mapleenergy.example,Ava Lewis,Marketing Operations Lead,marketing,active,true,viewer,2025-01-23 04:13:42,2025-01-23 05:54:42,active,true +M4784,W2148,maple-core,prod,active,true,A1067,Maple Energy,mid_market,NA,CA,U3666,jonas.singh@mapleenergy.example,Jonas Singh,Technical Program Manager,product,active,true,viewer,2025-01-13 00:01:42,2025-01-13 00:56:42,active,true +M4785,W2149,maple-ops,sandbox,active,false,A1067,Maple Energy,mid_market,NA,CA,U3666,jonas.singh@mapleenergy.example,Jonas Singh,Technical Program Manager,product,active,true,viewer,2025-01-12 23:26:42,2025-01-13 00:00:42,active,true +M4786,W2150,helio-core,prod,active,true,A1068,Helio Health,enterprise,APAC,SG,U3667,jonas.turner@heliohealth.example,Jonas Turner,Workflow Analyst,operations,active,true,owner,2024-09-22 14:41:33,2024-09-22 16:34:33,active,true +M4787,W2153,helio-marketing,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3668,victor.romero@heliohealth.example,Victor Romero,Operations Manager,operations,active,true,admin,2024-09-11 12:32:33,2024-09-11 13:12:33,active,true +M4788,W2153,helio-marketing,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3669,helena.turner@heliohealth.example,Helena Turner,Sales Analyst,sales,inactive,false,editor,2024-09-20 18:39:33,2024-09-20 19:59:33,removed,false +M4789,W2152,helio-finance,sandbox,active,false,A1068,Helio Health,enterprise,APAC,SG,U3670,sofia.romero@heliohealth.example,Sofia Romero,BI Analyst,analytics,active,true,editor,2024-09-17 11:47:33,2024-09-17 14:16:33,active,true +M4790,W2151,helio-ops,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3671,naomi.cole@heliohealth.example,Naomi Cole,Finance Manager,finance,active,true,admin,2024-08-28 17:08:33,2024-08-28 19:50:33,active,true +M4791,W2152,helio-finance,sandbox,active,false,A1068,Helio Health,enterprise,APAC,SG,U3672,hannah.meyer@heliohealth.example,Hannah Meyer,Insights Lead,analytics,active,true,editor,2024-09-20 12:35:33,2024-09-20 13:33:33,active,true +M4792,W2152,helio-finance,sandbox,active,false,A1068,Helio Health,enterprise,APAC,SG,U3673,kenji.hill@heliohealth.example,Kenji Hill,Controller,finance,active,true,viewer,2024-08-31 15:45:33,2024-08-31 16:24:33,active,true +M4793,W2151,helio-ops,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3674,jonas.dubois@heliohealth.example,Jonas Dubois,Founder,executive,active,true,editor,2024-09-14 17:33:33,2024-09-14 18:59:33,active,true +M4794,W2153,helio-marketing,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3675,naomi.saeed@heliohealth.example,Naomi Saeed,Analytics Manager,analytics,active,true,admin,2024-09-11 18:34:33,2024-09-11 19:58:33,active,true +M4795,W2151,helio-ops,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3676,marcus.reed@heliohealth.example,Marcus Reed,Controller,finance,active,true,editor,2024-08-25 14:52:33,2024-08-25 15:21:33,active,true +M4796,W2152,helio-finance,sandbox,active,false,A1068,Helio Health,enterprise,APAC,SG,U3676,marcus.reed@heliohealth.example,Marcus Reed,Controller,finance,active,true,editor,2024-08-25 15:27:33,2024-08-25 18:11:33,active,true +M4797,W2151,helio-ops,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3677,mila.saeed@heliohealth.example,Mila Saeed,Operations Manager,operations,active,true,admin,2024-09-09 11:41:33,2024-09-09 12:43:33,active,true +M4798,W2152,helio-finance,sandbox,active,false,A1068,Helio Health,enterprise,APAC,SG,U3678,luis.turner@heliohealth.example,Luis Turner,VP Data,executive,active,true,viewer,2024-09-24 16:59:33,2024-09-24 18:16:33,active,true +M4799,W2153,helio-marketing,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3679,ben.saeed@heliohealth.example,Ben Saeed,COO,executive,active,true,editor,2024-09-25 15:15:33,2024-09-25 17:03:33,active,true +M4800,W2152,helio-finance,sandbox,active,false,A1068,Helio Health,enterprise,APAC,SG,U3680,olivia.patel@heliohealth.example,Olivia Patel,Controller,finance,active,true,editor,2024-08-20 15:09:33,2024-08-20 15:33:33,active,true +M4801,W2151,helio-ops,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3681,naomi.petrova@heliohealth.example,Naomi Petrova,Revenue Operations Manager,sales,active,true,admin,2024-08-15 12:01:33,2024-08-15 14:30:33,active,true +M4802,W2150,helio-core,prod,active,true,A1068,Helio Health,enterprise,APAC,SG,U3681,naomi.petrova@heliohealth.example,Naomi Petrova,Revenue Operations Manager,sales,active,true,editor,2024-08-15 12:21:33,2024-08-15 12:58:33,active,true +M4803,W2152,helio-finance,sandbox,active,false,A1068,Helio Health,enterprise,APAC,SG,U3682,ivy.desai@heliohealth.example,Ivy Desai,Marketing Operations Lead,marketing,active,true,editor,2024-08-13 19:17:33,2024-08-13 20:32:33,active,true +M4804,W2154,bright-core,prod,active,true,A1069,Bright Foods,enterprise,NA,CA,U3683,nina.desai@brightfoods.example,Nina Desai,Operations Manager,operations,active,true,owner,2025-01-17 01:23:52,2025-01-17 04:05:52,active,true +M4805,W2156,bright-finance,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3684,olivia.reed@brightfoods.example,Olivia Reed,Marketing Operations Lead,marketing,active,true,viewer,2025-01-17 06:26:52,2025-01-17 07:30:52,active,true +M4806,W2154,bright-core,prod,active,true,A1069,Bright Foods,enterprise,NA,CA,U3684,olivia.reed@brightfoods.example,Olivia Reed,Marketing Operations Lead,marketing,active,true,viewer,2025-01-17 07:39:52,2025-01-17 08:07:52,active,true +M4807,W2154,bright-core,prod,active,true,A1069,Bright Foods,enterprise,NA,CA,U3685,evan.cole@brightfoods.example,Evan Cole,COO,executive,active,true,admin,2025-01-07 05:25:52,2025-01-07 05:49:52,active,true +M4808,W2154,bright-core,prod,active,true,A1069,Bright Foods,enterprise,NA,CA,U3686,marcus.chen@brightfoods.example,Marcus Chen,Marketing Operations Lead,marketing,inactive,false,admin,2024-12-24 04:12:52,2024-12-24 07:07:52,removed,false +M4809,W2155,bright-ops,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3687,marcus.reed@brightfoods.example,Marcus Reed,Technical Program Manager,product,active,true,editor,2025-01-19 04:18:52,2025-01-19 06:01:52,active,true +M4810,W2156,bright-finance,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3687,marcus.reed@brightfoods.example,Marcus Reed,Technical Program Manager,product,active,true,editor,2025-01-19 03:36:52,2025-01-19 05:42:52,active,true +M4811,W2155,bright-ops,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3688,kenji.cole@brightfoods.example,Kenji Cole,Sales Analyst,sales,active,true,viewer,2024-12-19 10:56:52,2024-12-19 13:35:52,active,true +M4812,W2154,bright-core,prod,active,true,A1069,Bright Foods,enterprise,NA,CA,U3689,alma.grant@brightfoods.example,Alma Grant,Product Manager,product,active,true,viewer,2025-01-08 03:20:52,2025-01-08 04:36:52,active,true +M4813,W2156,bright-finance,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3690,claire.desai@brightfoods.example,Claire Desai,Operations Manager,operations,active,true,admin,2025-01-06 03:10:52,2025-01-06 05:20:52,active,true +M4814,W2156,bright-finance,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3691,ben.singh@brightfoods.example,Ben Singh,Product Manager,product,active,true,viewer,2025-01-10 07:55:52,2025-01-10 09:51:52,active,true +M4815,W2156,bright-finance,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3692,mei.keller@brightfoods.example,Mei Keller,Technical Program Manager,product,inactive,false,editor,2024-12-17 01:17:52,2024-12-17 03:21:52,removed,false +M4816,W2155,bright-ops,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3692,mei.keller@brightfoods.example,Mei Keller,Technical Program Manager,product,inactive,false,viewer,2024-12-17 02:22:52,2024-12-17 04:15:52,removed,false +M4817,W2155,bright-ops,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3693,noah.park@brightfoods.example,Noah Park,Operations Director,operations,active,true,editor,2024-12-15 09:05:52,2024-12-15 10:00:52,active,true +M4818,W2155,bright-ops,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3694,marcus.rahman@brightfoods.example,Marcus Rahman,Operations Manager,operations,active,true,editor,2024-12-18 07:24:52,2024-12-18 07:53:52,active,true +M4819,W2156,bright-finance,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3694,marcus.rahman@brightfoods.example,Marcus Rahman,Operations Manager,operations,active,true,editor,2024-12-18 06:10:52,2024-12-18 07:49:52,active,true +M4820,W2156,bright-finance,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3695,noah.grant@brightfoods.example,Noah Grant,Demand Gen Manager,marketing,active,true,viewer,2025-01-06 07:02:52,2025-01-06 09:52:52,active,true +M4821,W2157,helio-core,prod,active,true,A1070,Helio Manufacturing,smb,APAC,NZ,U3696,helena.dubois@heliomanufacturing.example,Helena Dubois,Sales Analyst,sales,inactive,false,owner,2024-12-07 04:43:27,2024-12-07 07:32:27,removed,false +M4822,W2157,helio-core,prod,active,true,A1070,Helio Manufacturing,smb,APAC,NZ,U3697,ava.hill@heliomanufacturing.example,Ava Hill,Operations Manager,operations,active,true,viewer,2024-12-08 04:48:27,2024-12-08 05:57:27,active,true +M4823,W2157,helio-core,prod,active,true,A1070,Helio Manufacturing,smb,APAC,NZ,U3698,luis.hill@heliomanufacturing.example,Luis Hill,Data Engineer,data,inactive,false,viewer,2024-12-07 22:05:27,2024-12-07 22:17:27,active,true +M4824,W2157,helio-core,prod,active,true,A1070,Helio Manufacturing,smb,APAC,NZ,U3699,alma.shah@heliomanufacturing.example,Alma Shah,Insights Lead,analytics,active,true,viewer,2024-12-15 22:58:27,2024-12-16 00:59:27,active,true +M4825,W2157,helio-core,prod,active,true,A1070,Helio Manufacturing,smb,APAC,NZ,U3700,mateo.rossi@heliomanufacturing.example,Mateo Rossi,Product Manager,product,active,true,admin,2024-11-25 04:43:27,2024-11-25 07:33:27,active,true +M4826,W2157,helio-core,prod,active,true,A1070,Helio Manufacturing,smb,APAC,NZ,U3701,isla.silva@heliomanufacturing.example,Isla Silva,Data Engineer,data,active,true,admin,2024-12-04 00:15:27,2024-12-04 02:56:27,active,true +M4827,W2157,helio-core,prod,active,true,A1070,Helio Manufacturing,smb,APAC,NZ,U3702,lina.park@heliomanufacturing.example,Lina Park,Product Manager,product,active,true,viewer,2024-11-09 00:56:27,2024-11-09 01:34:27,active,true +M4828,W2157,helio-core,prod,active,true,A1070,Helio Manufacturing,smb,APAC,NZ,U3703,jonas.rahman@heliomanufacturing.example,Jonas Rahman,Technical Program Manager,product,active,true,editor,2024-11-15 01:30:27,2024-11-15 02:05:27,active,true +M4829,W2158,evergreen-core,prod,active,true,A1071,Evergreen Group,mid_market,NA,CA,U3704,olivia.rossi@evergreengroup.example,Olivia Rossi,Technical Program Manager,product,active,true,owner,2024-10-01 17:25:10,2024-10-01 19:23:10,active,true +M4830,W2160,evergreen-finance,sandbox,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3705,nina.rossi@evergreengroup.example,Nina Rossi,Sales Analyst,sales,active,true,viewer,2024-09-14 18:43:10,2024-09-14 21:07:10,active,true +M4831,W2159,evergreen-ops,prod,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3706,priya.lewis@evergreengroup.example,Priya Lewis,VP Data,executive,active,true,viewer,2024-10-03 14:50:10,2024-10-03 17:47:10,active,true +M4832,W2158,evergreen-core,prod,active,true,A1071,Evergreen Group,mid_market,NA,CA,U3706,priya.lewis@evergreengroup.example,Priya Lewis,VP Data,executive,active,true,viewer,2024-10-03 13:44:10,2024-10-03 15:10:10,active,true +M4833,W2160,evergreen-finance,sandbox,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3707,samir.kim@evergreengroup.example,Samir Kim,Operations Manager,operations,active,true,viewer,2024-09-18 20:31:10,2024-09-18 23:26:10,active,true +M4834,W2159,evergreen-ops,prod,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3708,victor.alvarez@evergreengroup.example,Victor Alvarez,Demand Gen Manager,marketing,provisioned,false,editor,2024-10-03 16:25:10,,pending,false +M4835,W2158,evergreen-core,prod,active,true,A1071,Evergreen Group,mid_market,NA,CA,U3709,jonas.grant@evergreengroup.example,Jonas Grant,COO,executive,active,true,editor,2024-08-28 23:14:10,2024-08-29 00:27:10,active,true +M4836,W2158,evergreen-core,prod,active,true,A1071,Evergreen Group,mid_market,NA,CA,U3710,ivy.hart@evergreengroup.example,Ivy Hart,Sales Analyst,sales,active,true,admin,2024-08-28 21:04:10,2024-08-28 23:18:10,active,true +M4837,W2159,evergreen-ops,prod,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3710,ivy.hart@evergreengroup.example,Ivy Hart,Sales Analyst,sales,active,true,viewer,2024-08-28 21:40:10,2024-08-28 22:29:10,active,true +M4838,W2159,evergreen-ops,prod,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3711,lina.kim@evergreengroup.example,Lina Kim,Founder,executive,active,true,editor,2024-09-27 15:49:10,2024-09-27 17:53:10,active,true +M4839,W2160,evergreen-finance,sandbox,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3712,samir.rossi@evergreengroup.example,Samir Rossi,COO,executive,active,true,viewer,2024-10-05 19:21:10,2024-10-05 19:55:10,active,true +M4840,W2159,evergreen-ops,prod,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3712,samir.rossi@evergreengroup.example,Samir Rossi,COO,executive,active,true,viewer,2024-10-05 17:35:10,2024-10-05 18:03:10,active,true +M4841,W2160,evergreen-finance,sandbox,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3713,mei.rossi@evergreengroup.example,Mei Rossi,Workflow Analyst,operations,active,true,admin,2024-09-09 18:12:10,2024-09-09 18:22:10,active,true +M4842,W2158,evergreen-core,prod,active,true,A1071,Evergreen Group,mid_market,NA,CA,U3714,lena.morgan@evergreengroup.example,Lena Morgan,Marketing Operations Lead,marketing,active,true,viewer,2024-10-11 15:34:10,2024-10-11 15:59:10,active,true +M4843,W2160,evergreen-finance,sandbox,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3714,lena.morgan@evergreengroup.example,Lena Morgan,Marketing Operations Lead,marketing,active,true,editor,2024-10-11 14:40:10,2024-10-11 15:48:10,active,true +M4844,W2160,evergreen-finance,sandbox,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3715,tomas.saeed@evergreengroup.example,Tomas Saeed,Technical Program Manager,product,active,true,viewer,2024-09-09 20:08:10,2024-09-09 20:46:10,active,true +M4845,W2159,evergreen-ops,prod,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3716,jonas.hart@evergreengroup.example,Jonas Hart,Analytics Manager,analytics,active,true,admin,2024-10-08 23:10:10,2024-10-09 00:26:10,active,true +M4846,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3717,nina.hart@summitventures.example,Nina Hart,Product Manager,product,active,true,owner,2024-09-30 11:59:23,2024-09-30 14:28:23,active,true +M4847,W2162,summit-ops,prod,active,false,A1072,Summit Ventures,enterprise,NA,US,U3718,tara.reed@summitventures.example,Tara Reed,Technical Program Manager,product,active,true,editor,2024-11-08 11:42:23,2024-11-08 12:38:23,active,true +M4848,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3719,ivy.brooks@summitventures.example,Ivy Brooks,Demand Gen Manager,marketing,active,true,viewer,2024-10-28 05:20:23,2024-10-28 06:32:23,active,true +M4849,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3720,jonas.ng@summitventures.example,Jonas Ng,Sales Analyst,sales,active,true,editor,2024-10-03 06:32:23,2024-10-03 09:21:23,active,true +M4850,W2163,summit-finance,sandbox,active,false,A1072,Summit Ventures,enterprise,NA,US,U3721,claire.rahman@summitventures.example,Claire Rahman,Insights Lead,analytics,active,true,editor,2024-11-06 05:30:23,2024-11-06 06:18:23,active,true +M4851,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3722,peter.tan@summitventures.example,Peter Tan,Data Engineer,data,active,true,viewer,2024-10-18 10:57:23,2024-10-18 13:19:23,active,true +M4852,W2163,summit-finance,sandbox,active,false,A1072,Summit Ventures,enterprise,NA,US,U3723,ivy.desai@summitventures.example,Ivy Desai,Marketing Operations Lead,marketing,active,true,editor,2024-10-16 05:32:23,2024-10-16 08:22:23,active,true +M4853,W2163,summit-finance,sandbox,active,false,A1072,Summit Ventures,enterprise,NA,US,U3724,evan.sato@summitventures.example,Evan Sato,Data Platform Manager,data,active,true,viewer,2024-10-30 04:05:23,2024-10-30 06:21:23,active,true +M4854,W2162,summit-ops,prod,active,false,A1072,Summit Ventures,enterprise,NA,US,U3724,evan.sato@summitventures.example,Evan Sato,Data Platform Manager,data,active,true,editor,2024-10-30 02:38:23,2024-10-30 03:36:23,active,true +M4855,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3725,alma.singh@summitventures.example,Alma Singh,Operations Manager,operations,active,true,editor,2024-10-22 04:10:23,2024-10-22 07:03:23,active,true +M4856,W2162,summit-ops,prod,active,false,A1072,Summit Ventures,enterprise,NA,US,U3725,alma.singh@summitventures.example,Alma Singh,Operations Manager,operations,active,true,editor,2024-10-22 03:56:23,2024-10-22 04:48:23,active,true +M4857,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3726,naomi.alvarez@summitventures.example,Naomi Alvarez,Workflow Analyst,operations,active,true,editor,2024-10-31 04:04:23,2024-10-31 05:45:23,active,true +M4858,W2163,summit-finance,sandbox,active,false,A1072,Summit Ventures,enterprise,NA,US,U3727,helena.saeed@summitventures.example,Helena Saeed,Analytics Manager,analytics,active,true,editor,2024-10-04 05:56:23,2024-10-04 07:32:23,active,true +M4859,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3727,helena.saeed@summitventures.example,Helena Saeed,Analytics Manager,analytics,active,true,viewer,2024-10-04 05:25:23,2024-10-04 05:32:23,active,true +M4860,W2162,summit-ops,prod,active,false,A1072,Summit Ventures,enterprise,NA,US,U3728,alma.silva@summitventures.example,Alma Silva,Revenue Operations Manager,sales,active,true,editor,2024-10-26 05:21:23,2024-10-26 05:51:23,active,true +M4861,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3729,daniel.dubois@summitventures.example,Daniel Dubois,Technical Program Manager,product,active,true,viewer,2024-10-15 03:17:23,2024-10-15 05:41:23,active,true +M4862,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3730,olivia.khan@summitventures.example,Olivia Khan,Sales Analyst,sales,inactive,false,viewer,2024-11-11 05:58:23,2024-11-11 07:59:23,removed,false +M4863,W2163,summit-finance,sandbox,active,false,A1072,Summit Ventures,enterprise,NA,US,U3731,derek.turner@summitventures.example,Derek Turner,VP Data,executive,active,true,editor,2024-09-30 02:30:23,2024-09-30 03:37:23,active,true +M4864,W2162,summit-ops,prod,active,false,A1072,Summit Ventures,enterprise,NA,US,U3732,hannah.alvarez@summitventures.example,Hannah Alvarez,Insights Lead,analytics,active,true,viewer,2024-10-23 07:15:23,2024-10-23 10:13:23,active,true +M4865,W2162,summit-ops,prod,active,false,A1072,Summit Ventures,enterprise,NA,US,U3733,derek.grant@summitventures.example,Derek Grant,Demand Gen Manager,marketing,inactive,false,editor,2024-10-23 02:24:23,2024-10-23 03:28:23,removed,false +M4866,W2163,summit-finance,sandbox,active,false,A1072,Summit Ventures,enterprise,NA,US,U3734,jonas.petrova@summitventures.example,Jonas Petrova,Demand Gen Manager,marketing,inactive,false,admin,2024-10-12 05:42:23,2024-10-12 08:14:23,removed,false +M4867,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3735,kai.desai@silverholdings.example,Kai Desai,BI Analyst,analytics,active,true,owner,2024-12-09 19:16:51,2024-12-09 20:02:51,active,true +M4868,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3736,samir.ng@silverholdings.example,Samir Ng,Operations Director,operations,active,true,viewer,2024-12-22 14:50:51,2024-12-22 17:09:51,active,true +M4869,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3737,kai.khan@silverholdings.example,Kai Khan,Product Manager,product,active,true,viewer,2024-11-11 14:02:51,2024-11-11 14:40:51,active,true +M4870,W2165,silver-ops,prod,active,false,A1073,Silver Holdings,mid_market,EMEA,DE,U3738,naomi.chen@silverholdings.example,Naomi Chen,Revenue Operations Manager,sales,active,true,viewer,2024-12-18 15:40:51,2024-12-18 16:21:51,active,true +M4871,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3738,naomi.chen@silverholdings.example,Naomi Chen,Revenue Operations Manager,sales,active,true,editor,2024-12-18 14:37:51,2024-12-18 16:10:51,active,true +M4872,W2165,silver-ops,prod,active,false,A1073,Silver Holdings,mid_market,EMEA,DE,U3739,olivia.rahman@silverholdings.example,Olivia Rahman,Marketing Operations Lead,marketing,active,true,admin,2024-12-16 17:54:51,2024-12-16 18:43:51,active,true +M4873,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3739,olivia.rahman@silverholdings.example,Olivia Rahman,Marketing Operations Lead,marketing,active,true,viewer,2024-12-16 17:41:51,2024-12-16 19:04:51,active,true +M4874,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3740,owen.turner@silverholdings.example,Owen Turner,FP&A Analyst,finance,active,true,editor,2024-11-19 15:47:51,2024-11-19 16:54:51,active,true +M4875,W2165,silver-ops,prod,active,false,A1073,Silver Holdings,mid_market,EMEA,DE,U3740,owen.turner@silverholdings.example,Owen Turner,FP&A Analyst,finance,active,true,editor,2024-11-19 17:00:51,2024-11-19 20:00:51,active,true +M4876,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3741,elena.price@silverholdings.example,Elena Price,COO,executive,inactive,false,editor,2024-12-03 17:19:51,2024-12-03 19:44:51,removed,false +M4877,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3742,luis.romero@silverholdings.example,Luis Romero,Marketing Operations Lead,marketing,active,true,viewer,2024-12-07 13:33:51,2024-12-07 15:36:51,active,true +M4878,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3743,hannah.morgan@silverholdings.example,Hannah Morgan,Sales Analyst,sales,inactive,false,viewer,2024-11-17 12:39:51,2024-11-17 13:18:51,removed,false +M4879,W2165,silver-ops,prod,active,false,A1073,Silver Holdings,mid_market,EMEA,DE,U3743,hannah.morgan@silverholdings.example,Hannah Morgan,Sales Analyst,sales,inactive,false,editor,2024-11-17 12:38:51,2024-11-17 13:55:51,active,true +M4880,W2165,silver-ops,prod,active,false,A1073,Silver Holdings,mid_market,EMEA,DE,U3744,olivia.chen@silverholdings.example,Olivia Chen,Sales Analyst,sales,active,true,editor,2024-12-21 17:54:51,2024-12-21 20:29:51,active,true +M4881,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3745,daniel.tan@silverholdings.example,Daniel Tan,Analytics Manager,analytics,active,true,editor,2024-12-09 16:41:51,2024-12-09 17:46:51,active,true +M4882,W2165,silver-ops,prod,active,false,A1073,Silver Holdings,mid_market,EMEA,DE,U3746,ben.reed@silverholdings.example,Ben Reed,Insights Lead,analytics,active,true,editor,2024-12-21 15:19:51,2024-12-21 18:00:51,active,true +M4883,W2165,silver-ops,prod,active,false,A1073,Silver Holdings,mid_market,EMEA,DE,U3747,peter.romero@silverholdings.example,Peter Romero,Analytics Manager,analytics,inactive,false,viewer,2024-11-23 19:02:51,2024-11-23 21:14:51,removed,false +M4884,W2166,granite-core,prod,active,true,A1074,Granite Analytics,mid_market,NA,CA,U3748,ava.petrova@graniteanalytics.example,Ava Petrova,Analytics Engineer,data,inactive,false,owner,2024-08-19 03:51:24,2024-08-19 05:13:24,removed,false +M4885,W2167,granite-ops,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3749,lina.ng@graniteanalytics.example,Lina Ng,BI Analyst,analytics,active,true,editor,2024-08-17 06:42:24,2024-08-17 08:06:24,active,true +M4886,W2166,granite-core,prod,active,true,A1074,Granite Analytics,mid_market,NA,CA,U3749,lina.ng@graniteanalytics.example,Lina Ng,BI Analyst,analytics,active,true,editor,2024-08-17 06:29:24,2024-08-17 09:26:24,active,true +M4887,W2166,granite-core,prod,active,true,A1074,Granite Analytics,mid_market,NA,CA,U3750,victor.turner@graniteanalytics.example,Victor Turner,Founder,executive,active,true,editor,2024-08-11 02:56:24,2024-08-11 03:42:24,active,true +M4888,W2167,granite-ops,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3751,jonas.morgan@graniteanalytics.example,Jonas Morgan,COO,executive,active,true,viewer,2024-09-14 22:19:24,2024-09-14 22:45:24,active,true +M4889,W2167,granite-ops,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3752,aisha.hart@graniteanalytics.example,Aisha Hart,Technical Program Manager,product,active,true,viewer,2024-09-08 23:36:24,2024-09-08 23:44:24,active,true +M4890,W2168,granite-finance,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3752,aisha.hart@graniteanalytics.example,Aisha Hart,Technical Program Manager,product,active,true,viewer,2024-09-09 00:58:24,2024-09-09 02:24:24,active,true +M4891,W2168,granite-finance,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3753,mateo.ng@graniteanalytics.example,Mateo Ng,FP&A Analyst,finance,active,true,editor,2024-08-18 04:17:24,2024-08-18 06:26:24,active,true +M4892,W2168,granite-finance,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3754,tara.dubois@graniteanalytics.example,Tara Dubois,CFO,executive,active,true,viewer,2024-08-29 01:40:24,2024-08-29 01:58:24,active,true +M4893,W2167,granite-ops,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3755,nina.saeed@graniteanalytics.example,Nina Saeed,CFO,executive,active,true,editor,2024-08-21 04:04:24,2024-08-21 06:43:24,active,true +M4894,W2167,granite-ops,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3756,peter.park@graniteanalytics.example,Peter Park,Data Engineer,data,active,true,editor,2024-08-19 21:47:24,2024-08-19 23:17:24,active,true +M4895,W2168,granite-finance,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3757,leo.lopez@graniteanalytics.example,Leo Lopez,Controller,finance,active,true,viewer,2024-09-09 04:24:24,2024-09-09 06:45:24,active,true +M4896,W2166,granite-core,prod,active,true,A1074,Granite Analytics,mid_market,NA,CA,U3757,leo.lopez@graniteanalytics.example,Leo Lopez,Controller,finance,active,true,viewer,2024-09-09 03:41:24,2024-09-09 05:24:24,active,true +M4897,W2166,granite-core,prod,active,true,A1074,Granite Analytics,mid_market,NA,CA,U3758,priya.park@graniteanalytics.example,Priya Park,CFO,executive,active,true,admin,2024-09-09 04:48:24,2024-09-09 07:24:24,active,true +M4898,W2167,granite-ops,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3759,peter.grant@graniteanalytics.example,Peter Grant,Founder,executive,active,true,editor,2024-08-24 01:45:24,2024-08-24 03:46:24,active,true +M4899,W2169,cedar-core,prod,active,true,A1075,Cedar Labs,smb,EMEA,UK,U3760,evan.reed@cedarlabs.example,Evan Reed,Data Platform Manager,data,active,true,owner,2024-12-09 08:34:13,2024-12-09 08:51:13,active,true +M4900,W2169,cedar-core,prod,active,true,A1075,Cedar Labs,smb,EMEA,UK,U3761,victor.rossi@cedarlabs.example,Victor Rossi,Operations Manager,operations,active,true,editor,2024-11-04 11:14:13,2024-11-04 13:24:13,active,true +M4901,W2169,cedar-core,prod,active,true,A1075,Cedar Labs,smb,EMEA,UK,U3762,olivia.morgan@cedarlabs.example,Olivia Morgan,Founder,executive,active,true,editor,2024-11-23 07:36:13,2024-11-23 10:14:13,active,true +M4902,W2169,cedar-core,prod,active,true,A1075,Cedar Labs,smb,EMEA,UK,U3763,leo.ward@cedarlabs.example,Leo Ward,Insights Lead,analytics,active,true,editor,2024-12-15 06:46:13,2024-12-15 09:43:13,active,true +M4903,W2169,cedar-core,prod,active,true,A1075,Cedar Labs,smb,EMEA,UK,U3764,mila.park@cedarlabs.example,Mila Park,COO,executive,active,true,viewer,2024-11-16 07:26:13,2024-11-16 09:49:13,active,true +M4904,W2169,cedar-core,prod,active,true,A1075,Cedar Labs,smb,EMEA,UK,U3765,alma.brooks@cedarlabs.example,Alma Brooks,Workflow Analyst,operations,active,true,admin,2024-12-11 12:44:13,2024-12-11 14:35:13,active,true +M4905,W2169,cedar-core,prod,active,true,A1075,Cedar Labs,smb,EMEA,UK,U3766,kenji.alvarez@cedarlabs.example,Kenji Alvarez,Revenue Operations Manager,sales,active,true,editor,2024-11-04 09:51:13,2024-11-04 12:38:13,active,true +M4906,W2169,cedar-core,prod,active,true,A1075,Cedar Labs,smb,EMEA,UK,U3767,noah.meyer@cedarlabs.example,Noah Meyer,Finance Manager,finance,active,true,editor,2024-11-22 13:44:13,2024-11-22 13:58:13,active,true +M4907,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3768,jonas.lewis@atlassolutions.example,Jonas Lewis,Founder,executive,active,true,owner,2025-03-19 04:22:44,2025-03-19 06:08:44,active,true +M4908,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3769,lina.turner@atlassolutions.example,Lina Turner,Insights Lead,analytics,active,true,admin,2025-04-03 03:14:44,2025-04-03 03:56:44,active,true +M4909,W2171,atlas-ops,prod,active,false,A1076,Atlas Solutions,mid_market,EMEA,UK,U3770,derek.sato@atlassolutions.example,Derek Sato,Sales Analyst,sales,active,true,editor,2025-02-28 20:32:44,2025-02-28 23:15:44,active,true +M4910,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3771,zoe.shah@atlassolutions.example,Zoe Shah,Product Manager,product,active,true,viewer,2025-03-14 02:57:44,2025-03-14 05:16:44,active,true +M4911,W2171,atlas-ops,prod,active,false,A1076,Atlas Solutions,mid_market,EMEA,UK,U3772,leo.singh@atlassolutions.example,Leo Singh,Finance Manager,finance,active,true,admin,2025-04-08 01:26:44,2025-04-08 02:08:44,active,true +M4912,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3773,ivy.meyer@atlassolutions.example,Ivy Meyer,Data Platform Manager,data,active,true,editor,2025-02-27 21:20:44,2025-02-27 22:51:44,active,true +M4913,W2171,atlas-ops,prod,active,false,A1076,Atlas Solutions,mid_market,EMEA,UK,U3774,ivy.price@atlassolutions.example,Ivy Price,Operations Manager,operations,active,true,editor,2025-04-06 23:58:44,2025-04-07 02:50:44,active,true +M4914,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3774,ivy.price@atlassolutions.example,Ivy Price,Operations Manager,operations,active,true,editor,2025-04-06 23:55:44,2025-04-07 00:20:44,active,true +M4915,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3775,elena.hart@atlassolutions.example,Elena Hart,Data Engineer,data,active,true,viewer,2025-04-07 03:52:44,2025-04-07 06:34:44,active,true +M4916,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3776,noah.desai@atlassolutions.example,Noah Desai,Operations Manager,operations,active,true,viewer,2025-04-10 01:03:44,2025-04-10 02:59:44,active,true +M4917,W2171,atlas-ops,prod,active,false,A1076,Atlas Solutions,mid_market,EMEA,UK,U3776,noah.desai@atlassolutions.example,Noah Desai,Operations Manager,operations,active,true,editor,2025-04-10 00:55:44,2025-04-10 01:47:44,active,true +M4918,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3777,ava.park@atlassolutions.example,Ava Park,Analytics Manager,analytics,active,true,viewer,2025-03-06 23:04:44,2025-03-07 00:21:44,active,true +M4919,W2171,atlas-ops,prod,active,false,A1076,Atlas Solutions,mid_market,EMEA,UK,U3778,ben.lopez@atlassolutions.example,Ben Lopez,Operations Manager,operations,active,true,admin,2025-03-29 20:06:44,2025-03-29 20:44:44,active,true +M4920,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3778,ben.lopez@atlassolutions.example,Ben Lopez,Operations Manager,operations,active,true,editor,2025-03-29 20:55:44,2025-03-29 22:08:44,active,true +M4921,W2171,atlas-ops,prod,active,false,A1076,Atlas Solutions,mid_market,EMEA,UK,U3779,maya.rahman@atlassolutions.example,Maya Rahman,Technical Program Manager,product,active,true,admin,2025-04-09 02:00:44,2025-04-09 03:28:44,active,true +M4922,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3780,ben.rossi@atlassolutions.example,Ben Rossi,Insights Lead,analytics,active,true,admin,2025-04-04 00:59:44,2025-04-04 03:39:44,active,true +M4923,W2172,evergreen-core,prod,active,true,A1077,Evergreen Foods,mid_market,NA,CA,U3781,noah.singh@evergreenfoods.example,Noah Singh,Operations Director,operations,active,true,owner,2024-09-18 21:54:36,2024-09-18 23:56:36,active,true +M4924,W2174,evergreen-finance,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3782,luis.tan@evergreenfoods.example,Luis Tan,Data Engineer,data,active,true,editor,2024-10-11 00:30:36,2024-10-11 02:14:36,active,true +M4925,W2173,evergreen-ops,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3783,isla.tan@evergreenfoods.example,Isla Tan,Operations Manager,operations,active,true,viewer,2024-10-10 00:59:36,2024-10-10 02:32:36,active,true +M4926,W2174,evergreen-finance,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3783,isla.tan@evergreenfoods.example,Isla Tan,Operations Manager,operations,active,true,viewer,2024-10-09 23:54:36,2024-10-10 01:52:36,active,true +M4927,W2173,evergreen-ops,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3784,olivia.rahman@evergreenfoods.example,Olivia Rahman,Controller,finance,inactive,false,viewer,2024-10-25 05:31:36,2024-10-25 06:19:36,removed,false +M4928,W2173,evergreen-ops,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3785,owen.alvarez@evergreenfoods.example,Owen Alvarez,Demand Gen Manager,marketing,active,true,editor,2024-10-17 04:26:36,2024-10-17 04:51:36,active,true +M4929,W2174,evergreen-finance,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3786,marcus.ng@evergreenfoods.example,Marcus Ng,Sales Analyst,sales,provisioned,false,editor,2024-10-18 07:29:36,,pending,false +M4930,W2172,evergreen-core,prod,active,true,A1077,Evergreen Foods,mid_market,NA,CA,U3787,noah.rossi@evergreenfoods.example,Noah Rossi,Product Manager,product,active,true,viewer,2024-10-25 23:01:36,2024-10-26 00:20:36,active,true +M4931,W2173,evergreen-ops,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3788,lena.khan@evergreenfoods.example,Lena Khan,Operations Manager,operations,inactive,false,editor,2024-10-22 05:20:36,2024-10-22 08:04:36,removed,false +M4932,W2174,evergreen-finance,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3789,marta.park@evergreenfoods.example,Marta Park,Revenue Operations Manager,sales,active,true,editor,2024-09-21 02:02:36,2024-09-21 02:12:36,active,true +M4933,W2173,evergreen-ops,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3790,marta.park2@evergreenfoods.example,Marta Park,Marketing Operations Lead,marketing,inactive,false,editor,2024-10-18 04:09:36,2024-10-18 05:50:36,active,true +M4934,W2172,evergreen-core,prod,active,true,A1077,Evergreen Foods,mid_market,NA,CA,U3791,ava.lewis@evergreenfoods.example,Ava Lewis,Insights Lead,analytics,inactive,false,editor,2024-10-26 05:24:36,2024-10-26 05:53:36,removed,false +M4935,W2172,evergreen-core,prod,active,true,A1077,Evergreen Foods,mid_market,NA,CA,U3792,derek.turner@evergreenfoods.example,Derek Turner,Controller,finance,active,true,viewer,2024-09-24 03:17:36,2024-09-24 04:02:36,active,true +M4936,W2175,beacon-core,prod,active,true,A1078,Beacon Foods,mid_market,EMEA,FR,U3793,leo.lewis@beaconfoods.example,Leo Lewis,Finance Manager,finance,active,true,owner,2025-03-08 05:28:06,2025-03-08 07:15:06,active,true +M4937,W2177,beacon-finance,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3794,tara.singh@beaconfoods.example,Tara Singh,Marketing Operations Lead,marketing,inactive,false,editor,2025-04-01 23:13:06,2025-04-02 01:51:06,removed,false +M4938,W2176,beacon-ops,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3795,marta.rahman@beaconfoods.example,Marta Rahman,Controller,finance,active,true,viewer,2025-02-27 23:39:06,2025-02-28 02:26:06,active,true +M4939,W2177,beacon-finance,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3796,mila.patel@beaconfoods.example,Mila Patel,Workflow Analyst,operations,active,true,editor,2025-03-12 06:16:06,2025-03-12 07:18:06,active,true +M4940,W2176,beacon-ops,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3797,marta.desai@beaconfoods.example,Marta Desai,BI Analyst,analytics,active,true,editor,2025-04-11 06:21:06,2025-04-11 08:21:06,active,true +M4941,W2175,beacon-core,prod,active,true,A1078,Beacon Foods,mid_market,EMEA,FR,U3798,hannah.park@beaconfoods.example,Hannah Park,Product Manager,product,active,true,viewer,2025-03-04 01:06:06,2025-03-04 03:27:06,active,true +M4942,W2177,beacon-finance,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3798,hannah.park@beaconfoods.example,Hannah Park,Product Manager,product,active,true,editor,2025-03-03 23:20:06,2025-03-04 00:50:06,active,true +M4943,W2177,beacon-finance,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3799,sofia.hill@beaconfoods.example,Sofia Hill,Controller,finance,inactive,false,admin,2025-03-05 02:17:06,2025-03-05 04:50:06,removed,false +M4944,W2176,beacon-ops,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3800,owen.hart@beaconfoods.example,Owen Hart,Product Manager,product,active,true,editor,2025-03-07 03:47:06,2025-03-07 04:49:06,active,true +M4945,W2175,beacon-core,prod,active,true,A1078,Beacon Foods,mid_market,EMEA,FR,U3801,olivia.tan@beaconfoods.example,Olivia Tan,Technical Program Manager,product,active,true,viewer,2025-02-26 02:56:06,2025-02-26 05:34:06,active,true +M4946,W2177,beacon-finance,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3802,samir.meyer@beaconfoods.example,Samir Meyer,Finance Manager,finance,active,true,viewer,2025-03-15 04:25:06,2025-03-15 07:06:06,active,true +M4947,W2175,beacon-core,prod,active,true,A1078,Beacon Foods,mid_market,EMEA,FR,U3803,derek.alvarez@beaconfoods.example,Derek Alvarez,Controller,finance,active,true,admin,2025-03-24 01:39:06,2025-03-24 02:07:06,active,true +M4948,W2176,beacon-ops,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3804,kai.price@beaconfoods.example,Kai Price,Technical Program Manager,product,active,true,admin,2025-02-27 05:25:06,2025-02-27 08:17:06,active,true +M4949,W2178,nova-core,prod,active,true,A1079,Nova Foods,enterprise,EMEA,FR,U3805,tomas.petrova@novafoods.example,Tomas Petrova,VP Data,executive,active,true,owner,2024-09-28 16:54:24,2024-09-28 19:20:24,active,true +M4950,W2179,nova-ops,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3806,priya.shah@novafoods.example,Priya Shah,Data Platform Manager,data,inactive,false,viewer,2024-10-18 22:11:24,2024-10-18 23:17:24,removed,false +M4951,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3806,priya.shah@novafoods.example,Priya Shah,Data Platform Manager,data,inactive,false,editor,2024-10-18 22:12:24,2024-10-18 23:08:24,removed,false +M4952,W2178,nova-core,prod,active,true,A1079,Nova Foods,enterprise,EMEA,FR,U3807,arjun.singh@novafoods.example,Arjun Singh,VP Data,executive,inactive,false,viewer,2024-09-03 18:45:24,2024-09-03 19:52:24,removed,false +M4953,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3807,arjun.singh@novafoods.example,Arjun Singh,VP Data,executive,inactive,false,editor,2024-09-03 18:47:24,2024-09-03 19:53:24,active,true +M4954,W2178,nova-core,prod,active,true,A1079,Nova Foods,enterprise,EMEA,FR,U3808,noah.park@novafoods.example,Noah Park,Demand Gen Manager,marketing,inactive,false,viewer,2024-10-17 18:52:24,2024-10-17 19:37:24,removed,false +M4955,W2178,nova-core,prod,active,true,A1079,Nova Foods,enterprise,EMEA,FR,U3809,mei.singh@novafoods.example,Mei Singh,Operations Director,operations,active,true,admin,2024-10-07 19:51:24,2024-10-07 22:09:24,active,true +M4956,W2181,nova-marketing,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3809,mei.singh@novafoods.example,Mei Singh,Operations Director,operations,active,true,viewer,2024-10-07 19:43:24,2024-10-07 21:26:24,active,true +M4957,W2181,nova-marketing,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3810,naomi.saeed@novafoods.example,Naomi Saeed,BI Analyst,analytics,active,true,viewer,2024-09-08 22:35:24,2024-09-08 23:10:24,active,true +M4958,W2178,nova-core,prod,active,true,A1079,Nova Foods,enterprise,EMEA,FR,U3811,samir.rahman@novafoods.example,Samir Rahman,Data Engineer,data,active,true,editor,2024-10-07 19:36:24,2024-10-07 20:55:24,active,true +M4959,W2181,nova-marketing,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3812,jonas.ng@novafoods.example,Jonas Ng,Workflow Analyst,operations,active,true,viewer,2024-09-06 20:38:24,2024-09-06 22:16:24,active,true +M4960,W2181,nova-marketing,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3813,marta.grant@novafoods.example,Marta Grant,Data Platform Manager,data,active,true,viewer,2024-09-10 21:20:24,2024-09-10 23:17:24,active,true +M4961,W2181,nova-marketing,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3814,maya.ward@novafoods.example,Maya Ward,COO,executive,active,true,viewer,2024-10-10 22:06:24,2024-10-11 00:39:24,active,true +M4962,W2179,nova-ops,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3814,maya.ward@novafoods.example,Maya Ward,COO,executive,active,true,viewer,2024-10-10 22:07:24,2024-10-10 22:40:24,active,true +M4963,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3815,marta.singh@novafoods.example,Marta Singh,Insights Lead,analytics,active,true,editor,2024-10-18 15:47:24,2024-10-18 16:54:24,active,true +M4964,W2181,nova-marketing,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3816,victor.hill@novafoods.example,Victor Hill,COO,executive,active,true,editor,2024-09-26 21:15:24,2024-09-26 21:38:24,active,true +M4965,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3816,victor.hill@novafoods.example,Victor Hill,COO,executive,active,true,viewer,2024-09-26 21:45:24,2024-09-26 23:55:24,active,true +M4966,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3817,ivy.price@novafoods.example,Ivy Price,Operations Director,operations,inactive,false,editor,2024-09-06 21:01:24,2024-09-06 23:01:24,removed,false +M4967,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3818,tomas.fischer@novafoods.example,Tomas Fischer,Sales Analyst,sales,active,true,editor,2024-09-19 22:25:24,2024-09-20 00:43:24,active,true +M4968,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3819,tara.price@novafoods.example,Tara Price,Finance Manager,finance,active,true,admin,2024-10-05 16:31:24,2024-10-05 18:08:24,active,true +M4969,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3820,naomi.hart@novafoods.example,Naomi Hart,Workflow Analyst,operations,active,true,editor,2024-09-16 21:31:24,2024-09-17 00:18:24,active,true +M4970,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3821,aisha.fischer@novafoods.example,Aisha Fischer,Workflow Analyst,operations,active,true,editor,2024-09-29 16:06:24,2024-09-29 16:50:24,active,true +M4971,W2179,nova-ops,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3822,claire.desai@novafoods.example,Claire Desai,Finance Manager,finance,inactive,false,admin,2024-09-26 18:54:24,2024-09-26 20:04:24,removed,false +M4972,W2178,nova-core,prod,active,true,A1079,Nova Foods,enterprise,EMEA,FR,U3823,luis.shah@novafoods.example,Luis Shah,Controller,finance,inactive,false,viewer,2024-09-29 15:25:24,2024-09-29 17:59:24,removed,false +M4973,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3824,daniel.sato@novafoods.example,Daniel Sato,Product Manager,product,active,true,viewer,2024-09-10 22:37:24,2024-09-11 00:25:24,active,true +M4974,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3825,leo.singh@beaconglobal.example,Leo Singh,Technical Program Manager,product,active,true,owner,2024-09-05 09:27:12,2024-09-05 12:10:12,active,true +M4975,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3826,ben.lewis@beaconglobal.example,Ben Lewis,Controller,finance,active,true,viewer,2024-09-21 09:13:12,2024-09-21 11:26:12,active,true +M4976,W2183,beacon-ops,prod,active,false,A1080,Beacon Global,mid_market,EMEA,NL,U3827,owen.shah@beaconglobal.example,Owen Shah,Founder,executive,active,true,editor,2024-09-20 07:30:12,2024-09-20 09:39:12,active,true +M4977,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3828,samir.nash@beaconglobal.example,Samir Nash,Data Platform Manager,data,active,true,viewer,2024-09-09 06:27:12,2024-09-09 08:09:12,active,true +M4978,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3829,luis.singh@beaconglobal.example,Luis Singh,Workflow Analyst,operations,active,true,viewer,2024-09-16 03:49:12,2024-09-16 04:46:12,active,true +M4979,W2183,beacon-ops,prod,active,false,A1080,Beacon Global,mid_market,EMEA,NL,U3829,luis.singh@beaconglobal.example,Luis Singh,Workflow Analyst,operations,active,true,editor,2024-09-16 04:00:12,2024-09-16 04:43:12,active,true +M4980,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3830,isla.brooks@beaconglobal.example,Isla Brooks,Demand Gen Manager,marketing,active,true,viewer,2024-09-13 02:30:12,2024-09-13 05:00:12,active,true +M4981,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3831,kenji.romero@beaconglobal.example,Kenji Romero,BI Analyst,analytics,active,true,viewer,2024-08-27 08:48:12,2024-08-27 11:07:12,active,true +M4982,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3832,ben.khan@beaconglobal.example,Ben Khan,Revenue Operations Manager,sales,active,true,viewer,2024-09-12 03:24:12,2024-09-12 05:11:12,active,true +M4983,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3833,kai.romero@beaconglobal.example,Kai Romero,CFO,executive,active,true,viewer,2024-08-28 03:54:12,2024-08-28 06:20:12,active,true +M4984,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3834,isla.rahman@beaconglobal.example,Isla Rahman,BI Analyst,analytics,active,true,viewer,2024-08-23 06:57:12,2024-08-23 08:07:12,active,true +M4985,W2183,beacon-ops,prod,active,false,A1080,Beacon Global,mid_market,EMEA,NL,U3834,isla.rahman@beaconglobal.example,Isla Rahman,BI Analyst,analytics,active,true,viewer,2024-08-23 05:46:12,2024-08-23 06:37:12,active,true +M4986,W2184,river-core,prod,active,true,A1081,River Collective,mid_market,NA,CA,U3835,kai.rahman@rivercollective.example,Kai Rahman,Data Platform Manager,data,active,true,owner,2024-12-07 16:05:21,2024-12-07 18:06:21,active,true +M4987,W2184,river-core,prod,active,true,A1081,River Collective,mid_market,NA,CA,U3836,jonas.kim@rivercollective.example,Jonas Kim,Operations Manager,operations,inactive,false,admin,2024-11-26 19:24:21,2024-11-26 20:40:21,removed,false +M4988,W2184,river-core,prod,active,true,A1081,River Collective,mid_market,NA,CA,U3837,olivia.brooks@rivercollective.example,Olivia Brooks,Marketing Operations Lead,marketing,active,true,viewer,2024-12-25 15:39:21,2024-12-25 16:17:21,active,true +M4989,W2186,river-finance,prod,active,false,A1081,River Collective,mid_market,NA,CA,U3838,sofia.kim@rivercollective.example,Sofia Kim,Operations Manager,operations,active,true,editor,2024-11-20 18:20:21,2024-11-20 20:53:21,active,true +M4990,W2184,river-core,prod,active,true,A1081,River Collective,mid_market,NA,CA,U3838,sofia.kim@rivercollective.example,Sofia Kim,Operations Manager,operations,active,true,viewer,2024-11-20 18:33:21,2024-11-20 20:36:21,active,true +M4991,W2186,river-finance,prod,active,false,A1081,River Collective,mid_market,NA,CA,U3839,tomas.turner@rivercollective.example,Tomas Turner,Analytics Engineer,data,provisioned,false,viewer,2024-12-27 17:09:21,,pending,false +M4992,W2184,river-core,prod,active,true,A1081,River Collective,mid_market,NA,CA,U3839,tomas.turner@rivercollective.example,Tomas Turner,Analytics Engineer,data,provisioned,false,viewer,2024-12-27 16:33:21,,pending,false +M4993,W2185,river-ops,sandbox,active,false,A1081,River Collective,mid_market,NA,CA,U3840,arjun.hill@rivercollective.example,Arjun Hill,Marketing Operations Lead,marketing,active,true,admin,2024-12-06 19:18:21,2024-12-06 21:27:21,active,true +M4994,W2184,river-core,prod,active,true,A1081,River Collective,mid_market,NA,CA,U3840,arjun.hill@rivercollective.example,Arjun Hill,Marketing Operations Lead,marketing,active,true,viewer,2024-12-06 19:56:21,2024-12-06 22:26:21,active,true +M4995,W2186,river-finance,prod,active,false,A1081,River Collective,mid_market,NA,CA,U3841,sofia.reed@rivercollective.example,Sofia Reed,FP&A Analyst,finance,active,true,editor,2024-12-21 15:02:21,2024-12-21 17:00:21,active,true +M4996,W2186,river-finance,prod,active,false,A1081,River Collective,mid_market,NA,CA,U3842,ivy.park@rivercollective.example,Ivy Park,Data Engineer,data,active,true,editor,2024-12-16 17:16:21,2024-12-16 19:17:21,active,true +M4997,W2184,river-core,prod,active,true,A1081,River Collective,mid_market,NA,CA,U3843,maya.brooks@rivercollective.example,Maya Brooks,Technical Program Manager,product,active,true,editor,2024-12-25 18:00:21,2024-12-25 20:11:21,active,true +M4998,W2187,summit-core,prod,archived,true,A1082,Summit Manufacturing,mid_market,NA,US,U3844,helena.hart@summitmanufacturing.example,Helena Hart,BI Analyst,analytics,inactive,false,owner,2024-11-27 01:56:31,2024-11-27 02:46:31,removed,false +M4999,W2187,summit-core,prod,archived,true,A1082,Summit Manufacturing,mid_market,NA,US,U3845,olivia.lewis@summitmanufacturing.example,Olivia Lewis,Analytics Manager,analytics,inactive,false,editor,2024-11-30 01:54:31,2024-11-30 03:15:31,removed,false +M5000,W2187,summit-core,prod,archived,true,A1082,Summit Manufacturing,mid_market,NA,US,U3846,samir.lopez@summitmanufacturing.example,Samir Lopez,Technical Program Manager,product,inactive,false,editor,2024-12-01 22:50:31,2024-12-02 01:18:31,removed,false +M5001,W2187,summit-core,prod,archived,true,A1082,Summit Manufacturing,mid_market,NA,US,U3847,samir.romero@summitmanufacturing.example,Samir Romero,Controller,finance,active,true,admin,2024-11-17 00:40:31,2024-11-17 01:31:31,removed,false +M5002,W2187,summit-core,prod,archived,true,A1082,Summit Manufacturing,mid_market,NA,US,U3848,kenji.price@summitmanufacturing.example,Kenji Price,Technical Program Manager,product,inactive,false,viewer,2024-12-20 19:11:31,2024-12-20 21:16:31,removed,false +M5003,W2187,summit-core,prod,archived,true,A1082,Summit Manufacturing,mid_market,NA,US,U3849,isla.romero@summitmanufacturing.example,Isla Romero,Product Manager,product,inactive,false,admin,2024-12-09 00:21:31,2024-12-09 03:18:31,removed,false +M5004,W2187,summit-core,prod,archived,true,A1082,Summit Manufacturing,mid_market,NA,US,U3850,maya.grant@summitmanufacturing.example,Maya Grant,Technical Program Manager,product,active,true,editor,2024-11-29 00:49:31,2024-11-29 03:11:31,active,true +M5005,W2188,falcon-core,prod,active,true,A1083,Falcon Works,mid_market,NA,CA,U3851,evan.cole@falconworks.example,Evan Cole,Marketing Operations Lead,marketing,active,true,owner,2025-02-13 04:51:30,2025-02-13 05:23:30,active,true +M5006,W2188,falcon-core,prod,active,true,A1083,Falcon Works,mid_market,NA,CA,U3852,zoe.rossi@falconworks.example,Zoe Rossi,Founder,executive,inactive,false,editor,2025-01-22 07:35:30,2025-01-22 09:55:30,removed,false +M5007,W2189,falcon-ops,sandbox,active,false,A1083,Falcon Works,mid_market,NA,CA,U3853,maya.tan@falconworks.example,Maya Tan,Revenue Operations Manager,sales,active,true,viewer,2025-01-22 08:34:30,2025-01-22 09:19:30,active,true +M5008,W2188,falcon-core,prod,active,true,A1083,Falcon Works,mid_market,NA,CA,U3853,maya.tan@falconworks.example,Maya Tan,Revenue Operations Manager,sales,active,true,viewer,2025-01-22 08:51:30,2025-01-22 10:37:30,active,true +M5009,W2188,falcon-core,prod,active,true,A1083,Falcon Works,mid_market,NA,CA,U3854,mei.sato@falconworks.example,Mei Sato,Workflow Analyst,operations,active,true,viewer,2025-01-13 00:52:30,2025-01-13 03:29:30,active,true +M5010,W2189,falcon-ops,sandbox,active,false,A1083,Falcon Works,mid_market,NA,CA,U3854,mei.sato@falconworks.example,Mei Sato,Workflow Analyst,operations,active,true,editor,2025-01-13 00:35:30,2025-01-13 02:26:30,active,true +M5011,W2188,falcon-core,prod,active,true,A1083,Falcon Works,mid_market,NA,CA,U3855,zoe.saeed@falconworks.example,Zoe Saeed,BI Analyst,analytics,inactive,false,viewer,2025-02-16 23:26:30,2025-02-17 00:48:30,removed,false +M5012,W2189,falcon-ops,sandbox,active,false,A1083,Falcon Works,mid_market,NA,CA,U3856,mila.lopez@falconworks.example,Mila Lopez,Product Manager,product,active,true,editor,2025-01-31 23:40:30,2025-02-01 01:05:30,active,true +M5013,W2189,falcon-ops,sandbox,active,false,A1083,Falcon Works,mid_market,NA,CA,U3857,ivy.price@falconworks.example,Ivy Price,BI Analyst,analytics,active,true,editor,2025-02-17 07:38:30,2025-02-17 09:29:30,active,true +M5014,W2190,silver-core,prod,active,true,A1084,Silver Foods,mid_market,NA,CA,U3858,priya.patel@silverfoods.example,Priya Patel,Analytics Engineer,data,active,true,owner,2025-01-02 19:09:54,2025-01-02 20:57:54,active,true +M5015,W2190,silver-core,prod,active,true,A1084,Silver Foods,mid_market,NA,CA,U3859,noah.tan@silverfoods.example,Noah Tan,Founder,executive,inactive,false,viewer,2025-01-12 09:26:54,2025-01-12 10:06:54,active,true +M5016,W2191,silver-ops,prod,active,false,A1084,Silver Foods,mid_market,NA,CA,U3860,ivy.keller@silverfoods.example,Ivy Keller,Marketing Operations Lead,marketing,active,true,admin,2024-12-17 15:43:54,2024-12-17 18:37:54,active,true +M5017,W2191,silver-ops,prod,active,false,A1084,Silver Foods,mid_market,NA,CA,U3861,marcus.romero@silverfoods.example,Marcus Romero,Technical Program Manager,product,active,true,editor,2024-12-08 15:28:54,2024-12-08 17:22:54,active,true +M5018,W2191,silver-ops,prod,active,false,A1084,Silver Foods,mid_market,NA,CA,U3862,marcus.turner@silverfoods.example,Marcus Turner,Demand Gen Manager,marketing,active,true,editor,2024-12-10 15:44:54,2024-12-10 16:44:54,active,true +M5019,W2191,silver-ops,prod,active,false,A1084,Silver Foods,mid_market,NA,CA,U3863,tomas.park@silverfoods.example,Tomas Park,Workflow Analyst,operations,active,true,viewer,2025-01-04 11:49:54,2025-01-04 13:17:54,active,true +M5020,W2190,silver-core,prod,active,true,A1084,Silver Foods,mid_market,NA,CA,U3863,tomas.park@silverfoods.example,Tomas Park,Workflow Analyst,operations,active,true,editor,2025-01-04 10:37:54,2025-01-04 12:44:54,active,true +M5021,W2190,silver-core,prod,active,true,A1084,Silver Foods,mid_market,NA,CA,U3864,priya.kim@silverfoods.example,Priya Kim,Founder,executive,inactive,false,viewer,2024-12-15 09:13:54,2024-12-15 11:22:54,removed,false +M5022,W2191,silver-ops,prod,active,false,A1084,Silver Foods,mid_market,NA,CA,U3865,mila.ng@silverfoods.example,Mila Ng,Operations Director,operations,active,true,admin,2025-01-19 10:34:54,2025-01-19 12:56:54,active,true +M5023,W2190,silver-core,prod,active,true,A1084,Silver Foods,mid_market,NA,CA,U3865,mila.ng@silverfoods.example,Mila Ng,Operations Director,operations,active,true,editor,2025-01-19 10:22:54,2025-01-19 12:19:54,active,true +M5024,W2190,silver-core,prod,active,true,A1084,Silver Foods,mid_market,NA,CA,U3866,lina.morgan@silverfoods.example,Lina Morgan,Workflow Analyst,operations,active,true,editor,2025-01-02 14:00:54,2025-01-02 15:28:54,active,true +M5025,W2191,silver-ops,prod,active,false,A1084,Silver Foods,mid_market,NA,CA,U3867,mila.chen@silverfoods.example,Mila Chen,Technical Program Manager,product,active,true,viewer,2025-01-05 15:54:54,2025-01-05 17:15:54,active,true +M5026,W2190,silver-core,prod,active,true,A1084,Silver Foods,mid_market,NA,CA,U3868,marcus.silva@silverfoods.example,Marcus Silva,Analytics Engineer,data,active,true,editor,2025-01-09 15:28:54,2025-01-09 17:59:54,active,true +M5027,W2192,sierra-core,prod,active,true,A1085,Sierra Capital,smb,NA,US,U3869,maya.keller@sierracapital.example,Maya Keller,Marketing Operations Lead,marketing,active,true,owner,2024-10-26 17:08:51,2024-10-26 20:02:51,active,true +M5028,W2192,sierra-core,prod,active,true,A1085,Sierra Capital,smb,NA,US,U3870,leo.park@sierracapital.example,Leo Park,Finance Manager,finance,active,true,editor,2024-09-24 08:33:51,2024-09-24 09:52:51,active,true +M5029,W2192,sierra-core,prod,active,true,A1085,Sierra Capital,smb,NA,US,U3871,helena.ng@sierracapital.example,Helena Ng,VP Data,executive,active,true,admin,2024-10-23 16:39:51,2024-10-23 17:01:51,active,true +M5030,W2192,sierra-core,prod,active,true,A1085,Sierra Capital,smb,NA,US,U3872,leo.singh@sierracapital.example,Leo Singh,VP Data,executive,active,true,viewer,2024-10-09 09:31:51,2024-10-09 11:30:51,active,true +M5031,W2193,river-core,prod,active,true,A1086,River Labs,smb,EMEA,FR,U3873,hannah.alvarez@riverlabs.example,Hannah Alvarez,Analytics Engineer,data,inactive,false,owner,2025-03-14 19:21:12,2025-03-14 20:20:12,removed,false +M5032,W2193,river-core,prod,active,true,A1086,River Labs,smb,EMEA,FR,U3874,tomas.silva@riverlabs.example,Tomas Silva,Demand Gen Manager,marketing,active,true,editor,2025-04-06 00:10:12,2025-04-06 01:40:12,active,true +M5033,W2193,river-core,prod,active,true,A1086,River Labs,smb,EMEA,FR,U3875,helena.silva@riverlabs.example,Helena Silva,Analytics Manager,analytics,active,true,viewer,2025-03-13 18:26:12,2025-03-13 19:37:12,active,true +M5034,W2193,river-core,prod,active,true,A1086,River Labs,smb,EMEA,FR,U3876,priya.rossi@riverlabs.example,Priya Rossi,Marketing Operations Lead,marketing,active,true,viewer,2025-04-01 20:54:12,2025-04-01 21:34:12,active,true +M5035,W2193,river-core,prod,active,true,A1086,River Labs,smb,EMEA,FR,U3877,mila.reed@riverlabs.example,Mila Reed,Demand Gen Manager,marketing,active,true,viewer,2025-03-13 23:02:12,2025-03-14 00:48:12,active,true +M5036,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3878,maya.keller@apexcapital.example,Maya Keller,Founder,executive,active,true,owner,2024-12-31 08:35:17,2024-12-31 10:44:17,active,true +M5037,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3879,mei.fischer@apexcapital.example,Mei Fischer,Data Engineer,data,inactive,false,viewer,2024-12-08 11:13:17,2024-12-08 12:53:17,removed,false +M5038,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3880,kenji.silva@apexcapital.example,Kenji Silva,Marketing Operations Lead,marketing,active,true,viewer,2024-12-08 08:14:17,2024-12-08 09:42:17,active,true +M5039,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3881,marcus.romero@apexcapital.example,Marcus Romero,FP&A Analyst,finance,inactive,false,editor,2025-01-06 09:36:17,2025-01-06 12:23:17,removed,false +M5040,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3882,victor.fischer@apexcapital.example,Victor Fischer,COO,executive,provisioned,false,editor,2024-12-29 14:07:17,,pending,false +M5041,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3883,peter.lewis@apexcapital.example,Peter Lewis,Marketing Operations Lead,marketing,inactive,false,editor,2024-12-30 13:36:17,2024-12-30 15:52:17,active,true +M5042,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3884,victor.desai@apexcapital.example,Victor Desai,Demand Gen Manager,marketing,active,true,editor,2024-12-05 13:19:17,2024-12-05 16:00:17,removed,false +M5043,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3885,evan.lewis@apexcapital.example,Evan Lewis,Product Manager,product,inactive,false,viewer,2024-12-01 14:40:17,2024-12-01 17:40:17,removed,false +M5044,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3886,sofia.kim@apexcapital.example,Sofia Kim,CFO,executive,active,true,editor,2024-12-29 14:25:17,2024-12-29 15:08:17,removed,false +M5045,W2195,cedar-core,prod,active,true,A1088,Cedar Partners,smb,APAC,NZ,U3887,mateo.turner@cedarpartners.example,Mateo Turner,Technical Program Manager,product,active,true,owner,2025-02-24 21:08:15,2025-02-24 21:59:15,active,true +M5046,W2195,cedar-core,prod,active,true,A1088,Cedar Partners,smb,APAC,NZ,U3888,helena.desai@cedarpartners.example,Helena Desai,Marketing Operations Lead,marketing,active,true,editor,2025-02-19 20:38:15,2025-02-19 22:33:15,active,true +M5047,W2195,cedar-core,prod,active,true,A1088,Cedar Partners,smb,APAC,NZ,U3889,daniel.singh@cedarpartners.example,Daniel Singh,Sales Analyst,sales,inactive,false,editor,2025-03-15 16:40:15,2025-03-15 16:46:15,removed,false +M5048,W2195,cedar-core,prod,active,true,A1088,Cedar Partners,smb,APAC,NZ,U3890,elena.lewis@cedarpartners.example,Elena Lewis,Operations Manager,operations,active,true,admin,2025-03-07 22:49:15,2025-03-08 00:16:15,active,true +M5049,W2195,cedar-core,prod,active,true,A1088,Cedar Partners,smb,APAC,NZ,U3891,priya.ward@cedarpartners.example,Priya Ward,CFO,executive,active,true,admin,2025-03-07 20:28:15,2025-03-07 21:30:15,active,true +M5050,W2195,cedar-core,prod,active,true,A1088,Cedar Partners,smb,APAC,NZ,U3892,tara.khan@cedarpartners.example,Tara Khan,Analytics Manager,analytics,active,true,editor,2025-02-08 15:54:15,2025-02-08 18:49:15,active,true +M5051,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3893,tomas.cole@beaconnetwork.example,Tomas Cole,Operations Manager,operations,active,true,owner,2024-12-09 08:49:08,2024-12-09 11:21:08,active,true +M5052,W2197,beacon-ops,prod,active,false,A1089,Beacon Network,mid_market,NA,US,U3894,evan.patel@beaconnetwork.example,Evan Patel,Operations Director,operations,active,true,viewer,2024-11-11 05:01:08,2024-11-11 05:45:08,active,true +M5053,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3895,samir.tan@beaconnetwork.example,Samir Tan,VP Data,executive,active,true,viewer,2024-11-26 05:02:08,2024-11-26 05:13:08,active,true +M5054,W2197,beacon-ops,prod,active,false,A1089,Beacon Network,mid_market,NA,US,U3895,samir.tan@beaconnetwork.example,Samir Tan,VP Data,executive,active,true,viewer,2024-11-26 04:06:08,2024-11-26 06:45:08,active,true +M5055,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3896,naomi.nash@beaconnetwork.example,Naomi Nash,BI Analyst,analytics,active,true,editor,2024-11-26 04:33:08,2024-11-26 05:58:08,active,true +M5056,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3897,noah.morgan@beaconnetwork.example,Noah Morgan,Analytics Engineer,data,inactive,false,viewer,2024-12-18 08:20:08,2024-12-18 09:34:08,removed,false +M5057,W2197,beacon-ops,prod,active,false,A1089,Beacon Network,mid_market,NA,US,U3897,noah.morgan@beaconnetwork.example,Noah Morgan,Analytics Engineer,data,inactive,false,viewer,2024-12-18 07:17:08,2024-12-18 08:17:08,removed,false +M5058,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3898,noah.patel@beaconnetwork.example,Noah Patel,Marketing Operations Lead,marketing,active,true,viewer,2024-12-07 03:59:08,2024-12-07 05:40:08,active,true +M5059,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3899,arjun.ward@beaconnetwork.example,Arjun Ward,Technical Program Manager,product,active,true,editor,2024-11-12 04:40:08,2024-11-12 05:38:08,active,true +M5060,W2197,beacon-ops,prod,active,false,A1089,Beacon Network,mid_market,NA,US,U3900,kai.reed@beaconnetwork.example,Kai Reed,Technical Program Manager,product,active,true,admin,2024-12-12 00:49:08,2024-12-12 01:46:08,active,true +M5061,W2197,beacon-ops,prod,active,false,A1089,Beacon Network,mid_market,NA,US,U3901,naomi.singh@beaconnetwork.example,Naomi Singh,Analytics Engineer,data,active,true,editor,2024-12-19 05:10:08,2024-12-19 07:43:08,active,true +M5062,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3901,naomi.singh@beaconnetwork.example,Naomi Singh,Analytics Engineer,data,active,true,viewer,2024-12-19 04:42:08,2024-12-19 06:59:08,active,true +M5063,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3902,ivy.morgan@beaconnetwork.example,Ivy Morgan,Analytics Manager,analytics,active,true,viewer,2024-12-13 23:40:08,2024-12-14 02:19:08,active,true +M5064,W2197,beacon-ops,prod,active,false,A1089,Beacon Network,mid_market,NA,US,U3902,ivy.morgan@beaconnetwork.example,Ivy Morgan,Analytics Manager,analytics,active,true,editor,2024-12-14 00:29:08,2024-12-14 01:55:08,active,true +M5065,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3903,naomi.shah@beaconnetwork.example,Naomi Shah,CFO,executive,provisioned,false,editor,2024-12-01 03:13:08,,pending,false +M5066,W2197,beacon-ops,prod,active,false,A1089,Beacon Network,mid_market,NA,US,U3903,naomi.shah@beaconnetwork.example,Naomi Shah,CFO,executive,provisioned,false,viewer,2024-12-01 03:42:08,,pending,false +M5067,W2197,beacon-ops,prod,active,false,A1089,Beacon Network,mid_market,NA,US,U3904,lina.tan@beaconnetwork.example,Lina Tan,Product Manager,product,active,true,admin,2024-11-28 07:21:08,2024-11-28 09:08:08,active,true +M5068,W2198,vertex-core,prod,active,true,A1090,Vertex Labs,smb,NA,US,U3905,aisha.hill@vertexlabs.example,Aisha Hill,Finance Manager,finance,active,true,owner,2024-11-11 03:46:20,2024-11-11 04:16:20,active,true +M5069,W2198,vertex-core,prod,active,true,A1090,Vertex Labs,smb,NA,US,U3906,tomas.kim@vertexlabs.example,Tomas Kim,BI Analyst,analytics,active,true,editor,2024-10-12 01:56:20,2024-10-12 02:17:20,active,true +M5070,W2198,vertex-core,prod,active,true,A1090,Vertex Labs,smb,NA,US,U3907,ava.brooks@vertexlabs.example,Ava Brooks,Founder,executive,active,true,viewer,2024-10-08 02:12:20,2024-10-08 03:33:20,active,true +M5071,W2198,vertex-core,prod,active,true,A1090,Vertex Labs,smb,NA,US,U3908,noah.rahman@vertexlabs.example,Noah Rahman,Operations Director,operations,active,true,viewer,2024-11-01 04:25:20,2024-11-01 07:16:20,active,true diff --git a/tasks/helixops_saas010/seeds/solution__stg_workspaces.csv b/tasks/helixops_saas010/seeds/solution__stg_workspaces.csv new file mode 100644 index 00000000..a192ae81 --- /dev/null +++ b/tasks/helixops_saas010/seeds/solution__stg_workspaces.csv @@ -0,0 +1,199 @@ +workspace_id,account_id,workspace_name,created_at,workspace_status,deactivated_at,environment_tier,is_primary,is_active_workspace,raw_load_epoch +W2001,A1001,helio-core,2024-08-14 19:43:48,active,,prod,true,true,1723837428 +W2002,A1001,helio-ops,2024-08-25 16:43:48,active,,prod,false,true,1724949828 +W2003,A1001,helio-finance,2024-08-30 20:43:48,active,,prod,false,true,1725223428.0 +W2004,A1002,summit-core,2025-01-16 04:12:29,active,,prod,true,true,1737432749 +W2005,A1002,summit-ops,2025-01-26 22:12:29,active,,sandbox,false,true,1738188749 +W2006,A1002,summit-finance,2025-01-26 01:12:29,active,,prod,false,true,1738285949 +W2007,A1003,nova-core,2024-12-13 06:21:52,active,,prod,true,true,1734070912 +W2008,A1003,nova-ops,2024-12-16 05:21:52,archived,2025-05-15 17:00:00,sandbox,false,false,1734326512 +W2009,A1003,nova-finance,2024-12-25 03:21:52,active,,prod,false,true,1735269712 +W2010,A1004,silver-core,2024-09-15 16:27:43,archived,2025-05-12 14:00:00,prod,true,false,1726676863 +W2011,A1004,silver-ops,2024-09-20 15:27:43,archived,2025-05-12 10:00:00,sandbox,false,false,1726846063 +W2012,A1005,pacific-core,2024-09-05 18:28:15,active,,prod,true,true,1725820095 +W2013,A1005,pacific-ops,2024-09-14 18:28:15,active,,prod,false,true,1726338495 +W2014,A1005,pacific-finance,2024-09-17 22:28:15,active,,prod,false,true,1726612095.0 +W2015,A1006,helio-core,2024-11-29 09:17:28,active,,prod,true,true,1733131048 +W2016,A1006,helio-ops,2024-12-06 13:17:28,active,,prod,false,true,1733663848 +W2017,A1007,silver-core,2024-12-26 18:20:12,active,,prod,true,true,1735496412.0 +W2018,A1008,pacific-core,2024-10-11 11:07:40,active,,prod,true,true,1728904060 +W2019,A1008,pacific-ops,2024-10-15 18:07:40,active,,prod,false,true,1729015660 +W2020,A1008,pacific-finance,2024-10-29 15:07:40,active,,prod,false,true,1730560060 +W2021,A1009,summit-core,2024-09-02 00:22:46,active,,prod,true,true,1725409366.0 +W2022,A1009,summit-ops,2024-09-10 22:22:46,active,,prod,false,true,1726006966 +W2023,A1010,orchid-core,2025-02-16 23:10:21,active,,prod,true,true,1739747421 +W2024,A1011,vertex-core,2025-01-22 15:17:33,active,,prod,true,true,1737731853 +W2025,A1012,cedar-core,2024-08-28 14:09:23,active,,prod,true,true,1725026963 +W2026,A1012,cedar-ops,2024-09-03 12:09:23,active,,sandbox,false,true,1725797363 +W2027,A1013,river-core,2025-01-05 12:56:58,active,,prod,true,true,1736427418 +W2028,A1013,river-ops,2025-01-07 07:56:58,active,,prod,false,true,1736409418.0 +W2029,A1013,river-finance,2025-01-27 11:56:58,active,,prod,false,true,1738151818 +W2030,A1014,evergreen-core,2024-09-26 03:29:43,archived,2025-04-20 14:00:00,prod,true,false,1727753383 +W2031,A1015,delta-core,2024-09-06 19:34:41,archived,2025-04-20 18:00:00,prod,true,false,1725996881 +W2032,A1015,delta-ops,2024-09-14 17:34:41,archived,2025-04-05 14:00:00,sandbox,false,false,1726680881 +W2033,A1016,bluepeak-core,2024-12-27 09:07:46,active,,prod,true,true,1735376866 +W2034,A1016,bluepeak-ops,2025-01-02 11:07:46,active,,prod,false,true,1736075266 +W2035,A1016,bluepeak-finance,2025-01-14 08:07:46,active,,prod,false,true,1737187666 +W2036,A1016,bluepeak-marketing,2025-01-08 11:07:46,active,,prod,false,true,1736334466.0 +W2037,A1017,summit-core,2024-12-08 12:14:21,active,,prod,true,true,1734005661 +W2038,A1017,summit-ops,2024-12-14 16:14:21,active,,prod,false,true,1734279261 +W2039,A1018,harbor-core,2024-09-20 00:10:22,archived,2025-05-12 14:00:00,prod,true,false,1726963822 +W2040,A1018,harbor-ops,2024-09-27 01:10:22,archived,2025-05-26 14:00:00,prod,false,false,1727399422 +W2041,A1019,sierra-core,2025-03-02 16:36:13,active,,prod,true,true,1740933373 +W2042,A1019,sierra-ops,2025-03-10 10:36:13,active,,sandbox,false,true,1741862173.0 +W2043,A1020,pioneer-core,2025-02-25 02:09:23,active,,prod,true,true,1740622163.0 +W2044,A1021,apex-core,2024-10-26 20:34:29,active,,prod,true,true,1729974869.0 +W2045,A1022,summit-core,2025-02-22 23:16:56,active,,prod,true,true,1740698216 +W2046,A1022,summit-ops,2025-03-03 16:16:56,active,,sandbox,false,true,1741105016 +W2047,A1023,atlas-core,2025-02-03 23:25:38,active,,prod,true,true,1738797938.0 +W2048,A1024,sierra-core,2025-02-03 14:59:07,active,,prod,true,true,1738681147 +W2049,A1024,sierra-ops,2025-02-10 16:59:07,active,,prod,false,true,1739465947 +W2050,A1025,bright-core,2024-10-20 17:44:56,active,,prod,true,true,1729705496 +W2051,A1026,pioneer-core,2024-09-01 10:38:17,active,,prod,true,true,1725446297 +W2052,A1027,bluepeak-core,2024-11-02 20:12:59,active,,prod,true,true,1730578379 +W2053,A1027,bluepeak-ops,2024-11-06 02:12:59,active,,prod,false,true,1731118379 +W2054,A1028,apex-core,2024-12-31 04:17:07,active,,prod,true,true,1735964227 +W2055,A1028,apex-ops,2025-01-02 08:17:07,active,,sandbox,false,true,1735805827 +W2056,A1029,bright-core,2024-09-09 03:24:19,archived,2025-04-12 10:00:00,prod,true,false,1726111459 +W2057,A1030,northwind-core,2024-08-30 07:49:08,active,,prod,true,true,1725263348.0 +W2058,A1030,northwind-ops,2024-09-10 06:49:08,active,,prod,false,true,1726210148.0 +W2059,A1030,northwind-finance,2024-09-11 11:49:08,active,,prod,false,true,1726141748 +W2060,A1030,northwind-marketing,2024-09-05 11:49:08,active,,prod,false,true,1725796148 +W2061,A1031,helio-core,2025-02-23 06:18:16,active,,prod,true,true,1740723496.0 +W2062,A1031,helio-ops,2025-03-02 09:18:16,active,,prod,false,true,1741079896 +W2063,A1031,helio-finance,2025-03-11 09:18:16,active,,prod,false,true,1742030296.0 +W2064,A1032,vertex-core,2024-09-20 20:25:27,archived,2025-04-12 14:00:00,prod,true,false,1727036727 +W2065,A1032,vertex-ops,2024-10-01 17:25:27,archived,2025-05-05 18:00:00,prod,false,false,1728062727.0 +W2066,A1033,lighthouse-core,2024-10-20 07:50:01,active,,prod,true,true,1729583401 +W2067,A1033,lighthouse-ops,2024-10-29 11:50:01,active,,prod,false,true,1730289001 +W2068,A1034,helio-core,2024-12-05 23:59:06,active,,prod,true,true,1733788746.0 +W2069,A1034,helio-ops,2024-12-10 22:59:06,active,,sandbox,false,true,1734217146 +W2070,A1035,bright-core,2025-02-28 19:06:57,active,,prod,true,true,1741115217 +W2071,A1035,bright-ops,2025-03-09 19:06:57,active,,sandbox,false,true,1741892817 +W2072,A1035,bright-finance,2025-03-06 23:06:57,active,,prod,false,true,1741648017 +W2073,A1036,granite-core,2024-12-25 14:14:31,archived,2025-05-20 10:00:00,prod,true,false,1735395271 +W2074,A1036,granite-ops,2025-01-03 16:14:31,archived,2025-05-05 14:00:00,sandbox,false,false,1736352871.0 +W2075,A1037,lighthouse-core,2024-11-28 12:24:43,active,,prod,true,true,1732969483 +W2076,A1037,lighthouse-ops,2024-12-08 11:24:43,active,,prod,false,true,1733743483.0 +W2077,A1037,lighthouse-finance,2024-12-14 06:24:43,active,,sandbox,false,true,1734157483.0 +W2078,A1037,lighthouse-marketing,2024-12-19 10:24:43,active,,sandbox,false,true,1735035883 +W2079,A1038,river-core,2024-11-24 13:09:31,active,,prod,true,true,1732453771 +W2080,A1038,river-ops,2024-12-05 18:09:31,active,,prod,false,true,1733681371 +W2081,A1039,nova-core,2025-02-16 18:26:48,active,,prod,true,true,1739816808 +W2082,A1040,harbor-core,2024-12-16 18:58:20,active,,prod,true,true,1734807500 +W2083,A1040,harbor-ops,2024-12-18 12:58:20,active,,sandbox,false,true,1734785900.0 +W2084,A1040,harbor-finance,2024-12-22 15:58:20,active,,prod,false,true,1735142300 +W2085,A1041,cedar-core,2024-08-08 01:07:41,active,,prod,true,true,1723079261 +W2086,A1041,cedar-ops,2024-08-18 00:07:41,active,,sandbox,false,true,1724371661 +W2087,A1041,cedar-finance,2024-08-23 19:07:41,active,,prod,false,true,1724785661 +W2088,A1042,northwind-core,2024-09-29 15:52:42,active,,prod,true,true,1727797962.0 +W2089,A1042,northwind-ops,2024-10-06 14:52:42,active,,sandbox,false,true,1728658362 +W2090,A1042,northwind-finance,2024-10-13 12:52:42,active,,prod,false,true,1728910362 +W2091,A1043,lighthouse-core,2024-10-27 19:03:18,active,,prod,true,true,1730401398 +W2092,A1043,lighthouse-ops,2024-11-02 17:03:18,active,,sandbox,false,true,1730739798 +W2093,A1043,lighthouse-finance,2024-11-14 15:03:18,active,,prod,false,true,1731942198.0 +W2094,A1043,lighthouse-marketing,2024-11-29 14:03:18,active,,prod,false,true,1732975398 +W2095,A1044,summit-core,2024-10-06 02:32:29,active,,prod,true,true,1728527549.0 +W2096,A1045,nova-core,2024-11-09 17:05:10,active,,prod,true,true,1731171910 +W2097,A1045,nova-ops,2024-11-14 12:05:10,active,,prod,false,true,1731672310 +W2098,A1045,nova-finance,2024-11-17 09:05:10,active,,prod,false,true,1732007110 +W2099,A1045,nova-marketing,2024-11-21 11:05:10,active,,prod,false,true,1732187110 +W2100,A1046,pioneer-core,2024-10-20 12:09:12,active,,prod,true,true,1729598952 +W2101,A1047,orchid-core,2024-10-21 05:06:00,active,,prod,true,true,1729573560 +W2102,A1047,orchid-ops,2024-10-27 00:06:00,active,,sandbox,false,true,1730419560.0 +W2103,A1047,orchid-finance,2024-10-27 01:06:00,active,,prod,false,true,1730163960.0 +W2104,A1048,orchid-core,2025-02-20 21:00:18,active,,prod,true,true,1740171618 +W2105,A1048,orchid-ops,2025-02-25 20:00:18,active,,prod,false,true,1740686418 +W2106,A1048,orchid-finance,2025-03-13 00:00:18,active,,prod,false,true,1742083218 +W2107,A1049,northwind-core,2024-11-13 09:19:33,active,,prod,true,true,1731575973 +W2108,A1049,northwind-ops,2024-11-21 03:19:33,active,,prod,false,true,1732591173 +W2109,A1049,northwind-finance,2024-12-01 03:19:33,active,,prod,false,true,1733368773.0 +W2110,A1050,cedar-core,2025-02-21 16:48:30,active,,prod,true,true,1740242910 +W2111,A1050,cedar-ops,2025-02-27 22:48:30,active,,sandbox,false,true,1741042110 +W2112,A1051,lighthouse-core,2025-03-08 06:44:10,active,,prod,true,true,1741502650 +W2113,A1052,sierra-core,2024-12-10 22:54:21,active,,prod,true,true,1734044061.0 +W2114,A1052,sierra-ops,2024-12-14 05:54:21,active,,prod,false,true,1734414861 +W2115,A1053,bright-core,2024-09-23 17:24:29,active,,prod,true,true,1727544269 +W2116,A1053,bright-ops,2024-10-01 15:24:29,active,,prod,false,true,1727969069.0 +W2117,A1053,bright-finance,2024-10-09 16:24:29,active,,prod,false,true,1728491069 +W2118,A1054,granite-core,2024-08-07 08:47:01,active,,prod,true,true,1723020421 +W2119,A1054,granite-ops,2024-08-14 05:47:01,active,,prod,false,true,1723960021 +W2120,A1054,granite-finance,2024-08-25 04:47:01,active,,prod,false,true,1724906821 +W2121,A1055,pioneer-core,2025-01-21 19:44:38,active,,prod,true,true,1737834278.0 +W2122,A1055,pioneer-ops,2025-01-28 15:44:38,active,,sandbox,false,true,1738338278.0 +W2123,A1056,delta-core,2024-11-28 10:04:51,active,,prod,true,true,1732874691 +W2124,A1056,delta-ops,2024-12-06 10:04:51,active,,prod,false,true,1733565891 +W2125,A1056,delta-finance,2024-12-14 05:04:51,active,,prod,false,true,1734411891 +W2126,A1057,harbor-core,2024-10-27 13:01:31,active,,prod,true,true,1730379691.0 +W2127,A1057,harbor-ops,2024-11-06 11:01:31,active,,sandbox,false,true,1731150091.0 +W2128,A1057,harbor-finance,2024-11-02 13:01:31,active,,prod,false,true,1730811691 +W2129,A1057,harbor-marketing,2024-11-17 09:01:31,active,,prod,false,true,1731834091 +W2130,A1058,evergreen-core,2025-01-19 04:52:12,active,,prod,true,true,1737607932 +W2131,A1058,evergreen-ops,2025-01-30 06:52:12,active,,prod,false,true,1738651932 +W2132,A1059,evergreen-core,2024-10-02 09:27:52,active,,prod,true,true,1727861272 +W2133,A1059,evergreen-ops,2024-10-08 12:27:52,active,,sandbox,false,true,1728390472 +W2134,A1060,cedar-core,2024-11-09 00:41:46,active,,prod,true,true,1731285706 +W2135,A1060,cedar-ops,2024-11-10 19:41:46,active,,sandbox,false,true,1731526906.0 +W2136,A1061,atlas-core,2025-02-20 05:52:24,active,,prod,true,true,1740462744 +W2137,A1061,atlas-ops,2025-02-26 05:52:24,active,,sandbox,false,true,1740549144 +W2138,A1061,atlas-finance,2025-02-26 00:52:24,active,,prod,false,true,1740531144 +W2139,A1062,delta-core,2024-11-19 16:50:25,active,,prod,true,true,1732467025.0 +W2140,A1062,delta-ops,2024-11-27 22:50:25,active,,prod,false,true,1732920625.0 +W2141,A1062,delta-finance,2024-12-05 19:50:25,active,,prod,false,true,1733687425 +W2142,A1063,maple-core,2024-11-23 17:34:06,active,,prod,true,true,1732815246.0 +W2143,A1064,atlas-core,2024-08-31 05:39:22,active,,prod,true,true,1725341962.0 +W2144,A1065,vertex-core,2025-01-04 09:11:13,active,,prod,true,true,1735981873 +W2145,A1065,vertex-ops,2025-01-15 06:11:13,active,,prod,false,true,1737007873.0 +W2146,A1066,pacific-core,2025-01-15 19:33:41,active,,prod,true,true,1737401621 +W2147,A1066,pacific-ops,2025-01-21 22:33:41,active,,prod,false,true,1737498821.0 +W2148,A1067,maple-core,2025-01-07 02:24:42,active,,prod,true,true,1736475882 +W2149,A1067,maple-ops,2025-01-17 03:24:42,active,,sandbox,false,true,1737084282.0 +W2150,A1068,helio-core,2024-08-17 18:36:33,active,,prod,true,true,1724351793.0 +W2151,A1068,helio-ops,2024-08-19 18:36:33,active,,prod,false,true,1724178993.0 +W2152,A1068,helio-finance,2024-08-23 17:36:33,active,,sandbox,false,true,1724866593 +W2153,A1068,helio-marketing,2024-09-10 16:36:33,active,,prod,false,true,1726158993 +W2154,A1069,bright-core,2024-12-07 05:08:52,active,,prod,true,true,1733807332.0 +W2155,A1069,bright-ops,2024-12-18 10:08:52,active,,prod,false,true,1734948532 +W2156,A1069,bright-finance,2024-12-21 04:08:52,active,,prod,false,true,1734926932 +W2157,A1070,helio-core,2024-11-09 05:20:27,active,,prod,true,true,1731475227 +W2158,A1071,evergreen-core,2024-09-05 21:34:10,active,,prod,true,true,1725917650.0 +W2159,A1071,evergreen-ops,2024-09-12 18:34:10,active,,prod,false,true,1726338850.0 +W2160,A1071,evergreen-finance,2024-09-13 16:34:10,active,,sandbox,false,true,1726331650 +W2161,A1072,summit-core,2024-10-08 09:18:23,active,,prod,true,true,1728638303 +W2162,A1072,summit-ops,2024-10-12 07:18:23,active,,prod,false,true,1728803903 +W2163,A1072,summit-finance,2024-10-20 07:18:23,active,,sandbox,false,true,1729495103 +W2164,A1073,silver-core,2024-11-10 19:21:51,active,,prod,true,true,1731698511 +W2165,A1073,silver-ops,2024-11-21 19:21:51,active,,prod,false,true,1732562511.0 +W2166,A1074,granite-core,2024-08-21 04:20:24,active,,prod,true,true,1724559624 +W2167,A1074,granite-ops,2024-08-28 01:20:24,active,,prod,false,true,1725067224.0 +W2168,A1074,granite-finance,2024-09-08 06:20:24,active,,prod,false,true,1726035624.0 +W2169,A1075,cedar-core,2024-11-08 07:31:13,active,,prod,true,true,1731223873 +W2170,A1076,atlas-core,2025-02-26 04:32:44,active,,prod,true,true,1740976364 +W2171,A1076,atlas-ops,2025-02-28 02:32:44,active,,prod,false,true,1740882764.0 +W2172,A1077,evergreen-core,2024-09-13 07:41:36,active,,prod,true,true,1726213296 +W2173,A1077,evergreen-ops,2024-09-24 07:41:36,active,,prod,false,true,1727163696 +W2174,A1077,evergreen-finance,2024-09-17 06:41:36,active,,prod,false,true,1726814496 +W2175,A1078,beacon-core,2025-03-08 05:08:06,active,,prod,true,true,1741410486.0 +W2176,A1078,beacon-ops,2025-03-18 02:08:06,active,,prod,false,true,1742609286 +W2177,A1078,beacon-finance,2025-03-26 01:08:06,active,,prod,false,true,1743037686.0 +W2178,A1079,nova-core,2024-09-09 23:45:24,active,,prod,true,true,1726271124 +W2179,A1079,nova-ops,2024-09-11 18:45:24,active,,prod,false,true,1726339524 +W2180,A1079,nova-finance,2024-09-27 23:45:24,active,,prod,false,true,1727480724 +W2181,A1079,nova-marketing,2024-09-21 20:45:24,active,,prod,false,true,1727210724.0 +W2182,A1080,beacon-core,2024-08-17 09:30:12,active,,prod,true,true,1724059812 +W2183,A1080,beacon-ops,2024-08-28 03:30:12,active,,prod,false,true,1724902212 +W2184,A1081,river-core,2024-11-23 19:36:21,active,,prod,true,true,1732390581 +W2185,A1081,river-ops,2024-12-01 18:36:21,active,,sandbox,false,true,1733250981 +W2186,A1081,river-finance,2024-12-15 16:36:21,active,,prod,false,true,1734366981 +W2187,A1082,summit-core,2024-11-23 01:18:31,archived,2025-04-05 14:00:00,prod,true,false,1732756711.0 +W2188,A1083,falcon-core,2025-01-11 09:17:30,active,,prod,true,true,1737019050 +W2189,A1083,falcon-ops,2025-01-19 09:17:30,active,,sandbox,false,true,1737537450 +W2190,A1084,silver-core,2024-12-10 16:11:54,active,,prod,true,true,1733933514 +W2191,A1084,silver-ops,2024-12-19 14:11:54,active,,prod,false,true,1734876714 +W2192,A1085,sierra-core,2024-09-19 11:19:51,active,,prod,true,true,1726744791 +W2193,A1086,river-core,2025-02-23 01:58:12,active,,prod,true,true,1740707892 +W2194,A1087,apex-core,2024-12-02 11:20:17,archived,2025-05-12 10:00:00,prod,true,false,1733397617.0 +W2195,A1088,cedar-core,2025-02-17 22:19:15,active,,prod,true,true,1740176355 +W2196,A1089,beacon-core,2024-11-13 08:16:08,active,,prod,true,true,1731744968 +W2197,A1089,beacon-ops,2024-11-22 04:16:08,active,,prod,false,true,1732508168.0 +W2198,A1090,vertex-core,2024-10-03 01:37:20,active,,prod,true,true,1728351440 diff --git a/tasks/helixops_saas010/setup.sh b/tasks/helixops_saas010/setup.sh new file mode 100755 index 00000000..ba9d7064 --- /dev/null +++ b/tasks/helixops_saas010/setup.sh @@ -0,0 +1,2 @@ +#!/bin/bash +dbt run diff --git a/tasks/helixops_saas010/solution.sh b/tasks/helixops_saas010/solution.sh new file mode 100755 index 00000000..7688ea8a --- /dev/null +++ b/tasks/helixops_saas010/solution.sh @@ -0,0 +1,3 @@ +#!/bin/bash +patch -p1 < /sage/solutions/changes.patch +dbt run --select stg_workspaces int_account_workspaces diff --git a/tasks/helixops_saas010/solutions/changes.patch b/tasks/helixops_saas010/solutions/changes.patch new file mode 100644 index 00000000..0105561f --- /dev/null +++ b/tasks/helixops_saas010/solutions/changes.patch @@ -0,0 +1,8 @@ +--- a/models/intermediate/int_account_workspaces.sql ++++ b/models/intermediate/int_account_workspaces.sql +@@ -12,4 +12,5 @@ + min(created_at) as first_workspace_created_at, + max(created_at) as latest_workspace_created_at + from workspaces ++where workspace_status != 'archived' + group by 1 diff --git a/tasks/helixops_saas010/task.yaml b/tasks/helixops_saas010/task.yaml new file mode 100644 index 00000000..b0b5c3e8 --- /dev/null +++ b/tasks/helixops_saas010/task.yaml @@ -0,0 +1,30 @@ +task_id: helixops_saas010 +status: ready +description: Add a WHERE clause to filter archived workspaces from an intermediate model +prompts: + - key: base + prompt: |- + Please filter out archived workspaces after the staging layer. +author_name: joel +author_email: joel@example.com +difficulty: easy +tags: + - dbt + - helixops_saas +test_setup: |- + dbt run --select int_account_workspaces +variants: +- db_type: duckdb + db_name: helixops_saas + project_type: dbt + project_name: helixops_saas +- db_type: duckdb + db_name: helixops_saas + project_type: dbt-fusion + project_name: helixops_saas +solution_seeds: + - table_name: stg_workspaces + - table_name: int_account_workspaces + - table_name: int_workspace_roster + - table_name: int_workspace_daily_metrics + - table_name: int_support_sla diff --git a/tasks/helixops_saas010/tests/AUTO_int_account_workspaces_equality.sql b/tasks/helixops_saas010/tests/AUTO_int_account_workspaces_equality.sql new file mode 100644 index 00000000..9e23a84e --- /dev/null +++ b/tasks/helixops_saas010/tests/AUTO_int_account_workspaces_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'int_account_workspaces' %} +{% set answer_keys = ['solution__int_account_workspaces'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__int_account_workspaces') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas010/tests/AUTO_int_account_workspaces_existence.sql b/tasks/helixops_saas010/tests/AUTO_int_account_workspaces_existence.sql new file mode 100644 index 00000000..4514178e --- /dev/null +++ b/tasks/helixops_saas010/tests/AUTO_int_account_workspaces_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'int_account_workspaces' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas010/tests/AUTO_int_support_sla_equality.sql b/tasks/helixops_saas010/tests/AUTO_int_support_sla_equality.sql new file mode 100644 index 00000000..d11c4918 --- /dev/null +++ b/tasks/helixops_saas010/tests/AUTO_int_support_sla_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'int_support_sla' %} +{% set answer_keys = ['solution__int_support_sla'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__int_support_sla') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas010/tests/AUTO_int_support_sla_existence.sql b/tasks/helixops_saas010/tests/AUTO_int_support_sla_existence.sql new file mode 100644 index 00000000..0dac9a72 --- /dev/null +++ b/tasks/helixops_saas010/tests/AUTO_int_support_sla_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'int_support_sla' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas010/tests/AUTO_int_workspace_daily_metrics_equality.sql b/tasks/helixops_saas010/tests/AUTO_int_workspace_daily_metrics_equality.sql new file mode 100644 index 00000000..2997a8ec --- /dev/null +++ b/tasks/helixops_saas010/tests/AUTO_int_workspace_daily_metrics_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'int_workspace_daily_metrics' %} +{% set answer_keys = ['solution__int_workspace_daily_metrics'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__int_workspace_daily_metrics') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas010/tests/AUTO_int_workspace_daily_metrics_existence.sql b/tasks/helixops_saas010/tests/AUTO_int_workspace_daily_metrics_existence.sql new file mode 100644 index 00000000..45f0eeca --- /dev/null +++ b/tasks/helixops_saas010/tests/AUTO_int_workspace_daily_metrics_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'int_workspace_daily_metrics' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas010/tests/AUTO_int_workspace_roster_equality.sql b/tasks/helixops_saas010/tests/AUTO_int_workspace_roster_equality.sql new file mode 100644 index 00000000..5cede37e --- /dev/null +++ b/tasks/helixops_saas010/tests/AUTO_int_workspace_roster_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'int_workspace_roster' %} +{% set answer_keys = ['solution__int_workspace_roster'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__int_workspace_roster') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas010/tests/AUTO_int_workspace_roster_existence.sql b/tasks/helixops_saas010/tests/AUTO_int_workspace_roster_existence.sql new file mode 100644 index 00000000..de165188 --- /dev/null +++ b/tasks/helixops_saas010/tests/AUTO_int_workspace_roster_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'int_workspace_roster' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas010/tests/AUTO_stg_workspaces_equality.sql b/tasks/helixops_saas010/tests/AUTO_stg_workspaces_equality.sql new file mode 100644 index 00000000..11be6c21 --- /dev/null +++ b/tasks/helixops_saas010/tests/AUTO_stg_workspaces_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'stg_workspaces' %} +{% set answer_keys = ['solution__stg_workspaces'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__stg_workspaces') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas010/tests/AUTO_stg_workspaces_existence.sql b/tasks/helixops_saas010/tests/AUTO_stg_workspaces_existence.sql new file mode 100644 index 00000000..723156e0 --- /dev/null +++ b/tasks/helixops_saas010/tests/AUTO_stg_workspaces_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'stg_workspaces' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas011/macros/ade_bench_equality_test.sql b/tasks/helixops_saas011/macros/ade_bench_equality_test.sql new file mode 100644 index 00000000..510c6037 --- /dev/null +++ b/tasks/helixops_saas011/macros/ade_bench_equality_test.sql @@ -0,0 +1,78 @@ +{% macro ade_bench_equality_test(table_name, answer_keys, cols_to_exclude=[]) %} + {% if not execute %} + select 1 where 1=0 + {% else %} + {% set ns = namespace(matched=false) %} + {% set actual_rel = load_relation(ref(table_name)) %} + + {% if actual_rel is not none %} + {% set actual_columns = adapter.get_columns_in_relation(actual_rel) %} + {% set exclude_lower = cols_to_exclude | map('lower') | list %} + + {%- set actual_col_names = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do actual_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set actual_set = actual_col_names | sort %} + + {% for answer_key in answer_keys %} + {% if not ns.matched %} + {% set seed_rel = load_relation(ref(answer_key)) %} + {% if seed_rel is not none %} + {% set seed_columns = adapter.get_columns_in_relation(seed_rel) %} + + {%- set seed_col_names = [] -%} + {%- for col in seed_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do seed_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set seed_set = seed_col_names | sort %} + + {% if actual_set == seed_set %} + {%- set compare_cols = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do compare_cols.append(col.quoted) -%} + {%- endif -%} + {%- endfor -%} + {% set compare_cols_csv = compare_cols | join(', ') %} + + {% set query %} + with a_minus_b as ( + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + except + select {{ compare_cols_csv }} from {{ ref(table_name) }} + ), + b_minus_a as ( + select {{ compare_cols_csv }} from {{ ref(table_name) }} + except + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + ), + unioned as ( + select * from a_minus_b + union all + select * from b_minus_a + ) + select count(*) as diff_count from unioned + {% endset %} + + {% set result = run_query(query) %} + {% if result.rows[0][0] == 0 %} + {% set ns.matched = true %} + {% endif %} + {% endif %} + {% endif %} + {% endif %} + {% endfor %} + {% endif %} + + {% if ns.matched %} + select 1 where 1=0 + {% else %} + select 1 + {% endif %} + {% endif %} +{% endmacro %} diff --git a/tasks/helixops_saas011/seeds/_no-op.txt b/tasks/helixops_saas011/seeds/_no-op.txt new file mode 100644 index 00000000..bf74e78d --- /dev/null +++ b/tasks/helixops_saas011/seeds/_no-op.txt @@ -0,0 +1,26 @@ + + +seeds: + helixops_saas: + solution__dim_accounts: + +column_types: + account_id: varchar + account_name: varchar + industry: varchar + region: varchar + segment: varchar + billing_country: varchar + created_at: timestamp + account_status: varchar + is_churned: boolean + employee_band: varchar + owner_team: varchar + workspace_count: bigint + active_workspace_count: bigint + prod_workspace_count: bigint + sandbox_workspace_count: bigint + primary_workspace_name: varchar + user_count: bigint + active_user_count: bigint + inactive_user_count: bigint + provisioned_user_count: bigint diff --git a/tasks/helixops_saas011/seeds/solution__dim_accounts.csv b/tasks/helixops_saas011/seeds/solution__dim_accounts.csv new file mode 100644 index 00000000..18f8669c --- /dev/null +++ b/tasks/helixops_saas011/seeds/solution__dim_accounts.csv @@ -0,0 +1,91 @@ +account_id,account_name,industry,region,segment,billing_country,created_at,account_status,is_churned,employee_band,owner_team,workspace_count,active_workspace_count,prod_workspace_count,sandbox_workspace_count,primary_workspace_name,user_count,active_user_count,inactive_user_count,provisioned_user_count +A1001,Helio Systems,healthcare,EMEA,mid_market,NL,2024-08-12 13:43:48,active,false,201-500,CSM-EMEA,3,3,3,0,helio-core,9,7,2,0 +A1002,Summit Foods,media,NA,mid_market,US,2025-01-10 22:12:29,active,false,501-1000,CSM-East,3,3,2,1,summit-core,12,11,1,0 +A1003,Nova Ventures,manufacturing,NA,enterprise,US,2024-12-11 03:21:52,active,false,1000+,CSM-East,3,2,2,1,nova-core,16,15,1,0 +A1004,Silver Solutions,manufacturing,NA,enterprise,US,2024-09-07 13:27:43,churned,true,5000+,CSM-East,2,0,1,1,silver-core,14,6,8,0 +A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,2024-08-31 14:28:15,active,false,5000+,CSM-EMEA,3,3,3,0,pacific-core,15,12,3,0 +A1006,Helio Works,education,EMEA,mid_market,UK,2024-11-21 09:17:28,active,false,201-500,CSM-EMEA,2,2,2,0,helio-core,7,5,2,0 +A1007,Silver Systems,energy,EMEA,smb,FR,2024-12-22 18:20:12,active,false,51-200,CSM-EMEA,1,1,1,0,silver-core,4,3,1,0 +A1008,Pacific Works,software,EMEA,mid_market,UK,2024-10-06 11:07:40,active,false,201-500,CSM-EMEA,3,3,3,0,pacific-core,11,11,0,0 +A1009,Summit Group,financial_services,NA,mid_market,US,2024-08-22 17:22:46,active,false,501-1000,CSM-East,2,2,2,0,summit-core,13,11,2,0 +A1010,Orchid Foods,education,NA,smb,CA,2025-02-10 21:10:21,active,false,11-50,CSM-East,1,1,1,0,orchid-core,8,7,1,0 +A1011,Vertex Energy,software,NA,smb,CA,2025-01-14 09:17:33,active,false,51-200,CSM-East,1,1,1,0,vertex-core,6,6,0,0 +A1012,Cedar Ventures,retail,APAC,smb,JP,2024-08-19 07:09:23,active,false,11-50,CSM-APAC,2,2,1,1,cedar-core,7,6,1,0 +A1013,River Foods,manufacturing,NA,mid_market,US,2024-12-27 04:56:58,active,false,501-1000,CSM-East,3,3,3,0,river-core,7,5,2,0 +A1014,Evergreen Global,retail,APAC,enterprise,SG,2024-09-21 19:29:43,churned,true,1000+,CSM-APAC,1,0,1,0,evergreen-core,18,4,14,0 +A1015,Delta Network,logistics,NA,smb,US,2024-09-04 16:34:41,churned,true,51-200,CSM-East,2,0,1,1,delta-core,3,0,3,0 +A1016,BluePeak Capital,energy,EMEA,enterprise,DE,2024-12-24 05:07:46,active,false,1000+,CSM-EMEA,4,4,4,0,bluepeak-core,19,19,0,0 +A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,2024-11-28 10:14:21,active,false,201-500,CSM-EMEA,2,2,2,0,summit-core,9,8,1,0 +A1018,Harbor Manufacturing,media,EMEA,smb,UK,2024-09-18 20:10:22,churned,true,11-50,CSM-EMEA,2,0,2,0,harbor-core,3,2,1,0 +A1019,Sierra Systems,education,APAC,smb,JP,2025-02-26 10:36:13,active,false,51-200,CSM-APAC,2,2,1,1,sierra-core,4,3,1,0 +A1020,Pioneer Network,travel,EMEA,smb,FR,2025-02-18 00:09:23,active,false,11-50,CSM-EMEA,1,1,1,0,pioneer-core,4,3,1,0 +A1021,Apex Logistics,software,NA,smb,US,2024-10-25 12:34:29,active,false,11-50,CSM-East,1,1,1,0,apex-core,7,7,0,0 +A1022,Summit Collective,retail,APAC,smb,NZ,2025-02-16 16:16:56,active,false,51-200,CSM-APAC,2,2,1,1,summit-core,5,3,2,0 +A1023,Atlas Systems,education,NA,smb,CA,2025-01-31 16:25:38,active,false,11-50,CSM-East,1,1,1,0,atlas-core,8,8,0,0 +A1024,Sierra Group,manufacturing,NA,smb,CA,2025-01-29 08:59:07,active,false,11-50,CSM-East,2,2,2,0,sierra-core,4,4,0,0 +A1025,Bright Capital,education,EMEA,smb,UK,2024-10-14 09:44:56,active,false,51-200,CSM-EMEA,1,1,1,0,bright-core,6,5,1,0 +A1026,Pioneer Capital,education,NA,smb,CA,2024-08-30 06:38:17,active,false,11-50,CSM-East,1,1,1,0,pioneer-core,8,8,0,0 +A1027,BluePeak Health,retail,APAC,smb,SG,2024-10-31 19:12:59,active,false,51-200,CSM-APAC,2,2,2,0,bluepeak-core,5,5,0,0 +A1028,Apex Energy,energy,APAC,mid_market,SG,2024-12-26 04:17:07,active,false,501-1000,CSM-APAC,2,2,1,1,apex-core,11,10,1,0 +A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,2024-08-31 01:24:19,churned,true,1000+,CSM-APAC,1,0,1,0,bright-core,17,3,13,1 +A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,2024-08-23 04:49:08,active,false,5000+,CSM-EMEA,4,4,4,0,northwind-core,12,11,1,0 +A1031,Helio Holdings,healthcare,APAC,mid_market,AU,2025-02-14 05:18:16,active,false,201-500,CSM-APAC,3,3,3,0,helio-core,10,10,0,0 +A1032,Vertex Works,manufacturing,EMEA,mid_market,DE,2024-09-16 13:25:27,churned,true,201-500,CSM-EMEA,2,0,2,0,vertex-core,6,4,2,0 +A1033,Lighthouse Global,logistics,NA,mid_market,CA,2024-10-19 07:50:01,active,false,201-500,CSM-East,2,2,2,0,lighthouse-core,12,12,0,0 +A1034,Helio Partners,travel,NA,smb,CA,2024-12-01 18:59:06,active,false,51-200,CSM-East,2,2,1,1,helio-core,7,7,0,0 +A1035,Bright Retail,retail,EMEA,mid_market,UK,2025-02-25 19:06:57,active,false,501-1000,CSM-EMEA,3,3,2,1,bright-core,13,11,1,1 +A1036,Granite Holdings,education,NA,smb,US,2024-12-22 12:14:31,churned,true,51-200,CSM-East,2,0,1,1,granite-core,3,0,3,0 +A1037,Lighthouse Network,media,EMEA,enterprise,UK,2024-11-25 06:24:43,active,false,1000+,CSM-EMEA,4,4,2,2,lighthouse-core,18,15,3,0 +A1038,River Systems,logistics,APAC,smb,AU,2024-11-18 10:09:31,active,false,51-200,CSM-APAC,2,2,2,0,river-core,5,4,1,0 +A1039,Nova Group,media,EMEA,smb,FR,2025-02-06 17:26:48,active,false,11-50,CSM-EMEA,1,1,1,0,nova-core,7,7,0,0 +A1040,Harbor Collective,healthcare,APAC,mid_market,SG,2024-12-08 12:58:20,active,false,201-500,CSM-APAC,3,3,2,1,harbor-core,12,10,2,0 +A1041,Cedar Logistics,media,EMEA,mid_market,NL,2024-08-04 18:07:41,active,false,201-500,CSM-EMEA,3,3,2,1,cedar-core,12,10,2,0 +A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,2024-09-19 11:52:42,active,false,501-1000,CSM-APAC,3,3,2,1,northwind-core,11,10,1,0 +A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,2024-10-21 14:03:18,active,false,1000+,CSM-APAC,4,4,3,1,lighthouse-core,18,16,2,0 +A1044,Summit Holdings,software,EMEA,smb,NL,2024-09-30 00:32:29,active,false,11-50,CSM-EMEA,1,1,1,0,summit-core,5,5,0,0 +A1045,Nova Holdings,manufacturing,NA,enterprise,CA,2024-11-05 09:05:10,active,false,1000+,CSM-East,4,4,4,0,nova-core,14,14,0,0 +A1046,Pioneer Solutions,education,NA,smb,CA,2024-10-17 12:09:12,active,false,51-200,CSM-East,1,1,1,0,pioneer-core,5,4,1,0 +A1047,Orchid Global,healthcare,APAC,enterprise,AU,2024-10-15 00:06:00,active,false,5000+,CSM-APAC,3,3,2,1,orchid-core,19,19,0,0 +A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,2025-02-14 20:00:18,active,false,5000+,CSM-APAC,3,3,3,0,orchid-core,17,14,3,0 +A1049,Northwind Network,energy,NA,enterprise,CA,2024-11-12 02:19:33,active,false,5000+,CSM-East,3,3,3,0,northwind-core,20,18,2,0 +A1050,Cedar Energy,software,APAC,smb,JP,2025-02-15 14:48:30,active,false,11-50,CSM-APAC,2,2,1,1,cedar-core,4,4,0,0 +A1051,Lighthouse Systems,media,EMEA,smb,UK,2025-02-26 02:44:10,active,false,51-200,CSM-EMEA,1,1,1,0,lighthouse-core,7,4,3,0 +A1052,Sierra Labs,software,APAC,mid_market,NZ,2024-11-30 21:54:21,active,false,501-1000,CSM-APAC,2,2,2,0,sierra-core,10,9,1,0 +A1053,Bright Health,media,NA,mid_market,CA,2024-09-19 10:24:29,active,false,501-1000,CSM-East,3,3,3,0,bright-core,10,9,1,0 +A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,2024-08-01 03:47:01,active,false,201-500,CSM-APAC,3,3,3,0,granite-core,12,8,4,0 +A1055,Pioneer Systems,travel,EMEA,mid_market,FR,2025-01-19 13:44:38,active,false,501-1000,CSM-EMEA,2,2,1,1,pioneer-core,13,12,1,0 +A1056,Delta Global,retail,APAC,mid_market,AU,2024-11-19 05:04:51,active,false,201-500,CSM-APAC,3,3,3,0,delta-core,11,10,1,0 +A1057,Harbor Partners,education,APAC,enterprise,NZ,2024-10-17 08:01:31,active,false,1000+,CSM-APAC,4,4,3,1,harbor-core,13,12,1,0 +A1058,Evergreen Analytics,travel,EMEA,smb,UK,2025-01-08 22:52:12,active,false,11-50,CSM-EMEA,2,2,2,0,evergreen-core,7,5,2,0 +A1059,Evergreen Partners,education,NA,mid_market,CA,2024-09-27 07:27:52,active,false,201-500,CSM-East,2,2,1,1,evergreen-core,11,10,1,0 +A1060,Cedar Foods,healthcare,NA,mid_market,CA,2024-11-05 18:41:46,active,false,201-500,CSM-East,2,2,1,1,cedar-core,13,11,2,0 +A1061,Atlas Capital,travel,EMEA,enterprise,FR,2025-02-13 00:52:24,active,false,5000+,CSM-EMEA,3,3,2,1,atlas-core,17,16,0,1 +A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,2024-11-09 15:50:25,active,false,1000+,CSM-EMEA,3,3,3,0,delta-core,14,14,0,0 +A1063,Maple Global,education,NA,smb,CA,2024-11-14 12:34:06,active,false,11-50,CSM-East,1,1,1,0,maple-core,4,3,1,0 +A1064,Atlas Health,education,NA,smb,US,2024-08-25 22:39:22,active,false,51-200,CSM-East,1,1,1,0,atlas-core,4,4,0,0 +A1065,Vertex Partners,manufacturing,NA,mid_market,US,2024-12-30 06:11:13,active,false,501-1000,CSM-East,2,2,2,0,vertex-core,11,9,2,0 +A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,2025-01-10 17:33:41,active,false,201-500,CSM-APAC,2,2,2,0,pacific-core,12,10,2,0 +A1067,Maple Energy,healthcare,NA,mid_market,CA,2024-12-30 00:24:42,active,false,201-500,CSM-East,2,2,1,1,maple-core,7,6,1,0 +A1068,Helio Health,manufacturing,APAC,enterprise,SG,2024-08-11 12:36:33,active,false,1000+,CSM-APAC,4,4,3,1,helio-core,16,15,1,0 +A1069,Bright Foods,manufacturing,NA,enterprise,CA,2024-12-06 03:08:52,active,false,5000+,CSM-East,3,3,3,0,bright-core,13,11,2,0 +A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,2024-11-06 23:20:27,active,false,11-50,CSM-APAC,1,1,1,0,helio-core,8,6,2,0 +A1071,Evergreen Group,education,NA,mid_market,CA,2024-08-27 15:34:10,active,false,201-500,CSM-East,3,3,2,1,evergreen-core,13,12,0,1 +A1072,Summit Ventures,software,NA,enterprise,US,2024-09-29 04:18:23,active,false,5000+,CSM-East,3,3,2,1,summit-core,18,15,3,0 +A1073,Silver Holdings,travel,EMEA,mid_market,DE,2024-11-08 12:21:51,active,false,201-500,CSM-EMEA,2,2,2,0,silver-core,13,10,3,0 +A1074,Granite Analytics,retail,NA,mid_market,CA,2024-08-10 23:20:24,active,false,501-1000,CSM-East,3,3,3,0,granite-core,12,11,1,0 +A1075,Cedar Labs,software,EMEA,smb,UK,2024-11-03 07:31:13,active,false,11-50,CSM-EMEA,1,1,1,0,cedar-core,8,8,0,0 +A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,2025-02-23 21:32:44,active,false,201-500,CSM-EMEA,2,2,2,0,atlas-core,13,13,0,0 +A1077,Evergreen Foods,travel,NA,mid_market,CA,2024-09-10 23:41:36,active,false,201-500,CSM-East,3,3,3,0,evergreen-core,12,7,4,1 +A1078,Beacon Foods,software,EMEA,mid_market,FR,2025-02-26 00:08:06,active,false,501-1000,CSM-EMEA,3,3,3,0,beacon-core,12,10,2,0 +A1079,Nova Foods,education,EMEA,enterprise,FR,2024-09-03 15:45:24,active,false,1000+,CSM-EMEA,4,4,4,0,nova-core,20,14,6,0 +A1080,Beacon Global,financial_services,EMEA,mid_market,NL,2024-08-12 03:30:12,active,false,201-500,CSM-EMEA,2,2,2,0,beacon-core,10,10,0,0 +A1081,River Collective,financial_services,NA,mid_market,CA,2024-11-17 14:36:21,active,false,201-500,CSM-East,3,3,2,1,river-core,9,7,1,1 +A1082,Summit Manufacturing,manufacturing,NA,mid_market,US,2024-11-16 19:18:31,churned,true,501-1000,CSM-East,1,0,1,0,summit-core,7,2,5,0 +A1083,Falcon Works,education,NA,mid_market,CA,2025-01-05 01:17:30,active,false,501-1000,CSM-East,2,2,1,1,falcon-core,7,5,2,0 +A1084,Silver Foods,manufacturing,NA,mid_market,CA,2024-12-07 11:11:54,active,false,501-1000,CSM-East,2,2,2,0,silver-core,11,9,2,0 +A1085,Sierra Capital,financial_services,NA,smb,US,2024-09-16 10:19:51,active,false,11-50,CSM-East,1,1,1,0,sierra-core,4,4,0,0 +A1086,River Labs,software,EMEA,smb,FR,2025-02-20 17:58:12,active,false,11-50,CSM-EMEA,1,1,1,0,river-core,5,4,1,0 +A1087,Apex Capital,energy,NA,enterprise,CA,2024-11-26 09:20:17,churned,true,1000+,CSM-East,1,0,1,0,apex-core,9,4,4,1 +A1088,Cedar Partners,energy,APAC,smb,NZ,2025-02-07 15:19:15,active,false,51-200,CSM-APAC,1,1,1,0,cedar-core,6,5,1,0 +A1089,Beacon Network,healthcare,NA,mid_market,US,2024-11-07 01:16:08,active,false,201-500,CSM-East,2,2,2,0,beacon-core,12,10,1,1 +A1090,Vertex Labs,energy,NA,smb,US,2024-09-27 22:37:20,active,false,11-50,CSM-East,1,1,1,0,vertex-core,4,4,0,0 diff --git a/tasks/helixops_saas011/setup.sh b/tasks/helixops_saas011/setup.sh new file mode 100755 index 00000000..e3046744 --- /dev/null +++ b/tasks/helixops_saas011/setup.sh @@ -0,0 +1,3 @@ +#!/bin/bash +patch -p1 < /app/setup/changes.patch +dbt run || true diff --git a/tasks/helixops_saas011/setup/changes.patch b/tasks/helixops_saas011/setup/changes.patch new file mode 100644 index 00000000..9969de90 --- /dev/null +++ b/tasks/helixops_saas011/setup/changes.patch @@ -0,0 +1,14 @@ +--- a/models/staging/stg_workspaces.sql ++++ b/models/staging/stg_workspaces.sql +@@ -11,10 +11,7 @@ + else 'active' + end as workspace_status, + {{ epoch_to_timestamp('deact_ts_epoch') }} as deactivated_at, +- case +- when lower(trim(env_tier)) in ('sandbox', 'sbx') then 'sandbox' +- else 'prod' +- end as environment_tier, ++ lower(trim(env_tier)) as environment_tier, + coalesce({{ bool_from_text('primary_ws_yn') }}, false) as is_primary, + case + when lower(trim(ws_stat_cd)) in ('arch', 'archived', 'disabled') then false diff --git a/tasks/helixops_saas011/solution.sh b/tasks/helixops_saas011/solution.sh new file mode 100755 index 00000000..c9efc797 --- /dev/null +++ b/tasks/helixops_saas011/solution.sh @@ -0,0 +1,3 @@ +#!/bin/bash +patch -p1 < /sage/solutions/changes.patch +dbt run --select stg_workspaces int_account_workspaces dim_accounts diff --git a/tasks/helixops_saas011/solutions/changes.patch b/tasks/helixops_saas011/solutions/changes.patch new file mode 100644 index 00000000..4698bf5d --- /dev/null +++ b/tasks/helixops_saas011/solutions/changes.patch @@ -0,0 +1,14 @@ +--- a/models/staging/stg_workspaces.sql ++++ b/models/staging/stg_workspaces.sql +@@ -11,7 +11,10 @@ + else 'active' + end as workspace_status, + {{ epoch_to_timestamp('deact_ts_epoch') }} as deactivated_at, +- lower(trim(env_tier)) as environment_tier, ++ case ++ when lower(trim(env_tier)) in ('sandbox', 'sbx') then 'sandbox' ++ else 'prod' ++ end as environment_tier, + coalesce({{ bool_from_text('primary_ws_yn') }}, false) as is_primary, + case + when lower(trim(ws_stat_cd)) in ('arch', 'archived', 'disabled') then false diff --git a/tasks/helixops_saas011/task.yaml b/tasks/helixops_saas011/task.yaml new file mode 100644 index 00000000..ae8e75bb --- /dev/null +++ b/tasks/helixops_saas011/task.yaml @@ -0,0 +1,29 @@ +task_id: helixops_saas011 +status: ready +description: Fix a missing workspace by tracing the bug back to a staging CASE expression that does not handle the raw value 'sbx' +prompts: + - key: base + prompt: |- + The Falcon Works sandbox isn't showing up in dim_accounts. + - key: hard + prompt: |- + dim_accounts is missing some of falcon works' data +author_name: joel +author_email: joel@example.com +difficulty: medium +tags: + - dbt + - helixops_saas +test_setup: |- + dbt run --select stg_workspaces int_account_workspaces dim_accounts +variants: +- db_type: duckdb + db_name: helixops_saas + project_type: dbt + project_name: helixops_saas +- db_type: duckdb + db_name: helixops_saas + project_type: dbt-fusion + project_name: helixops_saas +solution_seeds: + - table_name: dim_accounts diff --git a/tasks/helixops_saas011/tests/AUTO_dim_accounts_equality.sql b/tasks/helixops_saas011/tests/AUTO_dim_accounts_equality.sql new file mode 100644 index 00000000..8c53b92b --- /dev/null +++ b/tasks/helixops_saas011/tests/AUTO_dim_accounts_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'dim_accounts' %} +{% set answer_keys = ['solution__dim_accounts'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__dim_accounts') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas011/tests/AUTO_dim_accounts_existence.sql b/tasks/helixops_saas011/tests/AUTO_dim_accounts_existence.sql new file mode 100644 index 00000000..359cdd6c --- /dev/null +++ b/tasks/helixops_saas011/tests/AUTO_dim_accounts_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'dim_accounts' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas012/macros/ade_bench_equality_test.sql b/tasks/helixops_saas012/macros/ade_bench_equality_test.sql new file mode 100644 index 00000000..510c6037 --- /dev/null +++ b/tasks/helixops_saas012/macros/ade_bench_equality_test.sql @@ -0,0 +1,78 @@ +{% macro ade_bench_equality_test(table_name, answer_keys, cols_to_exclude=[]) %} + {% if not execute %} + select 1 where 1=0 + {% else %} + {% set ns = namespace(matched=false) %} + {% set actual_rel = load_relation(ref(table_name)) %} + + {% if actual_rel is not none %} + {% set actual_columns = adapter.get_columns_in_relation(actual_rel) %} + {% set exclude_lower = cols_to_exclude | map('lower') | list %} + + {%- set actual_col_names = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do actual_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set actual_set = actual_col_names | sort %} + + {% for answer_key in answer_keys %} + {% if not ns.matched %} + {% set seed_rel = load_relation(ref(answer_key)) %} + {% if seed_rel is not none %} + {% set seed_columns = adapter.get_columns_in_relation(seed_rel) %} + + {%- set seed_col_names = [] -%} + {%- for col in seed_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do seed_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set seed_set = seed_col_names | sort %} + + {% if actual_set == seed_set %} + {%- set compare_cols = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do compare_cols.append(col.quoted) -%} + {%- endif -%} + {%- endfor -%} + {% set compare_cols_csv = compare_cols | join(', ') %} + + {% set query %} + with a_minus_b as ( + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + except + select {{ compare_cols_csv }} from {{ ref(table_name) }} + ), + b_minus_a as ( + select {{ compare_cols_csv }} from {{ ref(table_name) }} + except + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + ), + unioned as ( + select * from a_minus_b + union all + select * from b_minus_a + ) + select count(*) as diff_count from unioned + {% endset %} + + {% set result = run_query(query) %} + {% if result.rows[0][0] == 0 %} + {% set ns.matched = true %} + {% endif %} + {% endif %} + {% endif %} + {% endif %} + {% endfor %} + {% endif %} + + {% if ns.matched %} + select 1 where 1=0 + {% else %} + select 1 + {% endif %} + {% endif %} +{% endmacro %} diff --git a/tasks/helixops_saas012/macros/drop_relation.sql b/tasks/helixops_saas012/macros/drop_relation.sql new file mode 100644 index 00000000..959d44f6 --- /dev/null +++ b/tasks/helixops_saas012/macros/drop_relation.sql @@ -0,0 +1,4 @@ +{% macro drop_relation(schema, identifier, type='view') %} + {% set relation = api.Relation.create(schema=schema, identifier=identifier, type=type) %} + {{ adapter.drop_relation(relation) }} +{% endmacro %} diff --git a/tasks/helixops_saas012/seeds/_no-op.txt b/tasks/helixops_saas012/seeds/_no-op.txt new file mode 100644 index 00000000..8ed2b7bf --- /dev/null +++ b/tasks/helixops_saas012/seeds/_no-op.txt @@ -0,0 +1,25 @@ + + +seeds: + helixops_saas: + solution__fct_monthly_revenue: + +column_types: + account_id: varchar + account_name: varchar + segment: varchar + region: varchar + billing_country: varchar + invoice_month: date + plan_name: varchar + latest_subscription_status: varchar + invoice_count: bigint + recurring_revenue_usd: double + one_time_revenue_usd: double + subtotal_usd: double + tax_usd: double + total_revenue_usd: double + collected_revenue_usd: double + outstanding_revenue_usd: double + open_invoice_count: bigint + past_due_invoice_count: bigint + has_past_due_invoice: boolean diff --git a/tasks/helixops_saas012/seeds/solution__fct_monthly_revenue.csv b/tasks/helixops_saas012/seeds/solution__fct_monthly_revenue.csv new file mode 100644 index 00000000..8124efd1 --- /dev/null +++ b/tasks/helixops_saas012/seeds/solution__fct_monthly_revenue.csv @@ -0,0 +1,433 @@ +account_id,account_name,segment,region,billing_country,invoice_month,plan_name,latest_subscription_status,invoice_count,recurring_revenue_usd,one_time_revenue_usd,subtotal_usd,tax_usd,total_revenue_usd,collected_revenue_usd,outstanding_revenue_usd,open_invoice_count,past_due_invoice_count,has_past_due_invoice +A1002,Summit Foods,mid_market,NA,US,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1006,Helio Works,mid_market,EMEA,UK,2025-05-01,Growth Monthly,active,1,1200.0,0.0,1200.0,240.0,1440.0,1440.0,0.0,0,0,false +A1008,Pacific Works,mid_market,EMEA,UK,2025-01-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1008,Pacific Works,mid_market,EMEA,UK,2025-04-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1012,Cedar Ventures,smb,APAC,JP,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1020,Pioneer Network,smb,EMEA,FR,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1026,Pioneer Capital,smb,NA,CA,2025-05-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1028,Apex Energy,mid_market,APAC,SG,2025-03-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1033,Lighthouse Global,mid_market,NA,CA,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1037,Lighthouse Network,enterprise,EMEA,UK,2025-02-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1040,Harbor Collective,mid_market,APAC,SG,2025-05-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1042,Northwind Labs,mid_market,APAC,AU,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1044,Summit Holdings,smb,EMEA,NL,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1053,Bright Health,mid_market,NA,CA,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1054,Granite Labs,mid_market,APAC,NZ,2025-01-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,247.0,2717.0,2717.0,0.0,0,0,false +A1054,Granite Labs,mid_market,APAC,NZ,2025-04-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,247.0,2717.0,2717.0,0.0,0,0,false +A1058,Evergreen Analytics,smb,EMEA,UK,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1060,Cedar Foods,mid_market,NA,CA,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,true +A1064,Atlas Health,smb,NA,US,2025-03-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1069,Bright Foods,enterprise,NA,CA,2025-01-01,Enterprise Annual,active,1,24300.0,0.0,24300.0,0.0,24300.0,24300.0,0.0,0,0,false +A1070,Helio Manufacturing,smb,APAC,NZ,2025-02-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1073,Silver Holdings,mid_market,EMEA,DE,2025-02-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1080,Beacon Global,mid_market,EMEA,NL,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1081,River Collective,mid_market,NA,CA,2025-06-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,0.0,2600.0,2600.0,0.0,0,0,false +A1083,Falcon Works,mid_market,NA,CA,2025-05-01,Growth Monthly,active,1,1200.0,0.0,1200.0,0.0,1200.0,1200.0,0.0,0,0,false +A1088,Cedar Partners,smb,APAC,NZ,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1066,Pacific Capital,mid_market,APAC,NZ,2025-06-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,260.0,2860.0,0.0,2860.0,1,0,false +A1002,Summit Foods,mid_market,NA,US,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1008,Pacific Works,mid_market,EMEA,UK,2025-03-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1010,Orchid Foods,smb,NA,CA,2025-05-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1020,Pioneer Network,smb,EMEA,FR,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1028,Apex Energy,mid_market,APAC,SG,2025-01-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1028,Apex Energy,mid_market,APAC,SG,2025-04-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1031,Helio Holdings,mid_market,APAC,AU,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1039,Nova Group,smb,EMEA,FR,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1054,Granite Labs,mid_market,APAC,NZ,2025-03-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,247.0,2717.0,2717.0,0.0,0,0,false +A1058,Evergreen Analytics,smb,EMEA,UK,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1059,Evergreen Partners,mid_market,NA,CA,2025-05-01,Enterprise Monthly,active,1,2080.0,0.0,2080.0,0.0,2080.0,2080.0,0.0,0,0,false +A1064,Atlas Health,smb,NA,US,2025-01-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1064,Atlas Health,smb,NA,US,2025-04-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1071,Evergreen Group,mid_market,NA,CA,2025-05-01,Enterprise Monthly,active,1,2080.0,0.0,2080.0,0.0,2080.0,2080.0,0.0,0,0,false +A1088,Cedar Partners,smb,APAC,NZ,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1001,Helio Systems,mid_market,EMEA,NL,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1004,Silver Solutions,enterprise,NA,US,2025-01-01,Starter Monthly,canceled,1,500.0,400.0,900.0,0.0,900.0,900.0,0.0,0,0,false +A1004,Silver Solutions,enterprise,NA,US,2025-04-01,Starter Monthly,canceled,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1021,Apex Logistics,smb,NA,US,2025-02-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1023,Atlas Systems,smb,NA,CA,2025-02-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,true +A1027,BluePeak Health,smb,APAC,SG,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,45.0,545.0,545.0,0.0,0,0,false +A1030,Northwind Analytics,enterprise,EMEA,UK,2025-05-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1036,Granite Holdings,smb,NA,US,2025-01-01,Growth Monthly,canceled,1,1200.0,300.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1036,Granite Holdings,smb,NA,US,2025-04-01,Growth Monthly,canceled,1,1200.0,0.0,1200.0,0.0,1200.0,1200.0,0.0,0,0,false +A1038,River Systems,smb,APAC,AU,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1041,Cedar Logistics,mid_market,EMEA,NL,2025-02-01,Growth Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1043,Lighthouse Works,enterprise,APAC,SG,2025-05-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1050,Cedar Energy,smb,APAC,JP,2025-03-01,Starter Monthly,active,1,500.0,250.0,750.0,75.0,825.0,825.0,0.0,0,0,false +A1052,Sierra Labs,mid_market,APAC,NZ,2025-06-01,Growth Monthly,active,1,1425.0,0.0,1425.0,142.5,1567.5,1567.5,0.0,0,0,false +A1061,Atlas Capital,enterprise,EMEA,FR,2025-03-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1062,Delta Manufacturing,enterprise,EMEA,NL,2025-03-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1067,Maple Energy,mid_market,NA,CA,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1068,Helio Health,enterprise,APAC,SG,2025-01-01,Enterprise Monthly,active,1,2600.0,250.0,2850.0,256.5,3106.5,3106.5,0.0,0,0,false +A1068,Helio Health,enterprise,APAC,SG,2025-04-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1075,Cedar Labs,smb,EMEA,UK,2025-02-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1077,Evergreen Foods,mid_market,NA,CA,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1078,Beacon Foods,mid_market,EMEA,FR,2025-03-01,Growth Monthly,active,1,1425.0,300.0,1725.0,345.0,2070.0,2070.0,0.0,0,0,false +A1085,Sierra Capital,smb,NA,US,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1090,Vertex Labs,smb,NA,US,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1004,Silver Solutions,enterprise,NA,US,2025-05-01,Starter Monthly,canceled,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1014,Evergreen Global,enterprise,APAC,SG,2025-01-01,Growth Monthly,canceled,1,1500.0,400.0,1900.0,171.0,2071.0,2071.0,0.0,0,0,false +A1014,Evergreen Global,enterprise,APAC,SG,2025-04-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,135.0,1635.0,1635.0,0.0,0,0,false +A1019,Sierra Systems,smb,APAC,JP,2025-06-01,Starter Monthly,active,1,400.0,0.0,400.0,40.0,440.0,440.0,0.0,0,0,false +A1027,BluePeak Health,smb,APAC,SG,2025-01-01,Starter Monthly,active,1,500.0,0.0,500.0,45.0,545.0,545.0,0.0,0,0,false +A1027,BluePeak Health,smb,APAC,SG,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,45.0,545.0,545.0,0.0,0,0,false +A1029,Bright Labs,enterprise,APAC,NZ,2025-01-01,Starter Monthly,canceled,1,475.0,0.0,475.0,47.5,522.5,522.5,0.0,0,0,false +A1029,Bright Labs,enterprise,APAC,NZ,2025-04-01,Starter Monthly,canceled,1,475.0,0.0,475.0,47.5,522.5,522.5,0.0,0,0,false +A1030,Northwind Analytics,enterprise,EMEA,UK,2025-01-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1030,Northwind Analytics,enterprise,EMEA,UK,2025-04-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1032,Vertex Works,mid_market,EMEA,DE,2025-03-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1033,Lighthouse Global,mid_market,NA,CA,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1034,Helio Partners,smb,NA,CA,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1035,Bright Retail,mid_market,EMEA,UK,2025-06-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1037,Lighthouse Network,enterprise,EMEA,UK,2025-06-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1043,Lighthouse Works,enterprise,APAC,SG,2025-01-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1043,Lighthouse Works,enterprise,APAC,SG,2025-04-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1046,Pioneer Solutions,smb,NA,CA,2025-03-01,Growth Monthly,active,1,1200.0,0.0,1200.0,0.0,1200.0,1200.0,0.0,0,0,false +A1051,Lighthouse Systems,smb,EMEA,UK,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1053,Bright Health,mid_market,NA,CA,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1056,Delta Global,mid_market,APAC,AU,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1060,Cedar Foods,mid_market,NA,CA,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,0.0,1500.0,0,1,true +A1065,Vertex Partners,mid_market,NA,US,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1066,Pacific Capital,mid_market,APAC,NZ,2025-02-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,260.0,2860.0,2860.0,0.0,0,0,false +A1067,Maple Energy,mid_market,NA,CA,2025-01-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1067,Maple Energy,mid_market,NA,CA,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1068,Helio Health,enterprise,APAC,SG,2025-05-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1070,Helio Manufacturing,smb,APAC,NZ,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1073,Silver Holdings,mid_market,EMEA,DE,2025-06-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1074,Granite Analytics,mid_market,NA,CA,2025-03-01,Growth Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1077,Evergreen Foods,mid_market,NA,CA,2025-01-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1077,Evergreen Foods,mid_market,NA,CA,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1080,Beacon Global,mid_market,EMEA,NL,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1081,River Collective,mid_market,NA,CA,2025-02-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,0.0,2600.0,2600.0,0.0,0,0,false +A1082,Summit Manufacturing,mid_market,NA,US,2025-02-01,Starter Monthly,canceled,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1090,Vertex Labs,smb,NA,US,2025-01-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1090,Vertex Labs,smb,NA,US,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1004,Silver Solutions,enterprise,NA,US,2025-02-01,Starter Monthly,canceled,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1006,Helio Works,mid_market,EMEA,UK,2025-06-01,Growth Monthly,active,1,1200.0,0.0,1200.0,240.0,1440.0,1440.0,0.0,0,0,false +A1012,Cedar Ventures,smb,APAC,JP,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1021,Apex Logistics,smb,NA,US,2025-01-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1021,Apex Logistics,smb,NA,US,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1022,Summit Collective,smb,APAC,NZ,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1023,Atlas Systems,smb,NA,CA,2025-04-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,true +A1024,Sierra Group,smb,NA,CA,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1025,Bright Capital,smb,EMEA,UK,2025-03-01,Starter Monthly,active,1,400.0,0.0,400.0,80.0,480.0,480.0,0.0,0,0,false +A1026,Pioneer Capital,smb,NA,CA,2025-06-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1033,Lighthouse Global,mid_market,NA,CA,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1036,Granite Holdings,smb,NA,US,2025-02-01,Growth Monthly,canceled,1,1200.0,0.0,1200.0,0.0,1200.0,1200.0,0.0,0,0,false +A1040,Harbor Collective,mid_market,APAC,SG,2025-06-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1041,Cedar Logistics,mid_market,EMEA,NL,2025-01-01,Growth Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1041,Cedar Logistics,mid_market,EMEA,NL,2025-04-01,Growth Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1042,Northwind Labs,mid_market,APAC,AU,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1044,Summit Holdings,smb,EMEA,NL,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1055,Pioneer Systems,mid_market,EMEA,FR,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,true +A1066,Pacific Capital,mid_market,APAC,NZ,2025-05-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,260.0,2860.0,2860.0,0.0,0,0,false +A1068,Helio Health,enterprise,APAC,SG,2025-02-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1075,Cedar Labs,smb,EMEA,UK,2025-01-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1075,Cedar Labs,smb,EMEA,UK,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1076,Atlas Solutions,mid_market,EMEA,UK,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1080,Beacon Global,mid_market,EMEA,NL,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1081,River Collective,mid_market,NA,CA,2025-05-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,0.0,2600.0,2600.0,0.0,0,0,false +A1083,Falcon Works,mid_market,NA,CA,2025-06-01,Growth Monthly,active,1,1200.0,0.0,1200.0,0.0,1200.0,1200.0,0.0,0,0,false +A1084,Silver Foods,mid_market,NA,CA,2025-03-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,0.0,2600.0,2600.0,0.0,0,0,false +A1002,Summit Foods,mid_market,NA,US,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1006,Helio Works,mid_market,EMEA,UK,2025-03-01,Growth Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1007,Silver Systems,smb,EMEA,FR,2025-02-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1009,Summit Group,mid_market,NA,US,2025-02-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1010,Orchid Foods,smb,NA,CA,2025-04-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1011,Vertex Energy,smb,NA,CA,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1012,Cedar Ventures,smb,APAC,JP,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1013,River Foods,mid_market,NA,US,2025-02-01,Growth Monthly,active,1,1425.0,0.0,1425.0,0.0,1425.0,1425.0,0.0,0,0,false +A1015,Delta Network,smb,NA,US,2025-03-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1017,Summit Analytics,mid_market,EMEA,UK,2025-02-01,Growth Monthly,active,1,1350.0,0.0,1350.0,270.0,1620.0,1620.0,0.0,0,0,false +A1018,Harbor Manufacturing,smb,EMEA,UK,2025-03-01,Starter Monthly,canceled,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1020,Pioneer Network,smb,EMEA,FR,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1024,Sierra Group,smb,NA,CA,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1025,Bright Capital,smb,EMEA,UK,2025-06-01,Starter Monthly,active,1,400.0,0.0,400.0,80.0,480.0,480.0,0.0,0,0,false +A1026,Pioneer Capital,smb,NA,CA,2025-03-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1028,Apex Energy,mid_market,APAC,SG,2025-05-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1031,Helio Holdings,mid_market,APAC,AU,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1039,Nova Group,smb,EMEA,FR,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1040,Harbor Collective,mid_market,APAC,SG,2025-03-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,135.0,1635.0,1635.0,0.0,0,0,false +A1042,Northwind Labs,mid_market,APAC,AU,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1044,Summit Holdings,smb,EMEA,NL,2025-03-01,Growth Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1055,Pioneer Systems,mid_market,EMEA,FR,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,0.0,1800.0,0,1,true +A1059,Evergreen Partners,mid_market,NA,CA,2025-01-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1059,Evergreen Partners,mid_market,NA,CA,2025-04-01,Enterprise Monthly,active,1,2080.0,400.0,2480.0,0.0,2480.0,2480.0,0.0,0,0,false +A1063,Maple Global,smb,NA,CA,2025-02-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1064,Atlas Health,smb,NA,US,2025-05-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1071,Evergreen Group,mid_market,NA,CA,2025-01-01,Enterprise Monthly,active,1,2080.0,0.0,2080.0,0.0,2080.0,2080.0,0.0,0,0,false +A1071,Evergreen Group,mid_market,NA,CA,2025-04-01,Enterprise Monthly,active,1,2080.0,0.0,2080.0,0.0,2080.0,2080.0,0.0,0,0,false +A1076,Atlas Solutions,mid_market,EMEA,UK,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1083,Falcon Works,mid_market,NA,CA,2025-03-01,Growth Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1084,Silver Foods,mid_market,NA,CA,2025-06-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,0.0,2600.0,2600.0,0.0,0,0,false +A1087,Apex Capital,enterprise,NA,CA,2025-03-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1088,Cedar Partners,smb,APAC,NZ,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1089,Beacon Network,mid_market,NA,US,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1001,Helio Systems,mid_market,EMEA,NL,2025-01-01,Growth Monthly,active,1,1500.0,300.0,1800.0,360.0,2160.0,2160.0,0.0,0,0,false +A1001,Helio Systems,mid_market,EMEA,NL,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1006,Helio Works,mid_market,EMEA,UK,2025-02-01,Growth Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1007,Silver Systems,smb,EMEA,FR,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1009,Summit Group,mid_market,NA,US,2025-03-01,Enterprise Monthly,active,1,2340.0,0.0,2340.0,0.0,2340.0,2340.0,0.0,0,0,false +A1011,Vertex Energy,smb,NA,CA,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1012,Cedar Ventures,smb,APAC,JP,2025-02-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1013,River Foods,mid_market,NA,US,2025-03-01,Growth Monthly,active,1,1425.0,0.0,1425.0,0.0,1425.0,1425.0,0.0,0,0,false +A1015,Delta Network,smb,NA,US,2025-02-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1017,Summit Analytics,mid_market,EMEA,UK,2025-03-01,Growth Monthly,active,1,1350.0,0.0,1350.0,270.0,1620.0,1620.0,0.0,0,0,false +A1018,Harbor Manufacturing,smb,EMEA,UK,2025-02-01,Starter Monthly,canceled,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1019,Sierra Systems,smb,APAC,JP,2025-05-01,Starter Monthly,active,1,400.0,0.0,400.0,40.0,440.0,440.0,0.0,0,0,false +A1026,Pioneer Capital,smb,NA,CA,2025-02-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1035,Bright Retail,mid_market,EMEA,UK,2025-05-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1037,Lighthouse Network,enterprise,EMEA,UK,2025-05-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1038,River Systems,smb,APAC,AU,2025-01-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1038,River Systems,smb,APAC,AU,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1040,Harbor Collective,mid_market,APAC,SG,2025-02-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,135.0,1635.0,1635.0,0.0,0,0,false +A1042,Northwind Labs,mid_market,APAC,AU,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1044,Summit Holdings,smb,EMEA,NL,2025-02-01,Growth Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1051,Lighthouse Systems,smb,EMEA,UK,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1052,Sierra Labs,mid_market,APAC,NZ,2025-01-01,Growth Monthly,active,1,1425.0,0.0,1425.0,142.5,1567.5,1567.5,0.0,0,0,false +A1052,Sierra Labs,mid_market,APAC,NZ,2025-04-01,Growth Monthly,active,1,1425.0,0.0,1425.0,142.5,1567.5,1567.5,0.0,0,0,false +A1053,Bright Health,mid_market,NA,CA,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1060,Cedar Foods,mid_market,NA,CA,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,true +A1063,Maple Global,smb,NA,CA,2025-03-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1070,Helio Manufacturing,smb,APAC,NZ,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1072,Summit Ventures,enterprise,NA,US,2025-01-01,Enterprise Annual,active,1,24300.0,2500.0,26800.0,0.0,26800.0,26800.0,0.0,0,0,false +A1073,Silver Holdings,mid_market,EMEA,DE,2025-05-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1083,Falcon Works,mid_market,NA,CA,2025-02-01,Growth Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1085,Sierra Capital,smb,NA,US,2025-01-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1085,Sierra Capital,smb,NA,US,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1086,River Labs,smb,EMEA,FR,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1087,Apex Capital,enterprise,NA,CA,2025-02-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1089,Beacon Network,mid_market,NA,US,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1068,Helio Health,enterprise,APAC,SG,2025-06-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,0.0,2834.0,1,0,false +A1014,Evergreen Global,enterprise,APAC,SG,2025-03-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,135.0,1635.0,1635.0,0.0,0,0,false +A1027,BluePeak Health,smb,APAC,SG,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,45.0,545.0,545.0,0.0,0,0,false +A1029,Bright Labs,enterprise,APAC,NZ,2025-03-01,Starter Monthly,canceled,1,475.0,0.0,475.0,47.5,522.5,522.5,0.0,0,0,false +A1030,Northwind Analytics,enterprise,EMEA,UK,2025-03-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1032,Vertex Works,mid_market,EMEA,DE,2025-01-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1032,Vertex Works,mid_market,EMEA,DE,2025-04-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1034,Helio Partners,smb,NA,CA,2025-01-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1034,Helio Partners,smb,NA,CA,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1043,Lighthouse Works,enterprise,APAC,SG,2025-03-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1046,Pioneer Solutions,smb,NA,CA,2025-01-01,Growth Monthly,active,1,1200.0,0.0,1200.0,0.0,1200.0,1200.0,0.0,0,0,false +A1046,Pioneer Solutions,smb,NA,CA,2025-04-01,Growth Monthly,active,1,1200.0,0.0,1200.0,0.0,1200.0,1200.0,0.0,0,0,false +A1050,Cedar Energy,smb,APAC,JP,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1056,Delta Global,mid_market,APAC,AU,2025-01-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1056,Delta Global,mid_market,APAC,AU,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1057,Harbor Partners,enterprise,APAC,NZ,2025-01-01,Enterprise Annual,active,1,21600.0,0.0,21600.0,2160.0,23760.0,23760.0,0.0,0,0,false +A1061,Atlas Capital,enterprise,EMEA,FR,2025-05-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1062,Delta Manufacturing,enterprise,EMEA,NL,2025-05-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1065,Vertex Partners,mid_market,NA,US,2025-01-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1065,Vertex Partners,mid_market,NA,US,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1067,Maple Energy,mid_market,NA,CA,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1074,Granite Analytics,mid_market,NA,CA,2025-01-01,Growth Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1074,Granite Analytics,mid_market,NA,CA,2025-04-01,Growth Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1077,Evergreen Foods,mid_market,NA,CA,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1078,Beacon Foods,mid_market,EMEA,FR,2025-05-01,Growth Monthly,active,1,1425.0,0.0,1425.0,285.0,1710.0,1710.0,0.0,0,0,false +A1090,Vertex Labs,smb,NA,US,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1003,Nova Ventures,enterprise,NA,US,2025-01-01,Enterprise Annual,active,1,25650.0,2000.0,27650.0,0.0,27650.0,27650.0,0.0,0,0,false +A1004,Silver Solutions,enterprise,NA,US,2025-03-01,Starter Monthly,canceled,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1005,Pacific Labs,enterprise,EMEA,UK,2025-01-01,Enterprise Annual,active,1,25650.0,2000.0,27650.0,5530.0,33180.0,33180.0,0.0,0,0,false +A1009,Summit Group,mid_market,NA,US,2025-06-01,Enterprise Monthly,active,1,2340.0,0.0,2340.0,0.0,2340.0,2340.0,0.0,0,0,false +A1011,Vertex Energy,smb,NA,CA,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1013,River Foods,mid_market,NA,US,2025-06-01,Growth Monthly,active,1,1425.0,0.0,1425.0,0.0,1425.0,1425.0,0.0,0,0,false +A1017,Summit Analytics,mid_market,EMEA,UK,2025-06-01,Growth Monthly,active,1,1350.0,0.0,1350.0,270.0,1620.0,1620.0,0.0,0,0,false +A1024,Sierra Group,smb,NA,CA,2025-02-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1025,Bright Capital,smb,EMEA,UK,2025-02-01,Starter Monthly,active,1,400.0,0.0,400.0,80.0,480.0,480.0,0.0,0,0,false +A1034,Helio Partners,smb,NA,CA,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1036,Granite Holdings,smb,NA,US,2025-03-01,Growth Monthly,canceled,1,1200.0,0.0,1200.0,0.0,1200.0,1200.0,0.0,0,0,false +A1046,Pioneer Solutions,smb,NA,CA,2025-05-01,Growth Monthly,active,1,1200.0,0.0,1200.0,0.0,1200.0,1200.0,0.0,0,0,false +A1050,Cedar Energy,smb,APAC,JP,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1055,Pioneer Systems,mid_market,EMEA,FR,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,true +A1056,Delta Global,mid_market,APAC,AU,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1061,Atlas Capital,enterprise,EMEA,FR,2025-04-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1062,Delta Manufacturing,enterprise,EMEA,NL,2025-01-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1062,Delta Manufacturing,enterprise,EMEA,NL,2025-04-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1065,Vertex Partners,mid_market,NA,US,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1068,Helio Health,enterprise,APAC,SG,2025-03-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1074,Granite Analytics,mid_market,NA,CA,2025-05-01,Growth Monthly,active,1,1350.0,0.0,1350.0,0.0,1350.0,1350.0,0.0,0,0,false +A1078,Beacon Foods,mid_market,EMEA,FR,2025-04-01,Growth Monthly,active,1,1425.0,0.0,1425.0,285.0,1710.0,1710.0,0.0,0,0,false +A1084,Silver Foods,mid_market,NA,CA,2025-02-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,0.0,2600.0,2600.0,0.0,0,0,false +A1086,River Labs,smb,EMEA,FR,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1089,Beacon Network,mid_market,NA,US,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1007,Silver Systems,smb,EMEA,FR,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,0.0,600.0,1,0,false +A1063,Maple Global,smb,NA,CA,2025-06-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,0.0,400.0,1,0,false +A1001,Helio Systems,mid_market,EMEA,NL,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1008,Pacific Works,mid_market,EMEA,UK,2025-02-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1019,Sierra Systems,smb,APAC,JP,2025-04-01,Starter Monthly,active,1,400.0,0.0,400.0,40.0,440.0,440.0,0.0,0,0,false +A1027,BluePeak Health,smb,APAC,SG,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,45.0,545.0,545.0,0.0,0,0,false +A1030,Northwind Analytics,enterprise,EMEA,UK,2025-06-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1035,Bright Retail,mid_market,EMEA,UK,2025-04-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1037,Lighthouse Network,enterprise,EMEA,UK,2025-01-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1037,Lighthouse Network,enterprise,EMEA,UK,2025-04-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1038,River Systems,smb,APAC,AU,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1043,Lighthouse Works,enterprise,APAC,SG,2025-06-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1051,Lighthouse Systems,smb,EMEA,UK,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1052,Sierra Labs,mid_market,APAC,NZ,2025-05-01,Growth Monthly,active,1,1425.0,0.0,1425.0,142.5,1567.5,1567.5,0.0,0,0,false +A1053,Bright Health,mid_market,NA,CA,2025-01-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1053,Bright Health,mid_market,NA,CA,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1054,Granite Labs,mid_market,APAC,NZ,2025-02-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,247.0,2717.0,2717.0,0.0,0,0,false +A1058,Evergreen Analytics,smb,EMEA,UK,2025-02-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1060,Cedar Foods,mid_market,NA,CA,2025-01-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,true +A1060,Cedar Foods,mid_market,NA,CA,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,true +A1067,Maple Energy,mid_market,NA,CA,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1070,Helio Manufacturing,smb,APAC,NZ,2025-01-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1070,Helio Manufacturing,smb,APAC,NZ,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1073,Silver Holdings,mid_market,EMEA,DE,2025-01-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1073,Silver Holdings,mid_market,EMEA,DE,2025-04-01,Enterprise Monthly,active,1,2600.0,250.0,2850.0,570.0,3420.0,3420.0,0.0,0,0,false +A1077,Evergreen Foods,mid_market,NA,CA,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1085,Sierra Capital,smb,NA,US,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1090,Vertex Labs,smb,NA,US,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1020,Pioneer Network,smb,EMEA,FR,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1024,Sierra Group,smb,NA,CA,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1025,Bright Capital,smb,EMEA,UK,2025-05-01,Starter Monthly,active,1,400.0,0.0,400.0,80.0,480.0,480.0,0.0,0,0,false +A1032,Vertex Works,mid_market,EMEA,DE,2025-02-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1033,Lighthouse Global,mid_market,NA,CA,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1034,Helio Partners,smb,NA,CA,2025-02-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1045,Nova Holdings,enterprise,NA,CA,2025-01-01,Enterprise Annual,active,1,25650.0,0.0,25650.0,0.0,25650.0,25650.0,0.0,0,0,false +A1046,Pioneer Solutions,smb,NA,CA,2025-02-01,Growth Monthly,active,1,1200.0,0.0,1200.0,0.0,1200.0,1200.0,0.0,0,0,false +A1055,Pioneer Systems,mid_market,EMEA,FR,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,true +A1056,Delta Global,mid_market,APAC,AU,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1064,Atlas Health,smb,NA,US,2025-06-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1065,Vertex Partners,mid_market,NA,US,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1066,Pacific Capital,mid_market,APAC,NZ,2025-03-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,260.0,2860.0,2860.0,0.0,0,0,false +A1074,Granite Analytics,mid_market,NA,CA,2025-02-01,Growth Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1076,Atlas Solutions,mid_market,EMEA,UK,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1080,Beacon Global,mid_market,EMEA,NL,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1081,River Collective,mid_market,NA,CA,2025-03-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,0.0,2600.0,2600.0,0.0,0,0,false +A1082,Summit Manufacturing,mid_market,NA,US,2025-03-01,Starter Monthly,canceled,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1084,Silver Foods,mid_market,NA,CA,2025-05-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,0.0,2600.0,2600.0,0.0,0,0,false +A1088,Cedar Partners,smb,APAC,NZ,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1002,Summit Foods,mid_market,NA,US,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,0.0,1500.0,1,0,false +A1028,Apex Energy,mid_market,APAC,SG,2025-06-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,0.0,2834.0,1,0,false +A1001,Helio Systems,mid_market,EMEA,NL,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1007,Silver Systems,smb,EMEA,FR,2025-01-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1007,Silver Systems,smb,EMEA,FR,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1009,Summit Group,mid_market,NA,US,2025-01-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1009,Summit Group,mid_market,NA,US,2025-04-01,Enterprise Monthly,active,1,2340.0,0.0,2340.0,0.0,2340.0,2340.0,0.0,0,0,false +A1011,Vertex Energy,smb,NA,CA,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1013,River Foods,mid_market,NA,US,2025-01-01,Growth Monthly,active,1,1425.0,400.0,1825.0,0.0,1825.0,1825.0,0.0,0,0,false +A1013,River Foods,mid_market,NA,US,2025-04-01,Growth Monthly,active,1,1425.0,0.0,1425.0,0.0,1425.0,1425.0,0.0,0,0,false +A1017,Summit Analytics,mid_market,EMEA,UK,2025-01-01,Growth Monthly,active,1,1350.0,0.0,1350.0,270.0,1620.0,1620.0,0.0,0,0,false +A1017,Summit Analytics,mid_market,EMEA,UK,2025-04-01,Growth Monthly,active,1,1350.0,0.0,1350.0,270.0,1620.0,1620.0,0.0,0,0,false +A1038,River Systems,smb,APAC,AU,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1050,Cedar Energy,smb,APAC,JP,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1052,Sierra Labs,mid_market,APAC,NZ,2025-03-01,Growth Monthly,active,1,1425.0,0.0,1425.0,142.5,1567.5,1567.5,0.0,0,0,false +A1059,Evergreen Partners,mid_market,NA,CA,2025-02-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1061,Atlas Capital,enterprise,EMEA,FR,2025-06-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1062,Delta Manufacturing,enterprise,EMEA,NL,2025-06-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1063,Maple Global,smb,NA,CA,2025-01-01,Starter Monthly,active,1,400.0,300.0,700.0,0.0,700.0,700.0,0.0,0,0,false +A1063,Maple Global,smb,NA,CA,2025-04-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1071,Evergreen Group,mid_market,NA,CA,2025-02-01,Enterprise Monthly,active,1,2080.0,0.0,2080.0,0.0,2080.0,2080.0,0.0,0,0,false +A1078,Beacon Foods,mid_market,EMEA,FR,2025-06-01,Growth Monthly,active,1,1425.0,0.0,1425.0,285.0,1710.0,1710.0,0.0,0,0,false +A1085,Sierra Capital,smb,NA,US,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1086,River Labs,smb,EMEA,FR,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1089,Beacon Network,mid_market,NA,US,2025-01-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1089,Beacon Network,mid_market,NA,US,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1002,Summit Foods,mid_market,NA,US,2025-02-01,Growth Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1007,Silver Systems,smb,EMEA,FR,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1009,Summit Group,mid_market,NA,US,2025-05-01,Enterprise Monthly,active,1,2340.0,0.0,2340.0,0.0,2340.0,2340.0,0.0,0,0,false +A1011,Vertex Energy,smb,NA,CA,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1013,River Foods,mid_market,NA,US,2025-05-01,Growth Monthly,active,1,1425.0,0.0,1425.0,0.0,1425.0,1425.0,0.0,0,0,false +A1017,Summit Analytics,mid_market,EMEA,UK,2025-05-01,Growth Monthly,active,1,1350.0,0.0,1350.0,270.0,1620.0,1620.0,0.0,0,0,false +A1019,Sierra Systems,smb,APAC,JP,2025-03-01,Starter Monthly,active,1,400.0,0.0,400.0,40.0,440.0,440.0,0.0,0,0,false +A1028,Apex Energy,mid_market,APAC,SG,2025-02-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1034,Helio Partners,smb,NA,CA,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1035,Bright Retail,mid_market,EMEA,UK,2025-03-01,Enterprise Monthly,active,1,1500.0,250.0,1750.0,350.0,2100.0,2100.0,0.0,0,0,false +A1037,Lighthouse Network,enterprise,EMEA,UK,2025-03-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1046,Pioneer Solutions,smb,NA,CA,2025-06-01,Growth Monthly,active,1,1200.0,0.0,1200.0,0.0,1200.0,1200.0,0.0,0,0,false +A1048,Orchid Capital,enterprise,APAC,NZ,2025-03-01,Enterprise Annual,active,1,24300.0,0.0,24300.0,2430.0,26730.0,26730.0,0.0,0,0,false +A1051,Lighthouse Systems,smb,EMEA,UK,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1053,Bright Health,mid_market,NA,CA,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1056,Delta Global,mid_market,APAC,AU,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1060,Cedar Foods,mid_market,NA,CA,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,true +A1063,Maple Global,smb,NA,CA,2025-05-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1064,Atlas Health,smb,NA,US,2025-02-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1065,Vertex Partners,mid_market,NA,US,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1070,Helio Manufacturing,smb,APAC,NZ,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1073,Silver Holdings,mid_market,EMEA,DE,2025-03-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1074,Granite Analytics,mid_market,NA,CA,2025-06-01,Growth Monthly,active,1,1350.0,0.0,1350.0,0.0,1350.0,1350.0,0.0,0,0,false +A1086,River Labs,smb,EMEA,FR,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1089,Beacon Network,mid_market,NA,US,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1010,Orchid Foods,smb,NA,CA,2025-06-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1021,Apex Logistics,smb,NA,US,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1022,Summit Collective,smb,APAC,NZ,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1023,Atlas Systems,smb,NA,CA,2025-03-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,true +A1024,Sierra Group,smb,NA,CA,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1025,Bright Capital,smb,EMEA,UK,2025-01-01,Starter Monthly,active,1,400.0,250.0,650.0,130.0,780.0,780.0,0.0,0,0,false +A1025,Bright Capital,smb,EMEA,UK,2025-04-01,Starter Monthly,active,1,400.0,0.0,400.0,80.0,480.0,480.0,0.0,0,0,false +A1031,Helio Holdings,mid_market,APAC,AU,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1039,Nova Group,smb,EMEA,FR,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1041,Cedar Logistics,mid_market,EMEA,NL,2025-03-01,Growth Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1047,Orchid Global,enterprise,APAC,AU,2025-01-01,Enterprise Annual,active,1,25650.0,0.0,25650.0,2565.0,28215.0,28215.0,0.0,0,0,false +A1055,Pioneer Systems,mid_market,EMEA,FR,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,true +A1059,Evergreen Partners,mid_market,NA,CA,2025-06-01,Enterprise Monthly,active,1,2080.0,0.0,2080.0,0.0,2080.0,2080.0,0.0,0,0,false +A1062,Delta Manufacturing,enterprise,EMEA,NL,2025-02-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1075,Cedar Labs,smb,EMEA,UK,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1076,Atlas Solutions,mid_market,EMEA,UK,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1084,Silver Foods,mid_market,NA,CA,2025-01-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,0.0,2600.0,2600.0,0.0,0,0,false +A1084,Silver Foods,mid_market,NA,CA,2025-04-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,0.0,2600.0,2600.0,0.0,0,0,false +A1071,Evergreen Group,mid_market,NA,CA,2025-06-01,Enterprise Monthly,active,1,2080.0,0.0,2080.0,0.0,2080.0,0.0,2080.0,1,0,false +A1001,Helio Systems,mid_market,EMEA,NL,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1006,Helio Works,mid_market,EMEA,UK,2025-01-01,Growth Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1006,Helio Works,mid_market,EMEA,UK,2025-04-01,Growth Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1008,Pacific Works,mid_market,EMEA,UK,2025-05-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1010,Orchid Foods,smb,NA,CA,2025-03-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1012,Cedar Ventures,smb,APAC,JP,2025-01-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1012,Cedar Ventures,smb,APAC,JP,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1015,Delta Network,smb,NA,US,2025-01-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1015,Delta Network,smb,NA,US,2025-04-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1018,Harbor Manufacturing,smb,EMEA,UK,2025-01-01,Starter Monthly,canceled,1,500.0,250.0,750.0,150.0,900.0,900.0,0.0,0,0,false +A1018,Harbor Manufacturing,smb,EMEA,UK,2025-04-01,Starter Monthly,canceled,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1021,Apex Logistics,smb,NA,US,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1022,Summit Collective,smb,APAC,NZ,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1023,Atlas Systems,smb,NA,CA,2025-06-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,0.0,400.0,0,1,true +A1026,Pioneer Capital,smb,NA,CA,2025-01-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1026,Pioneer Capital,smb,NA,CA,2025-04-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1031,Helio Holdings,mid_market,APAC,AU,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1038,River Systems,smb,APAC,AU,2025-02-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1039,Nova Group,smb,EMEA,FR,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1040,Harbor Collective,mid_market,APAC,SG,2025-01-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,135.0,1635.0,1635.0,0.0,0,0,false +A1040,Harbor Collective,mid_market,APAC,SG,2025-04-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,135.0,1635.0,1635.0,0.0,0,0,false +A1041,Cedar Logistics,mid_market,EMEA,NL,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1042,Northwind Labs,mid_market,APAC,AU,2025-01-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1042,Northwind Labs,mid_market,APAC,AU,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1044,Summit Holdings,smb,EMEA,NL,2025-01-01,Growth Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1044,Summit Holdings,smb,EMEA,NL,2025-04-01,Growth Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1049,Northwind Network,enterprise,NA,CA,2025-01-01,Enterprise Annual,active,1,24300.0,1500.0,25800.0,0.0,25800.0,25800.0,0.0,0,0,false +A1052,Sierra Labs,mid_market,APAC,NZ,2025-02-01,Growth Monthly,active,1,1425.0,0.0,1425.0,142.5,1567.5,1567.5,0.0,0,0,false +A1054,Granite Labs,mid_market,APAC,NZ,2025-05-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,247.0,2717.0,2717.0,0.0,0,0,false +A1058,Evergreen Analytics,smb,EMEA,UK,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1059,Evergreen Partners,mid_market,NA,CA,2025-03-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1071,Evergreen Group,mid_market,NA,CA,2025-03-01,Enterprise Monthly,active,1,2080.0,0.0,2080.0,0.0,2080.0,2080.0,0.0,0,0,false +A1075,Cedar Labs,smb,EMEA,UK,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1079,Nova Foods,enterprise,EMEA,FR,2025-01-01,Enterprise Annual,active,1,21600.0,0.0,21600.0,4320.0,25920.0,25920.0,0.0,0,0,false +A1083,Falcon Works,mid_market,NA,CA,2025-04-01,Growth Monthly,active,1,1200.0,0.0,1200.0,0.0,1200.0,1200.0,0.0,0,0,false +A1085,Sierra Capital,smb,NA,US,2025-02-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1087,Apex Capital,enterprise,NA,CA,2025-01-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1087,Apex Capital,enterprise,NA,CA,2025-04-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1008,Pacific Works,mid_market,EMEA,UK,2025-06-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1014,Evergreen Global,enterprise,APAC,SG,2025-02-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,135.0,1635.0,1635.0,0.0,0,0,false +A1016,BluePeak Capital,enterprise,EMEA,DE,2025-01-01,Enterprise Annual,active,1,24300.0,2000.0,26300.0,5260.0,31560.0,31560.0,0.0,0,0,false +A1021,Apex Logistics,smb,NA,US,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1022,Summit Collective,smb,APAC,NZ,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1023,Atlas Systems,smb,NA,CA,2025-05-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,true +A1027,BluePeak Health,smb,APAC,SG,2025-02-01,Starter Monthly,active,1,500.0,0.0,500.0,45.0,545.0,545.0,0.0,0,0,false +A1029,Bright Labs,enterprise,APAC,NZ,2025-02-01,Starter Monthly,canceled,1,475.0,0.0,475.0,47.5,522.5,522.5,0.0,0,0,false +A1030,Northwind Analytics,enterprise,EMEA,UK,2025-02-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1033,Lighthouse Global,mid_market,NA,CA,2025-01-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1033,Lighthouse Global,mid_market,NA,CA,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1041,Cedar Logistics,mid_market,EMEA,NL,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1043,Lighthouse Works,enterprise,APAC,SG,2025-02-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1054,Granite Labs,mid_market,APAC,NZ,2025-06-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,247.0,2717.0,2717.0,0.0,0,0,false +A1058,Evergreen Analytics,smb,EMEA,UK,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1066,Pacific Capital,mid_market,APAC,NZ,2025-04-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,260.0,2860.0,2860.0,0.0,0,0,false +A1067,Maple Energy,mid_market,NA,CA,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1075,Cedar Labs,smb,EMEA,UK,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1077,Evergreen Foods,mid_market,NA,CA,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1080,Beacon Global,mid_market,EMEA,NL,2025-01-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1080,Beacon Global,mid_market,EMEA,NL,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1081,River Collective,mid_market,NA,CA,2025-01-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,0.0,2600.0,2600.0,0.0,0,0,false +A1081,River Collective,mid_market,NA,CA,2025-04-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,0.0,2600.0,2600.0,0.0,0,0,false +A1082,Summit Manufacturing,mid_market,NA,US,2025-01-01,Starter Monthly,canceled,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1082,Summit Manufacturing,mid_market,NA,US,2025-04-01,Starter Monthly,canceled,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1090,Vertex Labs,smb,NA,US,2025-02-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false diff --git a/tasks/helixops_saas012/setup.sh b/tasks/helixops_saas012/setup.sh new file mode 100755 index 00000000..ba9d7064 --- /dev/null +++ b/tasks/helixops_saas012/setup.sh @@ -0,0 +1,2 @@ +#!/bin/bash +dbt run diff --git a/tasks/helixops_saas012/solution.sh b/tasks/helixops_saas012/solution.sh new file mode 100755 index 00000000..af61a586 --- /dev/null +++ b/tasks/helixops_saas012/solution.sh @@ -0,0 +1,3 @@ +#!/bin/bash +patch -p1 < /sage/solutions/changes.patch +dbt run --select fct_monthly_revenue diff --git a/tasks/helixops_saas012/solutions/changes.patch b/tasks/helixops_saas012/solutions/changes.patch new file mode 100644 index 00000000..287647ed --- /dev/null +++ b/tasks/helixops_saas012/solutions/changes.patch @@ -0,0 +1,66 @@ +--- a/models/marts/fct_monthly_revenue.sql ++++ b/models/marts/fct_monthly_revenue.sql +@@ -1,5 +1,31 @@ +-with revenue as ( +- select * from {{ ref('int_monthly_revenue_prep') }} ++with invoice_finance as ( ++ select * from {{ ref('int_invoice_finance') }} ++), ++stg_accounts as ( ++ select * from {{ ref('stg_accounts') }} ++), ++revenue as ( ++ select ++ f.account_id, ++ a.account_name, ++ a.segment, ++ a.region, ++ a.billing_country, ++ f.invoice_month, ++ count(*) as invoice_count, ++ sum(f.recurring_revenue_usd) as recurring_revenue_usd, ++ sum(f.one_time_revenue_usd) as one_time_revenue_usd, ++ sum(f.subtotal_usd) as subtotal_usd, ++ sum(f.tax_usd) as tax_usd, ++ sum(f.total_usd) as total_revenue_usd, ++ sum(f.amount_paid_usd) as collected_revenue_usd, ++ sum(f.outstanding_amount_usd) as outstanding_revenue_usd, ++ sum(case when f.invoice_status = 'open' then 1 else 0 end) as open_invoice_count, ++ sum(case when f.invoice_status = 'past_due' then 1 else 0 end) as past_due_invoice_count, ++ sum(case when f.is_fully_paid then 1 else 0 end) as fully_paid_invoice_count ++ from invoice_finance f ++ left join stg_accounts a using (account_id) ++ group by 1,2,3,4,5,6 + ), + billing as ( + select account_id, plan_name, latest_subscription_status, has_past_due_invoice from {{ ref('int_account_billing_snapshot') }} +--- a/models/intermediate/int_monthly_revenue_prep.sql ++++ /dev/null +@@ -1,27 +0,0 @@ +-with finance as ( +- select * from {{ ref('int_invoice_finance') }} +-), +-accounts as ( +- select * from {{ ref('stg_accounts') }} +-) +-select +- f.account_id, +- a.account_name, +- a.segment, +- a.region, +- a.billing_country, +- f.invoice_month, +- count(*) as invoice_count, +- sum(f.recurring_revenue_usd) as recurring_revenue_usd, +- sum(f.one_time_revenue_usd) as one_time_revenue_usd, +- sum(f.subtotal_usd) as subtotal_usd, +- sum(f.tax_usd) as tax_usd, +- sum(f.total_usd) as total_revenue_usd, +- sum(f.amount_paid_usd) as collected_revenue_usd, +- sum(f.outstanding_amount_usd) as outstanding_revenue_usd, +- sum(case when f.invoice_status = 'open' then 1 else 0 end) as open_invoice_count, +- sum(case when f.invoice_status = 'past_due' then 1 else 0 end) as past_due_invoice_count, +- sum(case when f.is_fully_paid then 1 else 0 end) as fully_paid_invoice_count +-from finance f +-left join accounts a using (account_id) +-group by 1,2,3,4,5,6 diff --git a/tasks/helixops_saas012/task.yaml b/tasks/helixops_saas012/task.yaml new file mode 100644 index 00000000..7b5ce883 --- /dev/null +++ b/tasks/helixops_saas012/task.yaml @@ -0,0 +1,30 @@ +task_id: helixops_saas012 +status: ready +description: Inline an intermediate model as a CTE and delete the original file — data output is unchanged but the model must be removed from the project +prompts: + - key: base + prompt: |- + Please move the monthly revenue prep model into being a CTE for the main revenue model. + - key: hard + prompt: |- + Get rid of the monthly revenue prep model +author_name: joel +author_email: joel@example.com +difficulty: medium +tags: + - dbt + - helixops_saas +test_setup: |- + dbt run-operation drop_relation --args '{schema: main, identifier: int_monthly_revenue_prep, type: view}' || true + dbt run --select fct_monthly_revenue +variants: +- db_type: duckdb + db_name: helixops_saas + project_type: dbt + project_name: helixops_saas +- db_type: duckdb + db_name: helixops_saas + project_type: dbt-fusion + project_name: helixops_saas +solution_seeds: + - table_name: fct_monthly_revenue diff --git a/tasks/helixops_saas012/tests/AUTO_fct_monthly_revenue_equality.sql b/tasks/helixops_saas012/tests/AUTO_fct_monthly_revenue_equality.sql new file mode 100644 index 00000000..214a2965 --- /dev/null +++ b/tasks/helixops_saas012/tests/AUTO_fct_monthly_revenue_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'fct_monthly_revenue' %} +{% set answer_keys = ['solution__fct_monthly_revenue'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__fct_monthly_revenue') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas012/tests/AUTO_fct_monthly_revenue_existence.sql b/tasks/helixops_saas012/tests/AUTO_fct_monthly_revenue_existence.sql new file mode 100644 index 00000000..bfde7372 --- /dev/null +++ b/tasks/helixops_saas012/tests/AUTO_fct_monthly_revenue_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'fct_monthly_revenue' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas012/tests/int_monthly_revenue_prep_removed.sql b/tasks/helixops_saas012/tests/int_monthly_revenue_prep_removed.sql new file mode 100644 index 00000000..93e14e11 --- /dev/null +++ b/tasks/helixops_saas012/tests/int_monthly_revenue_prep_removed.sql @@ -0,0 +1,7 @@ +-- Passes only when int_monthly_revenue_prep has been removed from the project. +-- If the model file still exists, it will appear in graph.nodes and this test fails. +{% if 'model.helixops_saas.int_monthly_revenue_prep' in graph.nodes %} + select 1 +{% else %} + select 1 where 1=0 +{% endif %} diff --git a/tasks/helixops_saas013/macros/ade_bench_equality_test.sql b/tasks/helixops_saas013/macros/ade_bench_equality_test.sql new file mode 100644 index 00000000..510c6037 --- /dev/null +++ b/tasks/helixops_saas013/macros/ade_bench_equality_test.sql @@ -0,0 +1,78 @@ +{% macro ade_bench_equality_test(table_name, answer_keys, cols_to_exclude=[]) %} + {% if not execute %} + select 1 where 1=0 + {% else %} + {% set ns = namespace(matched=false) %} + {% set actual_rel = load_relation(ref(table_name)) %} + + {% if actual_rel is not none %} + {% set actual_columns = adapter.get_columns_in_relation(actual_rel) %} + {% set exclude_lower = cols_to_exclude | map('lower') | list %} + + {%- set actual_col_names = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do actual_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set actual_set = actual_col_names | sort %} + + {% for answer_key in answer_keys %} + {% if not ns.matched %} + {% set seed_rel = load_relation(ref(answer_key)) %} + {% if seed_rel is not none %} + {% set seed_columns = adapter.get_columns_in_relation(seed_rel) %} + + {%- set seed_col_names = [] -%} + {%- for col in seed_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do seed_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set seed_set = seed_col_names | sort %} + + {% if actual_set == seed_set %} + {%- set compare_cols = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do compare_cols.append(col.quoted) -%} + {%- endif -%} + {%- endfor -%} + {% set compare_cols_csv = compare_cols | join(', ') %} + + {% set query %} + with a_minus_b as ( + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + except + select {{ compare_cols_csv }} from {{ ref(table_name) }} + ), + b_minus_a as ( + select {{ compare_cols_csv }} from {{ ref(table_name) }} + except + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + ), + unioned as ( + select * from a_minus_b + union all + select * from b_minus_a + ) + select count(*) as diff_count from unioned + {% endset %} + + {% set result = run_query(query) %} + {% if result.rows[0][0] == 0 %} + {% set ns.matched = true %} + {% endif %} + {% endif %} + {% endif %} + {% endif %} + {% endfor %} + {% endif %} + + {% if ns.matched %} + select 1 where 1=0 + {% else %} + select 1 + {% endif %} + {% endif %} +{% endmacro %} diff --git a/tasks/helixops_saas013/seeds/_no-op.txt b/tasks/helixops_saas013/seeds/_no-op.txt new file mode 100644 index 00000000..a66d232a --- /dev/null +++ b/tasks/helixops_saas013/seeds/_no-op.txt @@ -0,0 +1,65 @@ + + +seeds: + helixops_saas: + solution__stg_invoice_line_items: + +column_types: + line_item_id: varchar + invoice_id: varchar + line_type: varchar + description: varchar + quantity: integer + unit_price_usd: double + line_amount_usd: double + product_family: varchar + is_recurring_hint: boolean + is_recurring_line: boolean + solution__int_invoice_finance: + +column_types: + invoice_id: varchar + subscription_id: varchar + account_id: varchar + invoice_date: date + invoice_month: date + due_date: date + service_period_start: date + service_period_end: date + invoice_status: varchar + subtotal_usd: double + tax_usd: double + total_usd: double + line_item_count: bigint + recurring_revenue_usd: double + one_time_revenue_usd: double + base_subscription_revenue_usd: double + payment_attempt_count: bigint + successful_payment_count: bigint + failed_payment_count: bigint + amount_paid_usd: double + processor_fee_usd: double + latest_payment_status: varchar + latest_payment_method: varchar + latest_payment_date: date + outstanding_amount_usd: double + is_fully_paid: boolean + solution__fct_monthly_revenue: + +column_types: + account_id: varchar + account_name: varchar + segment: varchar + region: varchar + billing_country: varchar + invoice_month: date + plan_name: varchar + latest_subscription_status: varchar + invoice_count: bigint + recurring_revenue_usd: double + one_time_revenue_usd: double + subtotal_usd: double + tax_usd: double + total_revenue_usd: double + collected_revenue_usd: double + outstanding_revenue_usd: double + open_invoice_count: bigint + past_due_invoice_count: bigint + has_past_due_invoice: boolean diff --git a/tasks/helixops_saas013/seeds/solution__fct_monthly_revenue.csv b/tasks/helixops_saas013/seeds/solution__fct_monthly_revenue.csv new file mode 100644 index 00000000..714c9836 --- /dev/null +++ b/tasks/helixops_saas013/seeds/solution__fct_monthly_revenue.csv @@ -0,0 +1,433 @@ +account_id,account_name,segment,region,billing_country,invoice_month,plan_name,latest_subscription_status,invoice_count,recurring_revenue_usd,one_time_revenue_usd,subtotal_usd,tax_usd,total_revenue_usd,collected_revenue_usd,outstanding_revenue_usd,open_invoice_count,past_due_invoice_count,has_past_due_invoice +A1008,Pacific Works,mid_market,EMEA,UK,2025-06-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1014,Evergreen Global,enterprise,APAC,SG,2025-02-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,135.0,1635.0,1635.0,0.0,0,0,false +A1016,BluePeak Capital,enterprise,EMEA,DE,2025-01-01,Enterprise Annual,active,1,24300.0,2000.0,26300.0,5260.0,31560.0,31560.0,0.0,0,0,false +A1021,Apex Logistics,smb,NA,US,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1022,Summit Collective,smb,APAC,NZ,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1023,Atlas Systems,smb,NA,CA,2025-05-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,true +A1027,BluePeak Health,smb,APAC,SG,2025-02-01,Starter Monthly,active,1,500.0,0.0,500.0,45.0,545.0,545.0,0.0,0,0,false +A1029,Bright Labs,enterprise,APAC,NZ,2025-02-01,Starter Monthly,canceled,1,475.0,0.0,475.0,47.5,522.5,522.5,0.0,0,0,false +A1030,Northwind Analytics,enterprise,EMEA,UK,2025-02-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1033,Lighthouse Global,mid_market,NA,CA,2025-01-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1033,Lighthouse Global,mid_market,NA,CA,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1041,Cedar Logistics,mid_market,EMEA,NL,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1043,Lighthouse Works,enterprise,APAC,SG,2025-02-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1054,Granite Labs,mid_market,APAC,NZ,2025-06-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,247.0,2717.0,2717.0,0.0,0,0,false +A1058,Evergreen Analytics,smb,EMEA,UK,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1066,Pacific Capital,mid_market,APAC,NZ,2025-04-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,260.0,2860.0,2860.0,0.0,0,0,false +A1067,Maple Energy,mid_market,NA,CA,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1075,Cedar Labs,smb,EMEA,UK,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1077,Evergreen Foods,mid_market,NA,CA,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1080,Beacon Global,mid_market,EMEA,NL,2025-01-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1080,Beacon Global,mid_market,EMEA,NL,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1081,River Collective,mid_market,NA,CA,2025-01-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,0.0,2600.0,2600.0,0.0,0,0,false +A1081,River Collective,mid_market,NA,CA,2025-04-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,0.0,2600.0,2600.0,0.0,0,0,false +A1082,Summit Manufacturing,mid_market,NA,US,2025-01-01,Starter Monthly,canceled,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1082,Summit Manufacturing,mid_market,NA,US,2025-04-01,Starter Monthly,canceled,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1090,Vertex Labs,smb,NA,US,2025-02-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1002,Summit Foods,mid_market,NA,US,2025-02-01,Growth Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1007,Silver Systems,smb,EMEA,FR,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1009,Summit Group,mid_market,NA,US,2025-05-01,Enterprise Monthly,active,1,2340.0,0.0,2340.0,0.0,2340.0,2340.0,0.0,0,0,false +A1011,Vertex Energy,smb,NA,CA,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1013,River Foods,mid_market,NA,US,2025-05-01,Growth Monthly,active,1,1425.0,0.0,1425.0,0.0,1425.0,1425.0,0.0,0,0,false +A1017,Summit Analytics,mid_market,EMEA,UK,2025-05-01,Growth Monthly,active,1,1350.0,0.0,1350.0,270.0,1620.0,1620.0,0.0,0,0,false +A1019,Sierra Systems,smb,APAC,JP,2025-03-01,Starter Monthly,active,1,400.0,0.0,400.0,40.0,440.0,440.0,0.0,0,0,false +A1028,Apex Energy,mid_market,APAC,SG,2025-02-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1034,Helio Partners,smb,NA,CA,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1035,Bright Retail,mid_market,EMEA,UK,2025-03-01,Enterprise Monthly,active,1,1500.0,250.0,1750.0,350.0,2100.0,2100.0,0.0,0,0,false +A1037,Lighthouse Network,enterprise,EMEA,UK,2025-03-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1046,Pioneer Solutions,smb,NA,CA,2025-06-01,Growth Monthly,active,1,1200.0,0.0,1200.0,0.0,1200.0,1200.0,0.0,0,0,false +A1048,Orchid Capital,enterprise,APAC,NZ,2025-03-01,Enterprise Annual,active,1,24300.0,0.0,24300.0,2430.0,26730.0,26730.0,0.0,0,0,false +A1051,Lighthouse Systems,smb,EMEA,UK,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1053,Bright Health,mid_market,NA,CA,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1056,Delta Global,mid_market,APAC,AU,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1060,Cedar Foods,mid_market,NA,CA,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,true +A1063,Maple Global,smb,NA,CA,2025-05-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1064,Atlas Health,smb,NA,US,2025-02-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1065,Vertex Partners,mid_market,NA,US,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1070,Helio Manufacturing,smb,APAC,NZ,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1073,Silver Holdings,mid_market,EMEA,DE,2025-03-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1074,Granite Analytics,mid_market,NA,CA,2025-06-01,Growth Monthly,active,1,1350.0,0.0,1350.0,0.0,1350.0,1350.0,0.0,0,0,false +A1086,River Labs,smb,EMEA,FR,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1089,Beacon Network,mid_market,NA,US,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1003,Nova Ventures,enterprise,NA,US,2025-01-01,Enterprise Annual,active,1,25650.0,2000.0,27650.0,0.0,27650.0,27650.0,0.0,0,0,false +A1004,Silver Solutions,enterprise,NA,US,2025-03-01,Starter Monthly,canceled,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1005,Pacific Labs,enterprise,EMEA,UK,2025-01-01,Enterprise Annual,active,1,25650.0,2000.0,27650.0,5530.0,33180.0,33180.0,0.0,0,0,false +A1009,Summit Group,mid_market,NA,US,2025-06-01,Enterprise Monthly,active,1,2340.0,0.0,2340.0,0.0,2340.0,2340.0,0.0,0,0,false +A1011,Vertex Energy,smb,NA,CA,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1013,River Foods,mid_market,NA,US,2025-06-01,Growth Monthly,active,1,1425.0,0.0,1425.0,0.0,1425.0,1425.0,0.0,0,0,false +A1017,Summit Analytics,mid_market,EMEA,UK,2025-06-01,Growth Monthly,active,1,1350.0,0.0,1350.0,270.0,1620.0,1620.0,0.0,0,0,false +A1024,Sierra Group,smb,NA,CA,2025-02-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1025,Bright Capital,smb,EMEA,UK,2025-02-01,Starter Monthly,active,1,400.0,0.0,400.0,80.0,480.0,480.0,0.0,0,0,false +A1034,Helio Partners,smb,NA,CA,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1036,Granite Holdings,smb,NA,US,2025-03-01,Growth Monthly,canceled,1,1200.0,0.0,1200.0,0.0,1200.0,1200.0,0.0,0,0,false +A1046,Pioneer Solutions,smb,NA,CA,2025-05-01,Growth Monthly,active,1,1200.0,0.0,1200.0,0.0,1200.0,1200.0,0.0,0,0,false +A1050,Cedar Energy,smb,APAC,JP,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1055,Pioneer Systems,mid_market,EMEA,FR,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,true +A1056,Delta Global,mid_market,APAC,AU,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1061,Atlas Capital,enterprise,EMEA,FR,2025-04-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1062,Delta Manufacturing,enterprise,EMEA,NL,2025-01-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1062,Delta Manufacturing,enterprise,EMEA,NL,2025-04-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1065,Vertex Partners,mid_market,NA,US,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1068,Helio Health,enterprise,APAC,SG,2025-03-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1074,Granite Analytics,mid_market,NA,CA,2025-05-01,Growth Monthly,active,1,1350.0,0.0,1350.0,0.0,1350.0,1350.0,0.0,0,0,false +A1078,Beacon Foods,mid_market,EMEA,FR,2025-04-01,Growth Monthly,active,1,1425.0,0.0,1425.0,285.0,1710.0,1710.0,0.0,0,0,false +A1084,Silver Foods,mid_market,NA,CA,2025-02-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,0.0,2600.0,2600.0,0.0,0,0,false +A1086,River Labs,smb,EMEA,FR,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1089,Beacon Network,mid_market,NA,US,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1007,Silver Systems,smb,EMEA,FR,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,0.0,600.0,1,0,false +A1063,Maple Global,smb,NA,CA,2025-06-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,0.0,400.0,1,0,false +A1014,Evergreen Global,enterprise,APAC,SG,2025-03-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,135.0,1635.0,1635.0,0.0,0,0,false +A1027,BluePeak Health,smb,APAC,SG,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,45.0,545.0,545.0,0.0,0,0,false +A1029,Bright Labs,enterprise,APAC,NZ,2025-03-01,Starter Monthly,canceled,1,475.0,0.0,475.0,47.5,522.5,522.5,0.0,0,0,false +A1030,Northwind Analytics,enterprise,EMEA,UK,2025-03-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1032,Vertex Works,mid_market,EMEA,DE,2025-01-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1032,Vertex Works,mid_market,EMEA,DE,2025-04-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1034,Helio Partners,smb,NA,CA,2025-01-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1034,Helio Partners,smb,NA,CA,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1043,Lighthouse Works,enterprise,APAC,SG,2025-03-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1046,Pioneer Solutions,smb,NA,CA,2025-01-01,Growth Monthly,active,1,1200.0,0.0,1200.0,0.0,1200.0,1200.0,0.0,0,0,false +A1046,Pioneer Solutions,smb,NA,CA,2025-04-01,Growth Monthly,active,1,1200.0,0.0,1200.0,0.0,1200.0,1200.0,0.0,0,0,false +A1050,Cedar Energy,smb,APAC,JP,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1056,Delta Global,mid_market,APAC,AU,2025-01-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1056,Delta Global,mid_market,APAC,AU,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1057,Harbor Partners,enterprise,APAC,NZ,2025-01-01,Enterprise Annual,active,1,21600.0,0.0,21600.0,2160.0,23760.0,23760.0,0.0,0,0,false +A1061,Atlas Capital,enterprise,EMEA,FR,2025-05-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1062,Delta Manufacturing,enterprise,EMEA,NL,2025-05-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1065,Vertex Partners,mid_market,NA,US,2025-01-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1065,Vertex Partners,mid_market,NA,US,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1067,Maple Energy,mid_market,NA,CA,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1074,Granite Analytics,mid_market,NA,CA,2025-01-01,Growth Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1074,Granite Analytics,mid_market,NA,CA,2025-04-01,Growth Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1077,Evergreen Foods,mid_market,NA,CA,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1078,Beacon Foods,mid_market,EMEA,FR,2025-05-01,Growth Monthly,active,1,1425.0,0.0,1425.0,285.0,1710.0,1710.0,0.0,0,0,false +A1090,Vertex Labs,smb,NA,US,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1004,Silver Solutions,enterprise,NA,US,2025-05-01,Starter Monthly,canceled,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1014,Evergreen Global,enterprise,APAC,SG,2025-01-01,Growth Monthly,canceled,1,1500.0,400.0,1900.0,171.0,2071.0,2071.0,0.0,0,0,false +A1014,Evergreen Global,enterprise,APAC,SG,2025-04-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,135.0,1635.0,1635.0,0.0,0,0,false +A1019,Sierra Systems,smb,APAC,JP,2025-06-01,Starter Monthly,active,1,400.0,0.0,400.0,40.0,440.0,440.0,0.0,0,0,false +A1027,BluePeak Health,smb,APAC,SG,2025-01-01,Starter Monthly,active,1,500.0,0.0,500.0,45.0,545.0,545.0,0.0,0,0,false +A1027,BluePeak Health,smb,APAC,SG,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,45.0,545.0,545.0,0.0,0,0,false +A1029,Bright Labs,enterprise,APAC,NZ,2025-01-01,Starter Monthly,canceled,1,475.0,0.0,475.0,47.5,522.5,522.5,0.0,0,0,false +A1029,Bright Labs,enterprise,APAC,NZ,2025-04-01,Starter Monthly,canceled,1,475.0,0.0,475.0,47.5,522.5,522.5,0.0,0,0,false +A1030,Northwind Analytics,enterprise,EMEA,UK,2025-01-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1030,Northwind Analytics,enterprise,EMEA,UK,2025-04-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1032,Vertex Works,mid_market,EMEA,DE,2025-03-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1033,Lighthouse Global,mid_market,NA,CA,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1034,Helio Partners,smb,NA,CA,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1035,Bright Retail,mid_market,EMEA,UK,2025-06-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1037,Lighthouse Network,enterprise,EMEA,UK,2025-06-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1043,Lighthouse Works,enterprise,APAC,SG,2025-01-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1043,Lighthouse Works,enterprise,APAC,SG,2025-04-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1046,Pioneer Solutions,smb,NA,CA,2025-03-01,Growth Monthly,active,1,1200.0,0.0,1200.0,0.0,1200.0,1200.0,0.0,0,0,false +A1051,Lighthouse Systems,smb,EMEA,UK,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1053,Bright Health,mid_market,NA,CA,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1056,Delta Global,mid_market,APAC,AU,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1060,Cedar Foods,mid_market,NA,CA,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,0.0,1500.0,0,1,true +A1065,Vertex Partners,mid_market,NA,US,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1066,Pacific Capital,mid_market,APAC,NZ,2025-02-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,260.0,2860.0,2860.0,0.0,0,0,false +A1067,Maple Energy,mid_market,NA,CA,2025-01-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1067,Maple Energy,mid_market,NA,CA,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1068,Helio Health,enterprise,APAC,SG,2025-05-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1070,Helio Manufacturing,smb,APAC,NZ,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1073,Silver Holdings,mid_market,EMEA,DE,2025-06-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1074,Granite Analytics,mid_market,NA,CA,2025-03-01,Growth Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1077,Evergreen Foods,mid_market,NA,CA,2025-01-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1077,Evergreen Foods,mid_market,NA,CA,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1080,Beacon Global,mid_market,EMEA,NL,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1081,River Collective,mid_market,NA,CA,2025-02-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,0.0,2600.0,2600.0,0.0,0,0,false +A1082,Summit Manufacturing,mid_market,NA,US,2025-02-01,Starter Monthly,canceled,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1090,Vertex Labs,smb,NA,US,2025-01-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1090,Vertex Labs,smb,NA,US,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1001,Helio Systems,mid_market,EMEA,NL,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1004,Silver Solutions,enterprise,NA,US,2025-01-01,Starter Monthly,canceled,1,500.0,400.0,900.0,0.0,900.0,900.0,0.0,0,0,false +A1004,Silver Solutions,enterprise,NA,US,2025-04-01,Starter Monthly,canceled,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1021,Apex Logistics,smb,NA,US,2025-02-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1023,Atlas Systems,smb,NA,CA,2025-02-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,true +A1027,BluePeak Health,smb,APAC,SG,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,45.0,545.0,545.0,0.0,0,0,false +A1030,Northwind Analytics,enterprise,EMEA,UK,2025-05-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1036,Granite Holdings,smb,NA,US,2025-01-01,Growth Monthly,canceled,1,1200.0,300.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1036,Granite Holdings,smb,NA,US,2025-04-01,Growth Monthly,canceled,1,1200.0,0.0,1200.0,0.0,1200.0,1200.0,0.0,0,0,false +A1038,River Systems,smb,APAC,AU,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1041,Cedar Logistics,mid_market,EMEA,NL,2025-02-01,Growth Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1043,Lighthouse Works,enterprise,APAC,SG,2025-05-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1050,Cedar Energy,smb,APAC,JP,2025-03-01,Starter Monthly,active,1,500.0,250.0,750.0,75.0,825.0,825.0,0.0,0,0,false +A1052,Sierra Labs,mid_market,APAC,NZ,2025-06-01,Growth Monthly,active,1,1425.0,0.0,1425.0,142.5,1567.5,1567.5,0.0,0,0,false +A1061,Atlas Capital,enterprise,EMEA,FR,2025-03-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1062,Delta Manufacturing,enterprise,EMEA,NL,2025-03-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1067,Maple Energy,mid_market,NA,CA,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1068,Helio Health,enterprise,APAC,SG,2025-01-01,Enterprise Monthly,active,1,2600.0,250.0,2850.0,256.5,3106.5,3106.5,0.0,0,0,false +A1068,Helio Health,enterprise,APAC,SG,2025-04-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1075,Cedar Labs,smb,EMEA,UK,2025-02-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1077,Evergreen Foods,mid_market,NA,CA,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1078,Beacon Foods,mid_market,EMEA,FR,2025-03-01,Growth Monthly,active,1,1425.0,300.0,1725.0,345.0,2070.0,2070.0,0.0,0,0,false +A1085,Sierra Capital,smb,NA,US,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1090,Vertex Labs,smb,NA,US,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1001,Helio Systems,mid_market,EMEA,NL,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1006,Helio Works,mid_market,EMEA,UK,2025-01-01,Growth Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1006,Helio Works,mid_market,EMEA,UK,2025-04-01,Growth Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1008,Pacific Works,mid_market,EMEA,UK,2025-05-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1010,Orchid Foods,smb,NA,CA,2025-03-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1012,Cedar Ventures,smb,APAC,JP,2025-01-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1012,Cedar Ventures,smb,APAC,JP,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1015,Delta Network,smb,NA,US,2025-01-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1015,Delta Network,smb,NA,US,2025-04-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1018,Harbor Manufacturing,smb,EMEA,UK,2025-01-01,Starter Monthly,canceled,1,500.0,250.0,750.0,150.0,900.0,900.0,0.0,0,0,false +A1018,Harbor Manufacturing,smb,EMEA,UK,2025-04-01,Starter Monthly,canceled,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1021,Apex Logistics,smb,NA,US,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1022,Summit Collective,smb,APAC,NZ,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1023,Atlas Systems,smb,NA,CA,2025-06-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,0.0,400.0,0,1,true +A1026,Pioneer Capital,smb,NA,CA,2025-01-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1026,Pioneer Capital,smb,NA,CA,2025-04-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1031,Helio Holdings,mid_market,APAC,AU,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1038,River Systems,smb,APAC,AU,2025-02-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1039,Nova Group,smb,EMEA,FR,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1040,Harbor Collective,mid_market,APAC,SG,2025-01-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,135.0,1635.0,1635.0,0.0,0,0,false +A1040,Harbor Collective,mid_market,APAC,SG,2025-04-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,135.0,1635.0,1635.0,0.0,0,0,false +A1041,Cedar Logistics,mid_market,EMEA,NL,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1042,Northwind Labs,mid_market,APAC,AU,2025-01-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1042,Northwind Labs,mid_market,APAC,AU,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1044,Summit Holdings,smb,EMEA,NL,2025-01-01,Growth Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1044,Summit Holdings,smb,EMEA,NL,2025-04-01,Growth Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1049,Northwind Network,enterprise,NA,CA,2025-01-01,Enterprise Annual,active,1,24300.0,1500.0,25800.0,0.0,25800.0,25800.0,0.0,0,0,false +A1052,Sierra Labs,mid_market,APAC,NZ,2025-02-01,Growth Monthly,active,1,1425.0,0.0,1425.0,142.5,1567.5,1567.5,0.0,0,0,false +A1054,Granite Labs,mid_market,APAC,NZ,2025-05-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,247.0,2717.0,2717.0,0.0,0,0,false +A1058,Evergreen Analytics,smb,EMEA,UK,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1059,Evergreen Partners,mid_market,NA,CA,2025-03-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1071,Evergreen Group,mid_market,NA,CA,2025-03-01,Enterprise Monthly,active,1,2080.0,0.0,2080.0,0.0,2080.0,2080.0,0.0,0,0,false +A1075,Cedar Labs,smb,EMEA,UK,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1079,Nova Foods,enterprise,EMEA,FR,2025-01-01,Enterprise Annual,active,1,21600.0,0.0,21600.0,4320.0,25920.0,25920.0,0.0,0,0,false +A1083,Falcon Works,mid_market,NA,CA,2025-04-01,Growth Monthly,active,1,1200.0,0.0,1200.0,0.0,1200.0,1200.0,0.0,0,0,false +A1085,Sierra Capital,smb,NA,US,2025-02-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1087,Apex Capital,enterprise,NA,CA,2025-01-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1087,Apex Capital,enterprise,NA,CA,2025-04-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1001,Helio Systems,mid_market,EMEA,NL,2025-01-01,Growth Monthly,active,1,1500.0,300.0,1800.0,360.0,2160.0,2160.0,0.0,0,0,false +A1001,Helio Systems,mid_market,EMEA,NL,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1006,Helio Works,mid_market,EMEA,UK,2025-02-01,Growth Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1007,Silver Systems,smb,EMEA,FR,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1009,Summit Group,mid_market,NA,US,2025-03-01,Enterprise Monthly,active,1,2340.0,0.0,2340.0,0.0,2340.0,2340.0,0.0,0,0,false +A1011,Vertex Energy,smb,NA,CA,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1012,Cedar Ventures,smb,APAC,JP,2025-02-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1013,River Foods,mid_market,NA,US,2025-03-01,Growth Monthly,active,1,1425.0,0.0,1425.0,0.0,1425.0,1425.0,0.0,0,0,false +A1015,Delta Network,smb,NA,US,2025-02-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1017,Summit Analytics,mid_market,EMEA,UK,2025-03-01,Growth Monthly,active,1,1350.0,0.0,1350.0,270.0,1620.0,1620.0,0.0,0,0,false +A1018,Harbor Manufacturing,smb,EMEA,UK,2025-02-01,Starter Monthly,canceled,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1019,Sierra Systems,smb,APAC,JP,2025-05-01,Starter Monthly,active,1,400.0,0.0,400.0,40.0,440.0,440.0,0.0,0,0,false +A1026,Pioneer Capital,smb,NA,CA,2025-02-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1035,Bright Retail,mid_market,EMEA,UK,2025-05-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1037,Lighthouse Network,enterprise,EMEA,UK,2025-05-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1038,River Systems,smb,APAC,AU,2025-01-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1038,River Systems,smb,APAC,AU,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1040,Harbor Collective,mid_market,APAC,SG,2025-02-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,135.0,1635.0,1635.0,0.0,0,0,false +A1042,Northwind Labs,mid_market,APAC,AU,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1044,Summit Holdings,smb,EMEA,NL,2025-02-01,Growth Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1051,Lighthouse Systems,smb,EMEA,UK,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1052,Sierra Labs,mid_market,APAC,NZ,2025-01-01,Growth Monthly,active,1,1425.0,0.0,1425.0,142.5,1567.5,1567.5,0.0,0,0,false +A1052,Sierra Labs,mid_market,APAC,NZ,2025-04-01,Growth Monthly,active,1,1425.0,0.0,1425.0,142.5,1567.5,1567.5,0.0,0,0,false +A1053,Bright Health,mid_market,NA,CA,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1060,Cedar Foods,mid_market,NA,CA,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,true +A1063,Maple Global,smb,NA,CA,2025-03-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1070,Helio Manufacturing,smb,APAC,NZ,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1072,Summit Ventures,enterprise,NA,US,2025-01-01,Enterprise Annual,active,1,24300.0,2500.0,26800.0,0.0,26800.0,26800.0,0.0,0,0,false +A1073,Silver Holdings,mid_market,EMEA,DE,2025-05-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1083,Falcon Works,mid_market,NA,CA,2025-02-01,Growth Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1085,Sierra Capital,smb,NA,US,2025-01-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1085,Sierra Capital,smb,NA,US,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1086,River Labs,smb,EMEA,FR,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1087,Apex Capital,enterprise,NA,CA,2025-02-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1089,Beacon Network,mid_market,NA,US,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1068,Helio Health,enterprise,APAC,SG,2025-06-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,0.0,2834.0,1,0,false +A1002,Summit Foods,mid_market,NA,US,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1006,Helio Works,mid_market,EMEA,UK,2025-03-01,Growth Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1007,Silver Systems,smb,EMEA,FR,2025-02-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1009,Summit Group,mid_market,NA,US,2025-02-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1010,Orchid Foods,smb,NA,CA,2025-04-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1011,Vertex Energy,smb,NA,CA,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1012,Cedar Ventures,smb,APAC,JP,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1013,River Foods,mid_market,NA,US,2025-02-01,Growth Monthly,active,1,1425.0,0.0,1425.0,0.0,1425.0,1425.0,0.0,0,0,false +A1015,Delta Network,smb,NA,US,2025-03-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1017,Summit Analytics,mid_market,EMEA,UK,2025-02-01,Growth Monthly,active,1,1350.0,0.0,1350.0,270.0,1620.0,1620.0,0.0,0,0,false +A1018,Harbor Manufacturing,smb,EMEA,UK,2025-03-01,Starter Monthly,canceled,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1020,Pioneer Network,smb,EMEA,FR,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1024,Sierra Group,smb,NA,CA,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1025,Bright Capital,smb,EMEA,UK,2025-06-01,Starter Monthly,active,1,400.0,0.0,400.0,80.0,480.0,480.0,0.0,0,0,false +A1026,Pioneer Capital,smb,NA,CA,2025-03-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1028,Apex Energy,mid_market,APAC,SG,2025-05-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1031,Helio Holdings,mid_market,APAC,AU,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1039,Nova Group,smb,EMEA,FR,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1040,Harbor Collective,mid_market,APAC,SG,2025-03-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,135.0,1635.0,1635.0,0.0,0,0,false +A1042,Northwind Labs,mid_market,APAC,AU,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1044,Summit Holdings,smb,EMEA,NL,2025-03-01,Growth Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1055,Pioneer Systems,mid_market,EMEA,FR,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,0.0,1800.0,0,1,true +A1059,Evergreen Partners,mid_market,NA,CA,2025-01-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1059,Evergreen Partners,mid_market,NA,CA,2025-04-01,Enterprise Monthly,active,1,2080.0,400.0,2480.0,0.0,2480.0,2480.0,0.0,0,0,false +A1063,Maple Global,smb,NA,CA,2025-02-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1064,Atlas Health,smb,NA,US,2025-05-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1071,Evergreen Group,mid_market,NA,CA,2025-01-01,Enterprise Monthly,active,1,2080.0,0.0,2080.0,0.0,2080.0,2080.0,0.0,0,0,false +A1071,Evergreen Group,mid_market,NA,CA,2025-04-01,Enterprise Monthly,active,1,2080.0,0.0,2080.0,0.0,2080.0,2080.0,0.0,0,0,false +A1076,Atlas Solutions,mid_market,EMEA,UK,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1083,Falcon Works,mid_market,NA,CA,2025-03-01,Growth Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1084,Silver Foods,mid_market,NA,CA,2025-06-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,0.0,2600.0,2600.0,0.0,0,0,false +A1087,Apex Capital,enterprise,NA,CA,2025-03-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1088,Cedar Partners,smb,APAC,NZ,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1089,Beacon Network,mid_market,NA,US,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1020,Pioneer Network,smb,EMEA,FR,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1024,Sierra Group,smb,NA,CA,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1025,Bright Capital,smb,EMEA,UK,2025-05-01,Starter Monthly,active,1,400.0,0.0,400.0,80.0,480.0,480.0,0.0,0,0,false +A1032,Vertex Works,mid_market,EMEA,DE,2025-02-01,Growth Monthly,canceled,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1033,Lighthouse Global,mid_market,NA,CA,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1034,Helio Partners,smb,NA,CA,2025-02-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1045,Nova Holdings,enterprise,NA,CA,2025-01-01,Enterprise Annual,active,1,25650.0,0.0,25650.0,0.0,25650.0,25650.0,0.0,0,0,false +A1046,Pioneer Solutions,smb,NA,CA,2025-02-01,Growth Monthly,active,1,1200.0,0.0,1200.0,0.0,1200.0,1200.0,0.0,0,0,false +A1055,Pioneer Systems,mid_market,EMEA,FR,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,true +A1056,Delta Global,mid_market,APAC,AU,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1064,Atlas Health,smb,NA,US,2025-06-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1065,Vertex Partners,mid_market,NA,US,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1066,Pacific Capital,mid_market,APAC,NZ,2025-03-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,260.0,2860.0,2860.0,0.0,0,0,false +A1074,Granite Analytics,mid_market,NA,CA,2025-02-01,Growth Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1076,Atlas Solutions,mid_market,EMEA,UK,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1080,Beacon Global,mid_market,EMEA,NL,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1081,River Collective,mid_market,NA,CA,2025-03-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,0.0,2600.0,2600.0,0.0,0,0,false +A1082,Summit Manufacturing,mid_market,NA,US,2025-03-01,Starter Monthly,canceled,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1084,Silver Foods,mid_market,NA,CA,2025-05-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,0.0,2600.0,2600.0,0.0,0,0,false +A1088,Cedar Partners,smb,APAC,NZ,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1002,Summit Foods,mid_market,NA,US,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,0.0,1500.0,1,0,false +A1028,Apex Energy,mid_market,APAC,SG,2025-06-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,0.0,2834.0,1,0,false +A1010,Orchid Foods,smb,NA,CA,2025-06-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1021,Apex Logistics,smb,NA,US,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1022,Summit Collective,smb,APAC,NZ,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1023,Atlas Systems,smb,NA,CA,2025-03-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,true +A1024,Sierra Group,smb,NA,CA,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1025,Bright Capital,smb,EMEA,UK,2025-01-01,Starter Monthly,active,1,400.0,250.0,650.0,130.0,780.0,780.0,0.0,0,0,false +A1025,Bright Capital,smb,EMEA,UK,2025-04-01,Starter Monthly,active,1,400.0,0.0,400.0,80.0,480.0,480.0,0.0,0,0,false +A1031,Helio Holdings,mid_market,APAC,AU,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1039,Nova Group,smb,EMEA,FR,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1041,Cedar Logistics,mid_market,EMEA,NL,2025-03-01,Growth Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1047,Orchid Global,enterprise,APAC,AU,2025-01-01,Enterprise Annual,active,1,25650.0,0.0,25650.0,2565.0,28215.0,28215.0,0.0,0,0,false +A1055,Pioneer Systems,mid_market,EMEA,FR,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,true +A1059,Evergreen Partners,mid_market,NA,CA,2025-06-01,Enterprise Monthly,active,1,2080.0,0.0,2080.0,0.0,2080.0,2080.0,0.0,0,0,false +A1062,Delta Manufacturing,enterprise,EMEA,NL,2025-02-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1075,Cedar Labs,smb,EMEA,UK,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1076,Atlas Solutions,mid_market,EMEA,UK,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1084,Silver Foods,mid_market,NA,CA,2025-01-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,0.0,2600.0,2600.0,0.0,0,0,false +A1084,Silver Foods,mid_market,NA,CA,2025-04-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,0.0,2600.0,2600.0,0.0,0,0,false +A1071,Evergreen Group,mid_market,NA,CA,2025-06-01,Enterprise Monthly,active,1,2080.0,0.0,2080.0,0.0,2080.0,0.0,2080.0,1,0,false +A1002,Summit Foods,mid_market,NA,US,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1006,Helio Works,mid_market,EMEA,UK,2025-05-01,Growth Monthly,active,1,1200.0,0.0,1200.0,240.0,1440.0,1440.0,0.0,0,0,false +A1008,Pacific Works,mid_market,EMEA,UK,2025-01-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1008,Pacific Works,mid_market,EMEA,UK,2025-04-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1012,Cedar Ventures,smb,APAC,JP,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1020,Pioneer Network,smb,EMEA,FR,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1026,Pioneer Capital,smb,NA,CA,2025-05-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1028,Apex Energy,mid_market,APAC,SG,2025-03-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1033,Lighthouse Global,mid_market,NA,CA,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1037,Lighthouse Network,enterprise,EMEA,UK,2025-02-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1040,Harbor Collective,mid_market,APAC,SG,2025-05-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1042,Northwind Labs,mid_market,APAC,AU,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1044,Summit Holdings,smb,EMEA,NL,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1053,Bright Health,mid_market,NA,CA,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1054,Granite Labs,mid_market,APAC,NZ,2025-01-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,247.0,2717.0,2717.0,0.0,0,0,false +A1054,Granite Labs,mid_market,APAC,NZ,2025-04-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,247.0,2717.0,2717.0,0.0,0,0,false +A1058,Evergreen Analytics,smb,EMEA,UK,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1060,Cedar Foods,mid_market,NA,CA,2025-02-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,true +A1064,Atlas Health,smb,NA,US,2025-03-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1069,Bright Foods,enterprise,NA,CA,2025-01-01,Enterprise Annual,active,1,24300.0,0.0,24300.0,0.0,24300.0,24300.0,0.0,0,0,false +A1070,Helio Manufacturing,smb,APAC,NZ,2025-02-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1073,Silver Holdings,mid_market,EMEA,DE,2025-02-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1080,Beacon Global,mid_market,EMEA,NL,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1081,River Collective,mid_market,NA,CA,2025-06-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,0.0,2600.0,2600.0,0.0,0,0,false +A1083,Falcon Works,mid_market,NA,CA,2025-05-01,Growth Monthly,active,1,1200.0,0.0,1200.0,0.0,1200.0,1200.0,0.0,0,0,false +A1088,Cedar Partners,smb,APAC,NZ,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1066,Pacific Capital,mid_market,APAC,NZ,2025-06-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,260.0,2860.0,0.0,2860.0,1,0,false +A1001,Helio Systems,mid_market,EMEA,NL,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1007,Silver Systems,smb,EMEA,FR,2025-01-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1007,Silver Systems,smb,EMEA,FR,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1009,Summit Group,mid_market,NA,US,2025-01-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1009,Summit Group,mid_market,NA,US,2025-04-01,Enterprise Monthly,active,1,2340.0,0.0,2340.0,0.0,2340.0,2340.0,0.0,0,0,false +A1011,Vertex Energy,smb,NA,CA,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1013,River Foods,mid_market,NA,US,2025-01-01,Growth Monthly,active,1,1425.0,400.0,1825.0,0.0,1825.0,1825.0,0.0,0,0,false +A1013,River Foods,mid_market,NA,US,2025-04-01,Growth Monthly,active,1,1425.0,0.0,1425.0,0.0,1425.0,1425.0,0.0,0,0,false +A1017,Summit Analytics,mid_market,EMEA,UK,2025-01-01,Growth Monthly,active,1,1350.0,0.0,1350.0,270.0,1620.0,1620.0,0.0,0,0,false +A1017,Summit Analytics,mid_market,EMEA,UK,2025-04-01,Growth Monthly,active,1,1350.0,0.0,1350.0,270.0,1620.0,1620.0,0.0,0,0,false +A1038,River Systems,smb,APAC,AU,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1050,Cedar Energy,smb,APAC,JP,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1052,Sierra Labs,mid_market,APAC,NZ,2025-03-01,Growth Monthly,active,1,1425.0,0.0,1425.0,142.5,1567.5,1567.5,0.0,0,0,false +A1059,Evergreen Partners,mid_market,NA,CA,2025-02-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1061,Atlas Capital,enterprise,EMEA,FR,2025-06-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1062,Delta Manufacturing,enterprise,EMEA,NL,2025-06-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1063,Maple Global,smb,NA,CA,2025-01-01,Starter Monthly,active,1,400.0,300.0,700.0,0.0,700.0,700.0,0.0,0,0,false +A1063,Maple Global,smb,NA,CA,2025-04-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1071,Evergreen Group,mid_market,NA,CA,2025-02-01,Enterprise Monthly,active,1,2080.0,0.0,2080.0,0.0,2080.0,2080.0,0.0,0,0,false +A1078,Beacon Foods,mid_market,EMEA,FR,2025-06-01,Growth Monthly,active,1,1425.0,0.0,1425.0,285.0,1710.0,1710.0,0.0,0,0,false +A1085,Sierra Capital,smb,NA,US,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1086,River Labs,smb,EMEA,FR,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1089,Beacon Network,mid_market,NA,US,2025-01-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1089,Beacon Network,mid_market,NA,US,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1002,Summit Foods,mid_market,NA,US,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1008,Pacific Works,mid_market,EMEA,UK,2025-03-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1010,Orchid Foods,smb,NA,CA,2025-05-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1020,Pioneer Network,smb,EMEA,FR,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1028,Apex Energy,mid_market,APAC,SG,2025-01-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1028,Apex Energy,mid_market,APAC,SG,2025-04-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1031,Helio Holdings,mid_market,APAC,AU,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1039,Nova Group,smb,EMEA,FR,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1054,Granite Labs,mid_market,APAC,NZ,2025-03-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,247.0,2717.0,2717.0,0.0,0,0,false +A1058,Evergreen Analytics,smb,EMEA,UK,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1059,Evergreen Partners,mid_market,NA,CA,2025-05-01,Enterprise Monthly,active,1,2080.0,0.0,2080.0,0.0,2080.0,2080.0,0.0,0,0,false +A1064,Atlas Health,smb,NA,US,2025-01-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1064,Atlas Health,smb,NA,US,2025-04-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1071,Evergreen Group,mid_market,NA,CA,2025-05-01,Enterprise Monthly,active,1,2080.0,0.0,2080.0,0.0,2080.0,2080.0,0.0,0,0,false +A1088,Cedar Partners,smb,APAC,NZ,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1001,Helio Systems,mid_market,EMEA,NL,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1008,Pacific Works,mid_market,EMEA,UK,2025-02-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1019,Sierra Systems,smb,APAC,JP,2025-04-01,Starter Monthly,active,1,400.0,0.0,400.0,40.0,440.0,440.0,0.0,0,0,false +A1027,BluePeak Health,smb,APAC,SG,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,45.0,545.0,545.0,0.0,0,0,false +A1030,Northwind Analytics,enterprise,EMEA,UK,2025-06-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,494.0,2964.0,2964.0,0.0,0,0,false +A1035,Bright Retail,mid_market,EMEA,UK,2025-04-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,520.0,3120.0,3120.0,0.0,0,0,false +A1037,Lighthouse Network,enterprise,EMEA,UK,2025-01-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1037,Lighthouse Network,enterprise,EMEA,UK,2025-04-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1038,River Systems,smb,APAC,AU,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1043,Lighthouse Works,enterprise,APAC,SG,2025-06-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1051,Lighthouse Systems,smb,EMEA,UK,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1052,Sierra Labs,mid_market,APAC,NZ,2025-05-01,Growth Monthly,active,1,1425.0,0.0,1425.0,142.5,1567.5,1567.5,0.0,0,0,false +A1053,Bright Health,mid_market,NA,CA,2025-01-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1053,Bright Health,mid_market,NA,CA,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1054,Granite Labs,mid_market,APAC,NZ,2025-02-01,Enterprise Monthly,active,1,2470.0,0.0,2470.0,247.0,2717.0,2717.0,0.0,0,0,false +A1058,Evergreen Analytics,smb,EMEA,UK,2025-02-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1060,Cedar Foods,mid_market,NA,CA,2025-01-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,true +A1060,Cedar Foods,mid_market,NA,CA,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,true +A1067,Maple Energy,mid_market,NA,CA,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1070,Helio Manufacturing,smb,APAC,NZ,2025-01-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1070,Helio Manufacturing,smb,APAC,NZ,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1073,Silver Holdings,mid_market,EMEA,DE,2025-01-01,Enterprise Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1073,Silver Holdings,mid_market,EMEA,DE,2025-04-01,Enterprise Monthly,active,1,2600.0,250.0,2850.0,570.0,3420.0,3420.0,0.0,0,0,false +A1077,Evergreen Foods,mid_market,NA,CA,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1085,Sierra Capital,smb,NA,US,2025-05-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1090,Vertex Labs,smb,NA,US,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1004,Silver Solutions,enterprise,NA,US,2025-02-01,Starter Monthly,canceled,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1006,Helio Works,mid_market,EMEA,UK,2025-06-01,Growth Monthly,active,1,1200.0,0.0,1200.0,240.0,1440.0,1440.0,0.0,0,0,false +A1012,Cedar Ventures,smb,APAC,JP,2025-06-01,Starter Monthly,active,1,500.0,0.0,500.0,50.0,550.0,550.0,0.0,0,0,false +A1021,Apex Logistics,smb,NA,US,2025-01-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1021,Apex Logistics,smb,NA,US,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1022,Summit Collective,smb,APAC,NZ,2025-04-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1023,Atlas Systems,smb,NA,CA,2025-04-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,true +A1024,Sierra Group,smb,NA,CA,2025-03-01,Starter Monthly,active,1,500.0,0.0,500.0,0.0,500.0,500.0,0.0,0,0,false +A1025,Bright Capital,smb,EMEA,UK,2025-03-01,Starter Monthly,active,1,400.0,0.0,400.0,80.0,480.0,480.0,0.0,0,0,false +A1026,Pioneer Capital,smb,NA,CA,2025-06-01,Starter Monthly,active,1,400.0,0.0,400.0,0.0,400.0,400.0,0.0,0,0,false +A1033,Lighthouse Global,mid_market,NA,CA,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,0.0,1500.0,1500.0,0.0,0,0,false +A1036,Granite Holdings,smb,NA,US,2025-02-01,Growth Monthly,canceled,1,1200.0,0.0,1200.0,0.0,1200.0,1200.0,0.0,0,0,false +A1040,Harbor Collective,mid_market,APAC,SG,2025-06-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1041,Cedar Logistics,mid_market,EMEA,NL,2025-01-01,Growth Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1041,Cedar Logistics,mid_market,EMEA,NL,2025-04-01,Growth Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1042,Northwind Labs,mid_market,APAC,AU,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,150.0,1650.0,1650.0,0.0,0,0,false +A1044,Summit Holdings,smb,EMEA,NL,2025-06-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1055,Pioneer Systems,mid_market,EMEA,FR,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,true +A1066,Pacific Capital,mid_market,APAC,NZ,2025-05-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,260.0,2860.0,2860.0,0.0,0,0,false +A1068,Helio Health,enterprise,APAC,SG,2025-02-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,234.0,2834.0,2834.0,0.0,0,0,false +A1075,Cedar Labs,smb,EMEA,UK,2025-01-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1075,Cedar Labs,smb,EMEA,UK,2025-04-01,Starter Monthly,active,1,500.0,0.0,500.0,100.0,600.0,600.0,0.0,0,0,false +A1076,Atlas Solutions,mid_market,EMEA,UK,2025-03-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1080,Beacon Global,mid_market,EMEA,NL,2025-05-01,Growth Monthly,active,1,1500.0,0.0,1500.0,300.0,1800.0,1800.0,0.0,0,0,false +A1081,River Collective,mid_market,NA,CA,2025-05-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,0.0,2600.0,2600.0,0.0,0,0,false +A1083,Falcon Works,mid_market,NA,CA,2025-06-01,Growth Monthly,active,1,1200.0,0.0,1200.0,0.0,1200.0,1200.0,0.0,0,0,false +A1084,Silver Foods,mid_market,NA,CA,2025-03-01,Enterprise Monthly,active,1,2600.0,0.0,2600.0,0.0,2600.0,2600.0,0.0,0,0,false diff --git a/tasks/helixops_saas013/seeds/solution__int_invoice_finance.csv b/tasks/helixops_saas013/seeds/solution__int_invoice_finance.csv new file mode 100644 index 00000000..b5358a19 --- /dev/null +++ b/tasks/helixops_saas013/seeds/solution__int_invoice_finance.csv @@ -0,0 +1,433 @@ +invoice_id,subscription_id,account_id,invoice_date,invoice_month,due_date,service_period_start,service_period_end,invoice_status,subtotal_usd,tax_usd,total_usd,line_item_count,recurring_revenue_usd,one_time_revenue_usd,base_subscription_revenue_usd,payment_attempt_count,successful_payment_count,failed_payment_count,amount_paid_usd,processor_fee_usd,latest_payment_status,latest_payment_method,latest_payment_date,outstanding_amount_usd,is_fully_paid +I7001,S6001,A1001,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,1800.0,360.0,2160.0,2,1500.0,300.0,1500.0,1,1,0,2160.0,4.32,paid,wire,2025-01-06,0.0,true +I7002,S6001,A1001,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,3.6,paid,wire,2025-02-12,0.0,true +I7003,S6001,A1001,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,52.5,paid,card,2025-03-08,0.0,true +I7004,S6001,A1001,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,52.5,paid,card,2025-04-10,0.0,true +I7005,S6001,A1001,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,52.5,paid,card,2025-05-10,0.0,true +I7006,S6001,A1001,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,3.6,paid,wire,2025-06-06,0.0,true +I7007,S6002,A1002,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,4.0,paid,ach,2025-02-13,0.0,true +I7008,S6003,A1002,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-03-14,0.0,true +I7009,S6003,A1002,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-04-06,0.0,true +I7010,S6003,A1002,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,43.8,paid,card,2025-05-11,0.0,true +I7012,S6004,A1003,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-12-31,paid,27650.0,0.0,27650.0,2,25650.0,2000.0,25650.0,1,1,0,27650.0,15.0,paid,wire,2025-01-11,0.0,true +I7013,S6005,A1004,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,900.0,0.0,900.0,2,500.0,400.0,500.0,1,1,0,900.0,26.4,paid,card,2025-01-10,0.0,true +I7014,S6005,A1004,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,4.0,paid,ach,2025-02-05,0.0,true +I7015,S6005,A1004,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,1.0,paid,wire,2025-03-09,0.0,true +I7016,S6005,A1004,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,2,1,1,500.0,14.8,failed,ach,2025-04-15,0.0,true +I7017,S6005,A1004,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,4.0,paid,ach,2025-05-08,0.0,true +I7018,S6006,A1005,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-12-31,paid,27650.0,5530.0,33180.0,2,25650.0,2000.0,25650.0,1,1,0,33180.0,15.0,paid,wire,2025-01-14,0.0,true +I7019,S6007,A1006,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,17.7,paid,card,2025-01-14,0.0,true +I7020,S6007,A1006,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,1.2,paid,wire,2025-02-13,0.0,true +I7021,S6007,A1006,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,17.7,paid,card,2025-03-11,0.0,true +I7022,S6007,A1006,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,17.7,paid,card,2025-04-10,0.0,true +I7023,S6008,A1006,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1200.0,240.0,1440.0,1,1200.0,0.0,1200.0,1,1,0,1440.0,42.06,paid,card,2025-05-08,0.0,true +I7024,S6008,A1006,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1200.0,240.0,1440.0,1,1200.0,0.0,1200.0,1,1,0,1440.0,42.06,paid,card,2025-06-07,0.0,true +I7025,S6009,A1007,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,17.7,paid,card,2025-01-13,0.0,true +I7026,S6009,A1007,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,1.2,paid,wire,2025-02-13,0.0,true +I7027,S6009,A1007,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,17.7,paid,card,2025-03-06,0.0,true +I7028,S6009,A1007,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,17.7,paid,card,2025-04-10,0.0,true +I7029,S6009,A1007,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,17.7,paid,card,2025-05-13,0.0,true +I7031,S6010,A1008,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,2470.0,494.0,2964.0,1,2470.0,0.0,2470.0,1,1,0,2964.0,86.26,paid,card,2025-01-12,0.0,true +I7032,S6010,A1008,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,2470.0,494.0,2964.0,1,2470.0,0.0,2470.0,1,1,0,2964.0,86.26,paid,card,2025-02-11,0.0,true +I7033,S6010,A1008,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,2470.0,494.0,2964.0,1,2470.0,0.0,2470.0,1,1,0,2964.0,86.26,paid,card,2025-03-05,0.0,true +I7034,S6010,A1008,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,2470.0,494.0,2964.0,1,2470.0,0.0,2470.0,1,1,0,2964.0,86.26,paid,card,2025-04-05,0.0,true +I7035,S6010,A1008,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,2470.0,494.0,2964.0,1,2470.0,0.0,2470.0,1,1,0,2964.0,86.26,paid,card,2025-05-07,0.0,true +I7036,S6010,A1008,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,2470.0,494.0,2964.0,1,2470.0,0.0,2470.0,1,1,0,2964.0,86.26,paid,card,2025-06-09,0.0,true +I7037,S6011,A1009,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,43.8,paid,card,2025-01-14,0.0,true +I7038,S6011,A1009,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,43.8,paid,card,2025-02-07,0.0,true +I7039,S6012,A1009,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,2340.0,0.0,2340.0,1,2340.0,0.0,2340.0,1,1,0,2340.0,18.72,paid,ach,2025-03-13,0.0,true +I7040,S6012,A1009,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,2340.0,0.0,2340.0,1,2340.0,0.0,2340.0,1,1,0,2340.0,18.72,paid,ach,2025-04-08,0.0,true +I7041,S6012,A1009,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,2340.0,0.0,2340.0,1,2340.0,0.0,2340.0,1,1,0,2340.0,68.16,paid,card,2025-05-11,0.0,true +I7042,S6012,A1009,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,2340.0,0.0,2340.0,1,2340.0,0.0,2340.0,1,1,0,2340.0,68.16,paid,card,2025-06-10,0.0,true +I7043,S6013,A1010,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,400.0,0.0,400.0,1,400.0,0.0,400.0,1,1,0,400.0,3.2,paid,ach,2025-03-10,0.0,true +I7044,S6013,A1010,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,400.0,0.0,400.0,1,400.0,0.0,400.0,1,1,0,400.0,11.9,paid,card,2025-04-06,0.0,true +I7045,S6013,A1010,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,400.0,0.0,400.0,1,400.0,0.0,400.0,1,1,0,400.0,3.2,paid,ach,2025-05-07,0.0,true +I7046,S6013,A1010,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,400.0,0.0,400.0,1,400.0,0.0,400.0,1,1,0,400.0,3.2,paid,ach,2025-06-07,0.0,true +I7047,S6014,A1011,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,2,1,1,1500.0,12.0,failed,card,2025-02-15,0.0,true +I7048,S6014,A1011,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-03-11,0.0,true +I7049,S6014,A1011,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-04-12,0.0,true +I7050,S6014,A1011,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-05-06,0.0,true +I7051,S6014,A1011,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-06-09,0.0,true +I7052,S6015,A1012,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,500.0,50.0,550.0,1,500.0,0.0,500.0,1,1,0,550.0,16.25,paid,card,2025-01-08,0.0,true +I7053,S6015,A1012,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,500.0,50.0,550.0,1,500.0,0.0,500.0,1,1,0,550.0,16.25,paid,card,2025-02-06,0.0,true +I7054,S6015,A1012,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,500.0,50.0,550.0,1,500.0,0.0,500.0,1,1,0,550.0,16.25,paid,card,2025-03-13,0.0,true +I7055,S6015,A1012,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,500.0,50.0,550.0,1,500.0,0.0,500.0,1,1,0,550.0,16.25,paid,card,2025-04-05,0.0,true +I7056,S6015,A1012,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,500.0,50.0,550.0,1,500.0,0.0,500.0,1,1,0,550.0,1.1,paid,wire,2025-05-10,0.0,true +I7057,S6015,A1012,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,500.0,50.0,550.0,1,500.0,0.0,500.0,2,1,1,550.0,1.1,failed,wire,2025-06-15,0.0,true +I7058,S6016,A1013,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,1825.0,0.0,1825.0,2,1425.0,400.0,1425.0,1,1,0,1825.0,53.23,paid,card,2025-01-08,0.0,true +I7059,S6016,A1013,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1425.0,0.0,1425.0,1,1425.0,0.0,1425.0,1,1,0,1425.0,11.4,paid,ach,2025-02-13,0.0,true +I7060,S6016,A1013,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1425.0,0.0,1425.0,1,1425.0,0.0,1425.0,1,1,0,1425.0,11.4,paid,ach,2025-03-07,0.0,true +I7061,S6016,A1013,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1425.0,0.0,1425.0,1,1425.0,0.0,1425.0,1,1,0,1425.0,11.4,paid,ach,2025-04-12,0.0,true +I7062,S6016,A1013,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1425.0,0.0,1425.0,1,1425.0,0.0,1425.0,1,1,0,1425.0,41.62,paid,card,2025-05-07,0.0,true +I7063,S6016,A1013,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1425.0,0.0,1425.0,1,1425.0,0.0,1425.0,1,1,0,1425.0,11.4,paid,ach,2025-06-14,0.0,true +I7064,S6017,A1014,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,1900.0,171.0,2071.0,2,1500.0,400.0,1500.0,1,1,0,2071.0,4.14,paid,wire,2025-01-09,0.0,true +I7065,S6017,A1014,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1500.0,135.0,1635.0,1,1500.0,0.0,1500.0,1,1,0,1635.0,13.08,paid,ach,2025-02-14,0.0,true +I7066,S6017,A1014,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,135.0,1635.0,1,1500.0,0.0,1500.0,1,1,0,1635.0,47.71,paid,card,2025-03-12,0.0,true +I7067,S6017,A1014,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1500.0,135.0,1635.0,1,1500.0,0.0,1500.0,1,1,0,1635.0,3.27,paid,wire,2025-04-14,0.0,true +I7068,S6018,A1015,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,43.8,paid,card,2025-01-13,0.0,true +I7069,S6018,A1015,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,43.8,paid,card,2025-02-06,0.0,true +I7070,S6018,A1015,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-03-08,0.0,true +I7071,S6018,A1015,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-04-12,0.0,true +I7072,S6019,A1016,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-12-31,paid,26300.0,5260.0,31560.0,2,24300.0,2000.0,24300.0,1,1,0,31560.0,15.0,paid,wire,2025-01-12,0.0,true +I7073,S6020,A1017,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,1350.0,270.0,1620.0,1,1350.0,0.0,1350.0,1,1,0,1620.0,47.28,paid,card,2025-01-14,0.0,true +I7074,S6020,A1017,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1350.0,270.0,1620.0,1,1350.0,0.0,1350.0,1,1,0,1620.0,47.28,paid,card,2025-02-10,0.0,true +I7075,S6020,A1017,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1350.0,270.0,1620.0,1,1350.0,0.0,1350.0,1,1,0,1620.0,47.28,paid,card,2025-03-13,0.0,true +I7076,S6020,A1017,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1350.0,270.0,1620.0,1,1350.0,0.0,1350.0,1,1,0,1620.0,47.28,paid,card,2025-04-08,0.0,true +I7077,S6020,A1017,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1350.0,270.0,1620.0,1,1350.0,0.0,1350.0,1,1,0,1620.0,3.24,paid,wire,2025-05-08,0.0,true +I7078,S6020,A1017,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1350.0,270.0,1620.0,1,1350.0,0.0,1350.0,1,1,0,1620.0,47.28,paid,card,2025-06-11,0.0,true +I7079,S6021,A1018,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,750.0,150.0,900.0,2,500.0,250.0,500.0,1,1,0,900.0,26.4,paid,card,2025-01-14,0.0,true +I7080,S6021,A1018,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,17.7,paid,card,2025-02-09,0.0,true +I7081,S6021,A1018,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,17.7,paid,card,2025-03-13,0.0,true +I7082,S6021,A1018,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,1.2,paid,wire,2025-04-06,0.0,true +I7083,S6022,A1019,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,400.0,40.0,440.0,1,400.0,0.0,400.0,1,1,0,440.0,13.06,paid,card,2025-03-13,0.0,true +I7084,S6022,A1019,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,400.0,40.0,440.0,1,400.0,0.0,400.0,1,1,0,440.0,0.88,paid,wire,2025-04-05,0.0,true +I7085,S6022,A1019,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,400.0,40.0,440.0,1,400.0,0.0,400.0,1,1,0,440.0,0.88,paid,wire,2025-05-09,0.0,true +I7086,S6022,A1019,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,400.0,40.0,440.0,1,400.0,0.0,400.0,1,1,0,440.0,13.06,paid,card,2025-06-11,0.0,true +I7087,S6023,A1020,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,3.6,paid,wire,2025-03-10,0.0,true +I7088,S6023,A1020,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,3.6,paid,wire,2025-04-08,0.0,true +I7089,S6023,A1020,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,52.5,paid,card,2025-05-08,0.0,true +I7090,S6023,A1020,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,3.6,paid,wire,2025-06-08,0.0,true +I7091,S6024,A1021,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,4.0,paid,ach,2025-01-11,0.0,true +I7092,S6024,A1021,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,14.8,paid,card,2025-02-09,0.0,true +I7093,S6024,A1021,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,2,1,1,500.0,14.8,failed,card,2025-03-15,0.0,true +I7094,S6024,A1021,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,14.8,paid,card,2025-04-08,0.0,true +I7095,S6024,A1021,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,14.8,paid,card,2025-05-05,0.0,true +I7096,S6024,A1021,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,4.0,paid,ach,2025-06-09,0.0,true +I7097,S6025,A1022,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,150.0,1650.0,1,1500.0,0.0,1500.0,1,1,0,1650.0,48.15,paid,card,2025-03-09,0.0,true +I7098,S6025,A1022,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1500.0,150.0,1650.0,1,1500.0,0.0,1500.0,1,1,0,1650.0,48.15,paid,card,2025-04-09,0.0,true +I7099,S6025,A1022,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1500.0,150.0,1650.0,1,1500.0,0.0,1500.0,1,1,0,1650.0,3.3,paid,wire,2025-05-11,0.0,true +I7100,S6025,A1022,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1500.0,150.0,1650.0,1,1500.0,0.0,1500.0,1,1,0,1650.0,3.3,paid,wire,2025-06-12,0.0,true +I7101,S6026,A1023,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,400.0,0.0,400.0,1,400.0,0.0,400.0,2,1,1,400.0,11.9,failed,ach,2025-02-15,0.0,true +I7102,S6026,A1023,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,400.0,0.0,400.0,1,400.0,0.0,400.0,1,1,0,400.0,3.2,paid,ach,2025-03-06,0.0,true +I7103,S6026,A1023,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,400.0,0.0,400.0,1,400.0,0.0,400.0,1,1,0,400.0,11.9,paid,card,2025-04-12,0.0,true +I7104,S6026,A1023,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,400.0,0.0,400.0,1,400.0,0.0,400.0,1,1,0,400.0,3.2,paid,ach,2025-05-07,0.0,true +I7105,S6026,A1023,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,past_due,400.0,0.0,400.0,1,400.0,0.0,400.0,1,0,1,0.0,0.0,failed,card,2025-06-18,400.0,false +I7106,S6027,A1024,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,4.0,paid,ach,2025-02-09,0.0,true +I7107,S6027,A1024,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,4.0,paid,ach,2025-03-06,0.0,true +I7108,S6027,A1024,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,14.8,paid,card,2025-04-08,0.0,true +I7109,S6027,A1024,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,4.0,paid,ach,2025-05-12,0.0,true +I7110,S6027,A1024,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,4.0,paid,ach,2025-06-12,0.0,true +I7111,S6028,A1025,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,650.0,130.0,780.0,2,400.0,250.0,400.0,1,1,0,780.0,1.56,paid,wire,2025-01-06,0.0,true +I7112,S6028,A1025,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,400.0,80.0,480.0,1,400.0,0.0,400.0,1,1,0,480.0,14.22,paid,card,2025-02-12,0.0,true +I7113,S6028,A1025,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,400.0,80.0,480.0,1,400.0,0.0,400.0,1,1,0,480.0,14.22,paid,card,2025-03-05,0.0,true +I7114,S6028,A1025,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,400.0,80.0,480.0,1,400.0,0.0,400.0,1,1,0,480.0,14.22,paid,card,2025-04-08,0.0,true +I7115,S6028,A1025,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,400.0,80.0,480.0,1,400.0,0.0,400.0,1,1,0,480.0,14.22,paid,card,2025-05-05,0.0,true +I7116,S6028,A1025,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,400.0,80.0,480.0,1,400.0,0.0,400.0,1,1,0,480.0,0.96,paid,wire,2025-06-09,0.0,true +I7117,S6029,A1026,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,400.0,0.0,400.0,1,400.0,0.0,400.0,1,1,0,400.0,3.2,paid,ach,2025-01-05,0.0,true +I7118,S6029,A1026,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,400.0,0.0,400.0,1,400.0,0.0,400.0,1,1,0,400.0,3.2,paid,ach,2025-02-09,0.0,true +I7119,S6029,A1026,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,400.0,0.0,400.0,1,400.0,0.0,400.0,1,1,0,400.0,3.2,paid,ach,2025-03-08,0.0,true +I7120,S6029,A1026,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,400.0,0.0,400.0,1,400.0,0.0,400.0,1,1,0,400.0,11.9,paid,card,2025-04-05,0.0,true +I7121,S6029,A1026,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,400.0,0.0,400.0,1,400.0,0.0,400.0,1,1,0,400.0,3.2,paid,ach,2025-05-08,0.0,true +I7122,S6029,A1026,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,400.0,0.0,400.0,1,400.0,0.0,400.0,1,1,0,400.0,3.2,paid,ach,2025-06-13,0.0,true +I7123,S6030,A1027,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,500.0,45.0,545.0,1,500.0,0.0,500.0,2,1,1,545.0,16.11,failed,card,2025-01-15,0.0,true +I7124,S6030,A1027,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,500.0,45.0,545.0,1,500.0,0.0,500.0,1,1,0,545.0,16.11,paid,card,2025-02-10,0.0,true +I7125,S6030,A1027,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,500.0,45.0,545.0,1,500.0,0.0,500.0,1,1,0,545.0,1.09,paid,wire,2025-03-06,0.0,true +I7126,S6030,A1027,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,500.0,45.0,545.0,1,500.0,0.0,500.0,1,1,0,545.0,1.09,paid,wire,2025-04-05,0.0,true +I7127,S6030,A1027,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,500.0,45.0,545.0,1,500.0,0.0,500.0,1,1,0,545.0,16.11,paid,card,2025-05-14,0.0,true +I7128,S6030,A1027,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,500.0,45.0,545.0,1,500.0,0.0,500.0,1,1,0,545.0,16.11,paid,card,2025-06-14,0.0,true +I7129,S6031,A1028,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,2600.0,234.0,2834.0,1,2600.0,0.0,2600.0,2,1,1,2834.0,82.49,failed,card,2025-01-15,0.0,true +I7130,S6031,A1028,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,2600.0,234.0,2834.0,1,2600.0,0.0,2600.0,1,1,0,2834.0,82.49,paid,card,2025-02-08,0.0,true +I7131,S6031,A1028,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,2600.0,234.0,2834.0,1,2600.0,0.0,2600.0,1,1,0,2834.0,82.49,paid,card,2025-03-10,0.0,true +I7132,S6031,A1028,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,2600.0,234.0,2834.0,1,2600.0,0.0,2600.0,1,1,0,2834.0,82.49,paid,card,2025-04-12,0.0,true +I7133,S6031,A1028,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,2600.0,234.0,2834.0,1,2600.0,0.0,2600.0,1,1,0,2834.0,5.67,paid,wire,2025-05-13,0.0,true +I7135,S6032,A1029,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,475.0,47.5,522.5,1,475.0,0.0,475.0,1,1,0,522.5,4.18,paid,ach,2025-01-11,0.0,true +I7136,S6032,A1029,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,475.0,47.5,522.5,1,475.0,0.0,475.0,1,1,0,522.5,4.18,paid,ach,2025-02-10,0.0,true +I7137,S6032,A1029,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,475.0,47.5,522.5,1,475.0,0.0,475.0,1,1,0,522.5,4.18,paid,ach,2025-03-09,0.0,true +I7138,S6032,A1029,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,475.0,47.5,522.5,1,475.0,0.0,475.0,1,1,0,522.5,4.18,paid,ach,2025-04-13,0.0,true +I7139,S6033,A1030,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,2470.0,494.0,2964.0,1,2470.0,0.0,2470.0,1,1,0,2964.0,5.93,paid,wire,2025-01-10,0.0,true +I7140,S6033,A1030,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,2470.0,494.0,2964.0,1,2470.0,0.0,2470.0,1,1,0,2964.0,23.71,paid,ach,2025-02-11,0.0,true +I7141,S6033,A1030,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,2470.0,494.0,2964.0,1,2470.0,0.0,2470.0,1,1,0,2964.0,23.71,paid,ach,2025-03-11,0.0,true +I7142,S6033,A1030,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,2470.0,494.0,2964.0,1,2470.0,0.0,2470.0,1,1,0,2964.0,5.93,paid,wire,2025-04-11,0.0,true +I7143,S6033,A1030,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,2470.0,494.0,2964.0,1,2470.0,0.0,2470.0,1,1,0,2964.0,23.71,paid,ach,2025-05-08,0.0,true +I7144,S6033,A1030,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,2470.0,494.0,2964.0,1,2470.0,0.0,2470.0,1,1,0,2964.0,5.93,paid,wire,2025-06-14,0.0,true +I7145,S6034,A1031,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,150.0,1650.0,1,1500.0,0.0,1500.0,1,1,0,1650.0,48.15,paid,card,2025-03-11,0.0,true +I7146,S6034,A1031,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1500.0,150.0,1650.0,1,1500.0,0.0,1500.0,1,1,0,1650.0,3.3,paid,wire,2025-04-11,0.0,true +I7147,S6034,A1031,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1500.0,150.0,1650.0,1,1500.0,0.0,1500.0,1,1,0,1650.0,3.3,paid,wire,2025-05-12,0.0,true +I7148,S6034,A1031,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1500.0,150.0,1650.0,1,1500.0,0.0,1500.0,1,1,0,1650.0,48.15,paid,card,2025-06-14,0.0,true +I7149,S6035,A1032,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,3.6,paid,wire,2025-01-07,0.0,true +I7150,S6035,A1032,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,52.5,paid,card,2025-02-11,0.0,true +I7151,S6035,A1032,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,52.5,paid,card,2025-03-08,0.0,true +I7152,S6035,A1032,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,52.5,paid,card,2025-04-09,0.0,true +I7153,S6036,A1033,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,43.8,paid,card,2025-01-11,0.0,true +I7154,S6036,A1033,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,43.8,paid,card,2025-02-07,0.0,true +I7155,S6036,A1033,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-03-07,0.0,true +I7156,S6036,A1033,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-04-14,0.0,true +I7157,S6036,A1033,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-05-05,0.0,true +I7158,S6036,A1033,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-06-05,0.0,true +I7159,S6037,A1034,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,4.0,paid,ach,2025-01-06,0.0,true +I7160,S6037,A1034,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,14.8,paid,card,2025-02-08,0.0,true +I7161,S6037,A1034,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,14.8,paid,card,2025-03-09,0.0,true +I7162,S6037,A1034,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,4.0,paid,ach,2025-04-10,0.0,true +I7163,S6037,A1034,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,14.8,paid,card,2025-05-12,0.0,true +I7164,S6037,A1034,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,4.0,paid,ach,2025-06-13,0.0,true +I7165,S6038,A1035,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1750.0,350.0,2100.0,2,1500.0,250.0,1500.0,1,1,0,2100.0,61.2,paid,card,2025-03-14,0.0,true +I7166,S6039,A1035,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,2600.0,520.0,3120.0,1,2600.0,0.0,2600.0,1,1,0,3120.0,90.78,paid,card,2025-04-09,0.0,true +I7167,S6039,A1035,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,2600.0,520.0,3120.0,1,2600.0,0.0,2600.0,1,1,0,3120.0,90.78,paid,card,2025-05-06,0.0,true +I7168,S6039,A1035,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,2600.0,520.0,3120.0,1,2600.0,0.0,2600.0,1,1,0,3120.0,90.78,paid,card,2025-06-05,0.0,true +I7169,S6040,A1036,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,1500.0,0.0,1500.0,2,1200.0,300.0,1200.0,1,1,0,1500.0,12.0,paid,ach,2025-01-05,0.0,true +I7170,S6040,A1036,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1200.0,0.0,1200.0,1,1200.0,0.0,1200.0,1,1,0,1200.0,35.1,paid,card,2025-02-10,0.0,true +I7171,S6040,A1036,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1200.0,0.0,1200.0,1,1200.0,0.0,1200.0,1,1,0,1200.0,9.6,paid,ach,2025-03-07,0.0,true +I7172,S6040,A1036,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1200.0,0.0,1200.0,1,1200.0,0.0,1200.0,1,1,0,1200.0,9.6,paid,ach,2025-04-12,0.0,true +I7173,S6041,A1037,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,14.4,paid,ach,2025-01-06,0.0,true +I7174,S6041,A1037,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,3.6,paid,wire,2025-02-07,0.0,true +I7175,S6041,A1037,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,14.4,paid,ach,2025-03-07,0.0,true +I7176,S6041,A1037,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,52.5,paid,card,2025-04-08,0.0,true +I7177,S6042,A1037,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,2600.0,520.0,3120.0,1,2600.0,0.0,2600.0,1,1,0,3120.0,24.96,paid,ach,2025-05-06,0.0,true +I7178,S6042,A1037,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,2600.0,520.0,3120.0,1,2600.0,0.0,2600.0,1,1,0,3120.0,24.96,paid,ach,2025-06-14,0.0,true +I7179,S6043,A1038,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,500.0,50.0,550.0,1,500.0,0.0,500.0,1,1,0,550.0,1.1,paid,wire,2025-01-09,0.0,true +I7180,S6043,A1038,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,500.0,50.0,550.0,1,500.0,0.0,500.0,1,1,0,550.0,1.1,paid,wire,2025-02-13,0.0,true +I7181,S6043,A1038,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,500.0,50.0,550.0,1,500.0,0.0,500.0,1,1,0,550.0,1.1,paid,wire,2025-03-10,0.0,true +I7182,S6043,A1038,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,500.0,50.0,550.0,1,500.0,0.0,500.0,1,1,0,550.0,1.1,paid,wire,2025-04-08,0.0,true +I7183,S6043,A1038,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,500.0,50.0,550.0,1,500.0,0.0,500.0,1,1,0,550.0,1.1,paid,wire,2025-05-11,0.0,true +I7184,S6043,A1038,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,500.0,50.0,550.0,1,500.0,0.0,500.0,1,1,0,550.0,16.25,paid,card,2025-06-12,0.0,true +I7185,S6044,A1039,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,1.2,paid,wire,2025-03-14,0.0,true +I7186,S6044,A1039,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,2,1,1,600.0,17.7,failed,wire,2025-04-15,0.0,true +I7187,S6044,A1039,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,1.2,paid,wire,2025-05-09,0.0,true +I7188,S6044,A1039,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,17.7,paid,card,2025-06-11,0.0,true +I7189,S6045,A1040,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,1500.0,135.0,1635.0,1,1500.0,0.0,1500.0,1,1,0,1635.0,47.71,paid,card,2025-01-09,0.0,true +I7190,S6045,A1040,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1500.0,135.0,1635.0,1,1500.0,0.0,1500.0,1,1,0,1635.0,47.71,paid,card,2025-02-09,0.0,true +I7191,S6045,A1040,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,135.0,1635.0,1,1500.0,0.0,1500.0,1,1,0,1635.0,47.71,paid,card,2025-03-06,0.0,true +I7192,S6045,A1040,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1500.0,135.0,1635.0,1,1500.0,0.0,1500.0,1,1,0,1635.0,47.71,paid,card,2025-04-13,0.0,true +I7193,S6046,A1040,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,2600.0,234.0,2834.0,1,2600.0,0.0,2600.0,2,1,1,2834.0,5.67,failed,card,2025-05-15,0.0,true +I7194,S6046,A1040,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,2600.0,234.0,2834.0,1,2600.0,0.0,2600.0,1,1,0,2834.0,82.49,paid,card,2025-06-08,0.0,true +I7195,S6047,A1041,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,1.2,paid,wire,2025-01-05,0.0,true +I7196,S6047,A1041,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,1.2,paid,wire,2025-02-14,0.0,true +I7197,S6047,A1041,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,17.7,paid,card,2025-03-12,0.0,true +I7198,S6047,A1041,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,1.2,paid,wire,2025-04-06,0.0,true +I7199,S6048,A1041,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,2,1,1,1800.0,52.5,failed,wire,2025-05-15,0.0,true +I7200,S6048,A1041,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,3.6,paid,wire,2025-06-11,0.0,true +I7201,S6049,A1042,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,1500.0,150.0,1650.0,1,1500.0,0.0,1500.0,1,1,0,1650.0,3.3,paid,wire,2025-01-06,0.0,true +I7202,S6049,A1042,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1500.0,150.0,1650.0,1,1500.0,0.0,1500.0,1,1,0,1650.0,48.15,paid,card,2025-02-08,0.0,true +I7203,S6049,A1042,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,150.0,1650.0,1,1500.0,0.0,1500.0,1,1,0,1650.0,3.3,paid,wire,2025-03-12,0.0,true +I7204,S6049,A1042,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1500.0,150.0,1650.0,1,1500.0,0.0,1500.0,1,1,0,1650.0,3.3,paid,wire,2025-04-09,0.0,true +I7205,S6049,A1042,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1500.0,150.0,1650.0,1,1500.0,0.0,1500.0,1,1,0,1650.0,48.15,paid,card,2025-05-05,0.0,true +I7206,S6049,A1042,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1500.0,150.0,1650.0,1,1500.0,0.0,1500.0,1,1,0,1650.0,3.3,paid,wire,2025-06-08,0.0,true +I7207,S6050,A1043,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,2600.0,234.0,2834.0,1,2600.0,0.0,2600.0,1,1,0,2834.0,22.67,paid,ach,2025-01-08,0.0,true +I7208,S6050,A1043,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,2600.0,234.0,2834.0,1,2600.0,0.0,2600.0,1,1,0,2834.0,22.67,paid,ach,2025-02-06,0.0,true +I7209,S6050,A1043,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,2600.0,234.0,2834.0,1,2600.0,0.0,2600.0,1,1,0,2834.0,22.67,paid,ach,2025-03-08,0.0,true +I7210,S6050,A1043,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,2600.0,234.0,2834.0,1,2600.0,0.0,2600.0,1,1,0,2834.0,22.67,paid,ach,2025-04-14,0.0,true +I7211,S6050,A1043,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,2600.0,234.0,2834.0,1,2600.0,0.0,2600.0,1,1,0,2834.0,22.67,paid,ach,2025-05-09,0.0,true +I7212,S6050,A1043,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,2600.0,234.0,2834.0,1,2600.0,0.0,2600.0,1,1,0,2834.0,5.67,paid,wire,2025-06-08,0.0,true +I7213,S6051,A1044,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,17.7,paid,card,2025-01-09,0.0,true +I7214,S6051,A1044,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,1.2,paid,wire,2025-02-05,0.0,true +I7215,S6051,A1044,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,1.2,paid,wire,2025-03-05,0.0,true +I7216,S6051,A1044,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,17.7,paid,card,2025-04-06,0.0,true +I7217,S6052,A1044,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,52.5,paid,card,2025-05-06,0.0,true +I7218,S6052,A1044,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,52.5,paid,card,2025-06-14,0.0,true +I7219,S6053,A1045,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-12-31,paid,25650.0,0.0,25650.0,1,25650.0,0.0,25650.0,1,1,0,25650.0,15.0,paid,wire,2025-01-10,0.0,true +I7220,S6054,A1046,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,1200.0,0.0,1200.0,1,1200.0,0.0,1200.0,1,1,0,1200.0,9.6,paid,ach,2025-01-12,0.0,true +I7221,S6054,A1046,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1200.0,0.0,1200.0,1,1200.0,0.0,1200.0,1,1,0,1200.0,9.6,paid,ach,2025-02-13,0.0,true +I7222,S6054,A1046,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1200.0,0.0,1200.0,1,1200.0,0.0,1200.0,1,1,0,1200.0,9.6,paid,ach,2025-03-14,0.0,true +I7223,S6054,A1046,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1200.0,0.0,1200.0,1,1200.0,0.0,1200.0,1,1,0,1200.0,35.1,paid,card,2025-04-11,0.0,true +I7224,S6054,A1046,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1200.0,0.0,1200.0,1,1200.0,0.0,1200.0,1,1,0,1200.0,9.6,paid,ach,2025-05-11,0.0,true +I7225,S6054,A1046,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1200.0,0.0,1200.0,1,1200.0,0.0,1200.0,1,1,0,1200.0,9.6,paid,ach,2025-06-07,0.0,true +I7226,S6055,A1047,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-12-31,paid,25650.0,2565.0,28215.0,1,25650.0,0.0,25650.0,1,1,0,28215.0,818.53,paid,card,2025-01-07,0.0,true +I7227,S6056,A1048,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-12-31,paid,24300.0,2430.0,26730.0,1,24300.0,0.0,24300.0,1,1,0,26730.0,213.84,paid,ach,2025-03-07,0.0,true +I7228,S6057,A1049,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-12-31,paid,25800.0,0.0,25800.0,2,24300.0,1500.0,24300.0,1,1,0,25800.0,206.4,paid,ach,2025-01-07,0.0,true +I7229,S6058,A1050,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,750.0,75.0,825.0,2,500.0,250.0,500.0,1,1,0,825.0,24.23,paid,card,2025-03-07,0.0,true +I7230,S6058,A1050,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,500.0,50.0,550.0,1,500.0,0.0,500.0,1,1,0,550.0,1.1,paid,wire,2025-04-12,0.0,true +I7231,S6058,A1050,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,500.0,50.0,550.0,1,500.0,0.0,500.0,1,1,0,550.0,1.1,paid,wire,2025-05-13,0.0,true +I7232,S6058,A1050,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,500.0,50.0,550.0,1,500.0,0.0,500.0,1,1,0,550.0,16.25,paid,card,2025-06-12,0.0,true +I7233,S6059,A1051,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,3.6,paid,wire,2025-03-05,0.0,true +I7234,S6059,A1051,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,3.6,paid,wire,2025-04-10,0.0,true +I7235,S6059,A1051,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,52.5,paid,card,2025-05-07,0.0,true +I7236,S6059,A1051,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,52.5,paid,card,2025-06-11,0.0,true +I7237,S6060,A1052,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,1425.0,142.5,1567.5,1,1425.0,0.0,1425.0,1,1,0,1567.5,45.76,paid,card,2025-01-10,0.0,true +I7238,S6060,A1052,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1425.0,142.5,1567.5,1,1425.0,0.0,1425.0,1,1,0,1567.5,45.76,paid,card,2025-02-11,0.0,true +I7239,S6060,A1052,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1425.0,142.5,1567.5,1,1425.0,0.0,1425.0,1,1,0,1567.5,45.76,paid,card,2025-03-13,0.0,true +I7240,S6060,A1052,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1425.0,142.5,1567.5,1,1425.0,0.0,1425.0,1,1,0,1567.5,45.76,paid,card,2025-04-07,0.0,true +I7241,S6060,A1052,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1425.0,142.5,1567.5,1,1425.0,0.0,1425.0,1,1,0,1567.5,45.76,paid,card,2025-05-06,0.0,true +I7242,S6060,A1052,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1425.0,142.5,1567.5,1,1425.0,0.0,1425.0,1,1,0,1567.5,3.14,paid,wire,2025-06-10,0.0,true +I7243,S6061,A1053,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,43.8,paid,card,2025-01-12,0.0,true +I7244,S6061,A1053,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-02-14,0.0,true +I7245,S6061,A1053,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,43.8,paid,card,2025-03-07,0.0,true +I7246,S6061,A1053,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,43.8,paid,card,2025-04-14,0.0,true +I7247,S6061,A1053,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-05-14,0.0,true +I7248,S6061,A1053,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-06-14,0.0,true +I7249,S6062,A1054,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,2470.0,247.0,2717.0,1,2470.0,0.0,2470.0,2,1,1,2717.0,79.09,failed,card,2025-01-15,0.0,true +I7250,S6062,A1054,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,2470.0,247.0,2717.0,1,2470.0,0.0,2470.0,1,1,0,2717.0,5.43,paid,wire,2025-02-12,0.0,true +I7251,S6062,A1054,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,2470.0,247.0,2717.0,1,2470.0,0.0,2470.0,1,1,0,2717.0,79.09,paid,card,2025-03-09,0.0,true +I7252,S6062,A1054,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,2470.0,247.0,2717.0,1,2470.0,0.0,2470.0,1,1,0,2717.0,79.09,paid,card,2025-04-08,0.0,true +I7253,S6062,A1054,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,2470.0,247.0,2717.0,1,2470.0,0.0,2470.0,1,1,0,2717.0,5.43,paid,wire,2025-05-07,0.0,true +I7254,S6062,A1054,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,2470.0,247.0,2717.0,1,2470.0,0.0,2470.0,1,1,0,2717.0,79.09,paid,card,2025-06-08,0.0,true +I7255,S6063,A1055,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,52.5,paid,card,2025-02-12,0.0,true +I7256,S6063,A1055,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,52.5,paid,card,2025-03-10,0.0,true +I7257,S6063,A1055,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,3.6,paid,wire,2025-04-13,0.0,true +I7258,S6063,A1055,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,52.5,paid,card,2025-05-08,0.0,true +I7259,S6063,A1055,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,past_due,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,0,1,0.0,0.0,failed,card,2025-06-20,1800.0,false +I7260,S6064,A1056,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,1500.0,150.0,1650.0,1,1500.0,0.0,1500.0,1,1,0,1650.0,3.3,paid,wire,2025-01-13,0.0,true +I7261,S6064,A1056,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1500.0,150.0,1650.0,1,1500.0,0.0,1500.0,1,1,0,1650.0,48.15,paid,card,2025-02-11,0.0,true +I7262,S6064,A1056,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,150.0,1650.0,1,1500.0,0.0,1500.0,1,1,0,1650.0,48.15,paid,card,2025-03-09,0.0,true +I7263,S6064,A1056,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1500.0,150.0,1650.0,1,1500.0,0.0,1500.0,1,1,0,1650.0,3.3,paid,wire,2025-04-05,0.0,true +I7264,S6064,A1056,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1500.0,150.0,1650.0,1,1500.0,0.0,1500.0,2,1,1,1650.0,48.15,failed,wire,2025-05-15,0.0,true +I7265,S6064,A1056,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1500.0,150.0,1650.0,1,1500.0,0.0,1500.0,1,1,0,1650.0,3.3,paid,wire,2025-06-12,0.0,true +I7266,S6065,A1057,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-12-31,paid,21600.0,2160.0,23760.0,1,21600.0,0.0,21600.0,1,1,0,23760.0,15.0,paid,wire,2025-01-09,0.0,true +I7267,S6066,A1058,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,1.2,paid,wire,2025-02-14,0.0,true +I7268,S6066,A1058,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,17.7,paid,card,2025-03-06,0.0,true +I7269,S6066,A1058,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,2,1,1,600.0,17.7,failed,card,2025-04-15,0.0,true +I7270,S6066,A1058,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,17.7,paid,card,2025-05-05,0.0,true +I7271,S6066,A1058,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,17.7,paid,card,2025-06-10,0.0,true +I7272,S6067,A1059,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-01-10,0.0,true +I7273,S6067,A1059,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-02-13,0.0,true +I7274,S6067,A1059,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,2,1,1,1500.0,43.8,failed,ach,2025-03-15,0.0,true +I7275,S6068,A1059,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,2480.0,0.0,2480.0,2,2080.0,400.0,2080.0,1,1,0,2480.0,19.84,paid,ach,2025-04-10,0.0,true +I7276,S6068,A1059,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,2080.0,0.0,2080.0,1,2080.0,0.0,2080.0,1,1,0,2080.0,16.64,paid,ach,2025-05-11,0.0,true +I7277,S6068,A1059,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,2080.0,0.0,2080.0,1,2080.0,0.0,2080.0,1,1,0,2080.0,16.64,paid,ach,2025-06-05,0.0,true +I7278,S6069,A1060,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-01-07,0.0,true +I7279,S6069,A1060,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-02-08,0.0,true +I7280,S6069,A1060,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-03-09,0.0,true +I7281,S6069,A1060,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-04-13,0.0,true +I7282,S6069,A1060,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,2,1,1,1500.0,12.0,failed,ach,2025-05-15,0.0,true +I7283,S6069,A1060,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,past_due,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,0,1,0.0,0.0,failed,ach,2025-06-22,1500.0,false +I7284,S6070,A1061,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,2470.0,494.0,2964.0,1,2470.0,0.0,2470.0,1,1,0,2964.0,23.71,paid,ach,2025-03-05,0.0,true +I7285,S6070,A1061,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,2470.0,494.0,2964.0,1,2470.0,0.0,2470.0,1,1,0,2964.0,5.93,paid,wire,2025-04-05,0.0,true +I7286,S6070,A1061,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,2470.0,494.0,2964.0,1,2470.0,0.0,2470.0,1,1,0,2964.0,23.71,paid,ach,2025-05-13,0.0,true +I7287,S6070,A1061,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,2470.0,494.0,2964.0,1,2470.0,0.0,2470.0,1,1,0,2964.0,5.93,paid,wire,2025-06-08,0.0,true +I7288,S6071,A1062,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,2600.0,520.0,3120.0,1,2600.0,0.0,2600.0,2,1,1,3120.0,6.24,failed,ach,2025-01-15,0.0,true +I7289,S6071,A1062,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,2600.0,520.0,3120.0,1,2600.0,0.0,2600.0,1,1,0,3120.0,6.24,paid,wire,2025-02-05,0.0,true +I7290,S6071,A1062,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,2600.0,520.0,3120.0,1,2600.0,0.0,2600.0,1,1,0,3120.0,24.96,paid,ach,2025-03-09,0.0,true +I7291,S6071,A1062,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,2600.0,520.0,3120.0,1,2600.0,0.0,2600.0,1,1,0,3120.0,6.24,paid,wire,2025-04-11,0.0,true +I7292,S6071,A1062,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,2600.0,520.0,3120.0,1,2600.0,0.0,2600.0,1,1,0,3120.0,6.24,paid,wire,2025-05-14,0.0,true +I7293,S6071,A1062,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,2600.0,520.0,3120.0,1,2600.0,0.0,2600.0,1,1,0,3120.0,24.96,paid,ach,2025-06-11,0.0,true +I7294,S6072,A1063,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,700.0,0.0,700.0,2,400.0,300.0,400.0,2,1,1,700.0,20.6,failed,card,2025-01-15,0.0,true +I7295,S6072,A1063,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,400.0,0.0,400.0,1,400.0,0.0,400.0,1,1,0,400.0,3.2,paid,ach,2025-02-11,0.0,true +I7296,S6072,A1063,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,400.0,0.0,400.0,1,400.0,0.0,400.0,1,1,0,400.0,11.9,paid,card,2025-03-08,0.0,true +I7297,S6072,A1063,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,400.0,0.0,400.0,1,400.0,0.0,400.0,1,1,0,400.0,3.2,paid,ach,2025-04-09,0.0,true +I7298,S6072,A1063,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,400.0,0.0,400.0,1,400.0,0.0,400.0,1,1,0,400.0,11.9,paid,card,2025-05-14,0.0,true +I7300,S6073,A1064,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,400.0,0.0,400.0,1,400.0,0.0,400.0,2,1,1,400.0,11.9,failed,ach,2025-01-15,0.0,true +I7301,S6073,A1064,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,400.0,0.0,400.0,1,400.0,0.0,400.0,1,1,0,400.0,3.2,paid,ach,2025-02-05,0.0,true +I7302,S6073,A1064,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,400.0,0.0,400.0,1,400.0,0.0,400.0,1,1,0,400.0,3.2,paid,ach,2025-03-10,0.0,true +I7303,S6073,A1064,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,400.0,0.0,400.0,1,400.0,0.0,400.0,1,1,0,400.0,11.9,paid,card,2025-04-11,0.0,true +I7304,S6073,A1064,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,400.0,0.0,400.0,1,400.0,0.0,400.0,1,1,0,400.0,3.2,paid,ach,2025-05-11,0.0,true +I7305,S6073,A1064,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,400.0,0.0,400.0,1,400.0,0.0,400.0,1,1,0,400.0,3.2,paid,ach,2025-06-13,0.0,true +I7306,S6074,A1065,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,43.8,paid,card,2025-01-08,0.0,true +I7307,S6074,A1065,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-02-05,0.0,true +I7308,S6074,A1065,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-03-05,0.0,true +I7309,S6074,A1065,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,43.8,paid,card,2025-04-09,0.0,true +I7310,S6074,A1065,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,43.8,paid,card,2025-05-07,0.0,true +I7311,S6074,A1065,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-06-11,0.0,true +I7312,S6075,A1066,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,2600.0,260.0,2860.0,1,2600.0,0.0,2600.0,1,1,0,2860.0,5.72,paid,wire,2025-02-05,0.0,true +I7313,S6075,A1066,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,2600.0,260.0,2860.0,1,2600.0,0.0,2600.0,1,1,0,2860.0,5.72,paid,wire,2025-03-06,0.0,true +I7314,S6075,A1066,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,2600.0,260.0,2860.0,1,2600.0,0.0,2600.0,1,1,0,2860.0,5.72,paid,wire,2025-04-08,0.0,true +I7315,S6075,A1066,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,2600.0,260.0,2860.0,1,2600.0,0.0,2600.0,1,1,0,2860.0,83.24,paid,card,2025-05-05,0.0,true +I7317,S6076,A1067,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-01-08,0.0,true +I7318,S6076,A1067,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,43.8,paid,card,2025-02-13,0.0,true +I7319,S6076,A1067,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-03-14,0.0,true +I7320,S6076,A1067,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,43.8,paid,card,2025-04-07,0.0,true +I7321,S6076,A1067,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-05-11,0.0,true +I7322,S6076,A1067,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,43.8,paid,card,2025-06-11,0.0,true +I7323,S6077,A1068,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,2850.0,256.5,3106.5,2,2600.0,250.0,2600.0,1,1,0,3106.5,90.39,paid,card,2025-01-09,0.0,true +I7324,S6077,A1068,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,2600.0,234.0,2834.0,1,2600.0,0.0,2600.0,1,1,0,2834.0,22.67,paid,ach,2025-02-08,0.0,true +I7325,S6077,A1068,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,2600.0,234.0,2834.0,1,2600.0,0.0,2600.0,1,1,0,2834.0,5.67,paid,wire,2025-03-09,0.0,true +I7326,S6077,A1068,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,2600.0,234.0,2834.0,1,2600.0,0.0,2600.0,1,1,0,2834.0,5.67,paid,wire,2025-04-12,0.0,true +I7327,S6077,A1068,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,2600.0,234.0,2834.0,1,2600.0,0.0,2600.0,1,1,0,2834.0,82.49,paid,card,2025-05-05,0.0,true +I7329,S6078,A1069,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-12-31,paid,24300.0,0.0,24300.0,1,24300.0,0.0,24300.0,1,1,0,24300.0,705.0,paid,card,2025-01-12,0.0,true +I7330,S6079,A1070,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,500.0,50.0,550.0,1,500.0,0.0,500.0,1,1,0,550.0,16.25,paid,card,2025-01-09,0.0,true +I7331,S6079,A1070,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,500.0,50.0,550.0,1,500.0,0.0,500.0,1,1,0,550.0,16.25,paid,card,2025-02-12,0.0,true +I7332,S6079,A1070,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,500.0,50.0,550.0,1,500.0,0.0,500.0,1,1,0,550.0,16.25,paid,card,2025-03-10,0.0,true +I7333,S6079,A1070,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,500.0,50.0,550.0,1,500.0,0.0,500.0,1,1,0,550.0,16.25,paid,card,2025-04-13,0.0,true +I7334,S6079,A1070,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,500.0,50.0,550.0,1,500.0,0.0,500.0,1,1,0,550.0,1.1,paid,wire,2025-05-10,0.0,true +I7335,S6079,A1070,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,500.0,50.0,550.0,1,500.0,0.0,500.0,1,1,0,550.0,16.25,paid,card,2025-06-10,0.0,true +I7336,S6080,A1071,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,2080.0,0.0,2080.0,1,2080.0,0.0,2080.0,1,1,0,2080.0,60.62,paid,card,2025-01-12,0.0,true +I7337,S6080,A1071,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,2080.0,0.0,2080.0,1,2080.0,0.0,2080.0,1,1,0,2080.0,16.64,paid,ach,2025-02-11,0.0,true +I7338,S6080,A1071,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,2080.0,0.0,2080.0,1,2080.0,0.0,2080.0,1,1,0,2080.0,16.64,paid,ach,2025-03-07,0.0,true +I7339,S6080,A1071,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,2080.0,0.0,2080.0,1,2080.0,0.0,2080.0,1,1,0,2080.0,16.64,paid,ach,2025-04-12,0.0,true +I7340,S6080,A1071,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,2080.0,0.0,2080.0,1,2080.0,0.0,2080.0,1,1,0,2080.0,16.64,paid,ach,2025-05-07,0.0,true +I7342,S6081,A1072,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-12-31,paid,26800.0,0.0,26800.0,2,24300.0,2500.0,24300.0,1,1,0,26800.0,15.0,paid,wire,2025-01-07,0.0,true +I7343,S6082,A1073,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,52.5,paid,card,2025-01-08,0.0,true +I7344,S6082,A1073,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,52.5,paid,card,2025-02-11,0.0,true +I7345,S6082,A1073,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,52.5,paid,card,2025-03-13,0.0,true +I7346,S6083,A1073,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,2850.0,570.0,3420.0,2,2600.0,250.0,2600.0,1,1,0,3420.0,99.48,paid,card,2025-04-07,0.0,true +I7347,S6083,A1073,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,2600.0,520.0,3120.0,1,2600.0,0.0,2600.0,1,1,0,3120.0,90.78,paid,card,2025-05-10,0.0,true +I7348,S6083,A1073,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,2600.0,520.0,3120.0,1,2600.0,0.0,2600.0,1,1,0,3120.0,90.78,paid,card,2025-06-10,0.0,true +I7349,S6084,A1074,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,14.8,paid,card,2025-01-11,0.0,true +I7350,S6084,A1074,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,4.0,paid,ach,2025-02-11,0.0,true +I7351,S6084,A1074,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,14.8,paid,card,2025-03-08,0.0,true +I7352,S6084,A1074,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,4.0,paid,ach,2025-04-08,0.0,true +I7353,S6085,A1074,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1350.0,0.0,1350.0,1,1350.0,0.0,1350.0,1,1,0,1350.0,39.45,paid,card,2025-05-06,0.0,true +I7354,S6085,A1074,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1350.0,0.0,1350.0,1,1350.0,0.0,1350.0,1,1,0,1350.0,39.45,paid,card,2025-06-09,0.0,true +I7355,S6086,A1075,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,17.7,paid,card,2025-01-13,0.0,true +I7356,S6086,A1075,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,17.7,paid,card,2025-02-08,0.0,true +I7357,S6086,A1075,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,2,1,1,600.0,1.2,failed,wire,2025-03-15,0.0,true +I7358,S6086,A1075,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,17.7,paid,card,2025-04-06,0.0,true +I7359,S6086,A1075,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,17.7,paid,card,2025-05-11,0.0,true +I7360,S6086,A1075,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,1.2,paid,wire,2025-06-10,0.0,true +I7361,S6087,A1076,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,52.5,paid,card,2025-03-12,0.0,true +I7362,S6087,A1076,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,52.5,paid,card,2025-04-12,0.0,true +I7363,S6087,A1076,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,52.5,paid,card,2025-05-10,0.0,true +I7364,S6087,A1076,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,52.5,paid,card,2025-06-11,0.0,true +I7365,S6088,A1077,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-01-14,0.0,true +I7366,S6088,A1077,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-02-12,0.0,true +I7367,S6088,A1077,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-03-12,0.0,true +I7368,S6088,A1077,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-04-09,0.0,true +I7369,S6088,A1077,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-05-06,0.0,true +I7370,S6088,A1077,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-06-12,0.0,true +I7371,S6089,A1078,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1725.0,345.0,2070.0,2,1425.0,300.0,1425.0,1,1,0,2070.0,60.33,paid,card,2025-03-05,0.0,true +I7372,S6089,A1078,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1425.0,285.0,1710.0,1,1425.0,0.0,1425.0,1,1,0,1710.0,49.89,paid,card,2025-04-05,0.0,true +I7373,S6089,A1078,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1425.0,285.0,1710.0,1,1425.0,0.0,1425.0,1,1,0,1710.0,49.89,paid,card,2025-05-13,0.0,true +I7374,S6089,A1078,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1425.0,285.0,1710.0,1,1425.0,0.0,1425.0,1,1,0,1710.0,49.89,paid,card,2025-06-13,0.0,true +I7375,S6090,A1079,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-12-31,paid,21600.0,4320.0,25920.0,1,21600.0,0.0,21600.0,1,1,0,25920.0,207.36,paid,ach,2025-01-13,0.0,true +I7376,S6091,A1080,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,3.6,paid,wire,2025-01-07,0.0,true +I7377,S6091,A1080,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,2,1,1,1800.0,3.6,failed,wire,2025-02-15,0.0,true +I7378,S6091,A1080,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,3.6,paid,wire,2025-03-12,0.0,true +I7379,S6091,A1080,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,3.6,paid,wire,2025-04-07,0.0,true +I7380,S6091,A1080,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,3.6,paid,wire,2025-05-07,0.0,true +I7381,S6091,A1080,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1500.0,300.0,1800.0,1,1500.0,0.0,1500.0,1,1,0,1800.0,52.5,paid,card,2025-06-12,0.0,true +I7382,S6092,A1081,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,2600.0,0.0,2600.0,1,2600.0,0.0,2600.0,1,1,0,2600.0,75.7,paid,card,2025-01-06,0.0,true +I7383,S6092,A1081,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,2600.0,0.0,2600.0,1,2600.0,0.0,2600.0,1,1,0,2600.0,20.8,paid,ach,2025-02-14,0.0,true +I7384,S6092,A1081,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,2600.0,0.0,2600.0,1,2600.0,0.0,2600.0,1,1,0,2600.0,20.8,paid,ach,2025-03-10,0.0,true +I7385,S6092,A1081,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,2600.0,0.0,2600.0,1,2600.0,0.0,2600.0,1,1,0,2600.0,20.8,paid,ach,2025-04-13,0.0,true +I7386,S6092,A1081,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,2600.0,0.0,2600.0,1,2600.0,0.0,2600.0,1,1,0,2600.0,20.8,paid,ach,2025-05-13,0.0,true +I7387,S6092,A1081,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,2600.0,0.0,2600.0,1,2600.0,0.0,2600.0,1,1,0,2600.0,20.8,paid,ach,2025-06-13,0.0,true +I7388,S6093,A1082,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,4.0,paid,ach,2025-01-10,0.0,true +I7389,S6093,A1082,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,4.0,paid,ach,2025-02-08,0.0,true +I7390,S6093,A1082,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,14.8,paid,card,2025-03-06,0.0,true +I7391,S6093,A1082,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,2,1,1,500.0,14.8,failed,ach,2025-04-15,0.0,true +I7392,S6094,A1083,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,4.0,paid,ach,2025-02-12,0.0,true +I7393,S6094,A1083,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,14.8,paid,card,2025-03-07,0.0,true +I7394,S6095,A1083,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1200.0,0.0,1200.0,1,1200.0,0.0,1200.0,1,1,0,1200.0,9.6,paid,ach,2025-04-08,0.0,true +I7395,S6095,A1083,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1200.0,0.0,1200.0,1,1200.0,0.0,1200.0,1,1,0,1200.0,9.6,paid,ach,2025-05-11,0.0,true +I7396,S6095,A1083,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1200.0,0.0,1200.0,1,1200.0,0.0,1200.0,2,1,1,1200.0,35.1,failed,ach,2025-06-15,0.0,true +I7397,S6096,A1084,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,2600.0,0.0,2600.0,1,2600.0,0.0,2600.0,1,1,0,2600.0,75.7,paid,card,2025-01-10,0.0,true +I7398,S6096,A1084,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,2600.0,0.0,2600.0,1,2600.0,0.0,2600.0,1,1,0,2600.0,75.7,paid,card,2025-02-08,0.0,true +I7399,S6096,A1084,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,2600.0,0.0,2600.0,1,2600.0,0.0,2600.0,1,1,0,2600.0,20.8,paid,ach,2025-03-12,0.0,true +I7400,S6096,A1084,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,2600.0,0.0,2600.0,1,2600.0,0.0,2600.0,1,1,0,2600.0,20.8,paid,ach,2025-04-13,0.0,true +I7401,S6096,A1084,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,2600.0,0.0,2600.0,1,2600.0,0.0,2600.0,1,1,0,2600.0,20.8,paid,ach,2025-05-06,0.0,true +I7402,S6096,A1084,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,2600.0,0.0,2600.0,1,2600.0,0.0,2600.0,1,1,0,2600.0,20.8,paid,ach,2025-06-06,0.0,true +I7403,S6097,A1085,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,4.0,paid,ach,2025-01-07,0.0,true +I7404,S6097,A1085,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,14.8,paid,card,2025-02-10,0.0,true +I7405,S6097,A1085,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,14.8,paid,card,2025-03-11,0.0,true +I7406,S6097,A1085,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,2,1,1,500.0,4.0,failed,ach,2025-04-15,0.0,true +I7407,S6097,A1085,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,2,1,1,500.0,4.0,failed,ach,2025-05-15,0.0,true +I7408,S6097,A1085,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,4.0,paid,ach,2025-06-13,0.0,true +I7409,S6098,A1086,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,17.7,paid,card,2025-03-07,0.0,true +I7410,S6098,A1086,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,17.7,paid,card,2025-04-12,0.0,true +I7411,S6098,A1086,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,17.7,paid,card,2025-05-05,0.0,true +I7412,S6098,A1086,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,500.0,100.0,600.0,1,500.0,0.0,500.0,1,1,0,600.0,17.7,paid,card,2025-06-07,0.0,true +I7413,S6099,A1087,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,2,1,1,1500.0,12.0,failed,wire,2025-01-15,0.0,true +I7414,S6099,A1087,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-02-10,0.0,true +I7415,S6099,A1087,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-03-12,0.0,true +I7416,S6099,A1087,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,3.0,paid,wire,2025-04-14,0.0,true +I7417,S6100,A1088,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,500.0,50.0,550.0,1,500.0,0.0,500.0,1,1,0,550.0,16.25,paid,card,2025-03-14,0.0,true +I7418,S6100,A1088,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,500.0,50.0,550.0,1,500.0,0.0,500.0,1,1,0,550.0,1.1,paid,wire,2025-04-12,0.0,true +I7419,S6100,A1088,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,500.0,50.0,550.0,1,500.0,0.0,500.0,1,1,0,550.0,16.25,paid,card,2025-05-14,0.0,true +I7420,S6100,A1088,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,500.0,50.0,550.0,1,500.0,0.0,500.0,1,1,0,550.0,1.1,paid,wire,2025-06-09,0.0,true +I7421,S6101,A1089,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-01-10,0.0,true +I7422,S6101,A1089,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-02-10,0.0,true +I7423,S6101,A1089,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-03-10,0.0,true +I7424,S6101,A1089,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-04-09,0.0,true +I7425,S6101,A1089,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,43.8,paid,card,2025-05-08,0.0,true +I7426,S6101,A1089,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,1,1,0,1500.0,12.0,paid,ach,2025-06-09,0.0,true +I7427,S6102,A1090,2025-01-01,2025-01-01,2025-01-15,2025-01-01,2025-01-31,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,14.8,paid,card,2025-01-13,0.0,true +I7428,S6102,A1090,2025-02-01,2025-02-01,2025-02-15,2025-02-01,2025-02-28,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,14.8,paid,card,2025-02-14,0.0,true +I7429,S6102,A1090,2025-03-01,2025-03-01,2025-03-15,2025-03-01,2025-03-31,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,4.0,paid,ach,2025-03-09,0.0,true +I7430,S6102,A1090,2025-04-01,2025-04-01,2025-04-15,2025-04-01,2025-04-30,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,4.0,paid,ach,2025-04-10,0.0,true +I7431,S6102,A1090,2025-05-01,2025-05-01,2025-05-15,2025-05-01,2025-05-31,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,4.0,paid,ach,2025-05-12,0.0,true +I7432,S6102,A1090,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,paid,500.0,0.0,500.0,1,500.0,0.0,500.0,1,1,0,500.0,14.8,paid,card,2025-06-14,0.0,true +I7011,S6003,A1002,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,open,1500.0,0.0,1500.0,1,1500.0,0.0,1500.0,0,0,0,0.0,0.0,,,,1500.0,false +I7030,S6009,A1007,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,open,500.0,100.0,600.0,1,500.0,0.0,500.0,0,0,0,0.0,0.0,,,,600.0,false +I7134,S6031,A1028,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,open,2600.0,234.0,2834.0,1,2600.0,0.0,2600.0,0,0,0,0.0,0.0,,,,2834.0,false +I7299,S6072,A1063,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,open,400.0,0.0,400.0,1,400.0,0.0,400.0,0,0,0,0.0,0.0,,,,400.0,false +I7316,S6075,A1066,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,open,2600.0,260.0,2860.0,1,2600.0,0.0,2600.0,0,0,0,0.0,0.0,,,,2860.0,false +I7328,S6077,A1068,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,open,2600.0,234.0,2834.0,1,2600.0,0.0,2600.0,0,0,0,0.0,0.0,,,,2834.0,false +I7341,S6080,A1071,2025-06-01,2025-06-01,2025-06-15,2025-06-01,2025-06-30,open,2080.0,0.0,2080.0,1,2080.0,0.0,2080.0,0,0,0,0.0,0.0,,,,2080.0,false diff --git a/tasks/helixops_saas013/seeds/solution__stg_invoice_line_items.csv b/tasks/helixops_saas013/seeds/solution__stg_invoice_line_items.csv new file mode 100644 index 00000000..80bb6f40 --- /dev/null +++ b/tasks/helixops_saas013/seeds/solution__stg_invoice_line_items.csv @@ -0,0 +1,452 @@ +line_item_id,invoice_id,line_type,description,quantity,unit_price_usd,line_amount_usd,product_family,is_recurring_hint,is_recurring_line +L7101,I7001,base_subscription,Growth Monthly - Jan 2025,1,1500.0,1500.0,subscription,true,true +L7102,I7001,onboarding_addon,One-time setup / training,1,300.0,300.0,services,true,false +L7103,I7002,base_subscription,Growth Monthly - Feb 2025,1,1500.0,1500.0,subscription,true,true +L7104,I7003,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7105,I7004,base_subscription,Growth Monthly - Apr 2025,1,1500.0,1500.0,subscription,true,true +L7106,I7005,base_subscription,Growth Monthly - May 2025,1,1500.0,1500.0,subscription,true,true +L7107,I7006,base_subscription,Growth Monthly - Jun 2025,1,1500.0,1500.0,subscription,true,true +L7108,I7007,base_subscription,Starter Monthly - Feb 2025,1,500.0,500.0,subscription,true,true +L7109,I7008,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7110,I7009,base_subscription,Growth Monthly - Apr 2025,1,1500.0,1500.0,subscription,true,true +L7111,I7010,base_subscription,Growth Monthly - May 2025,1,1500.0,1500.0,subscription,true,true +L7112,I7011,base_subscription,Growth Monthly - Jun 2025,1,1500.0,1500.0,subscription,true,true +L7113,I7012,base_subscription,Enterprise Annual - Jan 2025,1,25650.0,25650.0,subscription,true,true +L7114,I7012,implementation_addon,Implementation package,1,2000.0,2000.0,services,false,false +L7115,I7013,base_subscription,Starter Monthly - Jan 2025,1,500.0,500.0,subscription,true,true +L7116,I7013,training_addon,One-time setup / training,1,400.0,400.0,services,false,false +L7117,I7014,base_subscription,Starter Monthly - Feb 2025,1,500.0,500.0,subscription,true,true +L7118,I7015,base_subscription,Starter Monthly - Mar 2025,1,500.0,500.0,subscription,true,true +L7119,I7016,base_subscription,Starter Monthly - Apr 2025,1,500.0,500.0,subscription,true,true +L7120,I7017,base_subscription,Starter Monthly - May 2025,1,500.0,500.0,subscription,true,true +L7121,I7018,base_subscription,Enterprise Annual - Jan 2025,1,25650.0,25650.0,subscription,true,true +L7122,I7018,implementation_addon,Implementation package,1,2000.0,2000.0,services,false,false +L7123,I7019,base_subscription,Starter Monthly - Jan 2025,1,500.0,500.0,subscription,true,true +L7124,I7020,base_subscription,Starter Monthly - Feb 2025,1,500.0,500.0,subscription,true,true +L7125,I7021,base_subscription,Starter Monthly - Mar 2025,1,500.0,500.0,subscription,true,true +L7126,I7022,base_subscription,Starter Monthly - Apr 2025,1,500.0,500.0,subscription,true,true +L7127,I7023,base_subscription,Growth Monthly - May 2025,1,1200.0,1200.0,subscription,true,true +L7128,I7024,base_subscription,Growth Monthly - Jun 2025,1,1200.0,1200.0,subscription,true,true +L7129,I7025,base_subscription,Starter Monthly - Jan 2025,1,500.0,500.0,subscription,true,true +L7130,I7026,base_subscription,Starter Monthly - Feb 2025,1,500.0,500.0,subscription,true,true +L7131,I7027,base_subscription,Starter Monthly - Mar 2025,1,500.0,500.0,subscription,true,true +L7132,I7028,base_subscription,Starter Monthly - Apr 2025,1,500.0,500.0,subscription,true,true +L7133,I7029,base_subscription,Starter Monthly - May 2025,1,500.0,500.0,subscription,true,true +L7134,I7030,base_subscription,Starter Monthly - Jun 2025,1,500.0,500.0,subscription,true,true +L7135,I7031,base_subscription,Enterprise Monthly - Jan 2025,1,2470.0,2470.0,subscription,true,true +L7136,I7032,base_subscription,Enterprise Monthly - Feb 2025,1,2470.0,2470.0,subscription,true,true +L7137,I7033,base_subscription,Enterprise Monthly - Mar 2025,1,2470.0,2470.0,subscription,true,true +L7138,I7034,base_subscription,Enterprise Monthly - Apr 2025,1,2470.0,2470.0,subscription,true,true +L7139,I7035,base_subscription,Enterprise Monthly - May 2025,1,2470.0,2470.0,subscription,true,true +L7140,I7036,base_subscription,Enterprise Monthly - Jun 2025,1,2470.0,2470.0,subscription,true,true +L7141,I7037,base_subscription,Growth Monthly - Jan 2025,1,1500.0,1500.0,subscription,true,true +L7142,I7038,base_subscription,Growth Monthly - Feb 2025,1,1500.0,1500.0,subscription,true,true +L7143,I7039,base_subscription,Enterprise Monthly - Mar 2025,1,2340.0,2340.0,subscription,true,true +L7144,I7040,base_subscription,Enterprise Monthly - Apr 2025,1,2340.0,2340.0,subscription,true,true +L7145,I7041,base_subscription,Enterprise Monthly - May 2025,1,2340.0,2340.0,subscription,true,true +L7146,I7042,base_subscription,Enterprise Monthly - Jun 2025,1,2340.0,2340.0,subscription,true,true +L7147,I7043,base_subscription,Starter Monthly - Mar 2025,1,400.0,400.0,subscription,true,true +L7148,I7044,base_subscription,Starter Monthly - Apr 2025,1,400.0,400.0,subscription,true,true +L7149,I7045,base_subscription,Starter Monthly - May 2025,1,400.0,400.0,subscription,true,true +L7150,I7046,base_subscription,Starter Monthly - Jun 2025,1,400.0,400.0,subscription,true,true +L7151,I7047,base_subscription,Growth Monthly - Feb 2025,1,1500.0,1500.0,subscription,true,true +L7152,I7048,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7153,I7049,base_subscription,Growth Monthly - Apr 2025,1,1500.0,1500.0,subscription,true,true +L7154,I7050,base_subscription,Growth Monthly - May 2025,1,1500.0,1500.0,subscription,true,true +L7155,I7051,base_subscription,Growth Monthly - Jun 2025,1,1500.0,1500.0,subscription,true,true +L7156,I7052,base_subscription,Starter Monthly - Jan 2025,1,500.0,500.0,subscription,true,true +L7157,I7053,base_subscription,Starter Monthly - Feb 2025,1,500.0,500.0,subscription,true,true +L7158,I7054,base_subscription,Starter Monthly - Mar 2025,1,500.0,500.0,subscription,true,true +L7159,I7055,base_subscription,Starter Monthly - Apr 2025,1,500.0,500.0,subscription,true,true +L7160,I7056,base_subscription,Starter Monthly - May 2025,1,500.0,500.0,subscription,true,true +L7161,I7057,base_subscription,Starter Monthly - Jun 2025,1,500.0,500.0,subscription,true,true +L7162,I7058,base_subscription,Growth Monthly - Jan 2025,1,1425.0,1425.0,subscription,true,true +L7163,I7058,training_addon,One-time setup / training,1,400.0,400.0,services,false,false +L7164,I7059,base_subscription,Growth Monthly - Feb 2025,1,1425.0,1425.0,subscription,true,true +L7165,I7060,base_subscription,Growth Monthly - Mar 2025,1,1425.0,1425.0,subscription,true,true +L7166,I7061,base_subscription,Growth Monthly - Apr 2025,1,1425.0,1425.0,subscription,true,true +L7167,I7062,base_subscription,Growth Monthly - May 2025,1,1425.0,1425.0,subscription,true,true +L7168,I7063,base_subscription,Growth Monthly - Jun 2025,1,1425.0,1425.0,subscription,true,true +L7169,I7064,base_subscription,Growth Monthly - Jan 2025,1,1500.0,1500.0,subscription,true,true +L7170,I7064,onboarding_addon,One-time setup / training,1,400.0,400.0,services,false,false +L7171,I7065,base_subscription,Growth Monthly - Feb 2025,1,1500.0,1500.0,subscription,true,true +L7172,I7066,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7173,I7067,base_subscription,Growth Monthly - Apr 2025,1,1500.0,1500.0,subscription,true,true +L7174,I7068,base_subscription,Growth Monthly - Jan 2025,1,1500.0,1500.0,subscription,true,true +L7175,I7069,base_subscription,Growth Monthly - Feb 2025,1,1500.0,1500.0,subscription,true,true +L7176,I7070,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7177,I7071,base_subscription,Growth Monthly - Apr 2025,1,1500.0,1500.0,subscription,true,true +L7178,I7072,base_subscription,Enterprise Annual - Jan 2025,1,24300.0,24300.0,subscription,true,true +L7179,I7072,implementation_addon,Implementation package,1,2000.0,2000.0,services,false,false +L7180,I7073,base_subscription,Growth Monthly - Jan 2025,1,1350.0,1350.0,subscription,true,true +L7181,I7074,base_subscription,Growth Monthly - Feb 2025,1,1350.0,1350.0,subscription,true,true +L7182,I7075,base_subscription,Growth Monthly - Mar 2025,1,1350.0,1350.0,subscription,true,true +L7183,I7076,base_subscription,Growth Monthly - Apr 2025,1,1350.0,1350.0,subscription,true,true +L7184,I7077,base_subscription,Growth Monthly - May 2025,1,1350.0,1350.0,subscription,true,true +L7185,I7078,base_subscription,Growth Monthly - Jun 2025,1,1350.0,1350.0,subscription,true,true +L7186,I7079,base_subscription,Starter Monthly - Jan 2025,1,500.0,500.0,subscription,true,true +L7187,I7079,training_addon,One-time setup / training,1,250.0,250.0,services,false,false +L7188,I7080,base_subscription,Starter Monthly - Feb 2025,1,500.0,500.0,subscription,true,true +L7189,I7081,base_subscription,Starter Monthly - Mar 2025,1,500.0,500.0,subscription,true,true +L7190,I7082,base_subscription,Starter Monthly - Apr 2025,1,500.0,500.0,subscription,true,true +L7191,I7083,base_subscription,Starter Monthly - Mar 2025,1,400.0,400.0,subscription,true,true +L7192,I7084,base_subscription,Starter Monthly - Apr 2025,1,400.0,400.0,subscription,true,true +L7193,I7085,base_subscription,Starter Monthly - May 2025,1,400.0,400.0,subscription,true,true +L7194,I7086,base_subscription,Starter Monthly - Jun 2025,1,400.0,400.0,subscription,true,true +L7195,I7087,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7196,I7088,base_subscription,Growth Monthly - Apr 2025,1,1500.0,1500.0,subscription,true,true +L7197,I7089,base_subscription,Growth Monthly - May 2025,1,1500.0,1500.0,subscription,true,true +L7198,I7090,base_subscription,Growth Monthly - Jun 2025,1,1500.0,1500.0,subscription,true,true +L7199,I7091,base_subscription,Starter Monthly - Jan 2025,1,500.0,500.0,subscription,true,true +L7200,I7092,base_subscription,Starter Monthly - Feb 2025,1,500.0,500.0,subscription,true,true +L7201,I7093,base_subscription,Starter Monthly - Mar 2025,1,500.0,500.0,subscription,true,true +L7202,I7094,base_subscription,Starter Monthly - Apr 2025,1,500.0,500.0,subscription,true,true +L7203,I7095,base_subscription,Starter Monthly - May 2025,1,500.0,500.0,subscription,true,true +L7204,I7096,base_subscription,Starter Monthly - Jun 2025,1,500.0,500.0,subscription,true,true +L7205,I7097,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7206,I7098,base_subscription,Growth Monthly - Apr 2025,1,1500.0,1500.0,subscription,true,true +L7207,I7099,base_subscription,Growth Monthly - May 2025,1,1500.0,1500.0,subscription,true,true +L7208,I7100,base_subscription,Growth Monthly - Jun 2025,1,1500.0,1500.0,subscription,true,true +L7209,I7101,base_subscription,Starter Monthly - Feb 2025,1,400.0,400.0,subscription,true,true +L7210,I7102,base_subscription,Starter Monthly - Mar 2025,1,400.0,400.0,subscription,true,true +L7211,I7103,base_subscription,Starter Monthly - Apr 2025,1,400.0,400.0,subscription,true,true +L7212,I7104,base_subscription,Starter Monthly - May 2025,1,400.0,400.0,subscription,true,true +L7213,I7105,base_subscription,Starter Monthly - Jun 2025,1,400.0,400.0,subscription,true,true +L7214,I7106,base_subscription,Starter Monthly - Feb 2025,1,500.0,500.0,subscription,true,true +L7215,I7107,base_subscription,Starter Monthly - Mar 2025,1,500.0,500.0,subscription,true,true +L7216,I7108,base_subscription,Starter Monthly - Apr 2025,1,500.0,500.0,subscription,true,true +L7217,I7109,base_subscription,Starter Monthly - May 2025,1,500.0,500.0,subscription,true,true +L7218,I7110,base_subscription,Starter Monthly - Jun 2025,1,500.0,500.0,subscription,true,true +L7219,I7111,base_subscription,Starter Monthly - Jan 2025,1,400.0,400.0,subscription,true,true +L7220,I7111,onboarding_addon,One-time setup / training,1,250.0,250.0,services,true,false +L7221,I7112,base_subscription,Starter Monthly - Feb 2025,1,400.0,400.0,subscription,true,true +L7222,I7113,base_subscription,Starter Monthly - Mar 2025,1,400.0,400.0,subscription,true,true +L7223,I7114,base_subscription,Starter Monthly - Apr 2025,1,400.0,400.0,subscription,true,true +L7224,I7115,base_subscription,Starter Monthly - May 2025,1,400.0,400.0,subscription,true,true +L7225,I7116,base_subscription,Starter Monthly - Jun 2025,1,400.0,400.0,subscription,true,true +L7226,I7117,base_subscription,Starter Monthly - Jan 2025,1,400.0,400.0,subscription,true,true +L7227,I7118,base_subscription,Starter Monthly - Feb 2025,1,400.0,400.0,subscription,true,true +L7228,I7119,base_subscription,Starter Monthly - Mar 2025,1,400.0,400.0,subscription,true,true +L7229,I7120,base_subscription,Starter Monthly - Apr 2025,1,400.0,400.0,subscription,true,true +L7230,I7121,base_subscription,Starter Monthly - May 2025,1,400.0,400.0,subscription,true,true +L7231,I7122,base_subscription,Starter Monthly - Jun 2025,1,400.0,400.0,subscription,true,true +L7232,I7123,base_subscription,Starter Monthly - Jan 2025,1,500.0,500.0,subscription,true,true +L7233,I7124,base_subscription,Starter Monthly - Feb 2025,1,500.0,500.0,subscription,true,true +L7234,I7125,base_subscription,Starter Monthly - Mar 2025,1,500.0,500.0,subscription,true,true +L7235,I7126,base_subscription,Starter Monthly - Apr 2025,1,500.0,500.0,subscription,true,true +L7236,I7127,base_subscription,Starter Monthly - May 2025,1,500.0,500.0,subscription,true,true +L7237,I7128,base_subscription,Starter Monthly - Jun 2025,1,500.0,500.0,subscription,true,true +L7238,I7129,base_subscription,Enterprise Monthly - Jan 2025,1,2600.0,2600.0,subscription,true,true +L7239,I7130,base_subscription,Enterprise Monthly - Feb 2025,1,2600.0,2600.0,subscription,true,true +L7240,I7131,base_subscription,Enterprise Monthly - Mar 2025,1,2600.0,2600.0,subscription,true,true +L7241,I7132,base_subscription,Enterprise Monthly - Apr 2025,1,2600.0,2600.0,subscription,true,true +L7242,I7133,base_subscription,Enterprise Monthly - May 2025,1,2600.0,2600.0,subscription,true,true +L7243,I7134,base_subscription,Enterprise Monthly - Jun 2025,1,2600.0,2600.0,subscription,true,true +L7244,I7135,base_subscription,Starter Monthly - Jan 2025,1,475.0,475.0,subscription,true,true +L7245,I7136,base_subscription,Starter Monthly - Feb 2025,1,475.0,475.0,subscription,true,true +L7246,I7137,base_subscription,Starter Monthly - Mar 2025,1,475.0,475.0,subscription,true,true +L7247,I7138,base_subscription,Starter Monthly - Apr 2025,1,475.0,475.0,subscription,true,true +L7248,I7139,base_subscription,Enterprise Monthly - Jan 2025,1,2470.0,2470.0,subscription,true,true +L7249,I7140,base_subscription,Enterprise Monthly - Feb 2025,1,2470.0,2470.0,subscription,true,true +L7250,I7141,base_subscription,Enterprise Monthly - Mar 2025,1,2470.0,2470.0,subscription,true,true +L7251,I7142,base_subscription,Enterprise Monthly - Apr 2025,1,2470.0,2470.0,subscription,true,true +L7252,I7143,base_subscription,Enterprise Monthly - May 2025,1,2470.0,2470.0,subscription,true,true +L7253,I7144,base_subscription,Enterprise Monthly - Jun 2025,1,2470.0,2470.0,subscription,true,true +L7254,I7145,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7255,I7146,base_subscription,Growth Monthly - Apr 2025,1,1500.0,1500.0,subscription,true,true +L7256,I7147,base_subscription,Growth Monthly - May 2025,1,1500.0,1500.0,subscription,true,true +L7257,I7148,base_subscription,Growth Monthly - Jun 2025,1,1500.0,1500.0,subscription,true,true +L7258,I7149,base_subscription,Growth Monthly - Jan 2025,1,1500.0,1500.0,subscription,true,true +L7259,I7150,base_subscription,Growth Monthly - Feb 2025,1,1500.0,1500.0,subscription,true,true +L7260,I7151,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7261,I7152,base_subscription,Growth Monthly - Apr 2025,1,1500.0,1500.0,subscription,true,true +L7262,I7153,base_subscription,Growth Monthly - Jan 2025,1,1500.0,1500.0,subscription,true,true +L7263,I7154,base_subscription,Growth Monthly - Feb 2025,1,1500.0,1500.0,subscription,true,true +L7264,I7155,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7265,I7156,base_subscription,Growth Monthly - Apr 2025,1,1500.0,1500.0,subscription,true,true +L7266,I7157,base_subscription,Growth Monthly - May 2025,1,1500.0,1500.0,subscription,true,true +L7267,I7158,base_subscription,Growth Monthly - Jun 2025,1,1500.0,1500.0,subscription,true,true +L7268,I7159,base_subscription,Starter Monthly - Jan 2025,1,500.0,500.0,subscription,true,true +L7269,I7160,base_subscription,Starter Monthly - Feb 2025,1,500.0,500.0,subscription,true,true +L7270,I7161,base_subscription,Starter Monthly - Mar 2025,1,500.0,500.0,subscription,true,true +L7271,I7162,base_subscription,Starter Monthly - Apr 2025,1,500.0,500.0,subscription,true,true +L7272,I7163,base_subscription,Starter Monthly - May 2025,1,500.0,500.0,subscription,true,true +L7273,I7164,base_subscription,Starter Monthly - Jun 2025,1,500.0,500.0,subscription,true,true +L7274,I7165,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7275,I7165,onboarding_addon,One-time setup / training,1,250.0,250.0,services,false,false +L7276,I7166,base_subscription,Enterprise Monthly - Apr 2025,1,2600.0,2600.0,subscription,true,true +L7277,I7167,base_subscription,Enterprise Monthly - May 2025,1,2600.0,2600.0,subscription,true,true +L7278,I7168,base_subscription,Enterprise Monthly - Jun 2025,1,2600.0,2600.0,subscription,true,true +L7279,I7169,base_subscription,Growth Monthly - Jan 2025,1,1200.0,1200.0,subscription,true,true +L7280,I7169,training_addon,One-time setup / training,1,300.0,300.0,services,false,false +L7281,I7170,base_subscription,Growth Monthly - Feb 2025,1,1200.0,1200.0,subscription,true,true +L7282,I7171,base_subscription,Growth Monthly - Mar 2025,1,1200.0,1200.0,subscription,true,true +L7283,I7172,base_subscription,Growth Monthly - Apr 2025,1,1200.0,1200.0,subscription,true,true +L7284,I7173,base_subscription,Growth Monthly - Jan 2025,1,1500.0,1500.0,subscription,true,true +L7285,I7174,base_subscription,Growth Monthly - Feb 2025,1,1500.0,1500.0,subscription,true,true +L7286,I7175,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7287,I7176,base_subscription,Growth Monthly - Apr 2025,1,1500.0,1500.0,subscription,true,true +L7288,I7177,base_subscription,Enterprise Monthly - May 2025,1,2600.0,2600.0,subscription,true,true +L7289,I7178,base_subscription,Enterprise Monthly - Jun 2025,1,2600.0,2600.0,subscription,true,true +L7290,I7179,base_subscription,Starter Monthly - Jan 2025,1,500.0,500.0,subscription,true,true +L7291,I7180,base_subscription,Starter Monthly - Feb 2025,1,500.0,500.0,subscription,true,true +L7292,I7181,base_subscription,Starter Monthly - Mar 2025,1,500.0,500.0,subscription,true,true +L7293,I7182,base_subscription,Starter Monthly - Apr 2025,1,500.0,500.0,subscription,true,true +L7294,I7183,base_subscription,Starter Monthly - May 2025,1,500.0,500.0,subscription,true,true +L7295,I7184,base_subscription,Starter Monthly - Jun 2025,1,500.0,500.0,subscription,true,true +L7296,I7185,base_subscription,Starter Monthly - Mar 2025,1,500.0,500.0,subscription,true,true +L7297,I7186,base_subscription,Starter Monthly - Apr 2025,1,500.0,500.0,subscription,true,true +L7298,I7187,base_subscription,Starter Monthly - May 2025,1,500.0,500.0,subscription,true,true +L7299,I7188,base_subscription,Starter Monthly - Jun 2025,1,500.0,500.0,subscription,true,true +L7300,I7189,base_subscription,Growth Monthly - Jan 2025,1,1500.0,1500.0,subscription,true,true +L7301,I7190,base_subscription,Growth Monthly - Feb 2025,1,1500.0,1500.0,subscription,true,true +L7302,I7191,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7303,I7192,base_subscription,Growth Monthly - Apr 2025,1,1500.0,1500.0,subscription,true,true +L7304,I7193,base_subscription,Enterprise Monthly - May 2025,1,2600.0,2600.0,subscription,true,true +L7305,I7194,base_subscription,Enterprise Monthly - Jun 2025,1,2600.0,2600.0,subscription,true,true +L7306,I7195,base_subscription,Starter Monthly - Jan 2025,1,500.0,500.0,subscription,true,true +L7307,I7196,base_subscription,Starter Monthly - Feb 2025,1,500.0,500.0,subscription,true,true +L7308,I7197,base_subscription,Starter Monthly - Mar 2025,1,500.0,500.0,subscription,true,true +L7309,I7198,base_subscription,Starter Monthly - Apr 2025,1,500.0,500.0,subscription,true,true +L7310,I7199,base_subscription,Growth Monthly - May 2025,1,1500.0,1500.0,subscription,true,true +L7311,I7200,base_subscription,Growth Monthly - Jun 2025,1,1500.0,1500.0,subscription,true,true +L7312,I7201,base_subscription,Growth Monthly - Jan 2025,1,1500.0,1500.0,subscription,true,true +L7313,I7202,base_subscription,Growth Monthly - Feb 2025,1,1500.0,1500.0,subscription,true,true +L7314,I7203,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7315,I7204,base_subscription,Growth Monthly - Apr 2025,1,1500.0,1500.0,subscription,true,true +L7316,I7205,base_subscription,Growth Monthly - May 2025,1,1500.0,1500.0,subscription,true,true +L7317,I7206,base_subscription,Growth Monthly - Jun 2025,1,1500.0,1500.0,subscription,true,true +L7318,I7207,base_subscription,Enterprise Monthly - Jan 2025,1,2600.0,2600.0,subscription,true,true +L7319,I7208,base_subscription,Enterprise Monthly - Feb 2025,1,2600.0,2600.0,subscription,true,true +L7320,I7209,base_subscription,Enterprise Monthly - Mar 2025,1,2600.0,2600.0,subscription,true,true +L7321,I7210,base_subscription,Enterprise Monthly - Apr 2025,1,2600.0,2600.0,subscription,true,true +L7322,I7211,base_subscription,Enterprise Monthly - May 2025,1,2600.0,2600.0,subscription,true,true +L7323,I7212,base_subscription,Enterprise Monthly - Jun 2025,1,2600.0,2600.0,subscription,true,true +L7324,I7213,base_subscription,Starter Monthly - Jan 2025,1,500.0,500.0,subscription,true,true +L7325,I7214,base_subscription,Starter Monthly - Feb 2025,1,500.0,500.0,subscription,true,true +L7326,I7215,base_subscription,Starter Monthly - Mar 2025,1,500.0,500.0,subscription,true,true +L7327,I7216,base_subscription,Starter Monthly - Apr 2025,1,500.0,500.0,subscription,true,true +L7328,I7217,base_subscription,Growth Monthly - May 2025,1,1500.0,1500.0,subscription,true,true +L7329,I7218,base_subscription,Growth Monthly - Jun 2025,1,1500.0,1500.0,subscription,true,true +L7330,I7219,base_subscription,Enterprise Annual - Jan 2025,1,25650.0,25650.0,subscription,true,true +L7331,I7220,base_subscription,Growth Monthly - Jan 2025,1,1200.0,1200.0,subscription,true,true +L7332,I7221,base_subscription,Growth Monthly - Feb 2025,1,1200.0,1200.0,subscription,true,true +L7333,I7222,base_subscription,Growth Monthly - Mar 2025,1,1200.0,1200.0,subscription,true,true +L7334,I7223,base_subscription,Growth Monthly - Apr 2025,1,1200.0,1200.0,subscription,true,true +L7335,I7224,base_subscription,Growth Monthly - May 2025,1,1200.0,1200.0,subscription,true,true +L7336,I7225,base_subscription,Growth Monthly - Jun 2025,1,1200.0,1200.0,subscription,true,true +L7337,I7226,base_subscription,Enterprise Annual - Jan 2025,1,25650.0,25650.0,subscription,true,true +L7338,I7227,base_subscription,Enterprise Annual - Mar 2025,1,24300.0,24300.0,subscription,true,true +L7339,I7228,base_subscription,Enterprise Annual - Jan 2025,1,24300.0,24300.0,subscription,true,true +L7340,I7228,implementation_addon,Implementation package,1,1500.0,1500.0,services,false,false +L7341,I7229,base_subscription,Starter Monthly - Mar 2025,1,500.0,500.0,subscription,true,true +L7342,I7229,onboarding_addon,One-time setup / training,1,250.0,250.0,services,true,false +L7343,I7230,base_subscription,Starter Monthly - Apr 2025,1,500.0,500.0,subscription,true,true +L7344,I7231,base_subscription,Starter Monthly - May 2025,1,500.0,500.0,subscription,true,true +L7345,I7232,base_subscription,Starter Monthly - Jun 2025,1,500.0,500.0,subscription,true,true +L7346,I7233,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7347,I7234,base_subscription,Growth Monthly - Apr 2025,1,1500.0,1500.0,subscription,true,true +L7348,I7235,base_subscription,Growth Monthly - May 2025,1,1500.0,1500.0,subscription,true,true +L7349,I7236,base_subscription,Growth Monthly - Jun 2025,1,1500.0,1500.0,subscription,true,true +L7350,I7237,base_subscription,Growth Monthly - Jan 2025,1,1425.0,1425.0,subscription,true,true +L7351,I7238,base_subscription,Growth Monthly - Feb 2025,1,1425.0,1425.0,subscription,true,true +L7352,I7239,base_subscription,Growth Monthly - Mar 2025,1,1425.0,1425.0,subscription,true,true +L7353,I7240,base_subscription,Growth Monthly - Apr 2025,1,1425.0,1425.0,subscription,true,true +L7354,I7241,base_subscription,Growth Monthly - May 2025,1,1425.0,1425.0,subscription,true,true +L7355,I7242,base_subscription,Growth Monthly - Jun 2025,1,1425.0,1425.0,subscription,true,true +L7356,I7243,base_subscription,Growth Monthly - Jan 2025,1,1500.0,1500.0,subscription,true,true +L7357,I7244,base_subscription,Growth Monthly - Feb 2025,1,1500.0,1500.0,subscription,true,true +L7358,I7245,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7359,I7246,base_subscription,Growth Monthly - Apr 2025,1,1500.0,1500.0,subscription,true,true +L7360,I7247,base_subscription,Growth Monthly - May 2025,1,1500.0,1500.0,subscription,true,true +L7361,I7248,base_subscription,Growth Monthly - Jun 2025,1,1500.0,1500.0,subscription,true,true +L7362,I7249,base_subscription,Enterprise Monthly - Jan 2025,1,2470.0,2470.0,subscription,true,true +L7363,I7250,base_subscription,Enterprise Monthly - Feb 2025,1,2470.0,2470.0,subscription,true,true +L7364,I7251,base_subscription,Enterprise Monthly - Mar 2025,1,2470.0,2470.0,subscription,true,true +L7365,I7252,base_subscription,Enterprise Monthly - Apr 2025,1,2470.0,2470.0,subscription,true,true +L7366,I7253,base_subscription,Enterprise Monthly - May 2025,1,2470.0,2470.0,subscription,true,true +L7367,I7254,base_subscription,Enterprise Monthly - Jun 2025,1,2470.0,2470.0,subscription,true,true +L7368,I7255,base_subscription,Growth Monthly - Feb 2025,1,1500.0,1500.0,subscription,true,true +L7369,I7256,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7370,I7257,base_subscription,Growth Monthly - Apr 2025,1,1500.0,1500.0,subscription,true,true +L7371,I7258,base_subscription,Growth Monthly - May 2025,1,1500.0,1500.0,subscription,true,true +L7372,I7259,base_subscription,Growth Monthly - Jun 2025,1,1500.0,1500.0,subscription,true,true +L7373,I7260,base_subscription,Growth Monthly - Jan 2025,1,1500.0,1500.0,subscription,true,true +L7374,I7261,base_subscription,Growth Monthly - Feb 2025,1,1500.0,1500.0,subscription,true,true +L7375,I7262,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7376,I7263,base_subscription,Growth Monthly - Apr 2025,1,1500.0,1500.0,subscription,true,true +L7377,I7264,base_subscription,Growth Monthly - May 2025,1,1500.0,1500.0,subscription,true,true +L7378,I7265,base_subscription,Growth Monthly - Jun 2025,1,1500.0,1500.0,subscription,true,true +L7379,I7266,base_subscription,Enterprise Annual - Jan 2025,1,21600.0,21600.0,subscription,true,true +L7380,I7267,base_subscription,Starter Monthly - Feb 2025,1,500.0,500.0,subscription,true,true +L7381,I7268,base_subscription,Starter Monthly - Mar 2025,1,500.0,500.0,subscription,true,true +L7382,I7269,base_subscription,Starter Monthly - Apr 2025,1,500.0,500.0,subscription,true,true +L7383,I7270,base_subscription,Starter Monthly - May 2025,1,500.0,500.0,subscription,true,true +L7384,I7271,base_subscription,Starter Monthly - Jun 2025,1,500.0,500.0,subscription,true,true +L7385,I7272,base_subscription,Growth Monthly - Jan 2025,1,1500.0,1500.0,subscription,true,true +L7386,I7273,base_subscription,Growth Monthly - Feb 2025,1,1500.0,1500.0,subscription,true,true +L7387,I7274,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7388,I7275,base_subscription,Enterprise Monthly - Apr 2025,1,2080.0,2080.0,subscription,true,true +L7389,I7275,onboarding_addon,One-time setup / training,1,400.0,400.0,services,false,false +L7390,I7276,base_subscription,Enterprise Monthly - May 2025,1,2080.0,2080.0,subscription,true,true +L7391,I7277,base_subscription,Enterprise Monthly - Jun 2025,1,2080.0,2080.0,subscription,true,true +L7392,I7278,base_subscription,Growth Monthly - Jan 2025,1,1500.0,1500.0,subscription,true,true +L7393,I7279,base_subscription,Growth Monthly - Feb 2025,1,1500.0,1500.0,subscription,true,true +L7394,I7280,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7395,I7281,base_subscription,Growth Monthly - Apr 2025,1,1500.0,1500.0,subscription,true,true +L7396,I7282,base_subscription,Growth Monthly - May 2025,1,1500.0,1500.0,subscription,true,true +L7397,I7283,base_subscription,Growth Monthly - Jun 2025,1,1500.0,1500.0,subscription,true,true +L7398,I7284,base_subscription,Enterprise Monthly - Mar 2025,1,2470.0,2470.0,subscription,true,true +L7399,I7285,base_subscription,Enterprise Monthly - Apr 2025,1,2470.0,2470.0,subscription,true,true +L7400,I7286,base_subscription,Enterprise Monthly - May 2025,1,2470.0,2470.0,subscription,true,true +L7401,I7287,base_subscription,Enterprise Monthly - Jun 2025,1,2470.0,2470.0,subscription,true,true +L7402,I7288,base_subscription,Enterprise Monthly - Jan 2025,1,2600.0,2600.0,subscription,true,true +L7403,I7289,base_subscription,Enterprise Monthly - Feb 2025,1,2600.0,2600.0,subscription,true,true +L7404,I7290,base_subscription,Enterprise Monthly - Mar 2025,1,2600.0,2600.0,subscription,true,true +L7405,I7291,base_subscription,Enterprise Monthly - Apr 2025,1,2600.0,2600.0,subscription,true,true +L7406,I7292,base_subscription,Enterprise Monthly - May 2025,1,2600.0,2600.0,subscription,true,true +L7407,I7293,base_subscription,Enterprise Monthly - Jun 2025,1,2600.0,2600.0,subscription,true,true +L7408,I7294,base_subscription,Starter Monthly - Jan 2025,1,400.0,400.0,subscription,true,true +L7409,I7294,training_addon,One-time setup / training,1,300.0,300.0,services,false,false +L7410,I7295,base_subscription,Starter Monthly - Feb 2025,1,400.0,400.0,subscription,true,true +L7411,I7296,base_subscription,Starter Monthly - Mar 2025,1,400.0,400.0,subscription,true,true +L7412,I7297,base_subscription,Starter Monthly - Apr 2025,1,400.0,400.0,subscription,true,true +L7413,I7298,base_subscription,Starter Monthly - May 2025,1,400.0,400.0,subscription,true,true +L7414,I7299,base_subscription,Starter Monthly - Jun 2025,1,400.0,400.0,subscription,true,true +L7415,I7300,base_subscription,Starter Monthly - Jan 2025,1,400.0,400.0,subscription,true,true +L7416,I7301,base_subscription,Starter Monthly - Feb 2025,1,400.0,400.0,subscription,true,true +L7417,I7302,base_subscription,Starter Monthly - Mar 2025,1,400.0,400.0,subscription,true,true +L7418,I7303,base_subscription,Starter Monthly - Apr 2025,1,400.0,400.0,subscription,true,true +L7419,I7304,base_subscription,Starter Monthly - May 2025,1,400.0,400.0,subscription,true,true +L7420,I7305,base_subscription,Starter Monthly - Jun 2025,1,400.0,400.0,subscription,true,true +L7421,I7306,base_subscription,Growth Monthly - Jan 2025,1,1500.0,1500.0,subscription,true,true +L7422,I7307,base_subscription,Growth Monthly - Feb 2025,1,1500.0,1500.0,subscription,true,true +L7423,I7308,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7424,I7309,base_subscription,Growth Monthly - Apr 2025,1,1500.0,1500.0,subscription,true,true +L7425,I7310,base_subscription,Growth Monthly - May 2025,1,1500.0,1500.0,subscription,true,true +L7426,I7311,base_subscription,Growth Monthly - Jun 2025,1,1500.0,1500.0,subscription,true,true +L7427,I7312,base_subscription,Enterprise Monthly - Feb 2025,1,2600.0,2600.0,subscription,true,true +L7428,I7313,base_subscription,Enterprise Monthly - Mar 2025,1,2600.0,2600.0,subscription,true,true +L7429,I7314,base_subscription,Enterprise Monthly - Apr 2025,1,2600.0,2600.0,subscription,true,true +L7430,I7315,base_subscription,Enterprise Monthly - May 2025,1,2600.0,2600.0,subscription,true,true +L7431,I7316,base_subscription,Enterprise Monthly - Jun 2025,1,2600.0,2600.0,subscription,true,true +L7432,I7317,base_subscription,Growth Monthly - Jan 2025,1,1500.0,1500.0,subscription,true,true +L7433,I7318,base_subscription,Growth Monthly - Feb 2025,1,1500.0,1500.0,subscription,true,true +L7434,I7319,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7435,I7320,base_subscription,Growth Monthly - Apr 2025,1,1500.0,1500.0,subscription,true,true +L7436,I7321,base_subscription,Growth Monthly - May 2025,1,1500.0,1500.0,subscription,true,true +L7437,I7322,base_subscription,Growth Monthly - Jun 2025,1,1500.0,1500.0,subscription,true,true +L7438,I7323,base_subscription,Enterprise Monthly - Jan 2025,1,2600.0,2600.0,subscription,true,true +L7439,I7323,onboarding_addon,One-time setup / training,1,250.0,250.0,services,false,false +L7440,I7324,base_subscription,Enterprise Monthly - Feb 2025,1,2600.0,2600.0,subscription,true,true +L7441,I7325,base_subscription,Enterprise Monthly - Mar 2025,1,2600.0,2600.0,subscription,true,true +L7442,I7326,base_subscription,Enterprise Monthly - Apr 2025,1,2600.0,2600.0,subscription,true,true +L7443,I7327,base_subscription,Enterprise Monthly - May 2025,1,2600.0,2600.0,subscription,true,true +L7444,I7328,base_subscription,Enterprise Monthly - Jun 2025,1,2600.0,2600.0,subscription,true,true +L7445,I7329,base_subscription,Enterprise Annual - Jan 2025,1,24300.0,24300.0,subscription,true,true +L7446,I7330,base_subscription,Starter Monthly - Jan 2025,1,500.0,500.0,subscription,true,true +L7447,I7331,base_subscription,Starter Monthly - Feb 2025,1,500.0,500.0,subscription,true,true +L7448,I7332,base_subscription,Starter Monthly - Mar 2025,1,500.0,500.0,subscription,true,true +L7449,I7333,base_subscription,Starter Monthly - Apr 2025,1,500.0,500.0,subscription,true,true +L7450,I7334,base_subscription,Starter Monthly - May 2025,1,500.0,500.0,subscription,true,true +L7451,I7335,base_subscription,Starter Monthly - Jun 2025,1,500.0,500.0,subscription,true,true +L7452,I7336,base_subscription,Enterprise Monthly - Jan 2025,1,2080.0,2080.0,subscription,true,true +L7453,I7337,base_subscription,Enterprise Monthly - Feb 2025,1,2080.0,2080.0,subscription,true,true +L7454,I7338,base_subscription,Enterprise Monthly - Mar 2025,1,2080.0,2080.0,subscription,true,true +L7455,I7339,base_subscription,Enterprise Monthly - Apr 2025,1,2080.0,2080.0,subscription,true,true +L7456,I7340,base_subscription,Enterprise Monthly - May 2025,1,2080.0,2080.0,subscription,true,true +L7457,I7341,base_subscription,Enterprise Monthly - Jun 2025,1,2080.0,2080.0,subscription,true,true +L7458,I7342,base_subscription,Enterprise Annual - Jan 2025,1,24300.0,24300.0,subscription,true,true +L7459,I7342,implementation_addon,Implementation package,1,2500.0,2500.0,services,false,false +L7460,I7343,base_subscription,Growth Monthly - Jan 2025,1,1500.0,1500.0,subscription,true,true +L7461,I7344,base_subscription,Growth Monthly - Feb 2025,1,1500.0,1500.0,subscription,true,true +L7462,I7345,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7463,I7346,base_subscription,Enterprise Monthly - Apr 2025,1,2600.0,2600.0,subscription,true,true +L7464,I7346,onboarding_addon,One-time setup / training,1,250.0,250.0,services,false,false +L7465,I7347,base_subscription,Enterprise Monthly - May 2025,1,2600.0,2600.0,subscription,true,true +L7466,I7348,base_subscription,Enterprise Monthly - Jun 2025,1,2600.0,2600.0,subscription,true,true +L7467,I7349,base_subscription,Starter Monthly - Jan 2025,1,500.0,500.0,subscription,true,true +L7468,I7350,base_subscription,Starter Monthly - Feb 2025,1,500.0,500.0,subscription,true,true +L7469,I7351,base_subscription,Starter Monthly - Mar 2025,1,500.0,500.0,subscription,true,true +L7470,I7352,base_subscription,Starter Monthly - Apr 2025,1,500.0,500.0,subscription,true,true +L7471,I7353,base_subscription,Growth Monthly - May 2025,1,1350.0,1350.0,subscription,true,true +L7472,I7354,base_subscription,Growth Monthly - Jun 2025,1,1350.0,1350.0,subscription,true,true +L7473,I7355,base_subscription,Starter Monthly - Jan 2025,1,500.0,500.0,subscription,true,true +L7474,I7356,base_subscription,Starter Monthly - Feb 2025,1,500.0,500.0,subscription,true,true +L7475,I7357,base_subscription,Starter Monthly - Mar 2025,1,500.0,500.0,subscription,true,true +L7476,I7358,base_subscription,Starter Monthly - Apr 2025,1,500.0,500.0,subscription,true,true +L7477,I7359,base_subscription,Starter Monthly - May 2025,1,500.0,500.0,subscription,true,true +L7478,I7360,base_subscription,Starter Monthly - Jun 2025,1,500.0,500.0,subscription,true,true +L7479,I7361,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7480,I7362,base_subscription,Growth Monthly - Apr 2025,1,1500.0,1500.0,subscription,true,true +L7481,I7363,base_subscription,Growth Monthly - May 2025,1,1500.0,1500.0,subscription,true,true +L7482,I7364,base_subscription,Growth Monthly - Jun 2025,1,1500.0,1500.0,subscription,true,true +L7483,I7365,base_subscription,Growth Monthly - Jan 2025,1,1500.0,1500.0,subscription,true,true +L7484,I7366,base_subscription,Growth Monthly - Feb 2025,1,1500.0,1500.0,subscription,true,true +L7485,I7367,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7486,I7368,base_subscription,Growth Monthly - Apr 2025,1,1500.0,1500.0,subscription,true,true +L7487,I7369,base_subscription,Growth Monthly - May 2025,1,1500.0,1500.0,subscription,true,true +L7488,I7370,base_subscription,Growth Monthly - Jun 2025,1,1500.0,1500.0,subscription,true,true +L7489,I7371,base_subscription,Growth Monthly - Mar 2025,1,1425.0,1425.0,subscription,true,true +L7490,I7371,training_addon,One-time setup / training,1,300.0,300.0,services,false,false +L7491,I7372,base_subscription,Growth Monthly - Apr 2025,1,1425.0,1425.0,subscription,true,true +L7492,I7373,base_subscription,Growth Monthly - May 2025,1,1425.0,1425.0,subscription,true,true +L7493,I7374,base_subscription,Growth Monthly - Jun 2025,1,1425.0,1425.0,subscription,true,true +L7494,I7375,base_subscription,Enterprise Annual - Jan 2025,1,21600.0,21600.0,subscription,true,true +L7495,I7376,base_subscription,Growth Monthly - Jan 2025,1,1500.0,1500.0,subscription,true,true +L7496,I7377,base_subscription,Growth Monthly - Feb 2025,1,1500.0,1500.0,subscription,true,true +L7497,I7378,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7498,I7379,base_subscription,Growth Monthly - Apr 2025,1,1500.0,1500.0,subscription,true,true +L7499,I7380,base_subscription,Growth Monthly - May 2025,1,1500.0,1500.0,subscription,true,true +L7500,I7381,base_subscription,Growth Monthly - Jun 2025,1,1500.0,1500.0,subscription,true,true +L7501,I7382,base_subscription,Enterprise Monthly - Jan 2025,1,2600.0,2600.0,subscription,true,true +L7502,I7383,base_subscription,Enterprise Monthly - Feb 2025,1,2600.0,2600.0,subscription,true,true +L7503,I7384,base_subscription,Enterprise Monthly - Mar 2025,1,2600.0,2600.0,subscription,true,true +L7504,I7385,base_subscription,Enterprise Monthly - Apr 2025,1,2600.0,2600.0,subscription,true,true +L7505,I7386,base_subscription,Enterprise Monthly - May 2025,1,2600.0,2600.0,subscription,true,true +L7506,I7387,base_subscription,Enterprise Monthly - Jun 2025,1,2600.0,2600.0,subscription,true,true +L7507,I7388,base_subscription,Starter Monthly - Jan 2025,1,500.0,500.0,subscription,true,true +L7508,I7389,base_subscription,Starter Monthly - Feb 2025,1,500.0,500.0,subscription,true,true +L7509,I7390,base_subscription,Starter Monthly - Mar 2025,1,500.0,500.0,subscription,true,true +L7510,I7391,base_subscription,Starter Monthly - Apr 2025,1,500.0,500.0,subscription,true,true +L7511,I7392,base_subscription,Starter Monthly - Feb 2025,1,500.0,500.0,subscription,true,true +L7512,I7393,base_subscription,Starter Monthly - Mar 2025,1,500.0,500.0,subscription,true,true +L7513,I7394,base_subscription,Growth Monthly - Apr 2025,1,1200.0,1200.0,subscription,true,true +L7514,I7395,base_subscription,Growth Monthly - May 2025,1,1200.0,1200.0,subscription,true,true +L7515,I7396,base_subscription,Growth Monthly - Jun 2025,1,1200.0,1200.0,subscription,true,true +L7516,I7397,base_subscription,Enterprise Monthly - Jan 2025,1,2600.0,2600.0,subscription,true,true +L7517,I7398,base_subscription,Enterprise Monthly - Feb 2025,1,2600.0,2600.0,subscription,true,true +L7518,I7399,base_subscription,Enterprise Monthly - Mar 2025,1,2600.0,2600.0,subscription,true,true +L7519,I7400,base_subscription,Enterprise Monthly - Apr 2025,1,2600.0,2600.0,subscription,true,true +L7520,I7401,base_subscription,Enterprise Monthly - May 2025,1,2600.0,2600.0,subscription,true,true +L7521,I7402,base_subscription,Enterprise Monthly - Jun 2025,1,2600.0,2600.0,subscription,true,true +L7522,I7403,base_subscription,Starter Monthly - Jan 2025,1,500.0,500.0,subscription,true,true +L7523,I7404,base_subscription,Starter Monthly - Feb 2025,1,500.0,500.0,subscription,true,true +L7524,I7405,base_subscription,Starter Monthly - Mar 2025,1,500.0,500.0,subscription,true,true +L7525,I7406,base_subscription,Starter Monthly - Apr 2025,1,500.0,500.0,subscription,true,true +L7526,I7407,base_subscription,Starter Monthly - May 2025,1,500.0,500.0,subscription,true,true +L7527,I7408,base_subscription,Starter Monthly - Jun 2025,1,500.0,500.0,subscription,true,true +L7528,I7409,base_subscription,Starter Monthly - Mar 2025,1,500.0,500.0,subscription,true,true +L7529,I7410,base_subscription,Starter Monthly - Apr 2025,1,500.0,500.0,subscription,true,true +L7530,I7411,base_subscription,Starter Monthly - May 2025,1,500.0,500.0,subscription,true,true +L7531,I7412,base_subscription,Starter Monthly - Jun 2025,1,500.0,500.0,subscription,true,true +L7532,I7413,base_subscription,Growth Monthly - Jan 2025,1,1500.0,1500.0,subscription,true,true +L7533,I7414,base_subscription,Growth Monthly - Feb 2025,1,1500.0,1500.0,subscription,true,true +L7534,I7415,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7535,I7416,base_subscription,Growth Monthly - Apr 2025,1,1500.0,1500.0,subscription,true,true +L7536,I7417,base_subscription,Starter Monthly - Mar 2025,1,500.0,500.0,subscription,true,true +L7537,I7418,base_subscription,Starter Monthly - Apr 2025,1,500.0,500.0,subscription,true,true +L7538,I7419,base_subscription,Starter Monthly - May 2025,1,500.0,500.0,subscription,true,true +L7539,I7420,base_subscription,Starter Monthly - Jun 2025,1,500.0,500.0,subscription,true,true +L7540,I7421,base_subscription,Growth Monthly - Jan 2025,1,1500.0,1500.0,subscription,true,true +L7541,I7422,base_subscription,Growth Monthly - Feb 2025,1,1500.0,1500.0,subscription,true,true +L7542,I7423,base_subscription,Growth Monthly - Mar 2025,1,1500.0,1500.0,subscription,true,true +L7543,I7424,base_subscription,Growth Monthly - Apr 2025,1,1500.0,1500.0,subscription,true,true +L7544,I7425,base_subscription,Growth Monthly - May 2025,1,1500.0,1500.0,subscription,true,true +L7545,I7426,base_subscription,Growth Monthly - Jun 2025,1,1500.0,1500.0,subscription,true,true +L7546,I7427,base_subscription,Starter Monthly - Jan 2025,1,500.0,500.0,subscription,true,true +L7547,I7428,base_subscription,Starter Monthly - Feb 2025,1,500.0,500.0,subscription,true,true +L7548,I7429,base_subscription,Starter Monthly - Mar 2025,1,500.0,500.0,subscription,true,true +L7549,I7430,base_subscription,Starter Monthly - Apr 2025,1,500.0,500.0,subscription,true,true +L7550,I7431,base_subscription,Starter Monthly - May 2025,1,500.0,500.0,subscription,true,true +L7551,I7432,base_subscription,Starter Monthly - Jun 2025,1,500.0,500.0,subscription,true,true diff --git a/tasks/helixops_saas013/setup.sh b/tasks/helixops_saas013/setup.sh new file mode 100755 index 00000000..b13f302d --- /dev/null +++ b/tasks/helixops_saas013/setup.sh @@ -0,0 +1,9 @@ +#!/bin/bash +python3 -c " +import duckdb +conn = duckdb.connect('/app/helixops_saas.duckdb') +conn.execute(\"UPDATE raw_invoice_line_items SET recurring_hint = 'Y' WHERE line_id IN ('L7102', 'L7220', 'L7342')\") +conn.close() +print('Updated recurring_hint for onboarding line items L7102, L7220, L7342') +" +dbt run diff --git a/tasks/helixops_saas013/solution.sh b/tasks/helixops_saas013/solution.sh new file mode 100755 index 00000000..a917f7fd --- /dev/null +++ b/tasks/helixops_saas013/solution.sh @@ -0,0 +1,3 @@ +#!/bin/bash +patch -p1 < /sage/solutions/changes.patch +dbt run --select stg_invoice_line_items+ diff --git a/tasks/helixops_saas013/solutions/changes.patch b/tasks/helixops_saas013/solutions/changes.patch new file mode 100644 index 00000000..99b9b4ea --- /dev/null +++ b/tasks/helixops_saas013/solutions/changes.patch @@ -0,0 +1,10 @@ +--- a/models/staging/stg_invoice_line_items.sql ++++ b/models/staging/stg_invoice_line_items.sql +@@ -12,6 +12,7 @@ + lower(trim(product_family_guess)) as product_family, + coalesce({{ bool_from_text('recurring_hint') }}, false) as is_recurring_hint, + case ++ when lower(trim(li_typ_cd)) = 'onboarding_addon' then false + when lower(trim(li_typ_cd)) = 'base_subscription' then true + else coalesce({{ bool_from_text('recurring_hint') }}, false) + end as is_recurring_line diff --git a/tasks/helixops_saas013/task.yaml b/tasks/helixops_saas013/task.yaml new file mode 100644 index 00000000..91aa530b --- /dev/null +++ b/tasks/helixops_saas013/task.yaml @@ -0,0 +1,28 @@ +task_id: helixops_saas013 +status: ready +description: Fix recurring revenue logic — overriding a misleading raw data flag for onboarding line items requires changing the staging CASE expression +prompts: + - key: base + prompt: |- + Helio Systems' onboarding fees are being treated as recurring revenue, please fix it. +author_name: joel +author_email: joel@example.com +difficulty: medium +tags: + - dbt + - helixops_saas +test_setup: |- + dbt run --select stg_invoice_line_items int_invoice_finance fct_monthly_revenue +variants: +- db_type: duckdb + db_name: helixops_saas + project_type: dbt + project_name: helixops_saas +- db_type: duckdb + db_name: helixops_saas + project_type: dbt-fusion + project_name: helixops_saas +solution_seeds: + - table_name: stg_invoice_line_items + - table_name: int_invoice_finance + - table_name: fct_monthly_revenue diff --git a/tasks/helixops_saas013/tests/AUTO_fct_monthly_revenue_equality.sql b/tasks/helixops_saas013/tests/AUTO_fct_monthly_revenue_equality.sql new file mode 100644 index 00000000..214a2965 --- /dev/null +++ b/tasks/helixops_saas013/tests/AUTO_fct_monthly_revenue_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'fct_monthly_revenue' %} +{% set answer_keys = ['solution__fct_monthly_revenue'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__fct_monthly_revenue') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas013/tests/AUTO_fct_monthly_revenue_existence.sql b/tasks/helixops_saas013/tests/AUTO_fct_monthly_revenue_existence.sql new file mode 100644 index 00000000..bfde7372 --- /dev/null +++ b/tasks/helixops_saas013/tests/AUTO_fct_monthly_revenue_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'fct_monthly_revenue' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas013/tests/AUTO_int_invoice_finance_equality.sql b/tasks/helixops_saas013/tests/AUTO_int_invoice_finance_equality.sql new file mode 100644 index 00000000..0815452b --- /dev/null +++ b/tasks/helixops_saas013/tests/AUTO_int_invoice_finance_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'int_invoice_finance' %} +{% set answer_keys = ['solution__int_invoice_finance'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__int_invoice_finance') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas013/tests/AUTO_int_invoice_finance_existence.sql b/tasks/helixops_saas013/tests/AUTO_int_invoice_finance_existence.sql new file mode 100644 index 00000000..e88003c5 --- /dev/null +++ b/tasks/helixops_saas013/tests/AUTO_int_invoice_finance_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'int_invoice_finance' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas013/tests/AUTO_stg_invoice_line_items_equality.sql b/tasks/helixops_saas013/tests/AUTO_stg_invoice_line_items_equality.sql new file mode 100644 index 00000000..f9a6bae5 --- /dev/null +++ b/tasks/helixops_saas013/tests/AUTO_stg_invoice_line_items_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'stg_invoice_line_items' %} +{% set answer_keys = ['solution__stg_invoice_line_items'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__stg_invoice_line_items') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas013/tests/AUTO_stg_invoice_line_items_existence.sql b/tasks/helixops_saas013/tests/AUTO_stg_invoice_line_items_existence.sql new file mode 100644 index 00000000..adc4eaed --- /dev/null +++ b/tasks/helixops_saas013/tests/AUTO_stg_invoice_line_items_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'stg_invoice_line_items' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas015/macros/ade_bench_equality_test.sql b/tasks/helixops_saas015/macros/ade_bench_equality_test.sql new file mode 100644 index 00000000..510c6037 --- /dev/null +++ b/tasks/helixops_saas015/macros/ade_bench_equality_test.sql @@ -0,0 +1,78 @@ +{% macro ade_bench_equality_test(table_name, answer_keys, cols_to_exclude=[]) %} + {% if not execute %} + select 1 where 1=0 + {% else %} + {% set ns = namespace(matched=false) %} + {% set actual_rel = load_relation(ref(table_name)) %} + + {% if actual_rel is not none %} + {% set actual_columns = adapter.get_columns_in_relation(actual_rel) %} + {% set exclude_lower = cols_to_exclude | map('lower') | list %} + + {%- set actual_col_names = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do actual_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set actual_set = actual_col_names | sort %} + + {% for answer_key in answer_keys %} + {% if not ns.matched %} + {% set seed_rel = load_relation(ref(answer_key)) %} + {% if seed_rel is not none %} + {% set seed_columns = adapter.get_columns_in_relation(seed_rel) %} + + {%- set seed_col_names = [] -%} + {%- for col in seed_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do seed_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set seed_set = seed_col_names | sort %} + + {% if actual_set == seed_set %} + {%- set compare_cols = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do compare_cols.append(col.quoted) -%} + {%- endif -%} + {%- endfor -%} + {% set compare_cols_csv = compare_cols | join(', ') %} + + {% set query %} + with a_minus_b as ( + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + except + select {{ compare_cols_csv }} from {{ ref(table_name) }} + ), + b_minus_a as ( + select {{ compare_cols_csv }} from {{ ref(table_name) }} + except + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + ), + unioned as ( + select * from a_minus_b + union all + select * from b_minus_a + ) + select count(*) as diff_count from unioned + {% endset %} + + {% set result = run_query(query) %} + {% if result.rows[0][0] == 0 %} + {% set ns.matched = true %} + {% endif %} + {% endif %} + {% endif %} + {% endif %} + {% endfor %} + {% endif %} + + {% if ns.matched %} + select 1 where 1=0 + {% else %} + select 1 + {% endif %} + {% endif %} +{% endmacro %} diff --git a/tasks/helixops_saas015/seeds/_no-op.txt b/tasks/helixops_saas015/seeds/_no-op.txt new file mode 100644 index 00000000..4ba29c82 --- /dev/null +++ b/tasks/helixops_saas015/seeds/_no-op.txt @@ -0,0 +1,34 @@ + + +seeds: + helixops_saas: + solution__fct_support_tickets: + +column_types: + ticket_id: varchar + account_id: varchar + account_name: varchar + segment: varchar + region: varchar + billing_country: varchar + plan_name: varchar + plan_family: varchar + support_tier: varchar + workspace_id: varchar + workspace_name: varchar + environment_tier: varchar + opened_by_user_id: varchar + opened_at: timestamp + first_response_at: timestamp + resolved_at: timestamp + priority: varchar + category: varchar + ticket_status: varchar + csat_score: integer + first_response_minutes: bigint + resolution_minutes: bigint + response_sla_minutes: integer + met_response_sla: boolean + is_open_ticket: boolean + ticket_age_days: bigint + opened_month: date + resolved_month: date diff --git a/tasks/helixops_saas015/seeds/sla_response_targets.csv b/tasks/helixops_saas015/seeds/sla_response_targets.csv new file mode 100644 index 00000000..aecddb65 --- /dev/null +++ b/tasks/helixops_saas015/seeds/sla_response_targets.csv @@ -0,0 +1,9 @@ +priority,response_sla_minutes,valid_from,valid_to +urgent,30,2000-01-01 00:00:00,2025-06-16 08:00:00 +high,60,2000-01-01 00:00:00,2025-06-16 08:00:00 +medium,240,2000-01-01 00:00:00,2025-06-16 08:00:00 +low,1440,2000-01-01 00:00:00,2025-06-16 08:00:00 +urgent,20,2025-06-16 08:00:00,9999-12-31 00:00:00 +high,90,2025-06-16 08:00:00,9999-12-31 00:00:00 +medium,300,2025-06-16 08:00:00,9999-12-31 00:00:00 +low,1500,2025-06-16 08:00:00,9999-12-31 00:00:00 diff --git a/tasks/helixops_saas015/seeds/solution__fct_support_tickets.csv b/tasks/helixops_saas015/seeds/solution__fct_support_tickets.csv new file mode 100644 index 00000000..7797e45e --- /dev/null +++ b/tasks/helixops_saas015/seeds/solution__fct_support_tickets.csv @@ -0,0 +1,321 @@ +ticket_id,account_id,account_name,segment,region,billing_country,plan_name,plan_family,support_tier,workspace_id,workspace_name,environment_tier,opened_by_user_id,opened_at,first_response_at,resolved_at,priority,category,ticket_status,csat_score,first_response_minutes,resolution_minutes,response_sla_minutes,met_response_sla,is_open_ticket,ticket_age_days,opened_month,resolved_month +T10013,A1004,Silver Solutions,enterprise,NA,US,Starter Monthly,starter,standard,W2011,silver-ops,sandbox,U3051,2025-06-18 04:56:20,2025-06-18 06:09:20,2025-06-18 14:53:20,medium,cancellation,resolved,1,73,597,300,true,false,0,2025-06-01,2025-06-01 +T10015,A1004,Silver Solutions,enterprise,NA,US,Starter Monthly,starter,standard,W2010,silver-core,prod,U3048,2025-06-23 11:25:02,2025-06-23 11:50:02,2025-06-24 09:54:02,high,api_limit,resolved,4,25,1349,90,true,false,1,2025-06-01,2025-06-01 +T10016,A1004,Silver Solutions,enterprise,NA,US,Starter Monthly,starter,standard,W2010,silver-core,prod,U3038,2025-06-25 11:34:31,2025-06-25 18:48:31,2025-06-26 15:51:31,low,data_freshness,resolved,5,434,1697,1500,true,false,1,2025-06-01,2025-06-01 +T10023,A1005,Pacific Labs,enterprise,EMEA,UK,Enterprise Annual,enterprise,premium,W2013,pacific-ops,prod,U3058,2025-06-21 06:12:16,2025-06-21 11:36:16,2025-06-22 20:33:16,low,sso,resolved,4,324,2301,1500,true,false,1,2025-06-01,2025-06-01 +T10035,A1008,Pacific Works,mid_market,EMEA,UK,Enterprise Monthly,enterprise,premium,W2019,pacific-ops,prod,U3082,2025-06-16 17:07:42,2025-06-16 17:51:42,2025-06-17 16:17:42,high,data_freshness,resolved,5,44,1390,90,true,false,1,2025-06-01,2025-06-01 +T10036,A1009,Summit Group,mid_market,NA,US,Enterprise Monthly,enterprise,premium,W2021,summit-core,prod,U3094,2025-06-21 06:57:59,2025-06-21 07:27:59,2025-06-21 15:19:59,high,api_limit,resolved,4,30,502,90,true,false,0,2025-06-01,2025-06-01 +T10044,A1012,Cedar Ventures,smb,APAC,JP,Starter Monthly,starter,standard,W2025,cedar-core,prod,U3118,2025-06-17 05:30:52,2025-06-17 05:42:52,2025-06-17 23:29:52,urgent,api_limit,resolved,5,12,1079,20,true,false,0,2025-06-01,2025-06-01 +T10075,A1021,Apex Logistics,smb,NA,US,Starter Monthly,starter,standard,W2044,apex-core,prod,U3196,2025-06-20 04:03:33,2025-06-20 04:24:33,2025-06-22 06:23:33,high,dashboard_filter,resolved,3,21,3020,90,true,false,2,2025-06-01,2025-06-01 +T10102,A1032,Vertex Works,mid_market,EMEA,DE,Growth Monthly,growth,priority,W2064,vertex-core,prod,U3287,2025-06-25 07:28:37,2025-06-25 10:31:37,2025-06-26 00:40:37,medium,cancellation,resolved,1,183,1032,300,true,false,1,2025-06-01,2025-06-01 +T10118,A1037,Lighthouse Network,enterprise,EMEA,UK,Enterprise Monthly,enterprise,premium,W2076,lighthouse-ops,prod,U3341,2025-06-24 05:04:42,2025-06-24 05:24:42,2025-06-24 09:52:42,high,cancellation,resolved,4,20,288,90,true,false,0,2025-06-01,2025-06-01 +T10132,A1041,Cedar Logistics,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2085,cedar-core,prod,U3366,2025-06-25 14:25:33,2025-06-26 01:42:33,2025-06-26 21:47:33,low,performance,resolved,4,677,1882,1500,true,false,1,2025-06-01,2025-06-01 +T10138,A1042,Northwind Labs,mid_market,APAC,AU,Growth Monthly,growth,priority,W2089,northwind-ops,sandbox,U3381,2025-06-22 22:22:58,2025-06-22 22:54:58,2025-06-24 02:50:58,high,dashboard_filter,resolved,5,32,1708,90,true,false,2,2025-06-01,2025-06-01 +T10142,A1043,Lighthouse Works,enterprise,APAC,SG,Enterprise Monthly,enterprise,premium,W2092,lighthouse-ops,sandbox,U3398,2025-06-19 16:19:48,2025-06-19 23:05:48,2025-06-21 18:35:48,low,permissions,resolved,3,406,3016,1500,true,false,2,2025-06-01,2025-06-01 +T10193,A1056,Delta Global,mid_market,APAC,AU,Growth Monthly,growth,priority,W2123,delta-core,prod,U3552,2025-06-18 04:05:18,2025-06-18 04:47:18,2025-06-20 18:50:18,high,model_error,resolved,4,42,3765,90,true,false,2,2025-06-01,2025-06-01 +T10215,A1061,Atlas Capital,enterprise,EMEA,FR,Enterprise Monthly,enterprise,premium,W2137,atlas-ops,sandbox,U3602,2025-06-18 07:24:33,2025-06-18 08:38:33,,medium,data_freshness,in_progress,,74,,300,true,true,279,2025-06-01, +T10283,A1080,Beacon Global,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2182,beacon-core,prod,U3832,2025-06-22 16:11:06,2025-06-22 19:39:06,2025-06-24 02:22:06,medium,api_limit,resolved,5,208,2051,300,true,false,2,2025-06-01,2025-06-01 +T10287,A1081,River Collective,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2186,river-finance,prod,U3840,2025-06-22 02:52:23,2025-06-22 04:17:23,,medium,api_limit,in_progress,,85,,300,true,true,275,2025-06-01, +T10300,A1084,Silver Foods,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2190,silver-core,prod,U3867,2025-06-18 09:55:49,2025-06-18 10:33:49,2025-06-19 09:35:49,high,data_freshness,resolved,2,38,1420,90,true,false,1,2025-06-01,2025-06-01 +T10001,A1001,Helio Systems,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2001,helio-core,prod,U3008,2025-04-16 18:58:46,2025-04-16 19:47:46,2025-04-19 01:12:46,high,data_freshness,resolved,5,49,3254,60,true,false,3,2025-04-01,2025-04-01 +T10002,A1001,Helio Systems,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2003,helio-finance,prod,U3008,2025-05-09 04:23:39,2025-05-09 15:00:39,2025-05-11 09:31:39,low,data_freshness,resolved,5,637,3188,1440,true,false,2,2025-05-01,2025-05-01 +T10004,A1001,Helio Systems,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2001,helio-core,prod,U3006,2025-04-29 09:21:34,2025-04-29 11:25:34,2025-04-29 19:35:34,medium,dashboard_filter,resolved,4,124,614,240,true,false,0,2025-04-01,2025-04-01 +T10005,A1002,Summit Foods,mid_market,NA,US,Growth Monthly,growth,priority,W2006,summit-finance,prod,U3016,2025-04-05 05:12:38,2025-04-05 15:20:38,2025-04-08 14:10:38,low,sso,resolved,5,608,4858,1440,true,false,3,2025-04-01,2025-04-01 +T10006,A1002,Summit Foods,mid_market,NA,US,Growth Monthly,growth,priority,W2005,summit-ops,sandbox,U3010,2025-04-13 06:17:16,2025-04-13 15:15:16,2025-04-15 15:06:16,low,permissions,resolved,4,538,3409,1440,true,false,2,2025-04-01,2025-04-01 +T10007,A1002,Summit Foods,mid_market,NA,US,Growth Monthly,growth,priority,W2004,summit-core,prod,U3011,2025-06-15 07:26:52,2025-06-15 17:59:52,2025-06-17 09:12:52,low,performance,resolved,5,633,2986,1440,true,false,2,2025-06-01,2025-06-01 +T10010,A1003,Nova Ventures,enterprise,NA,US,Enterprise Annual,enterprise,premium,W2008,nova-ops,sandbox,U3030,2025-05-02 11:15:13,2025-05-02 12:38:13,2025-05-05 02:50:13,medium,cancellation,resolved,4,83,3815,240,true,false,3,2025-05-01,2025-05-01 +T10011,A1003,Nova Ventures,enterprise,NA,US,Enterprise Annual,enterprise,premium,W2009,nova-finance,prod,U3030,2025-04-14 05:52:45,2025-04-14 07:08:45,2025-04-14 16:01:45,medium,sso,resolved,5,76,609,240,true,false,0,2025-04-01,2025-04-01 +T10012,A1003,Nova Ventures,enterprise,NA,US,Enterprise Annual,enterprise,premium,W2007,nova-core,prod,U3037,2025-05-03 01:04:17,2025-05-03 08:16:17,2025-05-04 20:11:17,low,model_error,resolved,5,432,2587,1440,true,false,1,2025-05-01,2025-05-01 +T10014,A1004,Silver Solutions,enterprise,NA,US,Starter Monthly,starter,standard,W2011,silver-ops,sandbox,U3045,2025-05-22 01:22:11,2025-05-22 02:54:11,2025-05-23 15:36:11,medium,performance,resolved,4,92,2294,240,true,false,1,2025-05-01,2025-05-01 +T10017,A1004,Silver Solutions,enterprise,NA,US,Starter Monthly,starter,standard,W2011,silver-ops,sandbox,U3041,2025-05-02 05:23:07,2025-05-02 05:55:07,2025-05-04 06:49:07,high,performance,resolved,4,32,2966,60,true,false,2,2025-05-01,2025-05-01 +T10018,A1004,Silver Solutions,enterprise,NA,US,Starter Monthly,starter,standard,W2010,silver-core,prod,U3038,2025-05-25 23:13:07,2025-05-26 06:35:07,2025-05-28 10:57:07,low,performance,resolved,3,442,3584,1440,true,false,3,2025-05-01,2025-05-01 +T10020,A1005,Pacific Labs,enterprise,EMEA,UK,Enterprise Annual,enterprise,premium,W2012,pacific-core,prod,U3055,2025-05-12 19:50:29,2025-05-13 00:59:29,2025-05-13 03:55:29,low,model_error,resolved,4,309,485,1440,true,false,1,2025-05-01,2025-05-01 +T10021,A1005,Pacific Labs,enterprise,EMEA,UK,Enterprise Annual,enterprise,premium,W2014,pacific-finance,prod,U3064,2025-06-15 09:36:31,2025-06-15 14:57:31,2025-06-16 01:37:31,low,permissions,resolved,5,321,961,1440,true,false,1,2025-06-01,2025-06-01 +T10022,A1005,Pacific Labs,enterprise,EMEA,UK,Enterprise Annual,enterprise,premium,W2012,pacific-core,prod,U3066,2025-04-04 14:54:21,2025-04-04 17:09:21,2025-04-07 12:18:21,low,sso,resolved,2,135,4164,1440,true,false,3,2025-04-01,2025-04-01 +T10024,A1005,Pacific Labs,enterprise,EMEA,UK,Enterprise Annual,enterprise,premium,W2014,pacific-finance,prod,U3064,2025-04-15 05:39:14,2025-04-15 05:49:14,2025-04-16 05:56:14,urgent,api_limit,resolved,4,10,1457,30,true,false,1,2025-04-01,2025-04-01 +T10025,A1005,Pacific Labs,enterprise,EMEA,UK,Enterprise Annual,enterprise,premium,W2012,pacific-core,prod,U3052,2025-04-02 21:48:17,2025-04-02 22:04:17,,urgent,dashboard_filter,in_progress,,16,,30,true,true,356,2025-04-01, +T10026,A1005,Pacific Labs,enterprise,EMEA,UK,Enterprise Annual,enterprise,premium,W2012,pacific-core,prod,U3061,2025-06-07 05:34:45,2025-06-07 06:56:45,2025-06-07 16:32:45,medium,sso,resolved,4,82,658,240,true,false,0,2025-06-01,2025-06-01 +T10027,A1006,Helio Works,mid_market,EMEA,UK,Growth Monthly,growth,priority,W2016,helio-ops,prod,U3070,2025-06-12 12:52:28,2025-06-12 16:11:28,2025-06-12 17:37:28,medium,performance,resolved,5,199,285,240,true,false,0,2025-06-01,2025-06-01 +T10028,A1006,Helio Works,mid_market,EMEA,UK,Growth Monthly,growth,priority,W2016,helio-ops,prod,U3067,2025-04-01 23:05:01,2025-04-01 23:35:01,2025-04-02 03:24:01,high,performance,resolved,3,30,259,60,true,false,1,2025-04-01,2025-04-01 +T10029,A1006,Helio Works,mid_market,EMEA,UK,Growth Monthly,growth,priority,W2015,helio-core,prod,U3072,2025-04-12 15:58:29,2025-04-12 16:43:29,2025-04-12 23:25:29,high,data_freshness,resolved,4,45,447,60,true,false,0,2025-04-01,2025-04-01 +T10030,A1007,Silver Systems,smb,EMEA,FR,Starter Monthly,starter,standard,W2017,silver-core,prod,U3075,2025-06-11 14:12:02,2025-06-12 03:37:02,2025-06-13 07:22:02,low,billing,resolved,5,805,2470,1440,true,false,2,2025-06-01,2025-06-01 +T10031,A1007,Silver Systems,smb,EMEA,FR,Starter Monthly,starter,standard,W2017,silver-core,prod,U3077,2025-05-13 16:48:58,2025-05-13 22:47:58,2025-05-14 05:11:58,low,api_limit,resolved,5,359,743,1440,true,false,1,2025-05-01,2025-05-01 +T10032,A1007,Silver Systems,smb,EMEA,FR,Starter Monthly,starter,standard,W2017,silver-core,prod,U3074,2025-04-09 06:03:21,2025-04-09 07:40:21,2025-04-11 18:46:21,medium,api_limit,resolved,4,97,3643,240,true,false,2,2025-04-01,2025-04-01 +T10034,A1008,Pacific Works,mid_market,EMEA,UK,Enterprise Monthly,enterprise,premium,W2019,pacific-ops,prod,U3080,2025-04-11 20:56:04,2025-04-12 11:14:04,2025-04-15 06:24:04,low,dashboard_filter,resolved,2,858,4888,1440,true,false,4,2025-04-01,2025-04-01 +T10037,A1009,Summit Group,mid_market,NA,US,Enterprise Monthly,enterprise,premium,W2022,summit-ops,prod,U3089,2025-04-17 21:35:42,2025-04-17 21:45:42,2025-04-18 17:38:42,urgent,sso,resolved,4,10,1203,30,true,false,1,2025-04-01,2025-04-01 +T10038,A1009,Summit Group,mid_market,NA,US,Enterprise Monthly,enterprise,premium,W2021,summit-core,prod,U3092,2025-04-12 12:49:41,2025-04-12 13:32:41,2025-04-14 10:16:41,urgent,permissions,resolved,4,43,2727,30,false,false,2,2025-04-01,2025-04-01 +T10039,A1010,Orchid Foods,smb,NA,CA,Starter Monthly,starter,standard,W2023,orchid-core,prod,U3104,2025-04-01 13:32:52,2025-04-01 13:55:52,2025-04-02 08:42:52,urgent,sso,resolved,2,23,1150,30,true,false,1,2025-04-01,2025-04-01 +T10040,A1010,Orchid Foods,smb,NA,CA,Starter Monthly,starter,standard,W2023,orchid-core,prod,U3109,2025-05-12 15:02:51,2025-05-12 15:51:51,2025-05-15 07:57:51,high,api_limit,resolved,4,49,3895,60,true,false,3,2025-05-01,2025-05-01 +T10041,A1011,Vertex Energy,smb,NA,CA,Growth Monthly,growth,priority,W2024,vertex-core,prod,U3114,2025-04-02 09:20:47,2025-04-02 18:09:47,2025-04-04 12:00:47,low,data_freshness,resolved,5,529,3040,1440,true,false,2,2025-04-01,2025-04-01 +T10042,A1011,Vertex Energy,smb,NA,CA,Growth Monthly,growth,priority,W2024,vertex-core,prod,U3113,2025-05-09 08:02:44,2025-05-09 18:50:44,,low,permissions,in_progress,,648,,1440,true,true,319,2025-05-01, +T10043,A1011,Vertex Energy,smb,NA,CA,Growth Monthly,growth,priority,W2024,vertex-core,prod,U3115,2025-04-16 13:02:29,2025-04-16 16:50:29,2025-04-18 12:24:29,medium,data_freshness,resolved,5,228,2842,240,true,false,2,2025-04-01,2025-04-01 +T10045,A1012,Cedar Ventures,smb,APAC,JP,Starter Monthly,starter,standard,W2026,cedar-ops,sandbox,U3122,2025-04-26 06:55:37,2025-04-26 08:05:37,2025-04-27 21:13:37,high,model_error,resolved,5,70,2298,60,false,false,1,2025-04-01,2025-04-01 +T10046,A1012,Cedar Ventures,smb,APAC,JP,Starter Monthly,starter,standard,W2026,cedar-ops,sandbox,U3121,2025-04-12 19:02:54,2025-04-12 21:34:54,2025-04-15 12:02:54,medium,dashboard_filter,resolved,3,152,3900,240,true,false,3,2025-04-01,2025-04-01 +T10047,A1013,River Foods,mid_market,NA,US,Growth Monthly,growth,priority,W2029,river-finance,prod,U3128,2025-05-27 20:11:21,2025-05-28 08:21:21,2025-05-31 00:44:21,low,model_error,resolved,5,730,4593,1440,true,false,4,2025-05-01,2025-05-01 +T10048,A1013,River Foods,mid_market,NA,US,Growth Monthly,growth,priority,W2027,river-core,prod,U3129,2025-05-16 19:32:36,2025-05-16 20:08:36,2025-05-19 07:19:36,urgent,data_freshness,resolved,5,36,3587,30,false,false,3,2025-05-01,2025-05-01 +T10049,A1013,River Foods,mid_market,NA,US,Growth Monthly,growth,priority,W2029,river-finance,prod,U3128,2025-04-29 10:39:24,2025-04-29 11:35:24,2025-05-01 04:07:24,high,model_error,resolved,5,56,2488,60,true,false,2,2025-04-01,2025-05-01 +T10050,A1014,Evergreen Global,enterprise,APAC,SG,Growth Monthly,growth,priority,W2030,evergreen-core,prod,U3136,2025-06-11 03:56:59,2025-06-11 06:04:59,2025-06-11 10:52:59,medium,performance,resolved,3,128,416,240,true,false,0,2025-06-01,2025-06-01 +T10051,A1014,Evergreen Global,enterprise,APAC,SG,Growth Monthly,growth,priority,W2030,evergreen-core,prod,U3142,2025-05-11 16:41:25,2025-05-11 16:57:25,,high,api_limit,in_progress,,16,,60,true,true,317,2025-05-01, +T10052,A1014,Evergreen Global,enterprise,APAC,SG,Growth Monthly,growth,priority,W2030,evergreen-core,prod,U3147,2025-05-25 00:53:25,2025-05-25 01:27:25,2025-05-26 07:48:25,high,performance,resolved,3,34,1855,60,true,false,1,2025-05-01,2025-05-01 +T10053,A1014,Evergreen Global,enterprise,APAC,SG,Growth Monthly,growth,priority,W2030,evergreen-core,prod,U3137,2025-04-22 12:49:22,2025-04-22 14:02:22,2025-04-23 09:07:22,medium,permissions,resolved,5,73,1218,240,true,false,1,2025-04-01,2025-04-01 +T10055,A1014,Evergreen Global,enterprise,APAC,SG,Growth Monthly,growth,priority,W2030,evergreen-core,prod,U3147,2025-04-01 09:41:14,2025-04-01 10:07:14,2025-04-03 17:16:14,high,data_freshness,resolved,3,26,3335,60,true,false,2,2025-04-01,2025-04-01 +T10056,A1015,Delta Network,smb,NA,US,Growth Monthly,growth,priority,W2032,delta-ops,sandbox,U3149,2025-04-02 02:42:32,2025-04-02 03:04:32,2025-04-03 22:29:32,urgent,api_limit,resolved,5,22,2627,30,true,false,1,2025-04-01,2025-04-01 +T10057,A1015,Delta Network,smb,NA,US,Growth Monthly,growth,priority,W2032,delta-ops,sandbox,U3150,2025-06-15 06:58:09,2025-06-15 07:06:09,2025-06-16 13:01:09,urgent,api_limit,resolved,3,8,1803,30,true,false,1,2025-06-01,2025-06-01 +T10058,A1015,Delta Network,smb,NA,US,Growth Monthly,growth,priority,W2031,delta-core,prod,U3150,2025-04-08 10:49:31,2025-04-08 13:19:31,2025-04-11 05:29:31,medium,permissions,resolved,5,150,4000,240,true,false,3,2025-04-01,2025-04-01 +T10059,A1015,Delta Network,smb,NA,US,Growth Monthly,growth,priority,W2031,delta-core,prod,U3149,2025-04-20 22:40:37,2025-04-21 02:01:37,2025-04-21 06:06:37,medium,dashboard_filter,resolved,4,201,446,240,true,false,1,2025-04-01,2025-04-01 +T10060,A1016,BluePeak Capital,enterprise,EMEA,DE,Enterprise Annual,enterprise,premium,W2035,bluepeak-finance,prod,U3153,2025-04-05 01:38:50,2025-04-05 06:27:50,2025-04-05 20:04:50,low,data_freshness,resolved,3,289,1106,1440,true,false,0,2025-04-01,2025-04-01 +T10061,A1016,BluePeak Capital,enterprise,EMEA,DE,Enterprise Annual,enterprise,premium,W2033,bluepeak-core,prod,U3152,2025-04-14 20:13:20,2025-04-14 21:24:20,2025-04-17 01:36:20,medium,model_error,resolved,4,71,3203,240,true,false,3,2025-04-01,2025-04-01 +T10062,A1016,BluePeak Capital,enterprise,EMEA,DE,Enterprise Annual,enterprise,premium,W2036,bluepeak-marketing,prod,U3157,2025-05-25 02:00:08,2025-05-25 08:19:08,2025-05-26 08:57:08,low,model_error,resolved,4,379,1857,1440,true,false,1,2025-05-01,2025-05-01 +T10063,A1016,BluePeak Capital,enterprise,EMEA,DE,Enterprise Annual,enterprise,premium,W2036,bluepeak-marketing,prod,U3165,2025-05-11 20:06:11,2025-05-11 20:15:11,2025-05-13 15:29:11,urgent,permissions,resolved,4,9,2603,30,true,false,2,2025-05-01,2025-05-01 +T10065,A1016,BluePeak Capital,enterprise,EMEA,DE,Enterprise Annual,enterprise,premium,W2035,bluepeak-finance,prod,U3156,2025-05-13 06:20:21,2025-05-13 07:45:21,2025-05-13 12:56:21,medium,api_limit,resolved,5,85,396,240,true,false,0,2025-05-01,2025-05-01 +T10066,A1017,Summit Analytics,mid_market,EMEA,UK,Growth Monthly,growth,priority,W2038,summit-ops,prod,U3173,2025-05-20 11:33:34,2025-05-20 12:04:34,2025-05-23 10:11:34,high,dashboard_filter,resolved,5,31,4238,60,true,false,3,2025-05-01,2025-05-01 +T10067,A1017,Summit Analytics,mid_market,EMEA,UK,Growth Monthly,growth,priority,W2038,summit-ops,prod,U3172,2025-06-07 09:02:39,2025-06-07 10:45:39,2025-06-09 06:09:39,medium,api_limit,resolved,5,103,2707,240,true,false,2,2025-06-01,2025-06-01 +T10068,A1017,Summit Analytics,mid_market,EMEA,UK,Growth Monthly,growth,priority,W2038,summit-ops,prod,U3174,2025-04-25 05:30:47,2025-04-25 07:56:47,2025-04-27 00:54:47,medium,performance,resolved,4,146,2604,240,true,false,2,2025-04-01,2025-04-01 +T10069,A1017,Summit Analytics,mid_market,EMEA,UK,Growth Monthly,growth,priority,W2038,summit-ops,prod,U3172,2025-06-03 14:32:57,2025-06-03 23:27:57,2025-06-05 00:49:57,low,performance,resolved,4,535,2057,1440,true,false,2,2025-06-01,2025-06-01 +T10070,A1018,Harbor Manufacturing,smb,EMEA,UK,Starter Monthly,starter,standard,W2040,harbor-ops,prod,U3179,2025-06-11 00:33:34,2025-06-11 04:32:34,2025-06-12 19:42:34,medium,performance,resolved,3,239,2589,240,true,false,1,2025-06-01,2025-06-01 +T10072,A1018,Harbor Manufacturing,smb,EMEA,UK,Starter Monthly,starter,standard,W2039,harbor-core,prod,U3181,2025-05-04 23:09:26,2025-05-05 02:44:26,2025-05-07 07:39:26,medium,permissions,resolved,4,215,3390,240,true,false,3,2025-05-01,2025-05-01 +T10073,A1019,Sierra Systems,smb,APAC,JP,Starter Monthly,starter,standard,W2041,sierra-core,prod,U3183,2025-05-26 08:04:59,2025-05-26 10:28:59,,medium,dashboard_filter,open,,144,,240,true,true,302,2025-05-01, +T10074,A1020,Pioneer Network,smb,EMEA,FR,Growth Monthly,growth,priority,W2043,pioneer-core,prod,U3187,2025-05-29 02:05:32,2025-05-29 02:52:32,2025-05-30 04:53:32,high,data_freshness,resolved,5,47,1608,60,true,false,1,2025-05-01,2025-05-01 +T10076,A1021,Apex Logistics,smb,NA,US,Starter Monthly,starter,standard,W2044,apex-core,prod,U3196,2025-04-04 10:26:51,2025-04-04 13:13:51,2025-04-05 03:11:51,medium,performance,resolved,5,167,1005,240,true,false,1,2025-04-01,2025-04-01 +T10077,A1022,Summit Collective,smb,APAC,NZ,Growth Monthly,growth,priority,W2045,summit-core,prod,U3200,2025-04-24 09:41:07,2025-04-24 12:01:07,2025-04-25 08:24:07,medium,api_limit,resolved,5,140,1363,240,true,false,1,2025-04-01,2025-04-01 +T10078,A1023,Atlas Systems,smb,NA,CA,Starter Monthly,starter,standard,W2047,atlas-core,prod,U3207,2025-05-12 23:02:13,2025-05-13 07:21:13,2025-05-15 02:52:13,low,data_freshness,resolved,4,499,3110,1440,true,false,3,2025-05-01,2025-05-01 +T10079,A1023,Atlas Systems,smb,NA,CA,Starter Monthly,starter,standard,W2047,atlas-core,prod,U3203,2025-05-15 18:18:28,2025-05-15 19:05:28,,high,sso,open,,47,,60,true,true,313,2025-05-01, +T10080,A1023,Atlas Systems,smb,NA,CA,Starter Monthly,starter,standard,W2047,atlas-core,prod,U3202,2025-05-05 07:07:39,2025-05-05 07:44:39,2025-05-06 22:46:39,high,performance,resolved,5,37,2379,60,true,false,1,2025-05-01,2025-05-01 +T10081,A1024,Sierra Group,smb,NA,CA,Starter Monthly,starter,standard,W2049,sierra-ops,prod,U3211,2025-05-30 15:31:41,2025-05-30 17:40:41,2025-05-31 22:15:41,medium,performance,resolved,5,129,1844,240,true,false,1,2025-05-01,2025-05-01 +T10082,A1025,Bright Capital,smb,EMEA,UK,Starter Monthly,starter,standard,W2050,bright-core,prod,U3219,2025-05-29 12:51:15,2025-05-29 13:35:15,2025-06-01 00:01:15,high,api_limit,resolved,5,44,3550,60,true,false,3,2025-05-01,2025-06-01 +T10083,A1025,Bright Capital,smb,EMEA,UK,Starter Monthly,starter,standard,W2050,bright-core,prod,U3219,2025-06-07 18:38:08,2025-06-07 20:40:08,2025-06-10 03:52:08,medium,sso,resolved,5,122,3434,240,true,false,3,2025-06-01,2025-06-01 +T10085,A1027,BluePeak Health,smb,APAC,SG,Starter Monthly,starter,standard,W2053,bluepeak-ops,prod,U3231,2025-05-21 14:59:51,2025-05-21 15:07:51,2025-05-24 01:30:51,urgent,data_freshness,resolved,4,8,3511,30,true,false,3,2025-05-01,2025-05-01 +T10086,A1028,Apex Energy,mid_market,APAC,SG,Enterprise Monthly,enterprise,premium,W2054,apex-core,prod,U3234,2025-05-02 09:17:06,2025-05-03 01:18:06,2025-05-04 21:40:06,low,permissions,resolved,4,961,3623,1440,true,false,2,2025-05-01,2025-05-01 +T10088,A1028,Apex Energy,mid_market,APAC,SG,Enterprise Monthly,enterprise,premium,W2054,apex-core,prod,U3243,2025-05-07 04:35:29,2025-05-07 15:02:29,2025-05-09 12:27:29,low,dashboard_filter,resolved,5,627,3352,1440,true,false,2,2025-05-01,2025-05-01 +T10089,A1029,Bright Labs,enterprise,APAC,NZ,Starter Monthly,starter,standard,W2056,bright-core,prod,U3257,2025-04-10 09:20:33,2025-04-10 11:07:33,2025-04-11 20:56:33,medium,api_limit,resolved,5,107,2136,240,true,false,1,2025-04-01,2025-04-01 +T10091,A1029,Bright Labs,enterprise,APAC,NZ,Starter Monthly,starter,standard,W2056,bright-core,prod,U3253,2025-06-16 07:30:22,2025-06-16 12:05:22,,low,permissions,in_progress,,275,,1440,true,true,281,2025-06-01, +T10092,A1029,Bright Labs,enterprise,APAC,NZ,Starter Monthly,starter,standard,W2056,bright-core,prod,U3247,2025-06-03 06:32:18,2025-06-03 08:36:18,,medium,sso,in_progress,,124,,240,true,true,294,2025-06-01, +T10093,A1029,Bright Labs,enterprise,APAC,NZ,Starter Monthly,starter,standard,W2056,bright-core,prod,U3247,2025-05-10 07:16:19,2025-05-10 07:38:19,,high,performance,open,,22,,60,true,true,318,2025-05-01, +T10094,A1030,Northwind Analytics,enterprise,EMEA,UK,Enterprise Monthly,enterprise,premium,W2059,northwind-finance,prod,U3268,2025-06-11 15:44:02,2025-06-12 00:45:02,2025-06-14 22:47:02,low,dashboard_filter,resolved,5,541,4743,1440,true,false,3,2025-06-01,2025-06-01 +T10095,A1030,Northwind Analytics,enterprise,EMEA,UK,Enterprise Monthly,enterprise,premium,W2060,northwind-marketing,prod,U3261,2025-04-19 11:22:00,2025-04-19 11:50:00,2025-04-21 16:57:00,high,dashboard_filter,resolved,4,28,3215,60,true,false,2,2025-04-01,2025-04-01 +T10097,A1030,Northwind Analytics,enterprise,EMEA,UK,Enterprise Monthly,enterprise,premium,W2057,northwind-core,prod,U3267,2025-05-21 03:08:09,2025-05-21 07:50:09,2025-05-22 13:23:09,low,dashboard_filter,resolved,3,282,2055,1440,true,false,1,2025-05-01,2025-05-01 +T10098,A1031,Helio Holdings,mid_market,APAC,AU,Growth Monthly,growth,priority,W2061,helio-core,prod,U3277,2025-04-07 13:23:25,2025-04-07 15:36:25,2025-04-09 05:44:25,medium,sso,resolved,2,133,2421,240,true,false,2,2025-04-01,2025-04-01 +T10099,A1031,Helio Holdings,mid_market,APAC,AU,Growth Monthly,growth,priority,W2062,helio-ops,prod,U3281,2025-04-28 20:40:52,2025-04-29 05:24:52,2025-05-01 11:20:52,low,model_error,resolved,3,524,3760,1440,true,false,3,2025-04-01,2025-05-01 +T10101,A1031,Helio Holdings,mid_market,APAC,AU,Growth Monthly,growth,priority,W2061,helio-core,prod,U3281,2025-05-24 20:51:20,2025-05-24 23:55:20,2025-05-25 20:43:20,medium,api_limit,resolved,4,184,1432,240,true,false,1,2025-05-01,2025-05-01 +T10103,A1032,Vertex Works,mid_market,EMEA,DE,Growth Monthly,growth,priority,W2064,vertex-core,prod,U3286,2025-06-11 21:23:04,2025-06-11 21:55:04,2025-06-14 20:44:04,high,api_limit,resolved,2,32,4281,60,true,false,3,2025-06-01,2025-06-01 +T10105,A1033,Lighthouse Global,mid_market,NA,CA,Growth Monthly,growth,priority,W2066,lighthouse-core,prod,U3291,2025-05-20 21:14:18,2025-05-21 12:12:18,2025-05-24 00:47:18,low,performance,resolved,4,898,4533,1440,true,false,4,2025-05-01,2025-05-01 +T10106,A1033,Lighthouse Global,mid_market,NA,CA,Growth Monthly,growth,priority,W2067,lighthouse-ops,prod,U3292,2025-04-08 21:02:43,2025-04-09 00:34:43,2025-04-11 16:29:43,medium,api_limit,resolved,5,212,4047,240,true,false,3,2025-04-01,2025-04-01 +T10107,A1034,Helio Partners,smb,NA,CA,Starter Monthly,starter,standard,W2069,helio-ops,sandbox,U3302,2025-06-09 13:51:35,2025-06-10 05:31:35,2025-06-12 16:46:35,low,permissions,resolved,5,940,4495,1440,true,false,3,2025-06-01,2025-06-01 +T10108,A1034,Helio Partners,smb,NA,CA,Starter Monthly,starter,standard,W2068,helio-core,prod,U3304,2025-05-12 09:49:56,2025-05-12 12:17:56,2025-05-12 21:49:56,medium,performance,resolved,3,148,720,240,true,false,0,2025-05-01,2025-05-01 +T10110,A1035,Bright Retail,mid_market,EMEA,UK,Enterprise Monthly,enterprise,premium,W2071,bright-ops,sandbox,U3317,2025-06-07 15:20:28,2025-06-07 15:55:28,2025-06-08 16:25:28,high,api_limit,resolved,5,35,1505,60,true,false,1,2025-06-01,2025-06-01 +T10111,A1035,Bright Retail,mid_market,EMEA,UK,Enterprise Monthly,enterprise,premium,W2070,bright-core,prod,U3314,2025-04-03 14:44:28,2025-04-03 17:39:28,2025-04-06 11:17:28,medium,permissions,resolved,4,175,4113,240,true,false,3,2025-04-01,2025-04-01 +T10112,A1035,Bright Retail,mid_market,EMEA,UK,Enterprise Monthly,enterprise,premium,W2072,bright-finance,prod,U3316,2025-05-02 23:05:03,2025-05-02 23:53:03,2025-05-04 17:15:03,high,dashboard_filter,resolved,4,48,2530,60,true,false,2,2025-05-01,2025-05-01 +T10113,A1035,Bright Retail,mid_market,EMEA,UK,Enterprise Monthly,enterprise,premium,W2071,bright-ops,sandbox,U3317,2025-04-15 03:50:21,2025-04-15 07:37:21,2025-04-18 03:18:21,medium,performance,resolved,4,227,4288,240,true,false,3,2025-04-01,2025-04-01 +T10115,A1036,Granite Holdings,smb,NA,US,Growth Monthly,growth,priority,W2073,granite-core,prod,U3322,2025-04-06 23:20:44,2025-04-07 02:05:44,2025-04-08 21:27:44,medium,sso,resolved,5,165,2767,240,true,false,2,2025-04-01,2025-04-01 +T10116,A1036,Granite Holdings,smb,NA,US,Growth Monthly,growth,priority,W2074,granite-ops,sandbox,U3322,2025-06-07 15:31:40,2025-06-07 18:29:40,2025-06-10 06:01:40,medium,dashboard_filter,resolved,5,178,3750,240,true,false,3,2025-06-01,2025-06-01 +T10117,A1036,Granite Holdings,smb,NA,US,Growth Monthly,growth,priority,W2074,granite-ops,sandbox,U3322,2025-05-17 20:53:41,2025-05-17 23:48:41,2025-05-18 23:22:41,medium,permissions,resolved,4,175,1589,240,true,false,1,2025-05-01,2025-05-01 +T10119,A1037,Lighthouse Network,enterprise,EMEA,UK,Enterprise Monthly,enterprise,premium,W2076,lighthouse-ops,prod,U3338,2025-05-12 06:21:19,2025-05-12 06:46:19,2025-05-12 13:35:19,high,sso,resolved,5,25,434,60,true,false,0,2025-05-01,2025-05-01 +T10120,A1037,Lighthouse Network,enterprise,EMEA,UK,Enterprise Monthly,enterprise,premium,W2076,lighthouse-ops,prod,U3331,2025-04-22 02:39:35,2025-04-22 03:47:35,,medium,sso,in_progress,,68,,240,true,true,336,2025-04-01, +T10121,A1037,Lighthouse Network,enterprise,EMEA,UK,Enterprise Monthly,enterprise,premium,W2077,lighthouse-finance,sandbox,U3327,2025-04-04 13:59:40,2025-04-04 16:06:40,2025-04-06 03:29:40,medium,sso,resolved,4,127,2250,240,true,false,2,2025-04-01,2025-04-01 +T10122,A1038,River Systems,smb,APAC,AU,Starter Monthly,starter,standard,W2079,river-core,prod,U3346,2025-04-19 09:26:05,2025-04-19 09:48:05,,high,api_limit,open,,22,,60,true,true,339,2025-04-01, +T10123,A1038,River Systems,smb,APAC,AU,Starter Monthly,starter,standard,W2080,river-ops,prod,U3342,2025-05-31 17:59:38,2025-06-01 04:32:38,2025-06-02 06:32:38,low,billing,resolved,4,633,2193,1440,true,false,2,2025-05-01,2025-06-01 +T10124,A1039,Nova Group,smb,EMEA,FR,Starter Monthly,starter,standard,W2081,nova-core,prod,U3348,2025-06-07 01:56:58,2025-06-07 02:04:58,2025-06-07 21:31:58,urgent,api_limit,resolved,5,8,1175,30,true,false,0,2025-06-01,2025-06-01 +T10127,A1040,Harbor Collective,mid_market,APAC,SG,Enterprise Monthly,enterprise,premium,W2084,harbor-finance,prod,U3365,2025-06-10 18:07:45,2025-06-10 18:29:45,2025-06-13 12:37:45,high,performance,resolved,3,22,3990,60,true,false,3,2025-06-01,2025-06-01 +T10128,A1040,Harbor Collective,mid_market,APAC,SG,Enterprise Monthly,enterprise,premium,W2082,harbor-core,prod,U3361,2025-05-29 17:52:01,2025-05-29 18:33:01,2025-06-01 04:26:01,high,model_error,resolved,3,41,3514,60,true,false,3,2025-05-01,2025-06-01 +T10130,A1040,Harbor Collective,mid_market,APAC,SG,Enterprise Monthly,enterprise,premium,W2083,harbor-ops,sandbox,U3364,2025-05-21 12:06:14,2025-05-21 12:39:14,,urgent,permissions,in_progress,,33,,30,false,true,307,2025-05-01, +T10131,A1041,Cedar Logistics,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2087,cedar-finance,prod,U3377,2025-04-30 14:56:33,2025-04-30 15:15:33,2025-05-02 20:51:33,urgent,cancellation,resolved,5,19,3235,30,true,false,2,2025-04-01,2025-05-01 +T10133,A1041,Cedar Logistics,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2085,cedar-core,prod,U3366,2025-06-11 15:07:17,2025-06-11 17:05:17,2025-06-13 00:31:17,medium,api_limit,resolved,4,118,2004,240,true,false,2,2025-06-01,2025-06-01 +T10134,A1041,Cedar Logistics,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2086,cedar-ops,sandbox,U3375,2025-05-07 14:27:48,2025-05-07 15:11:48,2025-05-07 23:25:48,high,data_freshness,resolved,4,44,538,60,true,false,0,2025-05-01,2025-05-01 +T10135,A1041,Cedar Logistics,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2085,cedar-core,prod,U3366,2025-05-23 18:09:24,2025-05-23 18:45:24,2025-05-24 18:13:24,high,dashboard_filter,resolved,5,36,1444,60,true,false,1,2025-05-01,2025-05-01 +T10137,A1042,Northwind Labs,mid_market,APAC,AU,Growth Monthly,growth,priority,W2089,northwind-ops,sandbox,U3380,2025-04-12 08:33:14,2025-04-12 12:56:14,2025-04-14 06:53:14,medium,sso,resolved,5,263,2780,240,false,false,2,2025-04-01,2025-04-01 +T10140,A1042,Northwind Labs,mid_market,APAC,AU,Growth Monthly,growth,priority,W2088,northwind-core,prod,U3378,2025-05-21 19:13:48,2025-05-22 02:10:48,2025-05-22 08:58:48,low,api_limit,resolved,4,417,825,1440,true,false,1,2025-05-01,2025-05-01 +T10141,A1043,Lighthouse Works,enterprise,APAC,SG,Enterprise Monthly,enterprise,premium,W2094,lighthouse-marketing,prod,U3390,2025-04-22 04:48:42,2025-04-22 06:01:42,,medium,data_freshness,in_progress,,73,,240,true,true,336,2025-04-01, +T10143,A1043,Lighthouse Works,enterprise,APAC,SG,Enterprise Monthly,enterprise,premium,W2094,lighthouse-marketing,prod,U3401,2025-04-17 02:32:02,2025-04-17 10:14:02,2025-04-20 03:16:02,low,sso,resolved,5,462,4364,1440,true,false,3,2025-04-01,2025-04-01 +T10144,A1044,Summit Holdings,smb,EMEA,NL,Growth Monthly,growth,priority,W2095,summit-core,prod,U3407,2025-04-04 17:42:09,2025-04-04 18:06:09,2025-04-07 14:41:09,high,model_error,resolved,3,24,4139,60,true,false,3,2025-04-01,2025-04-01 +T10145,A1044,Summit Holdings,smb,EMEA,NL,Growth Monthly,growth,priority,W2095,summit-core,prod,U3407,2025-06-09 03:00:36,2025-06-09 05:31:36,2025-06-11 04:32:36,medium,model_error,resolved,5,151,2972,240,true,false,2,2025-06-01,2025-06-01 +T10146,A1044,Summit Holdings,smb,EMEA,NL,Growth Monthly,growth,priority,W2095,summit-core,prod,U3408,2025-04-09 02:49:37,2025-04-09 03:33:37,2025-04-10 17:56:37,high,sso,resolved,5,44,2347,60,true,false,1,2025-04-01,2025-04-01 +T10147,A1045,Nova Holdings,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2099,nova-marketing,prod,U3423,2025-06-02 20:20:03,2025-06-02 20:48:03,2025-06-05 03:20:03,high,dashboard_filter,resolved,4,28,3300,60,true,false,3,2025-06-01,2025-06-01 +T10148,A1045,Nova Holdings,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2099,nova-marketing,prod,U3412,2025-05-12 12:15:14,2025-05-12 13:41:14,2025-05-15 01:52:14,medium,api_limit,resolved,5,86,3697,240,true,false,3,2025-05-01,2025-05-01 +T10149,A1045,Nova Holdings,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2097,nova-ops,prod,U3419,2025-05-20 23:55:34,2025-05-21 03:50:34,2025-05-23 20:03:34,low,dashboard_filter,resolved,3,235,4088,1440,true,false,3,2025-05-01,2025-05-01 +T10150,A1045,Nova Holdings,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2097,nova-ops,prod,U3425,2025-06-07 17:23:33,2025-06-07 19:25:33,2025-06-08 08:12:33,medium,api_limit,resolved,4,122,889,240,true,false,1,2025-06-01,2025-06-01 +T10151,A1045,Nova Holdings,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2099,nova-marketing,prod,U3422,2025-04-02 10:20:57,2025-04-02 17:26:57,2025-04-05 04:18:57,low,sso,resolved,5,426,3958,1440,true,false,3,2025-04-01,2025-04-01 +T10152,A1046,Pioneer Solutions,smb,NA,CA,Growth Monthly,growth,priority,W2100,pioneer-core,prod,U3429,2025-05-20 10:32:02,2025-05-20 13:14:02,,medium,model_error,in_progress,,162,,240,true,true,308,2025-05-01, +T10153,A1046,Pioneer Solutions,smb,NA,CA,Growth Monthly,growth,priority,W2100,pioneer-core,prod,U3427,2025-05-30 05:05:39,2025-05-30 12:29:39,2025-06-01 22:50:39,low,permissions,resolved,5,444,3945,1440,true,false,2,2025-05-01,2025-06-01 +T10154,A1046,Pioneer Solutions,smb,NA,CA,Growth Monthly,growth,priority,W2100,pioneer-core,prod,U3430,2025-05-01 04:33:57,2025-05-01 07:00:57,2025-05-01 19:58:57,medium,model_error,resolved,5,147,925,240,true,false,0,2025-05-01,2025-05-01 +T10155,A1047,Orchid Global,enterprise,APAC,AU,Enterprise Annual,enterprise,premium,W2103,orchid-finance,prod,U3440,2025-05-29 16:33:13,2025-05-29 17:44:13,2025-05-30 21:08:13,medium,dashboard_filter,resolved,5,71,1715,240,true,false,1,2025-05-01,2025-05-01 +T10158,A1047,Orchid Global,enterprise,APAC,AU,Enterprise Annual,enterprise,premium,W2103,orchid-finance,prod,U3443,2025-05-02 19:40:03,2025-05-02 21:01:03,2025-05-03 17:35:03,medium,model_error,resolved,4,81,1315,240,true,false,1,2025-05-01,2025-05-01 +T10159,A1047,Orchid Global,enterprise,APAC,AU,Enterprise Annual,enterprise,premium,W2101,orchid-core,prod,U3447,2025-04-12 04:06:15,2025-04-12 05:38:15,2025-04-14 21:30:15,medium,dashboard_filter,resolved,4,92,3924,240,true,false,2,2025-04-01,2025-04-01 +T10160,A1047,Orchid Global,enterprise,APAC,AU,Enterprise Annual,enterprise,premium,W2101,orchid-core,prod,U3444,2025-05-09 12:18:14,2025-05-09 19:18:14,2025-05-11 04:52:14,low,model_error,resolved,5,420,2434,1440,true,false,2,2025-05-01,2025-05-01 +T10161,A1047,Orchid Global,enterprise,APAC,AU,Enterprise Annual,enterprise,premium,W2101,orchid-core,prod,U3449,2025-04-28 15:20:57,2025-04-28 15:45:57,,high,performance,in_progress,,25,,60,true,true,330,2025-04-01, +T10162,A1048,Orchid Capital,enterprise,APAC,NZ,Enterprise Annual,enterprise,premium,W2106,orchid-finance,prod,U3454,2025-06-04 08:44:18,2025-06-04 09:54:18,,medium,api_limit,in_progress,,70,,240,true,true,293,2025-06-01, +T10163,A1048,Orchid Capital,enterprise,APAC,NZ,Enterprise Annual,enterprise,premium,W2106,orchid-finance,prod,U3458,2025-05-19 00:50:25,2025-05-19 06:43:25,,low,data_freshness,open,,353,,1440,true,true,309,2025-05-01, +T10164,A1048,Orchid Capital,enterprise,APAC,NZ,Enterprise Annual,enterprise,premium,W2104,orchid-core,prod,U3452,2025-04-15 08:40:53,2025-04-15 14:42:53,2025-04-18 02:12:53,low,cancellation,resolved,4,362,3932,1440,true,false,3,2025-04-01,2025-04-01 +T10165,A1048,Orchid Capital,enterprise,APAC,NZ,Enterprise Annual,enterprise,premium,W2104,orchid-core,prod,U3462,2025-05-30 19:28:56,2025-05-30 19:45:56,,high,sso,open,,17,,60,true,true,298,2025-05-01, +T10166,A1049,Northwind Network,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2107,northwind-core,prod,U3473,2025-05-22 11:57:27,2025-05-22 18:07:27,2025-05-25 05:46:27,low,permissions,resolved,5,370,3949,1440,true,false,3,2025-05-01,2025-05-01 +T10167,A1049,Northwind Network,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2108,northwind-ops,prod,U3483,2025-05-27 17:29:08,2025-05-27 19:02:08,2025-05-30 09:07:08,medium,permissions,resolved,4,93,3818,240,true,false,3,2025-05-01,2025-05-01 +T10168,A1049,Northwind Network,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2107,northwind-core,prod,U3479,2025-05-05 04:16:46,2025-05-05 04:23:46,2025-05-06 00:46:46,urgent,dashboard_filter,resolved,4,7,1230,30,true,false,1,2025-05-01,2025-05-01 +T10169,A1049,Northwind Network,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2109,northwind-finance,prod,U3484,2025-06-01 16:13:15,2025-06-01 17:19:15,,medium,billing,open,,66,,240,true,true,296,2025-06-01, +T10170,A1049,Northwind Network,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2109,northwind-finance,prod,U3486,2025-05-22 02:08:28,2025-05-22 06:45:28,2025-05-25 06:15:28,low,performance,resolved,4,277,4567,1440,true,false,3,2025-05-01,2025-05-01 +T10171,A1049,Northwind Network,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2107,northwind-core,prod,U3473,2025-04-29 10:09:13,2025-04-29 17:54:13,2025-05-01 18:48:13,low,dashboard_filter,resolved,3,465,3399,1440,true,false,2,2025-04-01,2025-05-01 +T10172,A1049,Northwind Network,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2109,northwind-finance,prod,U3471,2025-05-10 23:28:03,2025-05-11 01:50:03,2025-05-13 14:04:03,medium,dashboard_filter,resolved,4,142,3756,240,true,false,3,2025-05-01,2025-05-01 +T10174,A1051,Lighthouse Systems,smb,EMEA,UK,Growth Monthly,growth,priority,W2112,lighthouse-core,prod,U3495,2025-04-05 17:48:20,2025-04-05 22:47:20,2025-04-08 11:33:20,low,sso,resolved,4,299,3945,1440,true,false,3,2025-04-01,2025-04-01 +T10175,A1051,Lighthouse Systems,smb,EMEA,UK,Growth Monthly,growth,priority,W2112,lighthouse-core,prod,U3492,2025-04-04 12:53:52,2025-04-04 14:50:52,2025-04-07 01:47:52,medium,dashboard_filter,resolved,3,117,3654,240,true,false,3,2025-04-01,2025-04-01 +T10176,A1051,Lighthouse Systems,smb,EMEA,UK,Growth Monthly,growth,priority,W2112,lighthouse-core,prod,U3491,2025-06-09 04:31:19,2025-06-09 18:50:19,2025-06-10 16:30:19,low,model_error,resolved,4,859,2159,1440,true,false,1,2025-06-01,2025-06-01 +T10177,A1052,Sierra Labs,mid_market,APAC,NZ,Growth Monthly,growth,priority,W2114,sierra-ops,prod,U3499,2025-05-22 14:40:56,2025-05-22 20:23:56,2025-05-25 05:12:56,low,sso,resolved,5,343,3752,1440,true,false,3,2025-05-01,2025-05-01 +T10178,A1052,Sierra Labs,mid_market,APAC,NZ,Growth Monthly,growth,priority,W2114,sierra-ops,prod,U3498,2025-05-10 04:34:16,2025-05-10 14:10:16,2025-05-12 16:54:16,low,api_limit,resolved,5,576,3620,1440,true,false,2,2025-05-01,2025-05-01 +T10179,A1052,Sierra Labs,mid_market,APAC,NZ,Growth Monthly,growth,priority,W2114,sierra-ops,prod,U3501,2025-05-29 12:44:45,2025-05-29 14:37:45,2025-05-31 21:47:45,medium,data_freshness,resolved,5,113,3423,240,true,false,2,2025-05-01,2025-05-01 +T10181,A1052,Sierra Labs,mid_market,APAC,NZ,Growth Monthly,growth,priority,W2114,sierra-ops,prod,U3506,2025-06-15 13:21:59,2025-06-15 16:07:59,2025-06-18 14:52:59,medium,permissions,resolved,4,166,4411,240,true,false,3,2025-06-01,2025-06-01 +T10182,A1053,Bright Health,mid_market,NA,CA,Growth Monthly,growth,priority,W2116,bright-ops,prod,U3508,2025-05-03 01:20:38,2025-05-03 03:57:38,2025-05-04 17:26:38,medium,model_error,resolved,5,157,2406,240,true,false,1,2025-05-01,2025-05-01 +T10183,A1053,Bright Health,mid_market,NA,CA,Growth Monthly,growth,priority,W2116,bright-ops,prod,U3511,2025-05-04 19:18:13,2025-05-04 21:50:13,2025-05-06 14:01:13,medium,model_error,resolved,5,152,2563,240,true,false,2,2025-05-01,2025-05-01 +T10184,A1053,Bright Health,mid_market,NA,CA,Growth Monthly,growth,priority,W2116,bright-ops,prod,U3512,2025-05-31 09:29:38,2025-05-31 16:52:38,2025-06-01 07:33:38,low,performance,resolved,5,443,1324,1440,true,false,1,2025-05-01,2025-06-01 +T10185,A1054,Granite Labs,mid_market,APAC,NZ,Enterprise Monthly,enterprise,premium,W2120,granite-finance,prod,U3527,2025-06-02 02:00:16,2025-06-02 02:34:16,2025-06-04 14:10:16,high,sso,resolved,4,34,3610,60,true,false,2,2025-06-01,2025-06-01 +T10186,A1054,Granite Labs,mid_market,APAC,NZ,Enterprise Monthly,enterprise,premium,W2118,granite-core,prod,U3523,2025-04-24 19:48:18,2025-04-24 20:30:18,2025-04-25 02:09:18,high,dashboard_filter,resolved,2,42,381,60,true,false,1,2025-04-01,2025-04-01 +T10187,A1054,Granite Labs,mid_market,APAC,NZ,Enterprise Monthly,enterprise,premium,W2119,granite-ops,prod,U3523,2025-06-12 09:20:11,2025-06-13 01:32:11,2025-06-15 18:45:11,low,sso,resolved,5,972,4885,1440,true,false,3,2025-06-01,2025-06-01 +T10188,A1054,Granite Labs,mid_market,APAC,NZ,Enterprise Monthly,enterprise,premium,W2118,granite-core,prod,U3526,2025-06-07 12:11:47,2025-06-07 12:59:47,2025-06-09 09:33:47,high,dashboard_filter,resolved,3,48,2722,60,true,false,2,2025-06-01,2025-06-01 +T10189,A1054,Granite Labs,mid_market,APAC,NZ,Enterprise Monthly,enterprise,premium,W2120,granite-finance,prod,U3524,2025-06-03 08:28:29,2025-06-03 18:55:29,,low,performance,open,,627,,1440,true,true,294,2025-06-01, +T10190,A1055,Pioneer Systems,mid_market,EMEA,FR,Growth Monthly,growth,priority,W2121,pioneer-core,prod,U3532,2025-05-10 09:59:35,2025-05-10 12:37:35,2025-05-11 00:39:35,medium,billing,resolved,5,158,880,240,true,false,1,2025-05-01,2025-05-01 +T10191,A1055,Pioneer Systems,mid_market,EMEA,FR,Growth Monthly,growth,priority,W2122,pioneer-ops,sandbox,U3539,2025-04-22 14:24:31,2025-04-22 18:09:31,2025-04-23 14:45:31,medium,performance,resolved,5,225,1461,240,true,false,1,2025-04-01,2025-04-01 +T10192,A1055,Pioneer Systems,mid_market,EMEA,FR,Growth Monthly,growth,priority,W2122,pioneer-ops,sandbox,U3535,2025-04-19 01:48:32,2025-04-19 03:19:32,2025-04-19 21:40:32,medium,model_error,resolved,3,91,1192,240,true,false,0,2025-04-01,2025-04-01 +T10194,A1056,Delta Global,mid_market,APAC,AU,Growth Monthly,growth,priority,W2123,delta-core,prod,U3546,2025-05-24 21:23:45,2025-05-25 04:18:45,2025-05-27 16:32:45,low,permissions,resolved,5,415,4029,1440,true,false,3,2025-05-01,2025-05-01 +T10196,A1056,Delta Global,mid_market,APAC,AU,Growth Monthly,growth,priority,W2123,delta-core,prod,U3545,2025-05-21 17:06:53,2025-05-21 17:49:53,2025-05-23 10:35:53,high,api_limit,resolved,2,43,2489,60,true,false,2,2025-05-01,2025-05-01 +T10197,A1057,Harbor Partners,enterprise,APAC,NZ,Enterprise Annual,enterprise,premium,W2127,harbor-ops,sandbox,U3554,2025-06-07 00:26:36,2025-06-07 04:09:36,2025-06-08 00:59:36,low,api_limit,resolved,3,223,1473,1440,true,false,1,2025-06-01,2025-06-01 +T10198,A1057,Harbor Partners,enterprise,APAC,NZ,Enterprise Annual,enterprise,premium,W2129,harbor-marketing,prod,U3566,2025-05-21 18:23:28,2025-05-22 02:38:28,2025-05-24 09:46:28,low,performance,resolved,3,495,3803,1440,true,false,3,2025-05-01,2025-05-01 +T10199,A1057,Harbor Partners,enterprise,APAC,NZ,Enterprise Annual,enterprise,premium,W2127,harbor-ops,sandbox,U3562,2025-04-29 04:31:13,2025-04-29 11:27:13,2025-04-29 18:54:13,low,permissions,resolved,4,416,863,1440,true,false,0,2025-04-01,2025-04-01 +T10201,A1057,Harbor Partners,enterprise,APAC,NZ,Enterprise Annual,enterprise,premium,W2129,harbor-marketing,prod,U3565,2025-04-26 21:52:12,2025-04-26 22:56:12,2025-04-28 13:02:12,medium,cancellation,resolved,4,64,2350,240,true,false,2,2025-04-01,2025-04-01 +T10203,A1057,Harbor Partners,enterprise,APAC,NZ,Enterprise Annual,enterprise,premium,W2127,harbor-ops,sandbox,U3561,2025-06-02 14:43:31,2025-06-02 16:17:31,,medium,api_limit,in_progress,,94,,240,true,true,295,2025-06-01, +T10204,A1058,Evergreen Analytics,smb,EMEA,UK,Starter Monthly,starter,standard,W2131,evergreen-ops,prod,U3567,2025-05-03 23:31:29,2025-05-04 02:00:29,2025-05-04 23:54:29,medium,sso,resolved,4,149,1463,240,true,false,1,2025-05-01,2025-05-01 +T10206,A1058,Evergreen Analytics,smb,EMEA,UK,Starter Monthly,starter,standard,W2130,evergreen-core,prod,U3569,2025-04-06 10:38:55,2025-04-06 19:21:55,2025-04-08 23:32:55,low,api_limit,resolved,5,523,3654,1440,true,false,2,2025-04-01,2025-04-01 +T10207,A1059,Evergreen Partners,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2132,evergreen-core,prod,U3578,2025-05-31 07:03:09,2025-05-31 07:56:09,2025-06-02 11:48:09,high,billing,resolved,5,53,3165,60,true,false,2,2025-05-01,2025-06-01 +T10208,A1059,Evergreen Partners,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2132,evergreen-core,prod,U3581,2025-05-26 23:01:58,2025-05-27 01:50:58,2025-05-28 12:46:58,medium,dashboard_filter,resolved,5,169,2265,240,true,false,2,2025-05-01,2025-05-01 +T10209,A1059,Evergreen Partners,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2132,evergreen-core,prod,U3581,2025-04-16 02:06:12,2025-04-16 05:49:12,2025-04-17 08:51:12,medium,model_error,resolved,4,223,1845,240,true,false,1,2025-04-01,2025-04-01 +T10210,A1059,Evergreen Partners,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2133,evergreen-ops,sandbox,U3574,2025-05-28 20:36:04,2025-05-29 03:21:04,2025-05-29 23:12:04,low,data_freshness,resolved,4,405,1596,1440,true,false,1,2025-05-01,2025-05-01 +T10211,A1059,Evergreen Partners,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2133,evergreen-ops,sandbox,U3576,2025-04-25 17:15:19,2025-04-25 19:42:19,2025-04-26 06:50:19,medium,model_error,resolved,5,147,815,240,true,false,1,2025-04-01,2025-04-01 +T10212,A1060,Cedar Foods,mid_market,NA,CA,Growth Monthly,growth,priority,W2135,cedar-ops,sandbox,U3597,2025-06-05 17:55:39,2025-06-05 20:08:39,2025-06-08 15:20:39,medium,data_freshness,resolved,4,133,4165,240,true,false,3,2025-06-01,2025-06-01 +T10214,A1061,Atlas Capital,enterprise,EMEA,FR,Enterprise Monthly,enterprise,premium,W2136,atlas-core,prod,U3604,2025-05-01 07:17:48,2025-05-01 07:57:48,2025-05-02 11:43:48,medium,permissions,resolved,5,40,1706,240,true,false,1,2025-05-01,2025-05-01 +T10216,A1061,Atlas Capital,enterprise,EMEA,FR,Enterprise Monthly,enterprise,premium,W2136,atlas-core,prod,U3608,2025-05-25 02:26:34,2025-05-25 02:52:34,2025-05-25 10:38:34,high,dashboard_filter,resolved,5,26,492,60,true,false,0,2025-05-01,2025-05-01 +T10218,A1062,Delta Manufacturing,enterprise,EMEA,NL,Enterprise Monthly,enterprise,premium,W2140,delta-ops,prod,U3618,2025-06-06 19:13:40,2025-06-06 19:38:40,2025-06-08 18:06:40,high,api_limit,resolved,4,25,2813,60,true,false,2,2025-06-01,2025-06-01 +T10219,A1062,Delta Manufacturing,enterprise,EMEA,NL,Enterprise Monthly,enterprise,premium,W2139,delta-core,prod,U3622,2025-05-15 10:06:58,2025-05-15 10:52:58,2025-05-16 02:25:58,medium,api_limit,resolved,5,46,979,240,true,false,1,2025-05-01,2025-05-01 +T10220,A1062,Delta Manufacturing,enterprise,EMEA,NL,Enterprise Monthly,enterprise,premium,W2139,delta-core,prod,U3620,2025-06-05 08:31:40,2025-06-05 08:36:40,2025-06-06 01:11:40,urgent,cancellation,resolved,5,5,1000,30,true,false,1,2025-06-01,2025-06-01 +T10221,A1063,Maple Global,smb,NA,CA,Starter Monthly,starter,standard,W2142,maple-core,prod,U3631,2025-04-12 01:32:03,2025-04-12 04:02:03,,medium,dashboard_filter,in_progress,,150,,240,true,true,346,2025-04-01, +T10222,A1063,Maple Global,smb,NA,CA,Starter Monthly,starter,standard,W2142,maple-core,prod,U3632,2025-05-09 06:50:11,2025-05-09 09:35:11,2025-05-11 12:00:11,medium,performance,resolved,4,165,3190,240,true,false,2,2025-05-01,2025-05-01 +T10223,A1064,Atlas Health,smb,NA,US,Starter Monthly,starter,standard,W2143,atlas-core,prod,U3634,2025-05-19 15:33:04,2025-05-20 05:32:04,2025-05-22 06:37:04,low,performance,resolved,5,839,3784,1440,true,false,3,2025-05-01,2025-05-01 +T10225,A1065,Vertex Partners,mid_market,NA,US,Growth Monthly,growth,priority,W2145,vertex-ops,prod,U3643,2025-04-27 11:41:45,2025-04-27 19:54:45,2025-04-30 02:25:45,low,dashboard_filter,resolved,3,493,3764,1440,true,false,3,2025-04-01,2025-04-01 +T10226,A1065,Vertex Partners,mid_market,NA,US,Growth Monthly,growth,priority,W2144,vertex-core,prod,U3643,2025-04-22 11:47:53,2025-04-22 12:26:53,2025-04-22 21:35:53,high,dashboard_filter,resolved,5,39,588,60,true,false,0,2025-04-01,2025-04-01 +T10227,A1066,Pacific Capital,mid_market,APAC,NZ,Enterprise Monthly,enterprise,premium,W2147,pacific-ops,prod,U3649,2025-06-01 11:53:08,2025-06-02 00:05:08,2025-06-04 11:55:08,low,permissions,resolved,3,732,4322,1440,true,false,3,2025-06-01,2025-06-01 +T10228,A1066,Pacific Capital,mid_market,APAC,NZ,Enterprise Monthly,enterprise,premium,W2146,pacific-core,prod,U3650,2025-05-18 10:28:25,2025-05-18 11:00:25,2025-05-21 04:49:25,urgent,api_limit,resolved,4,32,3981,30,false,false,3,2025-05-01,2025-05-01 +T10229,A1066,Pacific Capital,mid_market,APAC,NZ,Enterprise Monthly,enterprise,premium,W2146,pacific-core,prod,U3655,2025-04-17 22:01:04,2025-04-18 00:42:04,2025-04-18 16:45:04,medium,model_error,resolved,4,161,1124,240,true,false,1,2025-04-01,2025-04-01 +T10230,A1067,Maple Energy,mid_market,NA,CA,Growth Monthly,growth,priority,W2149,maple-ops,sandbox,U3664,2025-04-16 21:56:35,2025-04-17 00:05:35,,medium,api_limit,in_progress,,129,,240,true,true,342,2025-04-01, +T10232,A1067,Maple Energy,mid_market,NA,CA,Growth Monthly,growth,priority,W2149,maple-ops,sandbox,U3662,2025-05-14 17:33:03,2025-05-14 20:44:03,2025-05-17 11:23:03,medium,sso,resolved,4,191,3950,240,true,false,3,2025-05-01,2025-05-01 +T10233,A1067,Maple Energy,mid_market,NA,CA,Growth Monthly,growth,priority,W2149,maple-ops,sandbox,U3660,2025-06-12 17:58:13,2025-06-13 01:42:13,2025-06-13 10:17:13,low,sso,resolved,4,464,979,1440,true,false,1,2025-06-01,2025-06-01 +T10235,A1068,Helio Health,enterprise,APAC,SG,Enterprise Monthly,enterprise,premium,W2152,helio-finance,sandbox,U3669,2025-05-28 03:12:49,2025-05-28 05:13:49,2025-05-30 08:36:49,medium,performance,resolved,5,121,3204,240,true,false,2,2025-05-01,2025-05-01 +T10237,A1068,Helio Health,enterprise,APAC,SG,Enterprise Monthly,enterprise,premium,W2150,helio-core,prod,U3679,2025-04-25 19:00:56,2025-04-25 19:19:56,2025-04-27 01:18:56,high,api_limit,resolved,5,19,1818,60,true,false,2,2025-04-01,2025-04-01 +T10238,A1068,Helio Health,enterprise,APAC,SG,Enterprise Monthly,enterprise,premium,W2152,helio-finance,sandbox,U3672,2025-04-03 06:46:03,2025-04-03 07:06:03,2025-04-05 09:10:03,high,sso,resolved,4,20,3024,60,true,false,2,2025-04-01,2025-04-01 +T10239,A1068,Helio Health,enterprise,APAC,SG,Enterprise Monthly,enterprise,premium,W2150,helio-core,prod,U3679,2025-06-06 19:53:24,2025-06-06 22:43:24,2025-06-09 16:26:24,medium,api_limit,resolved,4,170,4113,240,true,false,3,2025-06-01,2025-06-01 +T10240,A1068,Helio Health,enterprise,APAC,SG,Enterprise Monthly,enterprise,premium,W2152,helio-finance,sandbox,U3667,2025-06-10 14:39:11,2025-06-10 15:39:11,2025-06-11 20:10:11,medium,sso,resolved,4,60,1771,240,true,false,1,2025-06-01,2025-06-01 +T10241,A1068,Helio Health,enterprise,APAC,SG,Enterprise Monthly,enterprise,premium,W2150,helio-core,prod,U3667,2025-05-18 14:42:23,2025-05-18 16:32:23,2025-05-20 10:22:23,medium,sso,resolved,5,110,2620,240,true,false,2,2025-05-01,2025-05-01 +T10242,A1069,Bright Foods,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2154,bright-core,prod,U3687,2025-05-27 21:08:15,2025-05-27 22:54:15,2025-05-30 00:56:15,medium,model_error,resolved,4,106,3108,240,true,false,3,2025-05-01,2025-05-01 +T10243,A1069,Bright Foods,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2154,bright-core,prod,U3689,2025-05-24 15:21:59,2025-05-24 17:44:59,2025-05-27 00:32:59,medium,permissions,resolved,4,143,3431,240,true,false,3,2025-05-01,2025-05-01 +T10244,A1069,Bright Foods,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2156,bright-finance,prod,U3683,2025-05-23 06:52:09,2025-05-23 07:17:09,2025-05-26 07:05:09,high,api_limit,resolved,5,25,4333,60,true,false,3,2025-05-01,2025-05-01 +T10247,A1071,Evergreen Group,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2159,evergreen-ops,prod,U3710,2025-06-09 13:53:32,2025-06-09 14:30:32,2025-06-12 13:21:32,high,dashboard_filter,resolved,3,37,4288,60,true,false,3,2025-06-01,2025-06-01 +T10249,A1072,Summit Ventures,enterprise,NA,US,Enterprise Annual,enterprise,premium,W2161,summit-core,prod,U3732,2025-04-22 21:15:26,2025-04-23 04:28:26,2025-04-24 17:12:26,low,sso,resolved,5,433,2637,1440,true,false,2,2025-04-01,2025-04-01 +T10250,A1072,Summit Ventures,enterprise,NA,US,Enterprise Annual,enterprise,premium,W2162,summit-ops,prod,U3718,2025-05-03 13:30:01,2025-05-03 13:35:01,2025-05-05 02:07:01,urgent,data_freshness,resolved,4,5,2197,30,true,false,2,2025-05-01,2025-05-01 +T10251,A1072,Summit Ventures,enterprise,NA,US,Enterprise Annual,enterprise,premium,W2161,summit-core,prod,U3722,2025-05-11 22:46:00,2025-05-12 04:53:00,2025-05-13 10:00:00,low,performance,resolved,3,367,2114,1440,true,false,2,2025-05-01,2025-05-01 +T10252,A1072,Summit Ventures,enterprise,NA,US,Enterprise Annual,enterprise,premium,W2163,summit-finance,sandbox,U3731,2025-04-19 18:20:42,2025-04-19 18:32:42,2025-04-21 21:56:42,high,performance,resolved,3,12,3096,60,true,false,2,2025-04-01,2025-04-01 +T10253,A1073,Silver Holdings,mid_market,EMEA,DE,Enterprise Monthly,enterprise,premium,W2165,silver-ops,prod,U3735,2025-06-01 20:03:30,2025-06-01 22:33:30,2025-06-04 14:08:30,medium,dashboard_filter,resolved,3,150,3965,240,true,false,3,2025-06-01,2025-06-01 +T10254,A1073,Silver Holdings,mid_market,EMEA,DE,Enterprise Monthly,enterprise,premium,W2165,silver-ops,prod,U3736,2025-04-26 10:02:03,2025-04-26 10:45:03,2025-04-27 20:50:03,high,model_error,resolved,3,43,2088,60,true,false,1,2025-04-01,2025-04-01 +T10255,A1073,Silver Holdings,mid_market,EMEA,DE,Enterprise Monthly,enterprise,premium,W2164,silver-core,prod,U3744,2025-05-31 00:53:17,2025-05-31 04:17:17,2025-06-02 14:36:17,medium,dashboard_filter,resolved,4,204,3703,240,true,false,2,2025-05-01,2025-06-01 +T10256,A1073,Silver Holdings,mid_market,EMEA,DE,Enterprise Monthly,enterprise,premium,W2164,silver-core,prod,U3741,2025-05-06 08:30:20,2025-05-06 08:38:20,,urgent,billing,open,,8,,30,true,true,322,2025-05-01, +T10258,A1074,Granite Analytics,mid_market,NA,CA,Growth Monthly,growth,priority,W2168,granite-finance,prod,U3753,2025-05-26 23:28:41,2025-05-27 02:42:41,2025-05-28 02:31:41,medium,permissions,resolved,3,194,1623,240,true,false,2,2025-05-01,2025-05-01 +T10259,A1074,Granite Analytics,mid_market,NA,CA,Growth Monthly,growth,priority,W2167,granite-ops,prod,U3755,2025-05-02 14:30:12,2025-05-02 17:28:12,2025-05-04 18:59:12,medium,api_limit,resolved,4,178,3149,240,true,false,2,2025-05-01,2025-05-01 +T10260,A1074,Granite Analytics,mid_market,NA,CA,Growth Monthly,growth,priority,W2168,granite-finance,prod,U3756,2025-06-05 16:39:10,2025-06-06 05:34:10,,low,performance,in_progress,,775,,1440,true,true,292,2025-06-01, +T10261,A1074,Granite Analytics,mid_market,NA,CA,Growth Monthly,growth,priority,W2166,granite-core,prod,U3754,2025-05-18 22:50:16,2025-05-19 07:18:16,2025-05-20 12:59:16,low,dashboard_filter,resolved,3,508,2289,1440,true,false,2,2025-05-01,2025-05-01 +T10262,A1075,Cedar Labs,smb,EMEA,UK,Starter Monthly,starter,standard,W2169,cedar-core,prod,U3763,2025-04-23 03:07:18,2025-04-23 15:25:18,2025-04-26 14:50:18,low,api_limit,resolved,4,738,5023,1440,true,false,3,2025-04-01,2025-04-01 +T10263,A1076,Atlas Solutions,mid_market,EMEA,UK,Growth Monthly,growth,priority,W2171,atlas-ops,prod,U3772,2025-06-11 21:33:07,2025-06-12 02:46:07,2025-06-14 01:02:07,low,model_error,resolved,5,313,3089,1440,true,false,3,2025-06-01,2025-06-01 +T10264,A1076,Atlas Solutions,mid_market,EMEA,UK,Growth Monthly,growth,priority,W2170,atlas-core,prod,U3777,2025-05-12 14:12:11,2025-05-12 16:48:11,,medium,sso,open,,156,,240,true,true,316,2025-05-01, +T10266,A1077,Evergreen Foods,mid_market,NA,CA,Growth Monthly,growth,priority,W2173,evergreen-ops,prod,U3782,2025-05-18 22:13:07,2025-05-18 22:33:07,2025-05-20 14:40:07,urgent,data_freshness,resolved,5,20,2427,30,true,false,2,2025-05-01,2025-05-01 +T10267,A1077,Evergreen Foods,mid_market,NA,CA,Growth Monthly,growth,priority,W2172,evergreen-core,prod,U3788,2025-05-23 00:58:58,2025-05-23 01:13:58,2025-05-23 22:55:58,urgent,dashboard_filter,resolved,5,15,1317,30,true,false,0,2025-05-01,2025-05-01 +T10268,A1077,Evergreen Foods,mid_market,NA,CA,Growth Monthly,growth,priority,W2173,evergreen-ops,prod,U3789,2025-06-16 00:24:24,2025-06-16 02:02:24,2025-06-16 17:25:24,medium,model_error,resolved,2,98,1021,240,true,false,0,2025-06-01,2025-06-01 +T10270,A1078,Beacon Foods,mid_market,EMEA,FR,Growth Monthly,growth,priority,W2175,beacon-core,prod,U3799,2025-05-29 05:30:26,2025-05-29 16:32:26,2025-05-30 12:09:26,low,performance,resolved,4,662,1839,1440,true,false,1,2025-05-01,2025-05-01 +T10272,A1078,Beacon Foods,mid_market,EMEA,FR,Growth Monthly,growth,priority,W2176,beacon-ops,prod,U3798,2025-04-21 00:49:12,2025-04-21 10:24:12,,low,data_freshness,open,,575,,1440,true,true,337,2025-04-01, +T10273,A1078,Beacon Foods,mid_market,EMEA,FR,Growth Monthly,growth,priority,W2176,beacon-ops,prod,U3798,2025-04-13 10:25:24,2025-04-13 13:29:24,2025-04-16 02:38:24,medium,performance,resolved,4,184,3853,240,true,false,3,2025-04-01,2025-04-01 +T10274,A1079,Nova Foods,enterprise,EMEA,FR,Enterprise Annual,enterprise,premium,W2178,nova-core,prod,U3822,2025-05-05 14:26:20,2025-05-05 14:42:20,2025-05-06 05:24:20,high,billing,resolved,4,16,898,60,true,false,1,2025-05-01,2025-05-01 +T10275,A1079,Nova Foods,enterprise,EMEA,FR,Enterprise Annual,enterprise,premium,W2179,nova-ops,prod,U3811,2025-04-18 07:31:50,2025-04-18 08:53:50,2025-04-19 22:34:50,medium,dashboard_filter,resolved,4,82,2343,240,true,false,1,2025-04-01,2025-04-01 +T10277,A1079,Nova Foods,enterprise,EMEA,FR,Enterprise Annual,enterprise,premium,W2181,nova-marketing,prod,U3812,2025-04-18 10:04:57,2025-04-18 11:44:57,2025-04-20 11:15:57,medium,performance,resolved,4,100,2951,240,true,false,2,2025-04-01,2025-04-01 +T10278,A1079,Nova Foods,enterprise,EMEA,FR,Enterprise Annual,enterprise,premium,W2181,nova-marketing,prod,U3818,2025-06-02 08:36:25,2025-06-02 08:51:25,2025-06-04 13:51:25,urgent,sso,resolved,2,15,3195,30,true,false,2,2025-06-01,2025-06-01 +T10279,A1079,Nova Foods,enterprise,EMEA,FR,Enterprise Annual,enterprise,premium,W2180,nova-finance,prod,U3818,2025-04-28 22:11:35,2025-04-28 22:43:35,2025-05-01 10:54:35,high,data_freshness,resolved,4,32,3643,60,true,false,3,2025-04-01,2025-05-01 +T10280,A1079,Nova Foods,enterprise,EMEA,FR,Enterprise Annual,enterprise,premium,W2180,nova-finance,prod,U3805,2025-05-18 02:26:56,2025-05-18 04:01:56,2025-05-20 16:37:56,medium,api_limit,resolved,4,95,3731,240,true,false,2,2025-05-01,2025-05-01 +T10281,A1080,Beacon Global,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2182,beacon-core,prod,U3834,2025-06-03 01:28:26,2025-06-03 02:25:26,2025-06-05 18:14:26,high,permissions,resolved,4,57,3886,60,true,false,2,2025-06-01,2025-06-01 +T10282,A1080,Beacon Global,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2182,beacon-core,prod,U3834,2025-06-07 21:38:41,2025-06-08 12:53:41,2025-06-08 18:48:41,low,api_limit,resolved,3,915,1270,1440,true,false,1,2025-06-01,2025-06-01 +T10284,A1080,Beacon Global,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2182,beacon-core,prod,U3828,2025-04-17 10:23:21,2025-04-17 19:17:21,,low,sso,open,,534,,1440,true,true,341,2025-04-01, +T10285,A1080,Beacon Global,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2183,beacon-ops,prod,U3831,2025-05-13 12:25:09,2025-05-13 13:45:09,,medium,data_freshness,in_progress,,80,,240,true,true,315,2025-05-01, +T10286,A1081,River Collective,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2185,river-ops,sandbox,U3837,2025-04-07 20:11:07,2025-04-08 06:55:07,2025-04-10 15:13:07,low,permissions,resolved,4,644,4022,1440,true,false,3,2025-04-01,2025-04-01 +T10288,A1081,River Collective,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2184,river-core,prod,U3835,2025-05-04 08:03:18,2025-05-04 08:48:18,2025-05-07 05:25:18,high,model_error,resolved,3,45,4162,60,true,false,3,2025-05-01,2025-05-01 +T10290,A1082,Summit Manufacturing,mid_market,NA,US,Starter Monthly,starter,standard,W2187,summit-core,prod,U3845,2025-04-26 04:10:30,2025-04-26 04:35:30,,urgent,permissions,open,,25,,30,true,true,332,2025-04-01, +T10291,A1082,Summit Manufacturing,mid_market,NA,US,Starter Monthly,starter,standard,W2187,summit-core,prod,U3850,2025-05-03 16:55:51,2025-05-03 19:47:51,2025-05-06 07:56:51,medium,api_limit,resolved,2,172,3781,240,true,false,3,2025-05-01,2025-05-01 +T10292,A1082,Summit Manufacturing,mid_market,NA,US,Starter Monthly,starter,standard,W2187,summit-core,prod,U3850,2025-05-31 23:21:35,2025-06-01 02:21:35,,medium,data_freshness,open,,180,,240,true,true,297,2025-05-01, +T10295,A1082,Summit Manufacturing,mid_market,NA,US,Starter Monthly,starter,standard,W2187,summit-core,prod,U3846,2025-04-08 08:09:08,2025-04-08 08:31:08,2025-04-10 23:15:08,urgent,dashboard_filter,resolved,3,22,3786,30,true,false,2,2025-04-01,2025-04-01 +T10296,A1083,Falcon Works,mid_market,NA,CA,Growth Monthly,growth,priority,W2188,falcon-core,prod,U3853,2025-05-04 09:35:24,2025-05-04 10:11:24,2025-05-06 17:30:24,high,permissions,resolved,2,36,3355,60,true,false,2,2025-05-01,2025-05-01 +T10297,A1083,Falcon Works,mid_market,NA,CA,Growth Monthly,growth,priority,W2188,falcon-core,prod,U3855,2025-04-09 10:56:04,2025-04-09 17:13:04,2025-04-11 20:22:04,low,model_error,resolved,5,377,3446,1440,true,false,2,2025-04-01,2025-04-01 +T10298,A1083,Falcon Works,mid_market,NA,CA,Growth Monthly,growth,priority,W2189,falcon-ops,sandbox,U3857,2025-06-01 02:05:06,2025-06-01 05:07:06,2025-06-03 17:10:06,medium,dashboard_filter,resolved,4,182,3785,240,true,false,2,2025-06-01,2025-06-01 +T10299,A1083,Falcon Works,mid_market,NA,CA,Growth Monthly,growth,priority,W2188,falcon-core,prod,U3855,2025-06-03 04:49:20,2025-06-03 13:53:20,2025-06-05 19:20:20,low,data_freshness,resolved,4,544,3751,1440,true,false,2,2025-06-01,2025-06-01 +T10301,A1084,Silver Foods,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2190,silver-core,prod,U3867,2025-05-13 14:22:23,2025-05-13 16:44:23,,medium,sso,in_progress,,142,,240,true,true,315,2025-05-01, +T10302,A1084,Silver Foods,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2191,silver-ops,prod,U3868,2025-04-22 00:50:58,2025-04-22 09:07:58,2025-04-24 22:10:58,low,api_limit,resolved,3,497,4160,1440,true,false,2,2025-04-01,2025-04-01 +T10303,A1084,Silver Foods,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2190,silver-core,prod,U3865,2025-05-29 10:44:27,2025-05-29 11:10:27,2025-05-30 20:20:27,high,performance,resolved,4,26,2016,60,true,false,1,2025-05-01,2025-05-01 +T10304,A1085,Sierra Capital,smb,NA,US,Starter Monthly,starter,standard,W2192,sierra-core,prod,U3871,2025-04-20 14:06:05,2025-04-20 16:57:05,2025-04-23 13:10:05,medium,performance,resolved,3,171,4264,240,true,false,3,2025-04-01,2025-04-01 +T10305,A1085,Sierra Capital,smb,NA,US,Starter Monthly,starter,standard,W2192,sierra-core,prod,U3870,2025-04-03 17:48:59,2025-04-03 22:12:59,2025-04-06 03:27:59,medium,api_limit,resolved,5,264,3459,240,false,false,3,2025-04-01,2025-04-01 +T10306,A1086,River Labs,smb,EMEA,FR,Starter Monthly,starter,standard,W2193,river-core,prod,U3873,2025-04-19 20:41:58,2025-04-19 23:27:58,,medium,model_error,open,,166,,240,true,true,339,2025-04-01, +T10307,A1086,River Labs,smb,EMEA,FR,Starter Monthly,starter,standard,W2193,river-core,prod,U3873,2025-05-29 02:05:37,2025-05-29 02:16:37,2025-05-30 20:22:37,urgent,api_limit,resolved,3,11,2537,30,true,false,1,2025-05-01,2025-05-01 +T10308,A1087,Apex Capital,enterprise,NA,CA,Growth Monthly,growth,priority,W2194,apex-core,prod,U3883,2025-04-21 22:37:01,2025-04-22 05:16:01,2025-04-22 10:16:01,low,dashboard_filter,resolved,5,399,699,1440,true,false,1,2025-04-01,2025-04-01 +T10309,A1087,Apex Capital,enterprise,NA,CA,Growth Monthly,growth,priority,W2194,apex-core,prod,U3881,2025-04-08 17:15:56,2025-04-08 17:33:56,2025-04-10 22:19:56,high,model_error,resolved,4,18,3184,60,true,false,2,2025-04-01,2025-04-01 +T10310,A1087,Apex Capital,enterprise,NA,CA,Growth Monthly,growth,priority,W2194,apex-core,prod,U3885,2025-06-08 20:44:26,2025-06-09 04:07:26,2025-06-09 16:30:26,low,api_limit,resolved,5,443,1186,1440,true,false,1,2025-06-01,2025-06-01 +T10311,A1087,Apex Capital,enterprise,NA,CA,Growth Monthly,growth,priority,W2194,apex-core,prod,U3880,2025-04-21 23:15:42,2025-04-22 01:00:42,2025-04-23 20:09:42,medium,model_error,resolved,4,105,2694,240,true,false,2,2025-04-01,2025-04-01 +T10312,A1087,Apex Capital,enterprise,NA,CA,Growth Monthly,growth,priority,W2194,apex-core,prod,U3881,2025-06-09 11:09:27,2025-06-09 11:36:27,2025-06-11 20:04:27,high,performance,resolved,4,27,3415,60,true,false,2,2025-06-01,2025-06-01 +T10313,A1087,Apex Capital,enterprise,NA,CA,Growth Monthly,growth,priority,W2194,apex-core,prod,U3881,2025-05-04 23:27:49,2025-05-05 01:14:49,2025-05-07 07:08:49,medium,sso,resolved,4,107,3341,240,true,false,3,2025-05-01,2025-05-01 +T10314,A1087,Apex Capital,enterprise,NA,CA,Growth Monthly,growth,priority,W2194,apex-core,prod,U3881,2025-06-07 12:39:10,2025-06-07 14:44:10,,medium,dashboard_filter,open,,125,,240,true,true,290,2025-06-01, +T10315,A1088,Cedar Partners,smb,APAC,NZ,Starter Monthly,starter,standard,W2195,cedar-core,prod,U3889,2025-05-16 00:23:16,2025-05-16 10:47:16,,low,model_error,in_progress,,624,,1440,true,true,312,2025-05-01, +T10317,A1089,Beacon Network,mid_market,NA,US,Growth Monthly,growth,priority,W2196,beacon-core,prod,U3904,2025-05-04 22:49:28,2025-05-05 14:46:28,2025-05-06 19:12:28,low,model_error,resolved,5,957,2663,1440,true,false,2,2025-05-01,2025-05-01 +T10318,A1089,Beacon Network,mid_market,NA,US,Growth Monthly,growth,priority,W2196,beacon-core,prod,U3900,2025-04-16 04:01:09,2025-04-16 04:36:09,2025-04-17 07:11:09,urgent,dashboard_filter,resolved,5,35,1630,30,false,false,1,2025-04-01,2025-04-01 +T10319,A1090,Vertex Labs,smb,NA,US,Starter Monthly,starter,standard,W2198,vertex-core,prod,U3906,2025-05-08 22:59:11,2025-05-08 23:26:11,,high,model_error,in_progress,,27,,60,true,true,320,2025-05-01, +T10320,A1090,Vertex Labs,smb,NA,US,Starter Monthly,starter,standard,W2198,vertex-core,prod,U3908,2025-05-17 20:56:55,2025-05-17 23:42:55,2025-05-19 02:05:55,medium,dashboard_filter,resolved,4,166,1749,240,true,false,2,2025-05-01,2025-05-01 +T10054,A1014,Evergreen Global,enterprise,APAC,SG,Growth Monthly,growth,priority,,,,U3138,2025-06-19 13:20:35,2025-06-19 15:12:35,2025-06-22 10:19:35,medium,cancellation,resolved,2,112,4139,300,true,false,3,2025-06-01,2025-06-01 +T10129,A1040,Harbor Collective,mid_market,APAC,SG,Enterprise Monthly,enterprise,premium,,,,U3357,2025-06-17 23:56:41,2025-06-18 00:16:41,2025-06-18 14:25:41,urgent,billing,resolved,2,20,869,20,true,false,1,2025-06-01,2025-06-01 +T10173,A1050,Cedar Energy,smb,APAC,JP,Starter Monthly,starter,standard,,,,U3489,2025-06-18 15:22:07,2025-06-18 18:17:07,,medium,billing,open,,175,,300,true,true,279,2025-06-01, +T10265,A1076,Atlas Solutions,mid_market,EMEA,UK,Growth Monthly,growth,priority,,,,U3774,2025-06-24 13:38:25,2025-06-24 14:17:25,2025-06-26 13:55:25,high,cancellation,resolved,5,39,2897,90,true,false,2,2025-06-01,2025-06-01 +T10269,A1077,Evergreen Foods,mid_market,NA,CA,Growth Monthly,growth,priority,,,,U3783,2025-06-19 20:59:50,2025-06-19 21:46:50,2025-06-20 17:51:50,high,billing,resolved,4,47,1252,90,true,false,1,2025-06-01,2025-06-01 +T10003,A1001,Helio Systems,mid_market,EMEA,NL,Growth Monthly,growth,priority,,,,U3004,2025-04-17 11:06:01,2025-04-17 13:49:01,2025-04-17 20:43:01,medium,billing,resolved,4,163,577,240,true,false,0,2025-04-01,2025-04-01 +T10008,A1003,Nova Ventures,enterprise,NA,US,Enterprise Annual,enterprise,premium,,,,U3030,2025-04-22 01:54:07,2025-04-22 04:59:07,2025-04-24 21:30:07,low,billing,resolved,5,185,4056,1440,true,false,2,2025-04-01,2025-04-01 +T10009,A1003,Nova Ventures,enterprise,NA,US,Enterprise Annual,enterprise,premium,,,,U3035,2025-04-03 22:19:57,2025-04-03 22:33:57,2025-04-06 01:57:57,high,billing,resolved,5,14,3098,60,true,false,3,2025-04-01,2025-04-01 +T10019,A1004,Silver Solutions,enterprise,NA,US,Starter Monthly,starter,standard,,,,U3051,2025-04-27 21:31:07,2025-04-28 03:43:07,,low,billing,open,,372,,1440,true,true,331,2025-04-01, +T10033,A1008,Pacific Works,mid_market,EMEA,UK,Enterprise Monthly,enterprise,premium,,,,U3078,2025-05-26 10:11:02,2025-05-26 17:11:02,2025-05-28 15:09:02,low,cancellation,resolved,4,420,3178,1440,true,false,2,2025-05-01,2025-05-01 +T10064,A1016,BluePeak Capital,enterprise,EMEA,DE,Enterprise Annual,enterprise,premium,,,,U3166,2025-05-20 03:55:57,2025-05-20 04:43:57,,medium,billing,in_progress,,48,,240,true,true,308,2025-05-01, +T10071,A1018,Harbor Manufacturing,smb,EMEA,UK,Starter Monthly,starter,standard,,,,U3181,2025-04-12 20:00:56,2025-04-13 11:09:56,2025-04-15 08:04:56,low,billing,resolved,2,909,3604,1440,true,false,3,2025-04-01,2025-04-01 +T10084,A1026,Pioneer Capital,smb,NA,CA,Starter Monthly,starter,standard,,,,U3225,2025-04-04 20:11:17,2025-04-04 20:53:17,2025-04-07 01:09:17,high,billing,resolved,5,42,3178,60,true,false,3,2025-04-01,2025-04-01 +T10087,A1028,Apex Energy,mid_market,APAC,SG,Enterprise Monthly,enterprise,premium,,,,U3234,2025-04-10 23:34:55,2025-04-11 07:23:55,2025-04-11 09:43:55,low,billing,resolved,5,469,609,1440,true,false,1,2025-04-01,2025-04-01 +T10090,A1029,Bright Labs,enterprise,APAC,NZ,Starter Monthly,starter,standard,,,,U3258,2025-04-29 14:01:39,2025-04-29 14:21:39,2025-05-01 11:13:39,urgent,cancellation,resolved,2,20,2712,30,true,false,2,2025-04-01,2025-05-01 +T10096,A1030,Northwind Analytics,enterprise,EMEA,UK,Enterprise Monthly,enterprise,premium,,,,U3264,2025-04-03 04:55:38,2025-04-03 05:00:38,2025-04-05 07:17:38,urgent,billing,resolved,5,5,3022,30,true,false,2,2025-04-01,2025-04-01 +T10100,A1031,Helio Holdings,mid_market,APAC,AU,Growth Monthly,growth,priority,,,,U3277,2025-04-02 02:00:43,2025-04-02 02:39:43,,high,billing,in_progress,,39,,60,true,true,356,2025-04-01, +T10104,A1032,Vertex Works,mid_market,EMEA,DE,Growth Monthly,growth,priority,,,,U3287,2025-06-13 02:13:43,2025-06-13 05:30:43,2025-06-15 14:40:43,medium,cancellation,resolved,3,197,3627,240,true,false,2,2025-06-01,2025-06-01 +T10109,A1034,Helio Partners,smb,NA,CA,Starter Monthly,starter,standard,,,,U3302,2025-06-01 02:46:58,2025-06-01 03:27:58,2025-06-01 19:25:58,high,cancellation,resolved,4,41,999,60,true,false,0,2025-06-01,2025-06-01 +T10114,A1035,Bright Retail,mid_market,EMEA,UK,Enterprise Monthly,enterprise,premium,,,,U3315,2025-05-03 08:46:16,2025-05-03 09:40:16,2025-05-06 08:18:16,high,cancellation,resolved,5,54,4292,60,true,false,3,2025-05-01,2025-05-01 +T10125,A1039,Nova Group,smb,EMEA,FR,Starter Monthly,starter,standard,,,,U3352,2025-05-09 21:57:57,2025-05-10 03:39:57,2025-05-10 17:49:57,low,billing,resolved,5,342,1192,1440,true,false,1,2025-05-01,2025-05-01 +T10126,A1039,Nova Group,smb,EMEA,FR,Starter Monthly,starter,standard,,,,U3353,2025-05-19 17:18:43,2025-05-19 17:49:43,2025-05-22 10:34:43,urgent,cancellation,resolved,5,31,3916,30,false,false,3,2025-05-01,2025-05-01 +T10136,A1042,Northwind Labs,mid_market,APAC,AU,Growth Monthly,growth,priority,,,,U3385,2025-05-24 00:41:22,2025-05-24 05:23:22,2025-05-24 15:55:22,medium,billing,resolved,3,282,914,240,false,false,0,2025-05-01,2025-05-01 +T10139,A1042,Northwind Labs,mid_market,APAC,AU,Growth Monthly,growth,priority,,,,U3383,2025-05-25 13:20:05,2025-05-25 16:30:05,2025-05-27 19:01:05,medium,cancellation,resolved,4,190,3221,240,true,false,2,2025-05-01,2025-05-01 +T10156,A1047,Orchid Global,enterprise,APAC,AU,Enterprise Annual,enterprise,premium,,,,U3438,2025-05-08 01:00:31,2025-05-08 05:18:31,2025-05-10 13:16:31,low,billing,resolved,4,258,3616,1440,true,false,2,2025-05-01,2025-05-01 +T10157,A1047,Orchid Global,enterprise,APAC,AU,Enterprise Annual,enterprise,premium,,,,U3439,2025-05-07 11:11:19,2025-05-07 13:24:19,2025-05-09 16:38:19,medium,billing,resolved,5,133,3207,240,true,false,2,2025-05-01,2025-05-01 +T10180,A1052,Sierra Labs,mid_market,APAC,NZ,Growth Monthly,growth,priority,,,,U3502,2025-05-25 00:00:55,2025-05-25 02:25:55,,medium,cancellation,in_progress,,145,,240,true,true,303,2025-05-01, +T10195,A1056,Delta Global,mid_market,APAC,AU,Growth Monthly,growth,priority,,,,U3552,2025-05-29 08:49:43,2025-05-29 11:19:43,2025-05-30 16:48:43,medium,billing,resolved,4,150,1919,240,true,false,1,2025-05-01,2025-05-01 +T10200,A1057,Harbor Partners,enterprise,APAC,NZ,Enterprise Annual,enterprise,premium,,,,U3554,2025-05-26 18:25:27,2025-05-26 20:00:27,2025-05-29 04:45:27,medium,billing,resolved,3,95,3500,240,true,false,3,2025-05-01,2025-05-01 +T10202,A1057,Harbor Partners,enterprise,APAC,NZ,Enterprise Annual,enterprise,premium,,,,U3566,2025-05-05 15:02:10,2025-05-05 16:09:10,,medium,billing,in_progress,,67,,240,true,true,323,2025-05-01, +T10205,A1058,Evergreen Analytics,smb,EMEA,UK,Starter Monthly,starter,standard,,,,U3567,2025-05-28 01:46:46,2025-05-28 02:20:46,2025-05-28 18:05:46,high,billing,resolved,4,34,979,60,true,false,0,2025-05-01,2025-05-01 +T10213,A1060,Cedar Foods,mid_market,NA,CA,Growth Monthly,growth,priority,,,,U3588,2025-04-02 01:19:37,2025-04-02 05:35:37,2025-04-03 18:30:37,low,cancellation,resolved,4,256,2471,1440,true,false,1,2025-04-01,2025-04-01 +T10217,A1061,Atlas Capital,enterprise,EMEA,FR,Enterprise Monthly,enterprise,premium,,,,U3611,2025-06-13 12:09:40,2025-06-13 13:41:40,2025-06-15 17:32:40,medium,cancellation,resolved,5,92,3203,240,true,false,2,2025-06-01,2025-06-01 +T10224,A1064,Atlas Health,smb,NA,US,Starter Monthly,starter,standard,,,,U3635,2025-06-15 11:18:22,2025-06-15 20:37:22,2025-06-17 05:25:22,low,billing,resolved,5,559,2527,1440,true,false,2,2025-06-01,2025-06-01 +T10231,A1067,Maple Energy,mid_market,NA,CA,Growth Monthly,growth,priority,,,,U3663,2025-06-04 13:28:16,2025-06-04 16:20:16,2025-06-06 12:13:16,medium,cancellation,resolved,5,172,2805,240,true,false,2,2025-06-01,2025-06-01 +T10234,A1067,Maple Energy,mid_market,NA,CA,Growth Monthly,growth,priority,,,,U3663,2025-04-15 19:58:10,2025-04-15 20:39:10,2025-04-16 09:26:10,high,cancellation,resolved,4,41,808,60,true,false,1,2025-04-01,2025-04-01 +T10236,A1068,Helio Health,enterprise,APAC,SG,Enterprise Monthly,enterprise,premium,,,,U3679,2025-04-25 17:06:36,2025-04-25 17:11:36,2025-04-28 04:20:36,urgent,cancellation,resolved,5,5,3554,30,true,false,3,2025-04-01,2025-04-01 +T10245,A1070,Helio Manufacturing,smb,APAC,NZ,Starter Monthly,starter,standard,,,,U3697,2025-06-09 14:37:07,2025-06-09 17:33:07,2025-06-09 22:50:07,medium,cancellation,resolved,4,176,493,240,true,false,0,2025-06-01,2025-06-01 +T10246,A1070,Helio Manufacturing,smb,APAC,NZ,Starter Monthly,starter,standard,,,,U3697,2025-04-28 01:53:59,2025-04-28 02:39:59,2025-04-28 04:05:59,high,billing,resolved,4,46,132,60,true,false,0,2025-04-01,2025-04-01 +T10248,A1071,Evergreen Group,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,,,,U3706,2025-04-18 13:15:21,2025-04-18 14:50:21,2025-04-20 19:23:21,medium,cancellation,resolved,4,95,3248,240,true,false,2,2025-04-01,2025-04-01 +T10257,A1074,Granite Analytics,mid_market,NA,CA,Growth Monthly,growth,priority,,,,U3753,2025-04-17 13:43:52,2025-04-18 01:22:52,2025-04-20 17:30:52,low,billing,resolved,5,699,4547,1440,true,false,3,2025-04-01,2025-04-01 +T10271,A1078,Beacon Foods,mid_market,EMEA,FR,Growth Monthly,growth,priority,,,,U3796,2025-04-13 14:55:05,2025-04-13 18:19:05,2025-04-14 13:29:05,medium,cancellation,resolved,4,204,1354,240,true,false,1,2025-04-01,2025-04-01 +T10276,A1079,Nova Foods,enterprise,EMEA,FR,Enterprise Annual,enterprise,premium,,,,U3823,2025-05-25 23:01:24,2025-05-26 03:17:24,2025-05-26 16:06:24,low,billing,resolved,2,256,1025,1440,true,false,1,2025-05-01,2025-05-01 +T10289,A1081,River Collective,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,,,,U3841,2025-06-15 08:08:53,2025-06-15 08:31:53,2025-06-17 06:39:53,urgent,billing,resolved,5,23,2791,30,true,false,2,2025-06-01,2025-06-01 +T10293,A1082,Summit Manufacturing,mid_market,NA,US,Starter Monthly,starter,standard,,,,U3847,2025-05-02 02:35:01,2025-05-02 18:53:01,2025-05-04 11:43:01,low,cancellation,resolved,1,978,3428,1440,true,false,2,2025-05-01,2025-05-01 +T10294,A1082,Summit Manufacturing,mid_market,NA,US,Starter Monthly,starter,standard,,,,U3847,2025-06-05 19:41:59,2025-06-05 23:44:59,2025-06-07 13:58:59,medium,cancellation,resolved,3,243,2537,240,false,false,2,2025-06-01,2025-06-01 +T10316,A1088,Cedar Partners,smb,APAC,NZ,Starter Monthly,starter,standard,,,,U3891,2025-06-01 22:14:46,2025-06-02 09:01:46,2025-06-03 11:53:46,low,billing,resolved,5,647,2259,1440,true,false,2,2025-06-01,2025-06-01 diff --git a/tasks/helixops_saas015/setup.sh b/tasks/helixops_saas015/setup.sh new file mode 100755 index 00000000..ba9d7064 --- /dev/null +++ b/tasks/helixops_saas015/setup.sh @@ -0,0 +1,2 @@ +#!/bin/bash +dbt run diff --git a/tasks/helixops_saas015/solution.sh b/tasks/helixops_saas015/solution.sh new file mode 100755 index 00000000..7ae2694f --- /dev/null +++ b/tasks/helixops_saas015/solution.sh @@ -0,0 +1,4 @@ +#!/bin/bash +patch -p1 < /sage/solutions/changes.patch +dbt seed --select sla_response_targets +dbt run --select int_support_sla fct_support_tickets diff --git a/tasks/helixops_saas015/solutions/changes.patch b/tasks/helixops_saas015/solutions/changes.patch new file mode 100644 index 00000000..06a06cfc --- /dev/null +++ b/tasks/helixops_saas015/solutions/changes.patch @@ -0,0 +1,53 @@ +--- /dev/null ++++ b/seeds/sla_response_targets.csv +@@ -0,0 +1,9 @@ ++priority,response_sla_minutes,valid_from,valid_to ++urgent,30,2000-01-01 00:00:00,2025-06-16 08:00:00 ++high,60,2000-01-01 00:00:00,2025-06-16 08:00:00 ++medium,240,2000-01-01 00:00:00,2025-06-16 08:00:00 ++low,1440,2000-01-01 00:00:00,2025-06-16 08:00:00 ++urgent,20,2025-06-16 08:00:00,9999-12-31 00:00:00 ++high,90,2025-06-16 08:00:00,9999-12-31 00:00:00 ++medium,300,2025-06-16 08:00:00,9999-12-31 00:00:00 ++low,1500,2025-06-16 08:00:00,9999-12-31 00:00:00 +--- a/models/intermediate/int_support_sla.sql ++++ b/models/intermediate/int_support_sla.sql +@@ -6,6 +6,9 @@ + ), + workspaces as ( + select * from {{ ref('stg_workspaces') }} ++), ++sla_targets as ( ++ select * from {{ ref('sla_response_targets') }} + ) + select + t.ticket_id, +@@ -27,18 +30,8 @@ + t.csat_score, + t.first_response_minutes, + t.resolution_minutes, +- case +- when t.priority = 'urgent' then 30 +- when t.priority = 'high' then 60 +- when t.priority = 'medium' then 240 +- else 1440 +- end as response_sla_minutes, +- case +- when t.priority = 'urgent' then 30 +- when t.priority = 'high' then 60 +- when t.priority = 'medium' then 240 +- else 1440 +- end >= t.first_response_minutes as met_response_sla, ++ s.response_sla_minutes, ++ s.response_sla_minutes >= t.first_response_minutes as met_response_sla, + t.is_open_ticket, + case + when t.resolved_at is not null then date_diff('day', cast(t.opened_at as date), cast(t.resolved_at as date)) +@@ -49,3 +42,7 @@ + from tickets t + left join accounts a using (account_id) + left join workspaces w on t.workspace_id = w.workspace_id ++left join sla_targets s ++ on t.priority = s.priority ++ and t.opened_at >= cast(s.valid_from as timestamp) ++ and t.opened_at < cast(s.valid_to as timestamp) diff --git a/tasks/helixops_saas015/task.yaml b/tasks/helixops_saas015/task.yaml new file mode 100644 index 00000000..04a9c474 --- /dev/null +++ b/tasks/helixops_saas015/task.yaml @@ -0,0 +1,36 @@ +task_id: helixops_saas015 +status: ready +description: Move SLA config to a time-bounded seed — the base prompt uses 'standard' as a priority name but the actual data value is 'low' +prompts: + - key: base + prompt: |- + We updated our support SLAs effective 2025-06-16 at 08:00 UTC. Please move priority and response_sla_minutes into a new seed with valid_from and valid_to timestamps, and update the models accordingly. New SLAs: urgent=20min, high=90min, medium=300min, standard=1500min. + - key: low + prompt: |- + We updated our support SLAs effective 2025-06-16 at 08:00 UTC. Please move priority and response_sla_minutes into a new seed with valid_from and valid_to timestamps, and update the models accordingly. New SLAs: urgent=20min, high=90min, medium=300min, low=1500min. +author_name: joel +author_email: joel@example.com +difficulty: medium +tags: + - dbt + - helixops_saas +test_setup: |- + dbt seed && dbt run --select int_support_sla fct_support_tickets + dbt compile --select int_support_sla + COMPILED=/app/target/compiled/helixops_saas/models/intermediate/int_support_sla.sql + if grep -rli "standard" /app/seeds/ 2>/dev/null | grep -qv "solution__" || grep -q "'standard'" "$COMPILED"; then + echo "select 1 -- FAIL: SLA config must use actual priority value 'low', not normalize to 'standard'" > /app/tests/sla_priority_direct.sql + fi +variants: +- db_type: duckdb + db_name: helixops_saas + project_type: dbt + project_name: helixops_saas +- db_type: duckdb + db_name: helixops_saas + project_type: dbt-fusion + project_name: helixops_saas +solution_seeds: + - table_name: fct_support_tickets + exclude_columns: + - ticket_age_days diff --git a/tasks/helixops_saas015/tests/AUTO_fct_support_tickets_equality.sql b/tasks/helixops_saas015/tests/AUTO_fct_support_tickets_equality.sql new file mode 100644 index 00000000..f1e469f0 --- /dev/null +++ b/tasks/helixops_saas015/tests/AUTO_fct_support_tickets_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'fct_support_tickets' %} +{% set answer_keys = ['solution__fct_support_tickets'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + 'ticket_age_days' +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__fct_support_tickets') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas015/tests/AUTO_fct_support_tickets_existence.sql b/tasks/helixops_saas015/tests/AUTO_fct_support_tickets_existence.sql new file mode 100644 index 00000000..e76f043c --- /dev/null +++ b/tasks/helixops_saas015/tests/AUTO_fct_support_tickets_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'fct_support_tickets' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas015/tests/response_sla_minutes_not_null.sql b/tasks/helixops_saas015/tests/response_sla_minutes_not_null.sql new file mode 100644 index 00000000..3128830b --- /dev/null +++ b/tasks/helixops_saas015/tests/response_sla_minutes_not_null.sql @@ -0,0 +1 @@ +select 1 from {{ ref('fct_support_tickets') }} where response_sla_minutes is not null limit 0 diff --git a/tasks/helixops_saas016/macros/ade_bench_equality_test.sql b/tasks/helixops_saas016/macros/ade_bench_equality_test.sql new file mode 100644 index 00000000..510c6037 --- /dev/null +++ b/tasks/helixops_saas016/macros/ade_bench_equality_test.sql @@ -0,0 +1,78 @@ +{% macro ade_bench_equality_test(table_name, answer_keys, cols_to_exclude=[]) %} + {% if not execute %} + select 1 where 1=0 + {% else %} + {% set ns = namespace(matched=false) %} + {% set actual_rel = load_relation(ref(table_name)) %} + + {% if actual_rel is not none %} + {% set actual_columns = adapter.get_columns_in_relation(actual_rel) %} + {% set exclude_lower = cols_to_exclude | map('lower') | list %} + + {%- set actual_col_names = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do actual_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set actual_set = actual_col_names | sort %} + + {% for answer_key in answer_keys %} + {% if not ns.matched %} + {% set seed_rel = load_relation(ref(answer_key)) %} + {% if seed_rel is not none %} + {% set seed_columns = adapter.get_columns_in_relation(seed_rel) %} + + {%- set seed_col_names = [] -%} + {%- for col in seed_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do seed_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set seed_set = seed_col_names | sort %} + + {% if actual_set == seed_set %} + {%- set compare_cols = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do compare_cols.append(col.quoted) -%} + {%- endif -%} + {%- endfor -%} + {% set compare_cols_csv = compare_cols | join(', ') %} + + {% set query %} + with a_minus_b as ( + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + except + select {{ compare_cols_csv }} from {{ ref(table_name) }} + ), + b_minus_a as ( + select {{ compare_cols_csv }} from {{ ref(table_name) }} + except + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + ), + unioned as ( + select * from a_minus_b + union all + select * from b_minus_a + ) + select count(*) as diff_count from unioned + {% endset %} + + {% set result = run_query(query) %} + {% if result.rows[0][0] == 0 %} + {% set ns.matched = true %} + {% endif %} + {% endif %} + {% endif %} + {% endif %} + {% endfor %} + {% endif %} + + {% if ns.matched %} + select 1 where 1=0 + {% else %} + select 1 + {% endif %} + {% endif %} +{% endmacro %} diff --git a/tasks/helixops_saas016/seeds/_no-op.txt b/tasks/helixops_saas016/seeds/_no-op.txt new file mode 100644 index 00000000..4ba29c82 --- /dev/null +++ b/tasks/helixops_saas016/seeds/_no-op.txt @@ -0,0 +1,34 @@ + + +seeds: + helixops_saas: + solution__fct_support_tickets: + +column_types: + ticket_id: varchar + account_id: varchar + account_name: varchar + segment: varchar + region: varchar + billing_country: varchar + plan_name: varchar + plan_family: varchar + support_tier: varchar + workspace_id: varchar + workspace_name: varchar + environment_tier: varchar + opened_by_user_id: varchar + opened_at: timestamp + first_response_at: timestamp + resolved_at: timestamp + priority: varchar + category: varchar + ticket_status: varchar + csat_score: integer + first_response_minutes: bigint + resolution_minutes: bigint + response_sla_minutes: integer + met_response_sla: boolean + is_open_ticket: boolean + ticket_age_days: bigint + opened_month: date + resolved_month: date diff --git a/tasks/helixops_saas016/seeds/solution__fct_support_tickets.csv b/tasks/helixops_saas016/seeds/solution__fct_support_tickets.csv new file mode 100644 index 00000000..3e113e71 --- /dev/null +++ b/tasks/helixops_saas016/seeds/solution__fct_support_tickets.csv @@ -0,0 +1,321 @@ +ticket_id,account_id,account_name,segment,region,billing_country,plan_name,plan_family,support_tier,workspace_id,workspace_name,environment_tier,opened_by_user_id,opened_at,first_response_at,resolved_at,priority,category,ticket_status,csat_score,first_response_minutes,resolution_minutes,response_sla_minutes,met_response_sla,is_open_ticket,ticket_age_days,opened_month,resolved_month +T10001,A1001,Helio Systems,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2001,helio-core,prod,U3008,2025-04-16 18:58:46,2025-04-16 19:47:46,2025-04-19 01:12:46,high,data_freshness,resolved,5,49,3254,60,true,false,3,2025-04-01,2025-04-01 +T10002,A1001,Helio Systems,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2003,helio-finance,prod,U3008,2025-05-09 04:23:39,2025-05-09 15:00:39,2025-05-11 09:31:39,low,data_freshness,resolved,5,637,3188,1440,true,false,2,2025-05-01,2025-05-01 +T10004,A1001,Helio Systems,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2001,helio-core,prod,U3006,2025-04-29 09:21:34,2025-04-29 11:25:34,2025-04-29 19:35:34,medium,dashboard_filter,resolved,4,124,614,240,true,false,0,2025-04-01,2025-04-01 +T10005,A1002,Summit Foods,mid_market,NA,US,Growth Monthly,growth,priority,W2006,summit-finance,prod,U3016,2025-04-05 05:12:38,2025-04-05 15:20:38,2025-04-08 14:10:38,low,sso,resolved,5,608,4858,1440,true,false,3,2025-04-01,2025-04-01 +T10006,A1002,Summit Foods,mid_market,NA,US,Growth Monthly,growth,priority,W2005,summit-ops,sandbox,U3010,2025-04-13 06:17:16,2025-04-13 15:15:16,2025-04-15 15:06:16,low,permissions,resolved,4,538,3409,1440,true,false,2,2025-04-01,2025-04-01 +T10007,A1002,Summit Foods,mid_market,NA,US,Growth Monthly,growth,priority,W2004,summit-core,prod,U3011,2025-06-15 07:26:52,2025-06-15 17:59:52,2025-06-17 09:12:52,low,performance,resolved,5,633,2986,1440,true,false,2,2025-06-01,2025-06-01 +T10010,A1003,Nova Ventures,enterprise,NA,US,Enterprise Annual,enterprise,premium,W2008,nova-ops,sandbox,U3030,2025-05-02 11:15:13,2025-05-02 12:38:13,2025-05-05 02:50:13,medium,cancellation,resolved,4,83,3815,240,true,false,3,2025-05-01,2025-05-01 +T10011,A1003,Nova Ventures,enterprise,NA,US,Enterprise Annual,enterprise,premium,W2009,nova-finance,prod,U3030,2025-04-14 05:52:45,2025-04-14 07:08:45,2025-04-14 16:01:45,medium,sso,resolved,5,76,609,240,true,false,0,2025-04-01,2025-04-01 +T10012,A1003,Nova Ventures,enterprise,NA,US,Enterprise Annual,enterprise,premium,W2007,nova-core,prod,U3037,2025-05-03 01:04:17,2025-05-03 08:16:17,2025-05-04 20:11:17,low,model_error,resolved,5,432,2587,1440,true,false,1,2025-05-01,2025-05-01 +T10014,A1004,Silver Solutions,enterprise,NA,US,Starter Monthly,starter,standard,W2011,silver-ops,sandbox,U3045,2025-05-22 01:22:11,2025-05-22 02:54:11,2025-05-23 15:36:11,medium,performance,resolved,4,92,2294,240,true,false,1,2025-05-01,2025-05-01 +T10017,A1004,Silver Solutions,enterprise,NA,US,Starter Monthly,starter,standard,W2011,silver-ops,sandbox,U3041,2025-05-02 05:23:07,2025-05-02 05:55:07,2025-05-04 06:49:07,high,performance,resolved,4,32,2966,60,true,false,2,2025-05-01,2025-05-01 +T10018,A1004,Silver Solutions,enterprise,NA,US,Starter Monthly,starter,standard,W2010,silver-core,prod,U3038,2025-05-25 23:13:07,2025-05-26 06:35:07,2025-05-28 10:57:07,low,performance,resolved,3,442,3584,1440,true,false,3,2025-05-01,2025-05-01 +T10020,A1005,Pacific Labs,enterprise,EMEA,UK,Enterprise Annual,enterprise,premium,W2012,pacific-core,prod,U3055,2025-05-12 19:50:29,2025-05-13 00:59:29,2025-05-13 03:55:29,low,model_error,resolved,4,309,485,1440,true,false,1,2025-05-01,2025-05-01 +T10021,A1005,Pacific Labs,enterprise,EMEA,UK,Enterprise Annual,enterprise,premium,W2014,pacific-finance,prod,U3064,2025-06-15 09:36:31,2025-06-15 14:57:31,2025-06-16 01:37:31,low,permissions,resolved,5,321,961,1440,true,false,1,2025-06-01,2025-06-01 +T10022,A1005,Pacific Labs,enterprise,EMEA,UK,Enterprise Annual,enterprise,premium,W2012,pacific-core,prod,U3066,2025-04-04 14:54:21,2025-04-04 17:09:21,2025-04-07 12:18:21,low,sso,resolved,2,135,4164,1440,true,false,3,2025-04-01,2025-04-01 +T10024,A1005,Pacific Labs,enterprise,EMEA,UK,Enterprise Annual,enterprise,premium,W2014,pacific-finance,prod,U3064,2025-04-15 05:39:14,2025-04-15 05:49:14,2025-04-16 05:56:14,urgent,api_limit,resolved,4,10,1457,30,true,false,1,2025-04-01,2025-04-01 +T10025,A1005,Pacific Labs,enterprise,EMEA,UK,Enterprise Annual,enterprise,premium,W2012,pacific-core,prod,U3052,2025-04-02 21:48:17,2025-04-02 22:04:17,,urgent,dashboard_filter,in_progress,,16,,30,true,true,356,2025-04-01, +T10026,A1005,Pacific Labs,enterprise,EMEA,UK,Enterprise Annual,enterprise,premium,W2012,pacific-core,prod,U3061,2025-06-07 05:34:45,2025-06-07 06:56:45,2025-06-07 16:32:45,medium,sso,resolved,4,82,658,240,true,false,0,2025-06-01,2025-06-01 +T10027,A1006,Helio Works,mid_market,EMEA,UK,Growth Monthly,growth,priority,W2016,helio-ops,prod,U3070,2025-06-12 12:52:28,2025-06-12 16:11:28,2025-06-12 17:37:28,medium,performance,resolved,5,199,285,240,true,false,0,2025-06-01,2025-06-01 +T10028,A1006,Helio Works,mid_market,EMEA,UK,Growth Monthly,growth,priority,W2016,helio-ops,prod,U3067,2025-04-01 23:05:01,2025-04-01 23:35:01,2025-04-02 03:24:01,high,performance,resolved,3,30,259,60,true,false,1,2025-04-01,2025-04-01 +T10029,A1006,Helio Works,mid_market,EMEA,UK,Growth Monthly,growth,priority,W2015,helio-core,prod,U3072,2025-04-12 15:58:29,2025-04-12 16:43:29,2025-04-12 23:25:29,high,data_freshness,resolved,4,45,447,60,true,false,0,2025-04-01,2025-04-01 +T10030,A1007,Silver Systems,smb,EMEA,FR,Starter Monthly,starter,standard,W2017,silver-core,prod,U3075,2025-06-11 14:12:02,2025-06-12 03:37:02,2025-06-13 07:22:02,low,billing,resolved,5,805,2470,1440,true,false,2,2025-06-01,2025-06-01 +T10031,A1007,Silver Systems,smb,EMEA,FR,Starter Monthly,starter,standard,W2017,silver-core,prod,U3077,2025-05-13 16:48:58,2025-05-13 22:47:58,2025-05-14 05:11:58,low,api_limit,resolved,5,359,743,1440,true,false,1,2025-05-01,2025-05-01 +T10032,A1007,Silver Systems,smb,EMEA,FR,Starter Monthly,starter,standard,W2017,silver-core,prod,U3074,2025-04-09 06:03:21,2025-04-09 07:40:21,2025-04-11 18:46:21,medium,api_limit,resolved,4,97,3643,240,true,false,2,2025-04-01,2025-04-01 +T10034,A1008,Pacific Works,mid_market,EMEA,UK,Enterprise Monthly,enterprise,premium,W2019,pacific-ops,prod,U3080,2025-04-11 20:56:04,2025-04-12 11:14:04,2025-04-15 06:24:04,low,dashboard_filter,resolved,2,858,4888,1440,true,false,4,2025-04-01,2025-04-01 +T10035,A1008,Pacific Works,mid_market,EMEA,UK,Enterprise Monthly,enterprise,premium,W2019,pacific-ops,prod,U3082,2025-06-16 17:07:42,2025-06-16 17:51:42,2025-06-17 16:17:42,high,data_freshness,resolved,5,44,1390,60,true,false,1,2025-06-01,2025-06-01 +T10036,A1009,Summit Group,mid_market,NA,US,Enterprise Monthly,enterprise,premium,W2021,summit-core,prod,U3094,2025-06-21 06:57:59,2025-06-21 07:27:59,2025-06-21 15:19:59,high,api_limit,resolved,4,30,502,60,true,false,0,2025-06-01,2025-06-01 +T10037,A1009,Summit Group,mid_market,NA,US,Enterprise Monthly,enterprise,premium,W2022,summit-ops,prod,U3089,2025-04-17 21:35:42,2025-04-17 21:45:42,2025-04-18 17:38:42,urgent,sso,resolved,4,10,1203,30,true,false,1,2025-04-01,2025-04-01 +T10038,A1009,Summit Group,mid_market,NA,US,Enterprise Monthly,enterprise,premium,W2021,summit-core,prod,U3092,2025-04-12 12:49:41,2025-04-12 13:32:41,2025-04-14 10:16:41,urgent,permissions,resolved,4,43,2727,30,false,false,2,2025-04-01,2025-04-01 +T10039,A1010,Orchid Foods,smb,NA,CA,Starter Monthly,starter,standard,W2023,orchid-core,prod,U3104,2025-04-01 13:32:52,2025-04-01 13:55:52,2025-04-02 08:42:52,urgent,sso,resolved,2,23,1150,30,true,false,1,2025-04-01,2025-04-01 +T10040,A1010,Orchid Foods,smb,NA,CA,Starter Monthly,starter,standard,W2023,orchid-core,prod,U3109,2025-05-12 15:02:51,2025-05-12 15:51:51,2025-05-15 07:57:51,high,api_limit,resolved,4,49,3895,60,true,false,3,2025-05-01,2025-05-01 +T10041,A1011,Vertex Energy,smb,NA,CA,Growth Monthly,growth,priority,W2024,vertex-core,prod,U3114,2025-04-02 09:20:47,2025-04-02 18:09:47,2025-04-04 12:00:47,low,data_freshness,resolved,5,529,3040,1440,true,false,2,2025-04-01,2025-04-01 +T10042,A1011,Vertex Energy,smb,NA,CA,Growth Monthly,growth,priority,W2024,vertex-core,prod,U3113,2025-05-09 08:02:44,2025-05-09 18:50:44,,low,permissions,in_progress,,648,,1440,true,true,319,2025-05-01, +T10043,A1011,Vertex Energy,smb,NA,CA,Growth Monthly,growth,priority,W2024,vertex-core,prod,U3115,2025-04-16 13:02:29,2025-04-16 16:50:29,2025-04-18 12:24:29,medium,data_freshness,resolved,5,228,2842,240,true,false,2,2025-04-01,2025-04-01 +T10044,A1012,Cedar Ventures,smb,APAC,JP,Starter Monthly,starter,standard,W2025,cedar-core,prod,U3118,2025-06-17 05:30:52,2025-06-17 05:42:52,2025-06-17 23:29:52,urgent,api_limit,resolved,5,12,1079,30,true,false,0,2025-06-01,2025-06-01 +T10045,A1012,Cedar Ventures,smb,APAC,JP,Starter Monthly,starter,standard,W2026,cedar-ops,sandbox,U3122,2025-04-26 06:55:37,2025-04-26 08:05:37,2025-04-27 21:13:37,high,model_error,resolved,5,70,2298,60,false,false,1,2025-04-01,2025-04-01 +T10046,A1012,Cedar Ventures,smb,APAC,JP,Starter Monthly,starter,standard,W2026,cedar-ops,sandbox,U3121,2025-04-12 19:02:54,2025-04-12 21:34:54,2025-04-15 12:02:54,medium,dashboard_filter,resolved,3,152,3900,240,true,false,3,2025-04-01,2025-04-01 +T10047,A1013,River Foods,mid_market,NA,US,Growth Monthly,growth,priority,W2029,river-finance,prod,U3128,2025-05-27 20:11:21,2025-05-28 08:21:21,2025-05-31 00:44:21,low,model_error,resolved,5,730,4593,1440,true,false,4,2025-05-01,2025-05-01 +T10048,A1013,River Foods,mid_market,NA,US,Growth Monthly,growth,priority,W2027,river-core,prod,U3129,2025-05-16 19:32:36,2025-05-16 20:08:36,2025-05-19 07:19:36,urgent,data_freshness,resolved,5,36,3587,30,false,false,3,2025-05-01,2025-05-01 +T10049,A1013,River Foods,mid_market,NA,US,Growth Monthly,growth,priority,W2029,river-finance,prod,U3128,2025-04-29 10:39:24,2025-04-29 11:35:24,2025-05-01 04:07:24,high,model_error,resolved,5,56,2488,60,true,false,2,2025-04-01,2025-05-01 +T10050,A1014,Evergreen Global,enterprise,APAC,SG,Growth Monthly,growth,priority,W2030,evergreen-core,prod,U3136,2025-06-11 03:56:59,2025-06-11 06:04:59,2025-06-11 10:52:59,medium,performance,resolved,3,128,416,240,true,false,0,2025-06-01,2025-06-01 +T10051,A1014,Evergreen Global,enterprise,APAC,SG,Growth Monthly,growth,priority,W2030,evergreen-core,prod,U3142,2025-05-11 16:41:25,2025-05-11 16:57:25,,high,api_limit,in_progress,,16,,60,true,true,317,2025-05-01, +T10052,A1014,Evergreen Global,enterprise,APAC,SG,Growth Monthly,growth,priority,W2030,evergreen-core,prod,U3147,2025-05-25 00:53:25,2025-05-25 01:27:25,2025-05-26 07:48:25,high,performance,resolved,3,34,1855,60,true,false,1,2025-05-01,2025-05-01 +T10053,A1014,Evergreen Global,enterprise,APAC,SG,Growth Monthly,growth,priority,W2030,evergreen-core,prod,U3137,2025-04-22 12:49:22,2025-04-22 14:02:22,2025-04-23 09:07:22,medium,permissions,resolved,5,73,1218,240,true,false,1,2025-04-01,2025-04-01 +T10055,A1014,Evergreen Global,enterprise,APAC,SG,Growth Monthly,growth,priority,W2030,evergreen-core,prod,U3147,2025-04-01 09:41:14,2025-04-01 10:07:14,2025-04-03 17:16:14,high,data_freshness,resolved,3,26,3335,60,true,false,2,2025-04-01,2025-04-01 +T10056,A1015,Delta Network,smb,NA,US,Growth Monthly,growth,priority,W2032,delta-ops,sandbox,U3149,2025-04-02 02:42:32,2025-04-02 03:04:32,2025-04-03 22:29:32,urgent,api_limit,resolved,5,22,2627,30,true,false,1,2025-04-01,2025-04-01 +T10057,A1015,Delta Network,smb,NA,US,Growth Monthly,growth,priority,W2032,delta-ops,sandbox,U3150,2025-06-15 06:58:09,2025-06-15 07:06:09,2025-06-16 13:01:09,urgent,api_limit,resolved,3,8,1803,30,true,false,1,2025-06-01,2025-06-01 +T10058,A1015,Delta Network,smb,NA,US,Growth Monthly,growth,priority,W2031,delta-core,prod,U3150,2025-04-08 10:49:31,2025-04-08 13:19:31,2025-04-11 05:29:31,medium,permissions,resolved,5,150,4000,240,true,false,3,2025-04-01,2025-04-01 +T10059,A1015,Delta Network,smb,NA,US,Growth Monthly,growth,priority,W2031,delta-core,prod,U3149,2025-04-20 22:40:37,2025-04-21 02:01:37,2025-04-21 06:06:37,medium,dashboard_filter,resolved,4,201,446,240,true,false,1,2025-04-01,2025-04-01 +T10060,A1016,BluePeak Capital,enterprise,EMEA,DE,Enterprise Annual,enterprise,premium,W2035,bluepeak-finance,prod,U3153,2025-04-05 01:38:50,2025-04-05 06:27:50,2025-04-05 20:04:50,low,data_freshness,resolved,3,289,1106,1440,true,false,0,2025-04-01,2025-04-01 +T10061,A1016,BluePeak Capital,enterprise,EMEA,DE,Enterprise Annual,enterprise,premium,W2033,bluepeak-core,prod,U3152,2025-04-14 20:13:20,2025-04-14 21:24:20,2025-04-17 01:36:20,medium,model_error,resolved,4,71,3203,240,true,false,3,2025-04-01,2025-04-01 +T10062,A1016,BluePeak Capital,enterprise,EMEA,DE,Enterprise Annual,enterprise,premium,W2036,bluepeak-marketing,prod,U3157,2025-05-25 02:00:08,2025-05-25 08:19:08,2025-05-26 08:57:08,low,model_error,resolved,4,379,1857,1440,true,false,1,2025-05-01,2025-05-01 +T10063,A1016,BluePeak Capital,enterprise,EMEA,DE,Enterprise Annual,enterprise,premium,W2036,bluepeak-marketing,prod,U3165,2025-05-11 20:06:11,2025-05-11 20:15:11,2025-05-13 15:29:11,urgent,permissions,resolved,4,9,2603,30,true,false,2,2025-05-01,2025-05-01 +T10065,A1016,BluePeak Capital,enterprise,EMEA,DE,Enterprise Annual,enterprise,premium,W2035,bluepeak-finance,prod,U3156,2025-05-13 06:20:21,2025-05-13 07:45:21,2025-05-13 12:56:21,medium,api_limit,resolved,5,85,396,240,true,false,0,2025-05-01,2025-05-01 +T10066,A1017,Summit Analytics,mid_market,EMEA,UK,Growth Monthly,growth,priority,W2038,summit-ops,prod,U3173,2025-05-20 11:33:34,2025-05-20 12:04:34,2025-05-23 10:11:34,high,dashboard_filter,resolved,5,31,4238,60,true,false,3,2025-05-01,2025-05-01 +T10067,A1017,Summit Analytics,mid_market,EMEA,UK,Growth Monthly,growth,priority,W2038,summit-ops,prod,U3172,2025-06-07 09:02:39,2025-06-07 10:45:39,2025-06-09 06:09:39,medium,api_limit,resolved,5,103,2707,240,true,false,2,2025-06-01,2025-06-01 +T10068,A1017,Summit Analytics,mid_market,EMEA,UK,Growth Monthly,growth,priority,W2038,summit-ops,prod,U3174,2025-04-25 05:30:47,2025-04-25 07:56:47,2025-04-27 00:54:47,medium,performance,resolved,4,146,2604,240,true,false,2,2025-04-01,2025-04-01 +T10069,A1017,Summit Analytics,mid_market,EMEA,UK,Growth Monthly,growth,priority,W2038,summit-ops,prod,U3172,2025-06-03 14:32:57,2025-06-03 23:27:57,2025-06-05 00:49:57,low,performance,resolved,4,535,2057,1440,true,false,2,2025-06-01,2025-06-01 +T10070,A1018,Harbor Manufacturing,smb,EMEA,UK,Starter Monthly,starter,standard,W2040,harbor-ops,prod,U3179,2025-06-11 00:33:34,2025-06-11 04:32:34,2025-06-12 19:42:34,medium,performance,resolved,3,239,2589,240,true,false,1,2025-06-01,2025-06-01 +T10072,A1018,Harbor Manufacturing,smb,EMEA,UK,Starter Monthly,starter,standard,W2039,harbor-core,prod,U3181,2025-05-04 23:09:26,2025-05-05 02:44:26,2025-05-07 07:39:26,medium,permissions,resolved,4,215,3390,240,true,false,3,2025-05-01,2025-05-01 +T10073,A1019,Sierra Systems,smb,APAC,JP,Starter Monthly,starter,standard,W2041,sierra-core,prod,U3183,2025-05-26 08:04:59,2025-05-26 10:28:59,,medium,dashboard_filter,open,,144,,240,true,true,302,2025-05-01, +T10074,A1020,Pioneer Network,smb,EMEA,FR,Growth Monthly,growth,priority,W2043,pioneer-core,prod,U3187,2025-05-29 02:05:32,2025-05-29 02:52:32,2025-05-30 04:53:32,high,data_freshness,resolved,5,47,1608,60,true,false,1,2025-05-01,2025-05-01 +T10075,A1021,Apex Logistics,smb,NA,US,Starter Monthly,starter,standard,W2044,apex-core,prod,U3196,2025-06-20 04:03:33,2025-06-20 04:24:33,2025-06-22 06:23:33,high,dashboard_filter,resolved,3,21,3020,60,true,false,2,2025-06-01,2025-06-01 +T10076,A1021,Apex Logistics,smb,NA,US,Starter Monthly,starter,standard,W2044,apex-core,prod,U3196,2025-04-04 10:26:51,2025-04-04 13:13:51,2025-04-05 03:11:51,medium,performance,resolved,5,167,1005,240,true,false,1,2025-04-01,2025-04-01 +T10077,A1022,Summit Collective,smb,APAC,NZ,Growth Monthly,growth,priority,W2045,summit-core,prod,U3200,2025-04-24 09:41:07,2025-04-24 12:01:07,2025-04-25 08:24:07,medium,api_limit,resolved,5,140,1363,240,true,false,1,2025-04-01,2025-04-01 +T10078,A1023,Atlas Systems,smb,NA,CA,Starter Monthly,starter,standard,W2047,atlas-core,prod,U3207,2025-05-12 23:02:13,2025-05-13 07:21:13,2025-05-15 02:52:13,low,data_freshness,resolved,4,499,3110,1440,true,false,3,2025-05-01,2025-05-01 +T10079,A1023,Atlas Systems,smb,NA,CA,Starter Monthly,starter,standard,W2047,atlas-core,prod,U3203,2025-05-15 18:18:28,2025-05-15 19:05:28,,high,sso,open,,47,,60,true,true,313,2025-05-01, +T10080,A1023,Atlas Systems,smb,NA,CA,Starter Monthly,starter,standard,W2047,atlas-core,prod,U3202,2025-05-05 07:07:39,2025-05-05 07:44:39,2025-05-06 22:46:39,high,performance,resolved,5,37,2379,60,true,false,1,2025-05-01,2025-05-01 +T10081,A1024,Sierra Group,smb,NA,CA,Starter Monthly,starter,standard,W2049,sierra-ops,prod,U3211,2025-05-30 15:31:41,2025-05-30 17:40:41,2025-05-31 22:15:41,medium,performance,resolved,5,129,1844,240,true,false,1,2025-05-01,2025-05-01 +T10082,A1025,Bright Capital,smb,EMEA,UK,Starter Monthly,starter,standard,W2050,bright-core,prod,U3219,2025-05-29 12:51:15,2025-05-29 13:35:15,2025-06-01 00:01:15,high,api_limit,resolved,5,44,3550,60,true,false,3,2025-05-01,2025-06-01 +T10083,A1025,Bright Capital,smb,EMEA,UK,Starter Monthly,starter,standard,W2050,bright-core,prod,U3219,2025-06-07 18:38:08,2025-06-07 20:40:08,2025-06-10 03:52:08,medium,sso,resolved,5,122,3434,240,true,false,3,2025-06-01,2025-06-01 +T10085,A1027,BluePeak Health,smb,APAC,SG,Starter Monthly,starter,standard,W2053,bluepeak-ops,prod,U3231,2025-05-21 14:59:51,2025-05-21 15:07:51,2025-05-24 01:30:51,urgent,data_freshness,resolved,4,8,3511,30,true,false,3,2025-05-01,2025-05-01 +T10086,A1028,Apex Energy,mid_market,APAC,SG,Enterprise Monthly,enterprise,premium,W2054,apex-core,prod,U3234,2025-05-02 09:17:06,2025-05-03 01:18:06,2025-05-04 21:40:06,low,permissions,resolved,4,961,3623,1440,true,false,2,2025-05-01,2025-05-01 +T10088,A1028,Apex Energy,mid_market,APAC,SG,Enterprise Monthly,enterprise,premium,W2054,apex-core,prod,U3243,2025-05-07 04:35:29,2025-05-07 15:02:29,2025-05-09 12:27:29,low,dashboard_filter,resolved,5,627,3352,1440,true,false,2,2025-05-01,2025-05-01 +T10089,A1029,Bright Labs,enterprise,APAC,NZ,Starter Monthly,starter,standard,W2056,bright-core,prod,U3257,2025-04-10 09:20:33,2025-04-10 11:07:33,2025-04-11 20:56:33,medium,api_limit,resolved,5,107,2136,240,true,false,1,2025-04-01,2025-04-01 +T10091,A1029,Bright Labs,enterprise,APAC,NZ,Starter Monthly,starter,standard,W2056,bright-core,prod,U3253,2025-06-16 07:30:22,2025-06-16 12:05:22,,low,permissions,in_progress,,275,,1440,true,true,281,2025-06-01, +T10092,A1029,Bright Labs,enterprise,APAC,NZ,Starter Monthly,starter,standard,W2056,bright-core,prod,U3247,2025-06-03 06:32:18,2025-06-03 08:36:18,,medium,sso,in_progress,,124,,240,true,true,294,2025-06-01, +T10093,A1029,Bright Labs,enterprise,APAC,NZ,Starter Monthly,starter,standard,W2056,bright-core,prod,U3247,2025-05-10 07:16:19,2025-05-10 07:38:19,,high,performance,open,,22,,60,true,true,318,2025-05-01, +T10094,A1030,Northwind Analytics,enterprise,EMEA,UK,Enterprise Monthly,enterprise,premium,W2059,northwind-finance,prod,U3268,2025-06-11 15:44:02,2025-06-12 00:45:02,2025-06-14 22:47:02,low,dashboard_filter,resolved,5,541,4743,1440,true,false,3,2025-06-01,2025-06-01 +T10095,A1030,Northwind Analytics,enterprise,EMEA,UK,Enterprise Monthly,enterprise,premium,W2060,northwind-marketing,prod,U3261,2025-04-19 11:22:00,2025-04-19 11:50:00,2025-04-21 16:57:00,high,dashboard_filter,resolved,4,28,3215,60,true,false,2,2025-04-01,2025-04-01 +T10097,A1030,Northwind Analytics,enterprise,EMEA,UK,Enterprise Monthly,enterprise,premium,W2057,northwind-core,prod,U3267,2025-05-21 03:08:09,2025-05-21 07:50:09,2025-05-22 13:23:09,low,dashboard_filter,resolved,3,282,2055,1440,true,false,1,2025-05-01,2025-05-01 +T10098,A1031,Helio Holdings,mid_market,APAC,AU,Growth Monthly,growth,priority,W2061,helio-core,prod,U3277,2025-04-07 13:23:25,2025-04-07 15:36:25,2025-04-09 05:44:25,medium,sso,resolved,2,133,2421,240,true,false,2,2025-04-01,2025-04-01 +T10099,A1031,Helio Holdings,mid_market,APAC,AU,Growth Monthly,growth,priority,W2062,helio-ops,prod,U3281,2025-04-28 20:40:52,2025-04-29 05:24:52,2025-05-01 11:20:52,low,model_error,resolved,3,524,3760,1440,true,false,3,2025-04-01,2025-05-01 +T10101,A1031,Helio Holdings,mid_market,APAC,AU,Growth Monthly,growth,priority,W2061,helio-core,prod,U3281,2025-05-24 20:51:20,2025-05-24 23:55:20,2025-05-25 20:43:20,medium,api_limit,resolved,4,184,1432,240,true,false,1,2025-05-01,2025-05-01 +T10102,A1032,Vertex Works,mid_market,EMEA,DE,Growth Monthly,growth,priority,W2064,vertex-core,prod,U3287,2025-06-25 07:28:37,2025-06-25 10:31:37,2025-06-26 00:40:37,medium,cancellation,resolved,1,183,1032,240,true,false,1,2025-06-01,2025-06-01 +T10103,A1032,Vertex Works,mid_market,EMEA,DE,Growth Monthly,growth,priority,W2064,vertex-core,prod,U3286,2025-06-11 21:23:04,2025-06-11 21:55:04,2025-06-14 20:44:04,high,api_limit,resolved,2,32,4281,60,true,false,3,2025-06-01,2025-06-01 +T10105,A1033,Lighthouse Global,mid_market,NA,CA,Growth Monthly,growth,priority,W2066,lighthouse-core,prod,U3291,2025-05-20 21:14:18,2025-05-21 12:12:18,2025-05-24 00:47:18,low,performance,resolved,4,898,4533,1440,true,false,4,2025-05-01,2025-05-01 +T10106,A1033,Lighthouse Global,mid_market,NA,CA,Growth Monthly,growth,priority,W2067,lighthouse-ops,prod,U3292,2025-04-08 21:02:43,2025-04-09 00:34:43,2025-04-11 16:29:43,medium,api_limit,resolved,5,212,4047,240,true,false,3,2025-04-01,2025-04-01 +T10107,A1034,Helio Partners,smb,NA,CA,Starter Monthly,starter,standard,W2069,helio-ops,sandbox,U3302,2025-06-09 13:51:35,2025-06-10 05:31:35,2025-06-12 16:46:35,low,permissions,resolved,5,940,4495,1440,true,false,3,2025-06-01,2025-06-01 +T10108,A1034,Helio Partners,smb,NA,CA,Starter Monthly,starter,standard,W2068,helio-core,prod,U3304,2025-05-12 09:49:56,2025-05-12 12:17:56,2025-05-12 21:49:56,medium,performance,resolved,3,148,720,240,true,false,0,2025-05-01,2025-05-01 +T10110,A1035,Bright Retail,mid_market,EMEA,UK,Enterprise Monthly,enterprise,premium,W2071,bright-ops,sandbox,U3317,2025-06-07 15:20:28,2025-06-07 15:55:28,2025-06-08 16:25:28,high,api_limit,resolved,5,35,1505,60,true,false,1,2025-06-01,2025-06-01 +T10111,A1035,Bright Retail,mid_market,EMEA,UK,Enterprise Monthly,enterprise,premium,W2070,bright-core,prod,U3314,2025-04-03 14:44:28,2025-04-03 17:39:28,2025-04-06 11:17:28,medium,permissions,resolved,4,175,4113,240,true,false,3,2025-04-01,2025-04-01 +T10112,A1035,Bright Retail,mid_market,EMEA,UK,Enterprise Monthly,enterprise,premium,W2072,bright-finance,prod,U3316,2025-05-02 23:05:03,2025-05-02 23:53:03,2025-05-04 17:15:03,high,dashboard_filter,resolved,4,48,2530,60,true,false,2,2025-05-01,2025-05-01 +T10113,A1035,Bright Retail,mid_market,EMEA,UK,Enterprise Monthly,enterprise,premium,W2071,bright-ops,sandbox,U3317,2025-04-15 03:50:21,2025-04-15 07:37:21,2025-04-18 03:18:21,medium,performance,resolved,4,227,4288,240,true,false,3,2025-04-01,2025-04-01 +T10115,A1036,Granite Holdings,smb,NA,US,Growth Monthly,growth,priority,W2073,granite-core,prod,U3322,2025-04-06 23:20:44,2025-04-07 02:05:44,2025-04-08 21:27:44,medium,sso,resolved,5,165,2767,240,true,false,2,2025-04-01,2025-04-01 +T10116,A1036,Granite Holdings,smb,NA,US,Growth Monthly,growth,priority,W2074,granite-ops,sandbox,U3322,2025-06-07 15:31:40,2025-06-07 18:29:40,2025-06-10 06:01:40,medium,dashboard_filter,resolved,5,178,3750,240,true,false,3,2025-06-01,2025-06-01 +T10117,A1036,Granite Holdings,smb,NA,US,Growth Monthly,growth,priority,W2074,granite-ops,sandbox,U3322,2025-05-17 20:53:41,2025-05-17 23:48:41,2025-05-18 23:22:41,medium,permissions,resolved,4,175,1589,240,true,false,1,2025-05-01,2025-05-01 +T10119,A1037,Lighthouse Network,enterprise,EMEA,UK,Enterprise Monthly,enterprise,premium,W2076,lighthouse-ops,prod,U3338,2025-05-12 06:21:19,2025-05-12 06:46:19,2025-05-12 13:35:19,high,sso,resolved,5,25,434,60,true,false,0,2025-05-01,2025-05-01 +T10120,A1037,Lighthouse Network,enterprise,EMEA,UK,Enterprise Monthly,enterprise,premium,W2076,lighthouse-ops,prod,U3331,2025-04-22 02:39:35,2025-04-22 03:47:35,,medium,sso,in_progress,,68,,240,true,true,336,2025-04-01, +T10121,A1037,Lighthouse Network,enterprise,EMEA,UK,Enterprise Monthly,enterprise,premium,W2077,lighthouse-finance,sandbox,U3327,2025-04-04 13:59:40,2025-04-04 16:06:40,2025-04-06 03:29:40,medium,sso,resolved,4,127,2250,240,true,false,2,2025-04-01,2025-04-01 +T10122,A1038,River Systems,smb,APAC,AU,Starter Monthly,starter,standard,W2079,river-core,prod,U3346,2025-04-19 09:26:05,2025-04-19 09:48:05,,high,api_limit,open,,22,,60,true,true,339,2025-04-01, +T10123,A1038,River Systems,smb,APAC,AU,Starter Monthly,starter,standard,W2080,river-ops,prod,U3342,2025-05-31 17:59:38,2025-06-01 04:32:38,2025-06-02 06:32:38,low,billing,resolved,4,633,2193,1440,true,false,2,2025-05-01,2025-06-01 +T10124,A1039,Nova Group,smb,EMEA,FR,Starter Monthly,starter,standard,W2081,nova-core,prod,U3348,2025-06-07 01:56:58,2025-06-07 02:04:58,2025-06-07 21:31:58,urgent,api_limit,resolved,5,8,1175,30,true,false,0,2025-06-01,2025-06-01 +T10127,A1040,Harbor Collective,mid_market,APAC,SG,Enterprise Monthly,enterprise,premium,W2084,harbor-finance,prod,U3365,2025-06-10 18:07:45,2025-06-10 18:29:45,2025-06-13 12:37:45,high,performance,resolved,3,22,3990,60,true,false,3,2025-06-01,2025-06-01 +T10128,A1040,Harbor Collective,mid_market,APAC,SG,Enterprise Monthly,enterprise,premium,W2082,harbor-core,prod,U3361,2025-05-29 17:52:01,2025-05-29 18:33:01,2025-06-01 04:26:01,high,model_error,resolved,3,41,3514,60,true,false,3,2025-05-01,2025-06-01 +T10130,A1040,Harbor Collective,mid_market,APAC,SG,Enterprise Monthly,enterprise,premium,W2083,harbor-ops,sandbox,U3364,2025-05-21 12:06:14,2025-05-21 12:39:14,,urgent,permissions,in_progress,,33,,30,false,true,307,2025-05-01, +T10131,A1041,Cedar Logistics,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2087,cedar-finance,prod,U3377,2025-04-30 14:56:33,2025-04-30 15:15:33,2025-05-02 20:51:33,urgent,cancellation,resolved,5,19,3235,30,true,false,2,2025-04-01,2025-05-01 +T10132,A1041,Cedar Logistics,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2085,cedar-core,prod,U3366,2025-06-25 14:25:33,2025-06-26 01:42:33,2025-06-26 21:47:33,low,performance,resolved,4,677,1882,1440,true,false,1,2025-06-01,2025-06-01 +T10133,A1041,Cedar Logistics,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2085,cedar-core,prod,U3366,2025-06-11 15:07:17,2025-06-11 17:05:17,2025-06-13 00:31:17,medium,api_limit,resolved,4,118,2004,240,true,false,2,2025-06-01,2025-06-01 +T10134,A1041,Cedar Logistics,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2086,cedar-ops,sandbox,U3375,2025-05-07 14:27:48,2025-05-07 15:11:48,2025-05-07 23:25:48,high,data_freshness,resolved,4,44,538,60,true,false,0,2025-05-01,2025-05-01 +T10135,A1041,Cedar Logistics,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2085,cedar-core,prod,U3366,2025-05-23 18:09:24,2025-05-23 18:45:24,2025-05-24 18:13:24,high,dashboard_filter,resolved,5,36,1444,60,true,false,1,2025-05-01,2025-05-01 +T10137,A1042,Northwind Labs,mid_market,APAC,AU,Growth Monthly,growth,priority,W2089,northwind-ops,sandbox,U3380,2025-04-12 08:33:14,2025-04-12 12:56:14,2025-04-14 06:53:14,medium,sso,resolved,5,263,2780,240,false,false,2,2025-04-01,2025-04-01 +T10138,A1042,Northwind Labs,mid_market,APAC,AU,Growth Monthly,growth,priority,W2089,northwind-ops,sandbox,U3381,2025-06-22 22:22:58,2025-06-22 22:54:58,2025-06-24 02:50:58,high,dashboard_filter,resolved,5,32,1708,60,true,false,2,2025-06-01,2025-06-01 +T10140,A1042,Northwind Labs,mid_market,APAC,AU,Growth Monthly,growth,priority,W2088,northwind-core,prod,U3378,2025-05-21 19:13:48,2025-05-22 02:10:48,2025-05-22 08:58:48,low,api_limit,resolved,4,417,825,1440,true,false,1,2025-05-01,2025-05-01 +T10141,A1043,Lighthouse Works,enterprise,APAC,SG,Enterprise Monthly,enterprise,premium,W2094,lighthouse-marketing,prod,U3390,2025-04-22 04:48:42,2025-04-22 06:01:42,,medium,data_freshness,in_progress,,73,,240,true,true,336,2025-04-01, +T10143,A1043,Lighthouse Works,enterprise,APAC,SG,Enterprise Monthly,enterprise,premium,W2094,lighthouse-marketing,prod,U3401,2025-04-17 02:32:02,2025-04-17 10:14:02,2025-04-20 03:16:02,low,sso,resolved,5,462,4364,1440,true,false,3,2025-04-01,2025-04-01 +T10144,A1044,Summit Holdings,smb,EMEA,NL,Growth Monthly,growth,priority,W2095,summit-core,prod,U3407,2025-04-04 17:42:09,2025-04-04 18:06:09,2025-04-07 14:41:09,high,model_error,resolved,3,24,4139,60,true,false,3,2025-04-01,2025-04-01 +T10145,A1044,Summit Holdings,smb,EMEA,NL,Growth Monthly,growth,priority,W2095,summit-core,prod,U3407,2025-06-09 03:00:36,2025-06-09 05:31:36,2025-06-11 04:32:36,medium,model_error,resolved,5,151,2972,240,true,false,2,2025-06-01,2025-06-01 +T10146,A1044,Summit Holdings,smb,EMEA,NL,Growth Monthly,growth,priority,W2095,summit-core,prod,U3408,2025-04-09 02:49:37,2025-04-09 03:33:37,2025-04-10 17:56:37,high,sso,resolved,5,44,2347,60,true,false,1,2025-04-01,2025-04-01 +T10147,A1045,Nova Holdings,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2099,nova-marketing,prod,U3423,2025-06-02 20:20:03,2025-06-02 20:48:03,2025-06-05 03:20:03,high,dashboard_filter,resolved,4,28,3300,60,true,false,3,2025-06-01,2025-06-01 +T10148,A1045,Nova Holdings,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2099,nova-marketing,prod,U3412,2025-05-12 12:15:14,2025-05-12 13:41:14,2025-05-15 01:52:14,medium,api_limit,resolved,5,86,3697,240,true,false,3,2025-05-01,2025-05-01 +T10149,A1045,Nova Holdings,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2097,nova-ops,prod,U3419,2025-05-20 23:55:34,2025-05-21 03:50:34,2025-05-23 20:03:34,low,dashboard_filter,resolved,3,235,4088,1440,true,false,3,2025-05-01,2025-05-01 +T10150,A1045,Nova Holdings,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2097,nova-ops,prod,U3425,2025-06-07 17:23:33,2025-06-07 19:25:33,2025-06-08 08:12:33,medium,api_limit,resolved,4,122,889,240,true,false,1,2025-06-01,2025-06-01 +T10151,A1045,Nova Holdings,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2099,nova-marketing,prod,U3422,2025-04-02 10:20:57,2025-04-02 17:26:57,2025-04-05 04:18:57,low,sso,resolved,5,426,3958,1440,true,false,3,2025-04-01,2025-04-01 +T10152,A1046,Pioneer Solutions,smb,NA,CA,Growth Monthly,growth,priority,W2100,pioneer-core,prod,U3429,2025-05-20 10:32:02,2025-05-20 13:14:02,,medium,model_error,in_progress,,162,,240,true,true,308,2025-05-01, +T10153,A1046,Pioneer Solutions,smb,NA,CA,Growth Monthly,growth,priority,W2100,pioneer-core,prod,U3427,2025-05-30 05:05:39,2025-05-30 12:29:39,2025-06-01 22:50:39,low,permissions,resolved,5,444,3945,1440,true,false,2,2025-05-01,2025-06-01 +T10154,A1046,Pioneer Solutions,smb,NA,CA,Growth Monthly,growth,priority,W2100,pioneer-core,prod,U3430,2025-05-01 04:33:57,2025-05-01 07:00:57,2025-05-01 19:58:57,medium,model_error,resolved,5,147,925,240,true,false,0,2025-05-01,2025-05-01 +T10155,A1047,Orchid Global,enterprise,APAC,AU,Enterprise Annual,enterprise,premium,W2103,orchid-finance,prod,U3440,2025-05-29 16:33:13,2025-05-29 17:44:13,2025-05-30 21:08:13,medium,dashboard_filter,resolved,5,71,1715,240,true,false,1,2025-05-01,2025-05-01 +T10158,A1047,Orchid Global,enterprise,APAC,AU,Enterprise Annual,enterprise,premium,W2103,orchid-finance,prod,U3443,2025-05-02 19:40:03,2025-05-02 21:01:03,2025-05-03 17:35:03,medium,model_error,resolved,4,81,1315,240,true,false,1,2025-05-01,2025-05-01 +T10159,A1047,Orchid Global,enterprise,APAC,AU,Enterprise Annual,enterprise,premium,W2101,orchid-core,prod,U3447,2025-04-12 04:06:15,2025-04-12 05:38:15,2025-04-14 21:30:15,medium,dashboard_filter,resolved,4,92,3924,240,true,false,2,2025-04-01,2025-04-01 +T10160,A1047,Orchid Global,enterprise,APAC,AU,Enterprise Annual,enterprise,premium,W2101,orchid-core,prod,U3444,2025-05-09 12:18:14,2025-05-09 19:18:14,2025-05-11 04:52:14,low,model_error,resolved,5,420,2434,1440,true,false,2,2025-05-01,2025-05-01 +T10161,A1047,Orchid Global,enterprise,APAC,AU,Enterprise Annual,enterprise,premium,W2101,orchid-core,prod,U3449,2025-04-28 15:20:57,2025-04-28 15:45:57,,high,performance,in_progress,,25,,60,true,true,330,2025-04-01, +T10162,A1048,Orchid Capital,enterprise,APAC,NZ,Enterprise Annual,enterprise,premium,W2106,orchid-finance,prod,U3454,2025-06-04 08:44:18,2025-06-04 09:54:18,,medium,api_limit,in_progress,,70,,240,true,true,293,2025-06-01, +T10163,A1048,Orchid Capital,enterprise,APAC,NZ,Enterprise Annual,enterprise,premium,W2106,orchid-finance,prod,U3458,2025-05-19 00:50:25,2025-05-19 06:43:25,,low,data_freshness,open,,353,,1440,true,true,309,2025-05-01, +T10164,A1048,Orchid Capital,enterprise,APAC,NZ,Enterprise Annual,enterprise,premium,W2104,orchid-core,prod,U3452,2025-04-15 08:40:53,2025-04-15 14:42:53,2025-04-18 02:12:53,low,cancellation,resolved,4,362,3932,1440,true,false,3,2025-04-01,2025-04-01 +T10165,A1048,Orchid Capital,enterprise,APAC,NZ,Enterprise Annual,enterprise,premium,W2104,orchid-core,prod,U3462,2025-05-30 19:28:56,2025-05-30 19:45:56,,high,sso,open,,17,,60,true,true,298,2025-05-01, +T10166,A1049,Northwind Network,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2107,northwind-core,prod,U3473,2025-05-22 11:57:27,2025-05-22 18:07:27,2025-05-25 05:46:27,low,permissions,resolved,5,370,3949,1440,true,false,3,2025-05-01,2025-05-01 +T10167,A1049,Northwind Network,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2108,northwind-ops,prod,U3483,2025-05-27 17:29:08,2025-05-27 19:02:08,2025-05-30 09:07:08,medium,permissions,resolved,4,93,3818,240,true,false,3,2025-05-01,2025-05-01 +T10168,A1049,Northwind Network,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2107,northwind-core,prod,U3479,2025-05-05 04:16:46,2025-05-05 04:23:46,2025-05-06 00:46:46,urgent,dashboard_filter,resolved,4,7,1230,30,true,false,1,2025-05-01,2025-05-01 +T10169,A1049,Northwind Network,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2109,northwind-finance,prod,U3484,2025-06-01 16:13:15,2025-06-01 17:19:15,,medium,billing,open,,66,,240,true,true,296,2025-06-01, +T10170,A1049,Northwind Network,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2109,northwind-finance,prod,U3486,2025-05-22 02:08:28,2025-05-22 06:45:28,2025-05-25 06:15:28,low,performance,resolved,4,277,4567,1440,true,false,3,2025-05-01,2025-05-01 +T10171,A1049,Northwind Network,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2107,northwind-core,prod,U3473,2025-04-29 10:09:13,2025-04-29 17:54:13,2025-05-01 18:48:13,low,dashboard_filter,resolved,3,465,3399,1440,true,false,2,2025-04-01,2025-05-01 +T10172,A1049,Northwind Network,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2109,northwind-finance,prod,U3471,2025-05-10 23:28:03,2025-05-11 01:50:03,2025-05-13 14:04:03,medium,dashboard_filter,resolved,4,142,3756,240,true,false,3,2025-05-01,2025-05-01 +T10174,A1051,Lighthouse Systems,smb,EMEA,UK,Growth Monthly,growth,priority,W2112,lighthouse-core,prod,U3495,2025-04-05 17:48:20,2025-04-05 22:47:20,2025-04-08 11:33:20,low,sso,resolved,4,299,3945,1440,true,false,3,2025-04-01,2025-04-01 +T10175,A1051,Lighthouse Systems,smb,EMEA,UK,Growth Monthly,growth,priority,W2112,lighthouse-core,prod,U3492,2025-04-04 12:53:52,2025-04-04 14:50:52,2025-04-07 01:47:52,medium,dashboard_filter,resolved,3,117,3654,240,true,false,3,2025-04-01,2025-04-01 +T10176,A1051,Lighthouse Systems,smb,EMEA,UK,Growth Monthly,growth,priority,W2112,lighthouse-core,prod,U3491,2025-06-09 04:31:19,2025-06-09 18:50:19,2025-06-10 16:30:19,low,model_error,resolved,4,859,2159,1440,true,false,1,2025-06-01,2025-06-01 +T10177,A1052,Sierra Labs,mid_market,APAC,NZ,Growth Monthly,growth,priority,W2114,sierra-ops,prod,U3499,2025-05-22 14:40:56,2025-05-22 20:23:56,2025-05-25 05:12:56,low,sso,resolved,5,343,3752,1440,true,false,3,2025-05-01,2025-05-01 +T10178,A1052,Sierra Labs,mid_market,APAC,NZ,Growth Monthly,growth,priority,W2114,sierra-ops,prod,U3498,2025-05-10 04:34:16,2025-05-10 14:10:16,2025-05-12 16:54:16,low,api_limit,resolved,5,576,3620,1440,true,false,2,2025-05-01,2025-05-01 +T10179,A1052,Sierra Labs,mid_market,APAC,NZ,Growth Monthly,growth,priority,W2114,sierra-ops,prod,U3501,2025-05-29 12:44:45,2025-05-29 14:37:45,2025-05-31 21:47:45,medium,data_freshness,resolved,5,113,3423,240,true,false,2,2025-05-01,2025-05-01 +T10181,A1052,Sierra Labs,mid_market,APAC,NZ,Growth Monthly,growth,priority,W2114,sierra-ops,prod,U3506,2025-06-15 13:21:59,2025-06-15 16:07:59,2025-06-18 14:52:59,medium,permissions,resolved,4,166,4411,240,true,false,3,2025-06-01,2025-06-01 +T10182,A1053,Bright Health,mid_market,NA,CA,Growth Monthly,growth,priority,W2116,bright-ops,prod,U3508,2025-05-03 01:20:38,2025-05-03 03:57:38,2025-05-04 17:26:38,medium,model_error,resolved,5,157,2406,240,true,false,1,2025-05-01,2025-05-01 +T10183,A1053,Bright Health,mid_market,NA,CA,Growth Monthly,growth,priority,W2116,bright-ops,prod,U3511,2025-05-04 19:18:13,2025-05-04 21:50:13,2025-05-06 14:01:13,medium,model_error,resolved,5,152,2563,240,true,false,2,2025-05-01,2025-05-01 +T10184,A1053,Bright Health,mid_market,NA,CA,Growth Monthly,growth,priority,W2116,bright-ops,prod,U3512,2025-05-31 09:29:38,2025-05-31 16:52:38,2025-06-01 07:33:38,low,performance,resolved,5,443,1324,1440,true,false,1,2025-05-01,2025-06-01 +T10185,A1054,Granite Labs,mid_market,APAC,NZ,Enterprise Monthly,enterprise,premium,W2120,granite-finance,prod,U3527,2025-06-02 02:00:16,2025-06-02 02:34:16,2025-06-04 14:10:16,high,sso,resolved,4,34,3610,60,true,false,2,2025-06-01,2025-06-01 +T10186,A1054,Granite Labs,mid_market,APAC,NZ,Enterprise Monthly,enterprise,premium,W2118,granite-core,prod,U3523,2025-04-24 19:48:18,2025-04-24 20:30:18,2025-04-25 02:09:18,high,dashboard_filter,resolved,2,42,381,60,true,false,1,2025-04-01,2025-04-01 +T10187,A1054,Granite Labs,mid_market,APAC,NZ,Enterprise Monthly,enterprise,premium,W2119,granite-ops,prod,U3523,2025-06-12 09:20:11,2025-06-13 01:32:11,2025-06-15 18:45:11,low,sso,resolved,5,972,4885,1440,true,false,3,2025-06-01,2025-06-01 +T10188,A1054,Granite Labs,mid_market,APAC,NZ,Enterprise Monthly,enterprise,premium,W2118,granite-core,prod,U3526,2025-06-07 12:11:47,2025-06-07 12:59:47,2025-06-09 09:33:47,high,dashboard_filter,resolved,3,48,2722,60,true,false,2,2025-06-01,2025-06-01 +T10189,A1054,Granite Labs,mid_market,APAC,NZ,Enterprise Monthly,enterprise,premium,W2120,granite-finance,prod,U3524,2025-06-03 08:28:29,2025-06-03 18:55:29,,low,performance,open,,627,,1440,true,true,294,2025-06-01, +T10190,A1055,Pioneer Systems,mid_market,EMEA,FR,Growth Monthly,growth,priority,W2121,pioneer-core,prod,U3532,2025-05-10 09:59:35,2025-05-10 12:37:35,2025-05-11 00:39:35,medium,billing,resolved,5,158,880,240,true,false,1,2025-05-01,2025-05-01 +T10191,A1055,Pioneer Systems,mid_market,EMEA,FR,Growth Monthly,growth,priority,W2122,pioneer-ops,sandbox,U3539,2025-04-22 14:24:31,2025-04-22 18:09:31,2025-04-23 14:45:31,medium,performance,resolved,5,225,1461,240,true,false,1,2025-04-01,2025-04-01 +T10192,A1055,Pioneer Systems,mid_market,EMEA,FR,Growth Monthly,growth,priority,W2122,pioneer-ops,sandbox,U3535,2025-04-19 01:48:32,2025-04-19 03:19:32,2025-04-19 21:40:32,medium,model_error,resolved,3,91,1192,240,true,false,0,2025-04-01,2025-04-01 +T10193,A1056,Delta Global,mid_market,APAC,AU,Growth Monthly,growth,priority,W2123,delta-core,prod,U3552,2025-06-18 04:05:18,2025-06-18 04:47:18,2025-06-20 18:50:18,high,model_error,resolved,4,42,3765,60,true,false,2,2025-06-01,2025-06-01 +T10194,A1056,Delta Global,mid_market,APAC,AU,Growth Monthly,growth,priority,W2123,delta-core,prod,U3546,2025-05-24 21:23:45,2025-05-25 04:18:45,2025-05-27 16:32:45,low,permissions,resolved,5,415,4029,1440,true,false,3,2025-05-01,2025-05-01 +T10196,A1056,Delta Global,mid_market,APAC,AU,Growth Monthly,growth,priority,W2123,delta-core,prod,U3545,2025-05-21 17:06:53,2025-05-21 17:49:53,2025-05-23 10:35:53,high,api_limit,resolved,2,43,2489,60,true,false,2,2025-05-01,2025-05-01 +T10197,A1057,Harbor Partners,enterprise,APAC,NZ,Enterprise Annual,enterprise,premium,W2127,harbor-ops,sandbox,U3554,2025-06-07 00:26:36,2025-06-07 04:09:36,2025-06-08 00:59:36,low,api_limit,resolved,3,223,1473,1440,true,false,1,2025-06-01,2025-06-01 +T10198,A1057,Harbor Partners,enterprise,APAC,NZ,Enterprise Annual,enterprise,premium,W2129,harbor-marketing,prod,U3566,2025-05-21 18:23:28,2025-05-22 02:38:28,2025-05-24 09:46:28,low,performance,resolved,3,495,3803,1440,true,false,3,2025-05-01,2025-05-01 +T10199,A1057,Harbor Partners,enterprise,APAC,NZ,Enterprise Annual,enterprise,premium,W2127,harbor-ops,sandbox,U3562,2025-04-29 04:31:13,2025-04-29 11:27:13,2025-04-29 18:54:13,low,permissions,resolved,4,416,863,1440,true,false,0,2025-04-01,2025-04-01 +T10201,A1057,Harbor Partners,enterprise,APAC,NZ,Enterprise Annual,enterprise,premium,W2129,harbor-marketing,prod,U3565,2025-04-26 21:52:12,2025-04-26 22:56:12,2025-04-28 13:02:12,medium,cancellation,resolved,4,64,2350,240,true,false,2,2025-04-01,2025-04-01 +T10203,A1057,Harbor Partners,enterprise,APAC,NZ,Enterprise Annual,enterprise,premium,W2127,harbor-ops,sandbox,U3561,2025-06-02 14:43:31,2025-06-02 16:17:31,,medium,api_limit,in_progress,,94,,240,true,true,295,2025-06-01, +T10204,A1058,Evergreen Analytics,smb,EMEA,UK,Starter Monthly,starter,standard,W2131,evergreen-ops,prod,U3567,2025-05-03 23:31:29,2025-05-04 02:00:29,2025-05-04 23:54:29,medium,sso,resolved,4,149,1463,240,true,false,1,2025-05-01,2025-05-01 +T10206,A1058,Evergreen Analytics,smb,EMEA,UK,Starter Monthly,starter,standard,W2130,evergreen-core,prod,U3569,2025-04-06 10:38:55,2025-04-06 19:21:55,2025-04-08 23:32:55,low,api_limit,resolved,5,523,3654,1440,true,false,2,2025-04-01,2025-04-01 +T10207,A1059,Evergreen Partners,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2132,evergreen-core,prod,U3578,2025-05-31 07:03:09,2025-05-31 07:56:09,2025-06-02 11:48:09,high,billing,resolved,5,53,3165,60,true,false,2,2025-05-01,2025-06-01 +T10208,A1059,Evergreen Partners,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2132,evergreen-core,prod,U3581,2025-05-26 23:01:58,2025-05-27 01:50:58,2025-05-28 12:46:58,medium,dashboard_filter,resolved,5,169,2265,240,true,false,2,2025-05-01,2025-05-01 +T10209,A1059,Evergreen Partners,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2132,evergreen-core,prod,U3581,2025-04-16 02:06:12,2025-04-16 05:49:12,2025-04-17 08:51:12,medium,model_error,resolved,4,223,1845,240,true,false,1,2025-04-01,2025-04-01 +T10210,A1059,Evergreen Partners,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2133,evergreen-ops,sandbox,U3574,2025-05-28 20:36:04,2025-05-29 03:21:04,2025-05-29 23:12:04,low,data_freshness,resolved,4,405,1596,1440,true,false,1,2025-05-01,2025-05-01 +T10211,A1059,Evergreen Partners,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2133,evergreen-ops,sandbox,U3576,2025-04-25 17:15:19,2025-04-25 19:42:19,2025-04-26 06:50:19,medium,model_error,resolved,5,147,815,240,true,false,1,2025-04-01,2025-04-01 +T10212,A1060,Cedar Foods,mid_market,NA,CA,Growth Monthly,growth,priority,W2135,cedar-ops,sandbox,U3597,2025-06-05 17:55:39,2025-06-05 20:08:39,2025-06-08 15:20:39,medium,data_freshness,resolved,4,133,4165,240,true,false,3,2025-06-01,2025-06-01 +T10214,A1061,Atlas Capital,enterprise,EMEA,FR,Enterprise Monthly,enterprise,premium,W2136,atlas-core,prod,U3604,2025-05-01 07:17:48,2025-05-01 07:57:48,2025-05-02 11:43:48,medium,permissions,resolved,5,40,1706,240,true,false,1,2025-05-01,2025-05-01 +T10216,A1061,Atlas Capital,enterprise,EMEA,FR,Enterprise Monthly,enterprise,premium,W2136,atlas-core,prod,U3608,2025-05-25 02:26:34,2025-05-25 02:52:34,2025-05-25 10:38:34,high,dashboard_filter,resolved,5,26,492,60,true,false,0,2025-05-01,2025-05-01 +T10218,A1062,Delta Manufacturing,enterprise,EMEA,NL,Enterprise Monthly,enterprise,premium,W2140,delta-ops,prod,U3618,2025-06-06 19:13:40,2025-06-06 19:38:40,2025-06-08 18:06:40,high,api_limit,resolved,4,25,2813,60,true,false,2,2025-06-01,2025-06-01 +T10219,A1062,Delta Manufacturing,enterprise,EMEA,NL,Enterprise Monthly,enterprise,premium,W2139,delta-core,prod,U3622,2025-05-15 10:06:58,2025-05-15 10:52:58,2025-05-16 02:25:58,medium,api_limit,resolved,5,46,979,240,true,false,1,2025-05-01,2025-05-01 +T10220,A1062,Delta Manufacturing,enterprise,EMEA,NL,Enterprise Monthly,enterprise,premium,W2139,delta-core,prod,U3620,2025-06-05 08:31:40,2025-06-05 08:36:40,2025-06-06 01:11:40,urgent,cancellation,resolved,5,5,1000,30,true,false,1,2025-06-01,2025-06-01 +T10221,A1063,Maple Global,smb,NA,CA,Starter Monthly,starter,standard,W2142,maple-core,prod,U3631,2025-04-12 01:32:03,2025-04-12 04:02:03,,medium,dashboard_filter,in_progress,,150,,240,true,true,346,2025-04-01, +T10222,A1063,Maple Global,smb,NA,CA,Starter Monthly,starter,standard,W2142,maple-core,prod,U3632,2025-05-09 06:50:11,2025-05-09 09:35:11,2025-05-11 12:00:11,medium,performance,resolved,4,165,3190,240,true,false,2,2025-05-01,2025-05-01 +T10223,A1064,Atlas Health,smb,NA,US,Starter Monthly,starter,standard,W2143,atlas-core,prod,U3634,2025-05-19 15:33:04,2025-05-20 05:32:04,2025-05-22 06:37:04,low,performance,resolved,5,839,3784,1440,true,false,3,2025-05-01,2025-05-01 +T10225,A1065,Vertex Partners,mid_market,NA,US,Growth Monthly,growth,priority,W2145,vertex-ops,prod,U3643,2025-04-27 11:41:45,2025-04-27 19:54:45,2025-04-30 02:25:45,low,dashboard_filter,resolved,3,493,3764,1440,true,false,3,2025-04-01,2025-04-01 +T10226,A1065,Vertex Partners,mid_market,NA,US,Growth Monthly,growth,priority,W2144,vertex-core,prod,U3643,2025-04-22 11:47:53,2025-04-22 12:26:53,2025-04-22 21:35:53,high,dashboard_filter,resolved,5,39,588,60,true,false,0,2025-04-01,2025-04-01 +T10227,A1066,Pacific Capital,mid_market,APAC,NZ,Enterprise Monthly,enterprise,premium,W2147,pacific-ops,prod,U3649,2025-06-01 11:53:08,2025-06-02 00:05:08,2025-06-04 11:55:08,low,permissions,resolved,3,732,4322,1440,true,false,3,2025-06-01,2025-06-01 +T10228,A1066,Pacific Capital,mid_market,APAC,NZ,Enterprise Monthly,enterprise,premium,W2146,pacific-core,prod,U3650,2025-05-18 10:28:25,2025-05-18 11:00:25,2025-05-21 04:49:25,urgent,api_limit,resolved,4,32,3981,30,false,false,3,2025-05-01,2025-05-01 +T10229,A1066,Pacific Capital,mid_market,APAC,NZ,Enterprise Monthly,enterprise,premium,W2146,pacific-core,prod,U3655,2025-04-17 22:01:04,2025-04-18 00:42:04,2025-04-18 16:45:04,medium,model_error,resolved,4,161,1124,240,true,false,1,2025-04-01,2025-04-01 +T10230,A1067,Maple Energy,mid_market,NA,CA,Growth Monthly,growth,priority,W2149,maple-ops,sandbox,U3664,2025-04-16 21:56:35,2025-04-17 00:05:35,,medium,api_limit,in_progress,,129,,240,true,true,342,2025-04-01, +T10232,A1067,Maple Energy,mid_market,NA,CA,Growth Monthly,growth,priority,W2149,maple-ops,sandbox,U3662,2025-05-14 17:33:03,2025-05-14 20:44:03,2025-05-17 11:23:03,medium,sso,resolved,4,191,3950,240,true,false,3,2025-05-01,2025-05-01 +T10233,A1067,Maple Energy,mid_market,NA,CA,Growth Monthly,growth,priority,W2149,maple-ops,sandbox,U3660,2025-06-12 17:58:13,2025-06-13 01:42:13,2025-06-13 10:17:13,low,sso,resolved,4,464,979,1440,true,false,1,2025-06-01,2025-06-01 +T10235,A1068,Helio Health,enterprise,APAC,SG,Enterprise Monthly,enterprise,premium,W2152,helio-finance,sandbox,U3669,2025-05-28 03:12:49,2025-05-28 05:13:49,2025-05-30 08:36:49,medium,performance,resolved,5,121,3204,240,true,false,2,2025-05-01,2025-05-01 +T10237,A1068,Helio Health,enterprise,APAC,SG,Enterprise Monthly,enterprise,premium,W2150,helio-core,prod,U3679,2025-04-25 19:00:56,2025-04-25 19:19:56,2025-04-27 01:18:56,high,api_limit,resolved,5,19,1818,60,true,false,2,2025-04-01,2025-04-01 +T10238,A1068,Helio Health,enterprise,APAC,SG,Enterprise Monthly,enterprise,premium,W2152,helio-finance,sandbox,U3672,2025-04-03 06:46:03,2025-04-03 07:06:03,2025-04-05 09:10:03,high,sso,resolved,4,20,3024,60,true,false,2,2025-04-01,2025-04-01 +T10239,A1068,Helio Health,enterprise,APAC,SG,Enterprise Monthly,enterprise,premium,W2150,helio-core,prod,U3679,2025-06-06 19:53:24,2025-06-06 22:43:24,2025-06-09 16:26:24,medium,api_limit,resolved,4,170,4113,240,true,false,3,2025-06-01,2025-06-01 +T10240,A1068,Helio Health,enterprise,APAC,SG,Enterprise Monthly,enterprise,premium,W2152,helio-finance,sandbox,U3667,2025-06-10 14:39:11,2025-06-10 15:39:11,2025-06-11 20:10:11,medium,sso,resolved,4,60,1771,240,true,false,1,2025-06-01,2025-06-01 +T10241,A1068,Helio Health,enterprise,APAC,SG,Enterprise Monthly,enterprise,premium,W2150,helio-core,prod,U3667,2025-05-18 14:42:23,2025-05-18 16:32:23,2025-05-20 10:22:23,medium,sso,resolved,5,110,2620,240,true,false,2,2025-05-01,2025-05-01 +T10242,A1069,Bright Foods,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2154,bright-core,prod,U3687,2025-05-27 21:08:15,2025-05-27 22:54:15,2025-05-30 00:56:15,medium,model_error,resolved,4,106,3108,240,true,false,3,2025-05-01,2025-05-01 +T10243,A1069,Bright Foods,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2154,bright-core,prod,U3689,2025-05-24 15:21:59,2025-05-24 17:44:59,2025-05-27 00:32:59,medium,permissions,resolved,4,143,3431,240,true,false,3,2025-05-01,2025-05-01 +T10244,A1069,Bright Foods,enterprise,NA,CA,Enterprise Annual,enterprise,premium,W2156,bright-finance,prod,U3683,2025-05-23 06:52:09,2025-05-23 07:17:09,2025-05-26 07:05:09,high,api_limit,resolved,5,25,4333,60,true,false,3,2025-05-01,2025-05-01 +T10247,A1071,Evergreen Group,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2159,evergreen-ops,prod,U3710,2025-06-09 13:53:32,2025-06-09 14:30:32,2025-06-12 13:21:32,high,dashboard_filter,resolved,3,37,4288,60,true,false,3,2025-06-01,2025-06-01 +T10249,A1072,Summit Ventures,enterprise,NA,US,Enterprise Annual,enterprise,premium,W2161,summit-core,prod,U3732,2025-04-22 21:15:26,2025-04-23 04:28:26,2025-04-24 17:12:26,low,sso,resolved,5,433,2637,1440,true,false,2,2025-04-01,2025-04-01 +T10250,A1072,Summit Ventures,enterprise,NA,US,Enterprise Annual,enterprise,premium,W2162,summit-ops,prod,U3718,2025-05-03 13:30:01,2025-05-03 13:35:01,2025-05-05 02:07:01,urgent,data_freshness,resolved,4,5,2197,30,true,false,2,2025-05-01,2025-05-01 +T10251,A1072,Summit Ventures,enterprise,NA,US,Enterprise Annual,enterprise,premium,W2161,summit-core,prod,U3722,2025-05-11 22:46:00,2025-05-12 04:53:00,2025-05-13 10:00:00,low,performance,resolved,3,367,2114,1440,true,false,2,2025-05-01,2025-05-01 +T10252,A1072,Summit Ventures,enterprise,NA,US,Enterprise Annual,enterprise,premium,W2163,summit-finance,sandbox,U3731,2025-04-19 18:20:42,2025-04-19 18:32:42,2025-04-21 21:56:42,high,performance,resolved,3,12,3096,60,true,false,2,2025-04-01,2025-04-01 +T10253,A1073,Silver Holdings,mid_market,EMEA,DE,Enterprise Monthly,enterprise,premium,W2165,silver-ops,prod,U3735,2025-06-01 20:03:30,2025-06-01 22:33:30,2025-06-04 14:08:30,medium,dashboard_filter,resolved,3,150,3965,240,true,false,3,2025-06-01,2025-06-01 +T10254,A1073,Silver Holdings,mid_market,EMEA,DE,Enterprise Monthly,enterprise,premium,W2165,silver-ops,prod,U3736,2025-04-26 10:02:03,2025-04-26 10:45:03,2025-04-27 20:50:03,high,model_error,resolved,3,43,2088,60,true,false,1,2025-04-01,2025-04-01 +T10255,A1073,Silver Holdings,mid_market,EMEA,DE,Enterprise Monthly,enterprise,premium,W2164,silver-core,prod,U3744,2025-05-31 00:53:17,2025-05-31 04:17:17,2025-06-02 14:36:17,medium,dashboard_filter,resolved,4,204,3703,240,true,false,2,2025-05-01,2025-06-01 +T10256,A1073,Silver Holdings,mid_market,EMEA,DE,Enterprise Monthly,enterprise,premium,W2164,silver-core,prod,U3741,2025-05-06 08:30:20,2025-05-06 08:38:20,,urgent,billing,open,,8,,30,true,true,322,2025-05-01, +T10258,A1074,Granite Analytics,mid_market,NA,CA,Growth Monthly,growth,priority,W2168,granite-finance,prod,U3753,2025-05-26 23:28:41,2025-05-27 02:42:41,2025-05-28 02:31:41,medium,permissions,resolved,3,194,1623,240,true,false,2,2025-05-01,2025-05-01 +T10259,A1074,Granite Analytics,mid_market,NA,CA,Growth Monthly,growth,priority,W2167,granite-ops,prod,U3755,2025-05-02 14:30:12,2025-05-02 17:28:12,2025-05-04 18:59:12,medium,api_limit,resolved,4,178,3149,240,true,false,2,2025-05-01,2025-05-01 +T10260,A1074,Granite Analytics,mid_market,NA,CA,Growth Monthly,growth,priority,W2168,granite-finance,prod,U3756,2025-06-05 16:39:10,2025-06-06 05:34:10,,low,performance,in_progress,,775,,1440,true,true,292,2025-06-01, +T10261,A1074,Granite Analytics,mid_market,NA,CA,Growth Monthly,growth,priority,W2166,granite-core,prod,U3754,2025-05-18 22:50:16,2025-05-19 07:18:16,2025-05-20 12:59:16,low,dashboard_filter,resolved,3,508,2289,1440,true,false,2,2025-05-01,2025-05-01 +T10262,A1075,Cedar Labs,smb,EMEA,UK,Starter Monthly,starter,standard,W2169,cedar-core,prod,U3763,2025-04-23 03:07:18,2025-04-23 15:25:18,2025-04-26 14:50:18,low,api_limit,resolved,4,738,5023,1440,true,false,3,2025-04-01,2025-04-01 +T10263,A1076,Atlas Solutions,mid_market,EMEA,UK,Growth Monthly,growth,priority,W2171,atlas-ops,prod,U3772,2025-06-11 21:33:07,2025-06-12 02:46:07,2025-06-14 01:02:07,low,model_error,resolved,5,313,3089,1440,true,false,3,2025-06-01,2025-06-01 +T10264,A1076,Atlas Solutions,mid_market,EMEA,UK,Growth Monthly,growth,priority,W2170,atlas-core,prod,U3777,2025-05-12 14:12:11,2025-05-12 16:48:11,,medium,sso,open,,156,,240,true,true,316,2025-05-01, +T10266,A1077,Evergreen Foods,mid_market,NA,CA,Growth Monthly,growth,priority,W2173,evergreen-ops,prod,U3782,2025-05-18 22:13:07,2025-05-18 22:33:07,2025-05-20 14:40:07,urgent,data_freshness,resolved,5,20,2427,30,true,false,2,2025-05-01,2025-05-01 +T10267,A1077,Evergreen Foods,mid_market,NA,CA,Growth Monthly,growth,priority,W2172,evergreen-core,prod,U3788,2025-05-23 00:58:58,2025-05-23 01:13:58,2025-05-23 22:55:58,urgent,dashboard_filter,resolved,5,15,1317,30,true,false,0,2025-05-01,2025-05-01 +T10268,A1077,Evergreen Foods,mid_market,NA,CA,Growth Monthly,growth,priority,W2173,evergreen-ops,prod,U3789,2025-06-16 00:24:24,2025-06-16 02:02:24,2025-06-16 17:25:24,medium,model_error,resolved,2,98,1021,240,true,false,0,2025-06-01,2025-06-01 +T10270,A1078,Beacon Foods,mid_market,EMEA,FR,Growth Monthly,growth,priority,W2175,beacon-core,prod,U3799,2025-05-29 05:30:26,2025-05-29 16:32:26,2025-05-30 12:09:26,low,performance,resolved,4,662,1839,1440,true,false,1,2025-05-01,2025-05-01 +T10272,A1078,Beacon Foods,mid_market,EMEA,FR,Growth Monthly,growth,priority,W2176,beacon-ops,prod,U3798,2025-04-21 00:49:12,2025-04-21 10:24:12,,low,data_freshness,open,,575,,1440,true,true,337,2025-04-01, +T10273,A1078,Beacon Foods,mid_market,EMEA,FR,Growth Monthly,growth,priority,W2176,beacon-ops,prod,U3798,2025-04-13 10:25:24,2025-04-13 13:29:24,2025-04-16 02:38:24,medium,performance,resolved,4,184,3853,240,true,false,3,2025-04-01,2025-04-01 +T10274,A1079,Nova Foods,enterprise,EMEA,FR,Enterprise Annual,enterprise,premium,W2178,nova-core,prod,U3822,2025-05-05 14:26:20,2025-05-05 14:42:20,2025-05-06 05:24:20,high,billing,resolved,4,16,898,60,true,false,1,2025-05-01,2025-05-01 +T10275,A1079,Nova Foods,enterprise,EMEA,FR,Enterprise Annual,enterprise,premium,W2179,nova-ops,prod,U3811,2025-04-18 07:31:50,2025-04-18 08:53:50,2025-04-19 22:34:50,medium,dashboard_filter,resolved,4,82,2343,240,true,false,1,2025-04-01,2025-04-01 +T10277,A1079,Nova Foods,enterprise,EMEA,FR,Enterprise Annual,enterprise,premium,W2181,nova-marketing,prod,U3812,2025-04-18 10:04:57,2025-04-18 11:44:57,2025-04-20 11:15:57,medium,performance,resolved,4,100,2951,240,true,false,2,2025-04-01,2025-04-01 +T10278,A1079,Nova Foods,enterprise,EMEA,FR,Enterprise Annual,enterprise,premium,W2181,nova-marketing,prod,U3818,2025-06-02 08:36:25,2025-06-02 08:51:25,2025-06-04 13:51:25,urgent,sso,resolved,2,15,3195,30,true,false,2,2025-06-01,2025-06-01 +T10279,A1079,Nova Foods,enterprise,EMEA,FR,Enterprise Annual,enterprise,premium,W2180,nova-finance,prod,U3818,2025-04-28 22:11:35,2025-04-28 22:43:35,2025-05-01 10:54:35,high,data_freshness,resolved,4,32,3643,60,true,false,3,2025-04-01,2025-05-01 +T10280,A1079,Nova Foods,enterprise,EMEA,FR,Enterprise Annual,enterprise,premium,W2180,nova-finance,prod,U3805,2025-05-18 02:26:56,2025-05-18 04:01:56,2025-05-20 16:37:56,medium,api_limit,resolved,4,95,3731,240,true,false,2,2025-05-01,2025-05-01 +T10281,A1080,Beacon Global,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2182,beacon-core,prod,U3834,2025-06-03 01:28:26,2025-06-03 02:25:26,2025-06-05 18:14:26,high,permissions,resolved,4,57,3886,60,true,false,2,2025-06-01,2025-06-01 +T10282,A1080,Beacon Global,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2182,beacon-core,prod,U3834,2025-06-07 21:38:41,2025-06-08 12:53:41,2025-06-08 18:48:41,low,api_limit,resolved,3,915,1270,1440,true,false,1,2025-06-01,2025-06-01 +T10283,A1080,Beacon Global,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2182,beacon-core,prod,U3832,2025-06-22 16:11:06,2025-06-22 19:39:06,2025-06-24 02:22:06,medium,api_limit,resolved,5,208,2051,240,true,false,2,2025-06-01,2025-06-01 +T10284,A1080,Beacon Global,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2182,beacon-core,prod,U3828,2025-04-17 10:23:21,2025-04-17 19:17:21,,low,sso,open,,534,,1440,true,true,341,2025-04-01, +T10285,A1080,Beacon Global,mid_market,EMEA,NL,Growth Monthly,growth,priority,W2183,beacon-ops,prod,U3831,2025-05-13 12:25:09,2025-05-13 13:45:09,,medium,data_freshness,in_progress,,80,,240,true,true,315,2025-05-01, +T10286,A1081,River Collective,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2185,river-ops,sandbox,U3837,2025-04-07 20:11:07,2025-04-08 06:55:07,2025-04-10 15:13:07,low,permissions,resolved,4,644,4022,1440,true,false,3,2025-04-01,2025-04-01 +T10287,A1081,River Collective,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2186,river-finance,prod,U3840,2025-06-22 02:52:23,2025-06-22 04:17:23,,medium,api_limit,in_progress,,85,,240,true,true,275,2025-06-01, +T10288,A1081,River Collective,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2184,river-core,prod,U3835,2025-05-04 08:03:18,2025-05-04 08:48:18,2025-05-07 05:25:18,high,model_error,resolved,3,45,4162,60,true,false,3,2025-05-01,2025-05-01 +T10290,A1082,Summit Manufacturing,mid_market,NA,US,Starter Monthly,starter,standard,W2187,summit-core,prod,U3845,2025-04-26 04:10:30,2025-04-26 04:35:30,,urgent,permissions,open,,25,,30,true,true,332,2025-04-01, +T10291,A1082,Summit Manufacturing,mid_market,NA,US,Starter Monthly,starter,standard,W2187,summit-core,prod,U3850,2025-05-03 16:55:51,2025-05-03 19:47:51,2025-05-06 07:56:51,medium,api_limit,resolved,2,172,3781,240,true,false,3,2025-05-01,2025-05-01 +T10292,A1082,Summit Manufacturing,mid_market,NA,US,Starter Monthly,starter,standard,W2187,summit-core,prod,U3850,2025-05-31 23:21:35,2025-06-01 02:21:35,,medium,data_freshness,open,,180,,240,true,true,297,2025-05-01, +T10295,A1082,Summit Manufacturing,mid_market,NA,US,Starter Monthly,starter,standard,W2187,summit-core,prod,U3846,2025-04-08 08:09:08,2025-04-08 08:31:08,2025-04-10 23:15:08,urgent,dashboard_filter,resolved,3,22,3786,30,true,false,2,2025-04-01,2025-04-01 +T10296,A1083,Falcon Works,mid_market,NA,CA,Growth Monthly,growth,priority,W2188,falcon-core,prod,U3853,2025-05-04 09:35:24,2025-05-04 10:11:24,2025-05-06 17:30:24,high,permissions,resolved,2,36,3355,60,true,false,2,2025-05-01,2025-05-01 +T10297,A1083,Falcon Works,mid_market,NA,CA,Growth Monthly,growth,priority,W2188,falcon-core,prod,U3855,2025-04-09 10:56:04,2025-04-09 17:13:04,2025-04-11 20:22:04,low,model_error,resolved,5,377,3446,1440,true,false,2,2025-04-01,2025-04-01 +T10298,A1083,Falcon Works,mid_market,NA,CA,Growth Monthly,growth,priority,W2189,falcon-ops,sandbox,U3857,2025-06-01 02:05:06,2025-06-01 05:07:06,2025-06-03 17:10:06,medium,dashboard_filter,resolved,4,182,3785,240,true,false,2,2025-06-01,2025-06-01 +T10299,A1083,Falcon Works,mid_market,NA,CA,Growth Monthly,growth,priority,W2188,falcon-core,prod,U3855,2025-06-03 04:49:20,2025-06-03 13:53:20,2025-06-05 19:20:20,low,data_freshness,resolved,4,544,3751,1440,true,false,2,2025-06-01,2025-06-01 +T10300,A1084,Silver Foods,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2190,silver-core,prod,U3867,2025-06-18 09:55:49,2025-06-18 10:33:49,2025-06-19 09:35:49,high,data_freshness,resolved,2,38,1420,60,true,false,1,2025-06-01,2025-06-01 +T10301,A1084,Silver Foods,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2190,silver-core,prod,U3867,2025-05-13 14:22:23,2025-05-13 16:44:23,,medium,sso,in_progress,,142,,240,true,true,315,2025-05-01, +T10302,A1084,Silver Foods,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2191,silver-ops,prod,U3868,2025-04-22 00:50:58,2025-04-22 09:07:58,2025-04-24 22:10:58,low,api_limit,resolved,3,497,4160,1440,true,false,2,2025-04-01,2025-04-01 +T10303,A1084,Silver Foods,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,W2190,silver-core,prod,U3865,2025-05-29 10:44:27,2025-05-29 11:10:27,2025-05-30 20:20:27,high,performance,resolved,4,26,2016,60,true,false,1,2025-05-01,2025-05-01 +T10304,A1085,Sierra Capital,smb,NA,US,Starter Monthly,starter,standard,W2192,sierra-core,prod,U3871,2025-04-20 14:06:05,2025-04-20 16:57:05,2025-04-23 13:10:05,medium,performance,resolved,3,171,4264,240,true,false,3,2025-04-01,2025-04-01 +T10305,A1085,Sierra Capital,smb,NA,US,Starter Monthly,starter,standard,W2192,sierra-core,prod,U3870,2025-04-03 17:48:59,2025-04-03 22:12:59,2025-04-06 03:27:59,medium,api_limit,resolved,5,264,3459,240,false,false,3,2025-04-01,2025-04-01 +T10306,A1086,River Labs,smb,EMEA,FR,Starter Monthly,starter,standard,W2193,river-core,prod,U3873,2025-04-19 20:41:58,2025-04-19 23:27:58,,medium,model_error,open,,166,,240,true,true,339,2025-04-01, +T10307,A1086,River Labs,smb,EMEA,FR,Starter Monthly,starter,standard,W2193,river-core,prod,U3873,2025-05-29 02:05:37,2025-05-29 02:16:37,2025-05-30 20:22:37,urgent,api_limit,resolved,3,11,2537,30,true,false,1,2025-05-01,2025-05-01 +T10308,A1087,Apex Capital,enterprise,NA,CA,Growth Monthly,growth,priority,W2194,apex-core,prod,U3883,2025-04-21 22:37:01,2025-04-22 05:16:01,2025-04-22 10:16:01,low,dashboard_filter,resolved,5,399,699,1440,true,false,1,2025-04-01,2025-04-01 +T10309,A1087,Apex Capital,enterprise,NA,CA,Growth Monthly,growth,priority,W2194,apex-core,prod,U3881,2025-04-08 17:15:56,2025-04-08 17:33:56,2025-04-10 22:19:56,high,model_error,resolved,4,18,3184,60,true,false,2,2025-04-01,2025-04-01 +T10310,A1087,Apex Capital,enterprise,NA,CA,Growth Monthly,growth,priority,W2194,apex-core,prod,U3885,2025-06-08 20:44:26,2025-06-09 04:07:26,2025-06-09 16:30:26,low,api_limit,resolved,5,443,1186,1440,true,false,1,2025-06-01,2025-06-01 +T10311,A1087,Apex Capital,enterprise,NA,CA,Growth Monthly,growth,priority,W2194,apex-core,prod,U3880,2025-04-21 23:15:42,2025-04-22 01:00:42,2025-04-23 20:09:42,medium,model_error,resolved,4,105,2694,240,true,false,2,2025-04-01,2025-04-01 +T10312,A1087,Apex Capital,enterprise,NA,CA,Growth Monthly,growth,priority,W2194,apex-core,prod,U3881,2025-06-09 11:09:27,2025-06-09 11:36:27,2025-06-11 20:04:27,high,performance,resolved,4,27,3415,60,true,false,2,2025-06-01,2025-06-01 +T10313,A1087,Apex Capital,enterprise,NA,CA,Growth Monthly,growth,priority,W2194,apex-core,prod,U3881,2025-05-04 23:27:49,2025-05-05 01:14:49,2025-05-07 07:08:49,medium,sso,resolved,4,107,3341,240,true,false,3,2025-05-01,2025-05-01 +T10314,A1087,Apex Capital,enterprise,NA,CA,Growth Monthly,growth,priority,W2194,apex-core,prod,U3881,2025-06-07 12:39:10,2025-06-07 14:44:10,,medium,dashboard_filter,open,,125,,240,true,true,290,2025-06-01, +T10315,A1088,Cedar Partners,smb,APAC,NZ,Starter Monthly,starter,standard,W2195,cedar-core,prod,U3889,2025-05-16 00:23:16,2025-05-16 10:47:16,,low,model_error,in_progress,,624,,1440,true,true,312,2025-05-01, +T10317,A1089,Beacon Network,mid_market,NA,US,Growth Monthly,growth,priority,W2196,beacon-core,prod,U3904,2025-05-04 22:49:28,2025-05-05 14:46:28,2025-05-06 19:12:28,low,model_error,resolved,5,957,2663,1440,true,false,2,2025-05-01,2025-05-01 +T10318,A1089,Beacon Network,mid_market,NA,US,Growth Monthly,growth,priority,W2196,beacon-core,prod,U3900,2025-04-16 04:01:09,2025-04-16 04:36:09,2025-04-17 07:11:09,urgent,dashboard_filter,resolved,5,35,1630,30,false,false,1,2025-04-01,2025-04-01 +T10319,A1090,Vertex Labs,smb,NA,US,Starter Monthly,starter,standard,W2198,vertex-core,prod,U3906,2025-05-08 22:59:11,2025-05-08 23:26:11,,high,model_error,in_progress,,27,,60,true,true,320,2025-05-01, +T10320,A1090,Vertex Labs,smb,NA,US,Starter Monthly,starter,standard,W2198,vertex-core,prod,U3908,2025-05-17 20:56:55,2025-05-17 23:42:55,2025-05-19 02:05:55,medium,dashboard_filter,resolved,4,166,1749,240,true,false,2,2025-05-01,2025-05-01 +T10013,A1004,Silver Solutions,enterprise,NA,US,Starter Monthly,starter,standard,W2011,silver-ops,sandbox,U3051,2025-06-18 04:56:20,2025-06-18 06:09:20,2025-06-18 14:53:20,medium,cancellation,resolved,1,73,597,120,true,false,0,2025-06-01,2025-06-01 +T10015,A1004,Silver Solutions,enterprise,NA,US,Starter Monthly,starter,standard,W2010,silver-core,prod,U3048,2025-06-23 11:25:02,2025-06-23 11:50:02,2025-06-24 09:54:02,high,api_limit,resolved,4,25,1349,45,true,false,1,2025-06-01,2025-06-01 +T10016,A1004,Silver Solutions,enterprise,NA,US,Starter Monthly,starter,standard,W2010,silver-core,prod,U3038,2025-06-25 11:34:31,2025-06-25 18:48:31,2025-06-26 15:51:31,low,data_freshness,resolved,5,434,1697,900,true,false,1,2025-06-01,2025-06-01 +T10023,A1005,Pacific Labs,enterprise,EMEA,UK,Enterprise Annual,enterprise,premium,W2013,pacific-ops,prod,U3058,2025-06-21 06:12:16,2025-06-21 11:36:16,2025-06-22 20:33:16,low,sso,resolved,4,324,2301,900,true,false,1,2025-06-01,2025-06-01 +T10118,A1037,Lighthouse Network,enterprise,EMEA,UK,Enterprise Monthly,enterprise,premium,W2076,lighthouse-ops,prod,U3341,2025-06-24 05:04:42,2025-06-24 05:24:42,2025-06-24 09:52:42,high,cancellation,resolved,4,20,288,45,true,false,0,2025-06-01,2025-06-01 +T10142,A1043,Lighthouse Works,enterprise,APAC,SG,Enterprise Monthly,enterprise,premium,W2092,lighthouse-ops,sandbox,U3398,2025-06-19 16:19:48,2025-06-19 23:05:48,2025-06-21 18:35:48,low,permissions,resolved,3,406,3016,900,true,false,2,2025-06-01,2025-06-01 +T10215,A1061,Atlas Capital,enterprise,EMEA,FR,Enterprise Monthly,enterprise,premium,W2137,atlas-ops,sandbox,U3602,2025-06-18 07:24:33,2025-06-18 08:38:33,,medium,data_freshness,in_progress,,74,,120,true,true,279,2025-06-01, +T10054,A1014,Evergreen Global,enterprise,APAC,SG,Growth Monthly,growth,priority,,,,U3138,2025-06-19 13:20:35,2025-06-19 15:12:35,2025-06-22 10:19:35,medium,cancellation,resolved,2,112,4139,120,true,false,3,2025-06-01,2025-06-01 +T10003,A1001,Helio Systems,mid_market,EMEA,NL,Growth Monthly,growth,priority,,,,U3004,2025-04-17 11:06:01,2025-04-17 13:49:01,2025-04-17 20:43:01,medium,billing,resolved,4,163,577,240,true,false,0,2025-04-01,2025-04-01 +T10008,A1003,Nova Ventures,enterprise,NA,US,Enterprise Annual,enterprise,premium,,,,U3030,2025-04-22 01:54:07,2025-04-22 04:59:07,2025-04-24 21:30:07,low,billing,resolved,5,185,4056,1440,true,false,2,2025-04-01,2025-04-01 +T10009,A1003,Nova Ventures,enterprise,NA,US,Enterprise Annual,enterprise,premium,,,,U3035,2025-04-03 22:19:57,2025-04-03 22:33:57,2025-04-06 01:57:57,high,billing,resolved,5,14,3098,60,true,false,3,2025-04-01,2025-04-01 +T10019,A1004,Silver Solutions,enterprise,NA,US,Starter Monthly,starter,standard,,,,U3051,2025-04-27 21:31:07,2025-04-28 03:43:07,,low,billing,open,,372,,1440,true,true,331,2025-04-01, +T10033,A1008,Pacific Works,mid_market,EMEA,UK,Enterprise Monthly,enterprise,premium,,,,U3078,2025-05-26 10:11:02,2025-05-26 17:11:02,2025-05-28 15:09:02,low,cancellation,resolved,4,420,3178,1440,true,false,2,2025-05-01,2025-05-01 +T10064,A1016,BluePeak Capital,enterprise,EMEA,DE,Enterprise Annual,enterprise,premium,,,,U3166,2025-05-20 03:55:57,2025-05-20 04:43:57,,medium,billing,in_progress,,48,,240,true,true,308,2025-05-01, +T10071,A1018,Harbor Manufacturing,smb,EMEA,UK,Starter Monthly,starter,standard,,,,U3181,2025-04-12 20:00:56,2025-04-13 11:09:56,2025-04-15 08:04:56,low,billing,resolved,2,909,3604,1440,true,false,3,2025-04-01,2025-04-01 +T10084,A1026,Pioneer Capital,smb,NA,CA,Starter Monthly,starter,standard,,,,U3225,2025-04-04 20:11:17,2025-04-04 20:53:17,2025-04-07 01:09:17,high,billing,resolved,5,42,3178,60,true,false,3,2025-04-01,2025-04-01 +T10087,A1028,Apex Energy,mid_market,APAC,SG,Enterprise Monthly,enterprise,premium,,,,U3234,2025-04-10 23:34:55,2025-04-11 07:23:55,2025-04-11 09:43:55,low,billing,resolved,5,469,609,1440,true,false,1,2025-04-01,2025-04-01 +T10090,A1029,Bright Labs,enterprise,APAC,NZ,Starter Monthly,starter,standard,,,,U3258,2025-04-29 14:01:39,2025-04-29 14:21:39,2025-05-01 11:13:39,urgent,cancellation,resolved,2,20,2712,30,true,false,2,2025-04-01,2025-05-01 +T10096,A1030,Northwind Analytics,enterprise,EMEA,UK,Enterprise Monthly,enterprise,premium,,,,U3264,2025-04-03 04:55:38,2025-04-03 05:00:38,2025-04-05 07:17:38,urgent,billing,resolved,5,5,3022,30,true,false,2,2025-04-01,2025-04-01 +T10100,A1031,Helio Holdings,mid_market,APAC,AU,Growth Monthly,growth,priority,,,,U3277,2025-04-02 02:00:43,2025-04-02 02:39:43,,high,billing,in_progress,,39,,60,true,true,356,2025-04-01, +T10104,A1032,Vertex Works,mid_market,EMEA,DE,Growth Monthly,growth,priority,,,,U3287,2025-06-13 02:13:43,2025-06-13 05:30:43,2025-06-15 14:40:43,medium,cancellation,resolved,3,197,3627,240,true,false,2,2025-06-01,2025-06-01 +T10109,A1034,Helio Partners,smb,NA,CA,Starter Monthly,starter,standard,,,,U3302,2025-06-01 02:46:58,2025-06-01 03:27:58,2025-06-01 19:25:58,high,cancellation,resolved,4,41,999,60,true,false,0,2025-06-01,2025-06-01 +T10114,A1035,Bright Retail,mid_market,EMEA,UK,Enterprise Monthly,enterprise,premium,,,,U3315,2025-05-03 08:46:16,2025-05-03 09:40:16,2025-05-06 08:18:16,high,cancellation,resolved,5,54,4292,60,true,false,3,2025-05-01,2025-05-01 +T10125,A1039,Nova Group,smb,EMEA,FR,Starter Monthly,starter,standard,,,,U3352,2025-05-09 21:57:57,2025-05-10 03:39:57,2025-05-10 17:49:57,low,billing,resolved,5,342,1192,1440,true,false,1,2025-05-01,2025-05-01 +T10126,A1039,Nova Group,smb,EMEA,FR,Starter Monthly,starter,standard,,,,U3353,2025-05-19 17:18:43,2025-05-19 17:49:43,2025-05-22 10:34:43,urgent,cancellation,resolved,5,31,3916,30,false,false,3,2025-05-01,2025-05-01 +T10129,A1040,Harbor Collective,mid_market,APAC,SG,Enterprise Monthly,enterprise,premium,,,,U3357,2025-06-17 23:56:41,2025-06-18 00:16:41,2025-06-18 14:25:41,urgent,billing,resolved,2,20,869,30,true,false,1,2025-06-01,2025-06-01 +T10136,A1042,Northwind Labs,mid_market,APAC,AU,Growth Monthly,growth,priority,,,,U3385,2025-05-24 00:41:22,2025-05-24 05:23:22,2025-05-24 15:55:22,medium,billing,resolved,3,282,914,240,false,false,0,2025-05-01,2025-05-01 +T10139,A1042,Northwind Labs,mid_market,APAC,AU,Growth Monthly,growth,priority,,,,U3383,2025-05-25 13:20:05,2025-05-25 16:30:05,2025-05-27 19:01:05,medium,cancellation,resolved,4,190,3221,240,true,false,2,2025-05-01,2025-05-01 +T10156,A1047,Orchid Global,enterprise,APAC,AU,Enterprise Annual,enterprise,premium,,,,U3438,2025-05-08 01:00:31,2025-05-08 05:18:31,2025-05-10 13:16:31,low,billing,resolved,4,258,3616,1440,true,false,2,2025-05-01,2025-05-01 +T10157,A1047,Orchid Global,enterprise,APAC,AU,Enterprise Annual,enterprise,premium,,,,U3439,2025-05-07 11:11:19,2025-05-07 13:24:19,2025-05-09 16:38:19,medium,billing,resolved,5,133,3207,240,true,false,2,2025-05-01,2025-05-01 +T10173,A1050,Cedar Energy,smb,APAC,JP,Starter Monthly,starter,standard,,,,U3489,2025-06-18 15:22:07,2025-06-18 18:17:07,,medium,billing,open,,175,,240,true,true,279,2025-06-01, +T10180,A1052,Sierra Labs,mid_market,APAC,NZ,Growth Monthly,growth,priority,,,,U3502,2025-05-25 00:00:55,2025-05-25 02:25:55,,medium,cancellation,in_progress,,145,,240,true,true,303,2025-05-01, +T10195,A1056,Delta Global,mid_market,APAC,AU,Growth Monthly,growth,priority,,,,U3552,2025-05-29 08:49:43,2025-05-29 11:19:43,2025-05-30 16:48:43,medium,billing,resolved,4,150,1919,240,true,false,1,2025-05-01,2025-05-01 +T10200,A1057,Harbor Partners,enterprise,APAC,NZ,Enterprise Annual,enterprise,premium,,,,U3554,2025-05-26 18:25:27,2025-05-26 20:00:27,2025-05-29 04:45:27,medium,billing,resolved,3,95,3500,240,true,false,3,2025-05-01,2025-05-01 +T10202,A1057,Harbor Partners,enterprise,APAC,NZ,Enterprise Annual,enterprise,premium,,,,U3566,2025-05-05 15:02:10,2025-05-05 16:09:10,,medium,billing,in_progress,,67,,240,true,true,323,2025-05-01, +T10205,A1058,Evergreen Analytics,smb,EMEA,UK,Starter Monthly,starter,standard,,,,U3567,2025-05-28 01:46:46,2025-05-28 02:20:46,2025-05-28 18:05:46,high,billing,resolved,4,34,979,60,true,false,0,2025-05-01,2025-05-01 +T10213,A1060,Cedar Foods,mid_market,NA,CA,Growth Monthly,growth,priority,,,,U3588,2025-04-02 01:19:37,2025-04-02 05:35:37,2025-04-03 18:30:37,low,cancellation,resolved,4,256,2471,1440,true,false,1,2025-04-01,2025-04-01 +T10217,A1061,Atlas Capital,enterprise,EMEA,FR,Enterprise Monthly,enterprise,premium,,,,U3611,2025-06-13 12:09:40,2025-06-13 13:41:40,2025-06-15 17:32:40,medium,cancellation,resolved,5,92,3203,240,true,false,2,2025-06-01,2025-06-01 +T10224,A1064,Atlas Health,smb,NA,US,Starter Monthly,starter,standard,,,,U3635,2025-06-15 11:18:22,2025-06-15 20:37:22,2025-06-17 05:25:22,low,billing,resolved,5,559,2527,1440,true,false,2,2025-06-01,2025-06-01 +T10231,A1067,Maple Energy,mid_market,NA,CA,Growth Monthly,growth,priority,,,,U3663,2025-06-04 13:28:16,2025-06-04 16:20:16,2025-06-06 12:13:16,medium,cancellation,resolved,5,172,2805,240,true,false,2,2025-06-01,2025-06-01 +T10234,A1067,Maple Energy,mid_market,NA,CA,Growth Monthly,growth,priority,,,,U3663,2025-04-15 19:58:10,2025-04-15 20:39:10,2025-04-16 09:26:10,high,cancellation,resolved,4,41,808,60,true,false,1,2025-04-01,2025-04-01 +T10236,A1068,Helio Health,enterprise,APAC,SG,Enterprise Monthly,enterprise,premium,,,,U3679,2025-04-25 17:06:36,2025-04-25 17:11:36,2025-04-28 04:20:36,urgent,cancellation,resolved,5,5,3554,30,true,false,3,2025-04-01,2025-04-01 +T10245,A1070,Helio Manufacturing,smb,APAC,NZ,Starter Monthly,starter,standard,,,,U3697,2025-06-09 14:37:07,2025-06-09 17:33:07,2025-06-09 22:50:07,medium,cancellation,resolved,4,176,493,240,true,false,0,2025-06-01,2025-06-01 +T10246,A1070,Helio Manufacturing,smb,APAC,NZ,Starter Monthly,starter,standard,,,,U3697,2025-04-28 01:53:59,2025-04-28 02:39:59,2025-04-28 04:05:59,high,billing,resolved,4,46,132,60,true,false,0,2025-04-01,2025-04-01 +T10248,A1071,Evergreen Group,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,,,,U3706,2025-04-18 13:15:21,2025-04-18 14:50:21,2025-04-20 19:23:21,medium,cancellation,resolved,4,95,3248,240,true,false,2,2025-04-01,2025-04-01 +T10257,A1074,Granite Analytics,mid_market,NA,CA,Growth Monthly,growth,priority,,,,U3753,2025-04-17 13:43:52,2025-04-18 01:22:52,2025-04-20 17:30:52,low,billing,resolved,5,699,4547,1440,true,false,3,2025-04-01,2025-04-01 +T10265,A1076,Atlas Solutions,mid_market,EMEA,UK,Growth Monthly,growth,priority,,,,U3774,2025-06-24 13:38:25,2025-06-24 14:17:25,2025-06-26 13:55:25,high,cancellation,resolved,5,39,2897,60,true,false,2,2025-06-01,2025-06-01 +T10269,A1077,Evergreen Foods,mid_market,NA,CA,Growth Monthly,growth,priority,,,,U3783,2025-06-19 20:59:50,2025-06-19 21:46:50,2025-06-20 17:51:50,high,billing,resolved,4,47,1252,60,true,false,1,2025-06-01,2025-06-01 +T10271,A1078,Beacon Foods,mid_market,EMEA,FR,Growth Monthly,growth,priority,,,,U3796,2025-04-13 14:55:05,2025-04-13 18:19:05,2025-04-14 13:29:05,medium,cancellation,resolved,4,204,1354,240,true,false,1,2025-04-01,2025-04-01 +T10276,A1079,Nova Foods,enterprise,EMEA,FR,Enterprise Annual,enterprise,premium,,,,U3823,2025-05-25 23:01:24,2025-05-26 03:17:24,2025-05-26 16:06:24,low,billing,resolved,2,256,1025,1440,true,false,1,2025-05-01,2025-05-01 +T10289,A1081,River Collective,mid_market,NA,CA,Enterprise Monthly,enterprise,premium,,,,U3841,2025-06-15 08:08:53,2025-06-15 08:31:53,2025-06-17 06:39:53,urgent,billing,resolved,5,23,2791,30,true,false,2,2025-06-01,2025-06-01 +T10293,A1082,Summit Manufacturing,mid_market,NA,US,Starter Monthly,starter,standard,,,,U3847,2025-05-02 02:35:01,2025-05-02 18:53:01,2025-05-04 11:43:01,low,cancellation,resolved,1,978,3428,1440,true,false,2,2025-05-01,2025-05-01 +T10294,A1082,Summit Manufacturing,mid_market,NA,US,Starter Monthly,starter,standard,,,,U3847,2025-06-05 19:41:59,2025-06-05 23:44:59,2025-06-07 13:58:59,medium,cancellation,resolved,3,243,2537,240,false,false,2,2025-06-01,2025-06-01 +T10316,A1088,Cedar Partners,smb,APAC,NZ,Starter Monthly,starter,standard,,,,U3891,2025-06-01 22:14:46,2025-06-02 09:01:46,2025-06-03 11:53:46,low,billing,resolved,5,647,2259,1440,true,false,2,2025-06-01,2025-06-01 diff --git a/tasks/helixops_saas016/setup.sh b/tasks/helixops_saas016/setup.sh new file mode 100755 index 00000000..ba9d7064 --- /dev/null +++ b/tasks/helixops_saas016/setup.sh @@ -0,0 +1,2 @@ +#!/bin/bash +dbt run diff --git a/tasks/helixops_saas016/solution.sh b/tasks/helixops_saas016/solution.sh new file mode 100755 index 00000000..244fa3e0 --- /dev/null +++ b/tasks/helixops_saas016/solution.sh @@ -0,0 +1,4 @@ +#!/bin/bash +patch -p1 < /sage/solutions/changes.patch +dbt seed --select sla_enterprise_targets +dbt run --select int_support_sla fct_support_tickets diff --git a/tasks/helixops_saas016/solutions/changes.patch b/tasks/helixops_saas016/solutions/changes.patch new file mode 100644 index 00000000..b976bbd4 --- /dev/null +++ b/tasks/helixops_saas016/solutions/changes.patch @@ -0,0 +1,66 @@ +--- /dev/null ++++ b/seeds/sla_enterprise_targets.csv +@@ -0,0 +1,5 @@ ++priority,segment,response_sla_minutes,valid_from,valid_to ++urgent,enterprise,20,2025-06-16 08:00:00,9999-12-31 00:00:00 ++high,enterprise,45,2025-06-16 08:00:00,9999-12-31 00:00:00 ++medium,enterprise,120,2025-06-16 08:00:00,9999-12-31 00:00:00 ++low,enterprise,900,2025-06-16 08:00:00,9999-12-31 00:00:00 +--- a/models/intermediate/int_support_sla.sql ++++ b/models/intermediate/int_support_sla.sql +@@ -6,6 +6,9 @@ + ), + workspaces as ( + select * from {{ ref('stg_workspaces') }} ++), ++enterprise_sla as ( ++ select * from {{ ref('sla_enterprise_targets') }} + ) + select + t.ticket_id, +@@ -27,18 +30,24 @@ + t.csat_score, + t.first_response_minutes, + t.resolution_minutes, +- case +- when t.priority = 'urgent' then 30 +- when t.priority = 'high' then 60 +- when t.priority = 'medium' then 240 +- else 1440 +- end as response_sla_minutes, +- case +- when t.priority = 'urgent' then 30 +- when t.priority = 'high' then 60 +- when t.priority = 'medium' then 240 +- else 1440 +- end >= t.first_response_minutes as met_response_sla, ++ coalesce( ++ es.response_sla_minutes, ++ case ++ when t.priority = 'urgent' then 30 ++ when t.priority = 'high' then 60 ++ when t.priority = 'medium' then 240 ++ else 1440 ++ end ++ ) as response_sla_minutes, ++ coalesce( ++ es.response_sla_minutes, ++ case ++ when t.priority = 'urgent' then 30 ++ when t.priority = 'high' then 60 ++ when t.priority = 'medium' then 240 ++ else 1440 ++ end ++ ) >= t.first_response_minutes as met_response_sla, + t.is_open_ticket, + case + when t.resolved_at is not null then date_diff('day', cast(t.opened_at as date), cast(t.resolved_at as date)) +@@ -49,3 +58,8 @@ + from tickets t + left join accounts a using (account_id) + left join workspaces w on t.workspace_id = w.workspace_id ++left join enterprise_sla es ++ on t.priority = es.priority ++ and a.segment = es.segment ++ and t.opened_at >= cast(es.valid_from as timestamp) ++ and t.opened_at < cast(es.valid_to as timestamp) diff --git a/tasks/helixops_saas016/task.yaml b/tasks/helixops_saas016/task.yaml new file mode 100644 index 00000000..f2271350 --- /dev/null +++ b/tasks/helixops_saas016/task.yaml @@ -0,0 +1,28 @@ +task_id: helixops_saas016 +status: ready +description: Add enterprise SLA overrides using a seed with a three-way join on priority, segment, and valid date range +prompts: + - key: base + prompt: |- + We have new SLA targets for enterprise accounts only, effective 2025-06-16 at 08:00 UTC. Please update the SLA model so enterprise accounts get: urgent=20min, high=45min, medium=120min, standard=900min. Other segments keep existing SLAs. +author_name: joel +author_email: joel@example.com +difficulty: hard +tags: + - dbt + - helixops_saas +test_setup: |- + dbt seed && dbt run --select int_support_sla fct_support_tickets +variants: +- db_type: duckdb + db_name: helixops_saas + project_type: dbt + project_name: helixops_saas +- db_type: duckdb + db_name: helixops_saas + project_type: dbt-fusion + project_name: helixops_saas +solution_seeds: + - table_name: fct_support_tickets + exclude_columns: + - ticket_age_days diff --git a/tasks/helixops_saas016/tests/AUTO_fct_support_tickets_equality.sql b/tasks/helixops_saas016/tests/AUTO_fct_support_tickets_equality.sql new file mode 100644 index 00000000..f1e469f0 --- /dev/null +++ b/tasks/helixops_saas016/tests/AUTO_fct_support_tickets_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'fct_support_tickets' %} +{% set answer_keys = ['solution__fct_support_tickets'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + 'ticket_age_days' +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__fct_support_tickets') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas016/tests/AUTO_fct_support_tickets_existence.sql b/tasks/helixops_saas016/tests/AUTO_fct_support_tickets_existence.sql new file mode 100644 index 00000000..e76f043c --- /dev/null +++ b/tasks/helixops_saas016/tests/AUTO_fct_support_tickets_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'fct_support_tickets' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas017/macros/ade_bench_equality_test.sql b/tasks/helixops_saas017/macros/ade_bench_equality_test.sql new file mode 100644 index 00000000..510c6037 --- /dev/null +++ b/tasks/helixops_saas017/macros/ade_bench_equality_test.sql @@ -0,0 +1,78 @@ +{% macro ade_bench_equality_test(table_name, answer_keys, cols_to_exclude=[]) %} + {% if not execute %} + select 1 where 1=0 + {% else %} + {% set ns = namespace(matched=false) %} + {% set actual_rel = load_relation(ref(table_name)) %} + + {% if actual_rel is not none %} + {% set actual_columns = adapter.get_columns_in_relation(actual_rel) %} + {% set exclude_lower = cols_to_exclude | map('lower') | list %} + + {%- set actual_col_names = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do actual_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set actual_set = actual_col_names | sort %} + + {% for answer_key in answer_keys %} + {% if not ns.matched %} + {% set seed_rel = load_relation(ref(answer_key)) %} + {% if seed_rel is not none %} + {% set seed_columns = adapter.get_columns_in_relation(seed_rel) %} + + {%- set seed_col_names = [] -%} + {%- for col in seed_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do seed_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set seed_set = seed_col_names | sort %} + + {% if actual_set == seed_set %} + {%- set compare_cols = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do compare_cols.append(col.quoted) -%} + {%- endif -%} + {%- endfor -%} + {% set compare_cols_csv = compare_cols | join(', ') %} + + {% set query %} + with a_minus_b as ( + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + except + select {{ compare_cols_csv }} from {{ ref(table_name) }} + ), + b_minus_a as ( + select {{ compare_cols_csv }} from {{ ref(table_name) }} + except + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + ), + unioned as ( + select * from a_minus_b + union all + select * from b_minus_a + ) + select count(*) as diff_count from unioned + {% endset %} + + {% set result = run_query(query) %} + {% if result.rows[0][0] == 0 %} + {% set ns.matched = true %} + {% endif %} + {% endif %} + {% endif %} + {% endif %} + {% endfor %} + {% endif %} + + {% if ns.matched %} + select 1 where 1=0 + {% else %} + select 1 + {% endif %} + {% endif %} +{% endmacro %} diff --git a/tasks/helixops_saas017/seeds/_no-op.txt b/tasks/helixops_saas017/seeds/_no-op.txt new file mode 100644 index 00000000..2d187cdc --- /dev/null +++ b/tasks/helixops_saas017/seeds/_no-op.txt @@ -0,0 +1,29 @@ + + +seeds: + helixops_saas: + solution__int_workspace_roster: + +column_types: + membership_id: varchar + workspace_id: varchar + workspace_name: varchar + environment_tier: varchar + workspace_status: varchar + is_primary: boolean + account_id: varchar + account_name: varchar + segment: varchar + region: varchar + billing_country: varchar + user_id: varchar + email: varchar + full_name: varchar + title: varchar + department: varchar + user_status: varchar + is_active_user: boolean + role: varchar + invited_at: timestamp + joined_at: timestamp + membership_status: varchar + is_current_membership: boolean diff --git a/tasks/helixops_saas017/seeds/solution__int_workspace_roster.csv b/tasks/helixops_saas017/seeds/solution__int_workspace_roster.csv new file mode 100644 index 00000000..e7b0a03a --- /dev/null +++ b/tasks/helixops_saas017/seeds/solution__int_workspace_roster.csv @@ -0,0 +1,1072 @@ +membership_id,workspace_id,workspace_name,environment_tier,workspace_status,is_primary,account_id,account_name,segment,region,billing_country,user_id,email,full_name,title,department,user_status,is_active_user,role,invited_at,joined_at,membership_status,is_current_membership +M4001,W2001,helio-core,prod,active,true,A1001,Helio Systems,mid_market,EMEA,NL,U3001,lena.park@heliosystems.example,Lena Park,Technical Program Manager,product,active,true,owner,2024-09-05 20:52:48,2024-09-05 21:49:48,active,true +M4002,W2001,helio-core,prod,active,true,A1001,Helio Systems,mid_market,EMEA,NL,U3002,mei.lewis@heliosystems.example,Mei Lewis,BI Analyst,analytics,active,true,viewer,2024-09-22 18:57:48,2024-09-22 21:52:48,active,true +M4003,W2002,helio-ops,prod,active,false,A1001,Helio Systems,mid_market,EMEA,NL,U3003,marcus.saeed@heliosystems.example,Marcus Saeed,Operations Manager,operations,active,true,admin,2024-08-17 15:02:48,2024-08-17 17:37:48,active,true +M4004,W2001,helio-core,prod,active,true,A1001,Helio Systems,mid_market,EMEA,NL,U3004,peter.ng@heliosystems.example,Peter Ng,Operations Director,operations,inactive,false,editor,2024-09-09 18:06:48,2024-09-09 19:02:48,removed,false +M4005,W2001,helio-core,prod,active,true,A1001,Helio Systems,mid_market,EMEA,NL,U3005,sofia.fischer@heliosystems.example,Sofia Fischer,Demand Gen Manager,marketing,active,true,editor,2024-08-17 17:24:48,2024-08-17 18:32:48,active,true +M4006,W2003,helio-finance,prod,active,false,A1001,Helio Systems,mid_market,EMEA,NL,U3006,marcus.silva@heliosystems.example,Marcus Silva,Finance Manager,finance,inactive,false,editor,2024-08-14 16:39:48,2024-08-14 18:41:48,removed,false +M4007,W2001,helio-core,prod,active,true,A1001,Helio Systems,mid_market,EMEA,NL,U3007,naomi.turner@heliosystems.example,Naomi Turner,Product Manager,product,active,true,viewer,2024-08-17 11:49:48,2024-08-17 13:50:48,active,true +M4008,W2002,helio-ops,prod,active,false,A1001,Helio Systems,mid_market,EMEA,NL,U3008,peter.saeed@heliosystems.example,Peter Saeed,Revenue Operations Manager,sales,active,true,viewer,2024-08-30 16:03:48,2024-08-30 17:48:48,active,true +M4009,W2003,helio-finance,prod,active,false,A1001,Helio Systems,mid_market,EMEA,NL,U3009,victor.price@heliosystems.example,Victor Price,Product Manager,product,active,true,viewer,2024-08-19 19:48:48,2024-08-19 20:56:48,active,true +M4010,W2004,summit-core,prod,active,true,A1002,Summit Foods,mid_market,NA,US,U3010,sofia.alvarez@summitfoods.example,Sofia Alvarez,FP&A Analyst,finance,active,true,owner,2025-02-06 21:48:29,2025-02-07 00:31:29,active,true +M4011,W2006,summit-finance,prod,active,false,A1002,Summit Foods,mid_market,NA,US,U3011,lena.price@summitfoods.example,Lena Price,Controller,finance,active,true,editor,2025-02-21 21:46:29,2025-02-21 22:37:29,active,true +M4012,W2006,summit-finance,prod,active,false,A1002,Summit Foods,mid_market,NA,US,U3012,tomas.saeed@summitfoods.example,Tomas Saeed,Analytics Engineer,data,active,true,editor,2025-02-09 22:05:29,2025-02-09 23:11:29,active,true +M4013,W2004,summit-core,prod,active,true,A1002,Summit Foods,mid_market,NA,US,U3013,nina.romero@summitfoods.example,Nina Romero,Founder,executive,active,true,editor,2025-02-02 00:33:29,2025-02-02 03:28:29,active,true +M4014,W2004,summit-core,prod,active,true,A1002,Summit Foods,mid_market,NA,US,U3014,marcus.silva@summitfoods.example,Marcus Silva,Finance Manager,finance,active,true,viewer,2025-02-02 05:43:29,2025-02-02 07:54:29,active,true +M4015,W2005,summit-ops,sandbox,active,false,A1002,Summit Foods,mid_market,NA,US,U3015,kenji.ward@summitfoods.example,Kenji Ward,Product Manager,product,active,true,viewer,2025-01-18 22:23:29,2025-01-18 22:47:29,active,true +M4016,W2004,summit-core,prod,active,true,A1002,Summit Foods,mid_market,NA,US,U3016,priya.meyer@summitfoods.example,Priya Meyer,Marketing Operations Lead,marketing,active,true,editor,2025-01-22 21:18:29,2025-01-22 23:18:29,active,true +M4017,W2004,summit-core,prod,active,true,A1002,Summit Foods,mid_market,NA,US,U3017,sofia.morgan@summitfoods.example,Sofia Morgan,Technical Program Manager,product,active,true,editor,2025-01-13 00:11:29,2025-01-13 00:22:29,active,true +M4018,W2004,summit-core,prod,active,true,A1002,Summit Foods,mid_market,NA,US,U3018,hannah.silva@summitfoods.example,Hannah Silva,BI Analyst,analytics,inactive,false,viewer,2025-02-03 03:11:29,2025-02-03 04:53:29,removed,false +M4019,W2005,summit-ops,sandbox,active,false,A1002,Summit Foods,mid_market,NA,US,U3019,lina.silva@summitfoods.example,Lina Silva,FP&A Analyst,finance,active,true,viewer,2025-02-24 05:09:29,2025-02-24 06:18:29,active,true +M4020,W2004,summit-core,prod,active,true,A1002,Summit Foods,mid_market,NA,US,U3020,mateo.dubois@summitfoods.example,Mateo Dubois,Workflow Analyst,operations,active,true,viewer,2025-02-06 22:08:29,2025-02-07 00:11:29,active,true +M4021,W2006,summit-finance,prod,active,false,A1002,Summit Foods,mid_market,NA,US,U3020,mateo.dubois@summitfoods.example,Mateo Dubois,Workflow Analyst,operations,active,true,viewer,2025-02-06 23:02:29,2025-02-06 23:28:29,active,true +M4022,W2006,summit-finance,prod,active,false,A1002,Summit Foods,mid_market,NA,US,U3021,kenji.nash@summitfoods.example,Kenji Nash,Analytics Manager,analytics,active,true,viewer,2025-01-16 21:23:29,2025-01-16 22:09:29,active,true +M4023,W2005,summit-ops,sandbox,active,false,A1002,Summit Foods,mid_market,NA,US,U3021,kenji.nash@summitfoods.example,Kenji Nash,Analytics Manager,analytics,active,true,viewer,2025-01-16 22:49:29,2025-01-16 22:58:29,active,true +M4024,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3022,owen.ng@novaventures.example,Owen Ng,Controller,finance,active,true,owner,2025-01-08 07:57:52,2025-01-08 09:17:52,active,true +M4025,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3023,marta.ng@novaventures.example,Marta Ng,Insights Lead,analytics,active,true,editor,2024-12-14 04:10:52,2024-12-14 07:06:52,active,true +M4026,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3024,derek.hart@novaventures.example,Derek Hart,Finance Manager,finance,active,true,viewer,2024-12-20 09:57:52,2024-12-20 10:57:52,active,true +M4027,W2009,nova-finance,prod,active,false,A1003,Nova Ventures,enterprise,NA,US,U3024,derek.hart@novaventures.example,Derek Hart,Finance Manager,finance,active,true,viewer,2024-12-20 08:48:52,2024-12-20 09:01:52,active,true +M4028,W2008,nova-ops,sandbox,archived,false,A1003,Nova Ventures,enterprise,NA,US,U3025,victor.fischer@novaventures.example,Victor Fischer,CFO,executive,active,true,viewer,2025-01-16 01:36:52,2025-01-16 03:54:52,removed,false +M4029,W2009,nova-finance,prod,active,false,A1003,Nova Ventures,enterprise,NA,US,U3026,owen.fischer@novaventures.example,Owen Fischer,CFO,executive,active,true,viewer,2024-12-15 04:23:52,2024-12-15 04:41:52,active,true +M4030,W2008,nova-ops,sandbox,archived,false,A1003,Nova Ventures,enterprise,NA,US,U3026,owen.fischer@novaventures.example,Owen Fischer,CFO,executive,active,true,editor,2024-12-15 04:03:52,2024-12-15 04:09:52,removed,false +M4031,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3027,alma.dubois@novaventures.example,Alma Dubois,Marketing Operations Lead,marketing,active,true,viewer,2024-12-12 04:49:52,2024-12-12 05:45:52,active,true +M4032,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3028,arjun.grant@novaventures.example,Arjun Grant,Analytics Manager,analytics,active,true,admin,2025-01-25 09:36:52,2025-01-25 10:30:52,active,true +M4033,W2008,nova-ops,sandbox,archived,false,A1003,Nova Ventures,enterprise,NA,US,U3028,arjun.grant@novaventures.example,Arjun Grant,Analytics Manager,analytics,active,true,viewer,2025-01-25 08:52:52,2025-01-25 11:48:52,removed,false +M4034,W2009,nova-finance,prod,active,false,A1003,Nova Ventures,enterprise,NA,US,U3029,claire.rossi@novaventures.example,Claire Rossi,Marketing Operations Lead,marketing,active,true,admin,2024-12-19 03:14:52,2024-12-19 03:46:52,active,true +M4035,W2008,nova-ops,sandbox,archived,false,A1003,Nova Ventures,enterprise,NA,US,U3029,claire.rossi@novaventures.example,Claire Rossi,Marketing Operations Lead,marketing,active,true,viewer,2024-12-19 02:35:52,2024-12-19 04:03:52,removed,false +M4036,W2009,nova-finance,prod,active,false,A1003,Nova Ventures,enterprise,NA,US,U3030,owen.petrova@novaventures.example,Owen Petrova,VP Data,executive,active,true,editor,2025-01-25 03:25:52,2025-01-25 04:00:52,active,true +M4037,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3031,jonas.rahman@novaventures.example,Jonas Rahman,FP&A Analyst,finance,active,true,editor,2025-01-12 05:57:52,2025-01-12 06:05:52,active,true +M4038,W2008,nova-ops,sandbox,archived,false,A1003,Nova Ventures,enterprise,NA,US,U3032,naomi.alvarez@novaventures.example,Naomi Alvarez,Product Manager,product,active,true,viewer,2025-01-03 10:21:52,2025-01-03 11:22:52,removed,false +M4039,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3032,naomi.alvarez@novaventures.example,Naomi Alvarez,Product Manager,product,active,true,editor,2025-01-03 09:35:52,2025-01-03 10:51:52,active,true +M4040,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3033,arjun.lewis@novaventures.example,Arjun Lewis,Operations Director,operations,inactive,false,admin,2024-12-30 07:41:52,2024-12-30 10:19:52,removed,false +M4041,W2009,nova-finance,prod,active,false,A1003,Nova Ventures,enterprise,NA,US,U3033,arjun.lewis@novaventures.example,Arjun Lewis,Operations Director,operations,inactive,false,viewer,2024-12-30 09:06:52,2024-12-30 11:28:52,active,true +M4042,W2008,nova-ops,sandbox,archived,false,A1003,Nova Ventures,enterprise,NA,US,U3034,kai.price@novaventures.example,Kai Price,Operations Director,operations,active,true,viewer,2024-12-31 02:59:52,2024-12-31 04:43:52,removed,false +M4043,W2009,nova-finance,prod,active,false,A1003,Nova Ventures,enterprise,NA,US,U3035,mateo.cole@novaventures.example,Mateo Cole,Controller,finance,active,true,admin,2025-01-20 03:31:52,2025-01-20 06:26:52,active,true +M4044,W2008,nova-ops,sandbox,archived,false,A1003,Nova Ventures,enterprise,NA,US,U3035,mateo.cole@novaventures.example,Mateo Cole,Controller,finance,active,true,editor,2025-01-20 04:18:52,2025-01-20 04:40:52,removed,false +M4045,W2008,nova-ops,sandbox,archived,false,A1003,Nova Ventures,enterprise,NA,US,U3036,ivy.hart@novaventures.example,Ivy Hart,Data Engineer,data,active,true,editor,2025-01-13 04:15:52,2025-01-13 06:50:52,removed,false +M4046,W2007,nova-core,prod,active,true,A1003,Nova Ventures,enterprise,NA,US,U3037,alma.patel@novaventures.example,Alma Patel,VP Data,executive,active,true,editor,2024-12-16 05:25:52,2024-12-16 06:01:52,active,true +M4047,W2010,silver-core,prod,archived,true,A1004,Silver Solutions,enterprise,NA,US,U3038,jonas.nash@silversolutions.example,Jonas Nash,Workflow Analyst,operations,inactive,false,owner,2024-10-18 14:46:43,2024-10-18 15:51:43,removed,false +M4048,W2010,silver-core,prod,archived,true,A1004,Silver Solutions,enterprise,NA,US,U3039,mila.silva@silversolutions.example,Mila Silva,Data Engineer,data,inactive,false,viewer,2024-09-12 12:22:43,2024-09-12 13:42:43,removed,false +M4049,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3039,mila.silva@silversolutions.example,Mila Silva,Data Engineer,data,inactive,false,viewer,2024-09-12 12:37:43,2024-09-12 13:34:43,removed,false +M4050,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3040,daniel.price@silversolutions.example,Daniel Price,Analytics Engineer,data,inactive,false,viewer,2024-10-17 20:50:43,2024-10-17 22:16:43,removed,false +M4051,W2010,silver-core,prod,archived,true,A1004,Silver Solutions,enterprise,NA,US,U3041,victor.morgan@silversolutions.example,Victor Morgan,Analytics Manager,analytics,active,true,editor,2024-09-11 12:03:43,2024-09-11 13:21:43,removed,false +M4052,W2010,silver-core,prod,archived,true,A1004,Silver Solutions,enterprise,NA,US,U3042,leo.ward@silversolutions.example,Leo Ward,Demand Gen Manager,marketing,inactive,false,viewer,2024-10-15 14:54:43,2024-10-15 15:51:43,removed,false +M4053,W2010,silver-core,prod,archived,true,A1004,Silver Solutions,enterprise,NA,US,U3043,marta.morgan@silversolutions.example,Marta Morgan,FP&A Analyst,finance,active,true,viewer,2024-10-09 20:57:43,2024-10-09 23:37:43,active,true +M4054,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3044,ava.grant@silversolutions.example,Ava Grant,Analytics Manager,analytics,active,true,editor,2024-09-22 15:17:43,2024-09-22 17:27:43,removed,false +M4055,W2010,silver-core,prod,archived,true,A1004,Silver Solutions,enterprise,NA,US,U3045,lina.price@silversolutions.example,Lina Price,Marketing Operations Lead,marketing,active,true,admin,2024-09-27 17:59:43,2024-09-27 18:36:43,removed,false +M4056,W2010,silver-core,prod,archived,true,A1004,Silver Solutions,enterprise,NA,US,U3046,tara.hart@silversolutions.example,Tara Hart,Technical Program Manager,product,active,true,editor,2024-09-26 19:46:43,2024-09-26 20:33:43,removed,false +M4057,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3046,tara.hart@silversolutions.example,Tara Hart,Technical Program Manager,product,active,true,viewer,2024-09-26 19:54:43,2024-09-26 21:47:43,removed,false +M4058,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3047,sofia.ward@silversolutions.example,Sofia Ward,Marketing Operations Lead,marketing,active,true,editor,2024-10-14 17:04:43,2024-10-14 18:00:43,removed,false +M4059,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3048,tara.turner@silversolutions.example,Tara Turner,Insights Lead,analytics,inactive,false,admin,2024-09-07 13:35:43,2024-09-07 15:16:43,removed,false +M4060,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3049,derek.morgan@silversolutions.example,Derek Morgan,Founder,executive,inactive,false,editor,2024-10-02 12:30:43,2024-10-02 13:14:43,active,true +M4061,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3050,claire.keller@silversolutions.example,Claire Keller,Sales Analyst,sales,inactive,false,admin,2024-10-12 15:36:43,2024-10-12 16:02:43,removed,false +M4062,W2011,silver-ops,sandbox,archived,false,A1004,Silver Solutions,enterprise,NA,US,U3051,olivia.lewis@silversolutions.example,Olivia Lewis,Operations Manager,operations,inactive,false,editor,2024-09-30 17:53:43,2024-09-30 19:35:43,removed,false +M4063,W2010,silver-core,prod,archived,true,A1004,Silver Solutions,enterprise,NA,US,U3051,olivia.lewis@silversolutions.example,Olivia Lewis,Operations Manager,operations,inactive,false,editor,2024-09-30 17:27:43,2024-09-30 18:44:43,removed,false +M4064,W2012,pacific-core,prod,active,true,A1005,Pacific Labs,enterprise,EMEA,UK,U3052,ben.hart@pacificlabs.example,Ben Hart,Revenue Operations Manager,sales,active,true,owner,2024-09-02 14:17:15,2024-09-02 15:47:15,active,true +M4065,W2012,pacific-core,prod,active,true,A1005,Pacific Labs,enterprise,EMEA,UK,U3053,leo.saeed@pacificlabs.example,Leo Saeed,Product Manager,product,active,true,viewer,2024-10-08 22:26:15,2024-10-08 22:34:15,active,true +M4066,W2013,pacific-ops,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3053,leo.saeed@pacificlabs.example,Leo Saeed,Product Manager,product,active,true,editor,2024-10-08 20:36:15,2024-10-08 22:49:15,active,true +M4067,W2013,pacific-ops,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3054,alma.rahman@pacificlabs.example,Alma Rahman,Sales Analyst,sales,active,true,editor,2024-10-07 18:36:15,2024-10-07 20:16:15,active,true +M4068,W2013,pacific-ops,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3055,isla.rossi@pacificlabs.example,Isla Rossi,Analytics Manager,analytics,active,true,editor,2024-09-01 18:11:15,2024-09-01 18:34:15,active,true +M4069,W2013,pacific-ops,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3056,kai.singh@pacificlabs.example,Kai Singh,Data Platform Manager,data,inactive,false,viewer,2024-09-30 18:11:15,2024-09-30 19:54:15,active,true +M4070,W2012,pacific-core,prod,active,true,A1005,Pacific Labs,enterprise,EMEA,UK,U3057,helena.patel@pacificlabs.example,Helena Patel,Data Platform Manager,data,active,true,editor,2024-09-30 15:54:15,2024-09-30 17:28:15,active,true +M4071,W2014,pacific-finance,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3058,mila.kim@pacificlabs.example,Mila Kim,Controller,finance,active,true,viewer,2024-09-15 13:39:15,2024-09-15 13:58:15,active,true +M4072,W2014,pacific-finance,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3059,olivia.tan@pacificlabs.example,Olivia Tan,Analytics Engineer,data,active,true,editor,2024-09-20 19:55:15,2024-09-20 21:02:15,active,true +M4073,W2013,pacific-ops,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3060,daniel.price@pacificlabs.example,Daniel Price,Product Manager,product,active,true,admin,2024-10-15 15:06:15,2024-10-15 18:04:15,active,true +M4074,W2012,pacific-core,prod,active,true,A1005,Pacific Labs,enterprise,EMEA,UK,U3061,alma.turner@pacificlabs.example,Alma Turner,Sales Analyst,sales,inactive,false,viewer,2024-09-11 20:53:15,2024-09-11 23:32:15,removed,false +M4075,W2014,pacific-finance,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3062,nina.turner@pacificlabs.example,Nina Turner,Marketing Operations Lead,marketing,active,true,admin,2024-09-17 21:12:15,2024-09-18 00:06:15,active,true +M4076,W2012,pacific-core,prod,active,true,A1005,Pacific Labs,enterprise,EMEA,UK,U3063,claire.reed@pacificlabs.example,Claire Reed,Technical Program Manager,product,active,true,admin,2024-09-30 18:04:15,2024-09-30 19:47:15,active,true +M4077,W2013,pacific-ops,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3064,evan.meyer@pacificlabs.example,Evan Meyer,Workflow Analyst,operations,active,true,viewer,2024-10-13 22:16:15,2024-10-14 00:33:15,active,true +M4078,W2012,pacific-core,prod,active,true,A1005,Pacific Labs,enterprise,EMEA,UK,U3065,marta.shah@pacificlabs.example,Marta Shah,BI Analyst,analytics,active,true,viewer,2024-09-18 14:54:15,2024-09-18 16:16:15,active,true +M4079,W2014,pacific-finance,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3065,marta.shah@pacificlabs.example,Marta Shah,BI Analyst,analytics,active,true,editor,2024-09-18 14:22:15,2024-09-18 16:43:15,active,true +M4080,W2014,pacific-finance,prod,active,false,A1005,Pacific Labs,enterprise,EMEA,UK,U3066,nina.turner2@pacificlabs.example,Nina Turner,Marketing Operations Lead,marketing,inactive,false,editor,2024-10-04 16:34:15,2024-10-04 17:01:15,removed,false +M4081,W2015,helio-core,prod,active,true,A1006,Helio Works,mid_market,EMEA,UK,U3067,mila.alvarez@helioworks.example,Mila Alvarez,Marketing Operations Lead,marketing,active,true,owner,2025-01-02 16:02:28,2025-01-02 17:35:28,active,true +M4082,W2015,helio-core,prod,active,true,A1006,Helio Works,mid_market,EMEA,UK,U3068,hannah.hill@helioworks.example,Hannah Hill,Sales Analyst,sales,active,true,editor,2025-01-05 14:46:28,2025-01-05 16:09:28,active,true +M4083,W2016,helio-ops,prod,active,false,A1006,Helio Works,mid_market,EMEA,UK,U3068,hannah.hill@helioworks.example,Hannah Hill,Sales Analyst,sales,active,true,editor,2025-01-05 16:15:28,2025-01-05 17:03:28,active,true +M4084,W2015,helio-core,prod,active,true,A1006,Helio Works,mid_market,EMEA,UK,U3069,naomi.chen@helioworks.example,Naomi Chen,FP&A Analyst,finance,active,true,admin,2025-01-01 15:22:28,2025-01-01 17:41:28,active,true +M4085,W2016,helio-ops,prod,active,false,A1006,Helio Works,mid_market,EMEA,UK,U3070,claire.khan@helioworks.example,Claire Khan,Insights Lead,analytics,active,true,viewer,2024-11-24 09:54:28,2024-11-24 10:44:28,active,true +M4086,W2016,helio-ops,prod,active,false,A1006,Helio Works,mid_market,EMEA,UK,U3071,isla.desai@helioworks.example,Isla Desai,FP&A Analyst,finance,inactive,false,editor,2024-12-02 08:52:28,2024-12-02 11:05:28,active,true +M4087,W2015,helio-core,prod,active,true,A1006,Helio Works,mid_market,EMEA,UK,U3071,isla.desai@helioworks.example,Isla Desai,FP&A Analyst,finance,inactive,false,viewer,2024-12-02 08:18:28,2024-12-02 10:48:28,active,true +M4088,W2015,helio-core,prod,active,true,A1006,Helio Works,mid_market,EMEA,UK,U3072,kenji.meyer@helioworks.example,Kenji Meyer,Data Engineer,data,inactive,false,admin,2024-12-10 09:42:28,2024-12-10 11:31:28,removed,false +M4089,W2016,helio-ops,prod,active,false,A1006,Helio Works,mid_market,EMEA,UK,U3072,kenji.meyer@helioworks.example,Kenji Meyer,Data Engineer,data,inactive,false,viewer,2024-12-10 08:19:28,2024-12-10 11:03:28,removed,false +M4090,W2015,helio-core,prod,active,true,A1006,Helio Works,mid_market,EMEA,UK,U3073,isla.saeed@helioworks.example,Isla Saeed,Product Manager,product,active,true,editor,2024-12-23 15:40:28,2024-12-23 16:01:28,active,true +M4091,W2017,silver-core,prod,active,true,A1007,Silver Systems,smb,EMEA,FR,U3074,samir.rahman@silversystems.example,Samir Rahman,Technical Program Manager,product,active,true,owner,2025-02-05 19:35:12,2025-02-05 19:47:12,active,true +M4092,W2017,silver-core,prod,active,true,A1007,Silver Systems,smb,EMEA,FR,U3075,claire.tan@silversystems.example,Claire Tan,Controller,finance,active,true,editor,2025-01-31 22:52:12,2025-01-31 23:22:12,active,true +M4093,W2017,silver-core,prod,active,true,A1007,Silver Systems,smb,EMEA,FR,U3076,alma.petrova@silversystems.example,Alma Petrova,Revenue Operations Manager,sales,active,true,admin,2025-01-02 18:42:12,2025-01-02 18:48:12,active,true +M4094,W2017,silver-core,prod,active,true,A1007,Silver Systems,smb,EMEA,FR,U3077,maya.lopez@silversystems.example,Maya Lopez,Revenue Operations Manager,sales,inactive,false,admin,2025-01-19 21:12:12,2025-01-19 21:18:12,removed,false +M4095,W2018,pacific-core,prod,active,true,A1008,Pacific Works,mid_market,EMEA,UK,U3078,maya.lopez@pacificworks.example,Maya Lopez,COO,executive,active,true,owner,2024-10-09 10:59:40,2024-10-09 12:12:40,active,true +M4096,W2019,pacific-ops,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3079,noah.hart@pacificworks.example,Noah Hart,Insights Lead,analytics,active,true,editor,2024-10-13 14:11:40,2024-10-13 15:42:40,active,true +M4097,W2019,pacific-ops,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3080,zoe.lewis@pacificworks.example,Zoe Lewis,Product Manager,product,active,true,viewer,2024-11-04 15:25:40,2024-11-04 16:31:40,active,true +M4098,W2019,pacific-ops,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3081,leo.nash@pacificworks.example,Leo Nash,Marketing Operations Lead,marketing,active,true,viewer,2024-11-18 11:58:40,2024-11-18 13:34:40,active,true +M4099,W2019,pacific-ops,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3082,derek.keller@pacificworks.example,Derek Keller,Operations Director,operations,active,true,viewer,2024-11-10 17:33:40,2024-11-10 18:13:40,active,true +M4100,W2020,pacific-finance,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3082,derek.keller@pacificworks.example,Derek Keller,Operations Director,operations,active,true,viewer,2024-11-10 19:02:40,2024-11-10 21:41:40,active,true +M4101,W2020,pacific-finance,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3083,peter.rahman@pacificworks.example,Peter Rahman,CFO,executive,active,true,editor,2024-10-13 12:21:40,2024-10-13 13:29:40,active,true +M4102,W2019,pacific-ops,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3084,elena.hart@pacificworks.example,Elena Hart,Product Manager,product,active,true,editor,2024-11-04 11:14:40,2024-11-04 13:20:40,active,true +M4103,W2020,pacific-finance,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3085,lena.brooks@pacificworks.example,Lena Brooks,Technical Program Manager,product,active,true,editor,2024-10-07 17:03:40,2024-10-07 19:50:40,active,true +M4104,W2019,pacific-ops,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3085,lena.brooks@pacificworks.example,Lena Brooks,Technical Program Manager,product,active,true,editor,2024-10-07 16:19:40,2024-10-07 16:35:40,active,true +M4105,W2020,pacific-finance,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3086,daniel.keller@pacificworks.example,Daniel Keller,Analytics Engineer,data,active,true,editor,2024-10-28 11:14:40,2024-10-28 13:55:40,active,true +M4106,W2018,pacific-core,prod,active,true,A1008,Pacific Works,mid_market,EMEA,UK,U3087,tomas.turner@pacificworks.example,Tomas Turner,Analytics Engineer,data,active,true,editor,2024-11-01 12:05:40,2024-11-01 14:58:40,active,true +M4107,W2020,pacific-finance,prod,active,false,A1008,Pacific Works,mid_market,EMEA,UK,U3088,kai.fischer@pacificworks.example,Kai Fischer,Sales Analyst,sales,active,true,viewer,2024-10-30 16:28:40,2024-10-30 19:08:40,active,true +M4108,W2021,summit-core,prod,active,true,A1009,Summit Group,mid_market,NA,US,U3089,isla.lewis@summitgroup.example,Isla Lewis,Founder,executive,active,true,owner,2024-09-03 00:56:46,2024-09-03 01:37:46,active,true +M4109,W2021,summit-core,prod,active,true,A1009,Summit Group,mid_market,NA,US,U3090,zoe.chen@summitgroup.example,Zoe Chen,Analytics Engineer,data,active,true,admin,2024-09-21 00:42:46,2024-09-21 03:39:46,active,true +M4110,W2022,summit-ops,prod,active,false,A1009,Summit Group,mid_market,NA,US,U3091,zoe.alvarez@summitgroup.example,Zoe Alvarez,Technical Program Manager,product,active,true,admin,2024-08-31 21:06:46,2024-08-31 23:14:46,active,true +M4111,W2021,summit-core,prod,active,true,A1009,Summit Group,mid_market,NA,US,U3092,olivia.desai@summitgroup.example,Olivia Desai,Revenue Operations Manager,sales,active,true,editor,2024-09-06 20:07:46,2024-09-06 22:03:46,active,true +M4112,W2022,summit-ops,prod,active,false,A1009,Summit Group,mid_market,NA,US,U3092,olivia.desai@summitgroup.example,Olivia Desai,Revenue Operations Manager,sales,active,true,viewer,2024-09-06 18:49:46,2024-09-06 19:01:46,active,true +M4113,W2022,summit-ops,prod,active,false,A1009,Summit Group,mid_market,NA,US,U3093,priya.park@summitgroup.example,Priya Park,Data Engineer,data,active,true,viewer,2024-08-24 22:52:46,2024-08-25 00:02:46,active,true +M4114,W2022,summit-ops,prod,active,false,A1009,Summit Group,mid_market,NA,US,U3094,daniel.brooks@summitgroup.example,Daniel Brooks,Controller,finance,active,true,viewer,2024-09-09 18:55:46,2024-09-09 19:34:46,active,true +M4115,W2022,summit-ops,prod,active,false,A1009,Summit Group,mid_market,NA,US,U3095,lena.khan@summitgroup.example,Lena Khan,COO,executive,inactive,false,admin,2024-09-10 17:29:46,2024-09-10 18:31:46,active,true +M4116,W2021,summit-core,prod,active,true,A1009,Summit Group,mid_market,NA,US,U3096,jonas.dubois@summitgroup.example,Jonas Dubois,Data Platform Manager,data,active,true,viewer,2024-09-28 17:49:46,2024-09-28 19:31:46,active,true +M4117,W2022,summit-ops,prod,active,false,A1009,Summit Group,mid_market,NA,US,U3097,arjun.rossi@summitgroup.example,Arjun Rossi,Analytics Engineer,data,active,true,viewer,2024-10-02 23:06:46,2024-10-03 00:25:46,active,true +M4118,W2021,summit-core,prod,active,true,A1009,Summit Group,mid_market,NA,US,U3098,kai.price@summitgroup.example,Kai Price,FP&A Analyst,finance,active,true,admin,2024-09-15 18:05:46,2024-09-15 18:58:46,active,true +M4119,W2021,summit-core,prod,active,true,A1009,Summit Group,mid_market,NA,US,U3099,victor.patel@summitgroup.example,Victor Patel,Insights Lead,analytics,inactive,false,editor,2024-08-31 23:32:46,2024-09-01 02:04:46,removed,false +M4120,W2022,summit-ops,prod,active,false,A1009,Summit Group,mid_market,NA,US,U3099,victor.patel@summitgroup.example,Victor Patel,Insights Lead,analytics,inactive,false,viewer,2024-08-31 23:41:46,2024-09-01 00:01:46,removed,false +M4121,W2022,summit-ops,prod,active,false,A1009,Summit Group,mid_market,NA,US,U3100,arjun.saeed@summitgroup.example,Arjun Saeed,FP&A Analyst,finance,active,true,viewer,2024-09-06 20:34:46,2024-09-06 23:32:46,active,true +M4122,W2021,summit-core,prod,active,true,A1009,Summit Group,mid_market,NA,US,U3101,elena.park@summitgroup.example,Elena Park,Founder,executive,active,true,editor,2024-09-25 19:52:46,2024-09-25 20:24:46,active,true +M4123,W2023,orchid-core,prod,active,true,A1010,Orchid Foods,smb,NA,CA,U3102,ben.desai@orchidfoods.example,Ben Desai,Operations Director,operations,active,true,owner,2025-03-20 04:18:21,2025-03-20 04:25:21,active,true +M4124,W2023,orchid-core,prod,active,true,A1010,Orchid Foods,smb,NA,CA,U3103,samir.singh@orchidfoods.example,Samir Singh,Data Engineer,data,active,true,editor,2025-02-22 20:24:21,2025-02-22 21:44:21,active,true +M4125,W2023,orchid-core,prod,active,true,A1010,Orchid Foods,smb,NA,CA,U3104,leo.alvarez@orchidfoods.example,Leo Alvarez,Demand Gen Manager,marketing,active,true,editor,2025-02-26 04:10:21,2025-02-26 04:52:21,active,true +M4126,W2023,orchid-core,prod,active,true,A1010,Orchid Foods,smb,NA,CA,U3105,lina.ward@orchidfoods.example,Lina Ward,VP Data,executive,active,true,admin,2025-02-27 00:43:21,2025-02-27 00:56:21,active,true +M4127,W2023,orchid-core,prod,active,true,A1010,Orchid Foods,smb,NA,CA,U3106,ava.hill@orchidfoods.example,Ava Hill,Technical Program Manager,product,active,true,editor,2025-02-24 00:40:21,2025-02-24 01:16:21,active,true +M4128,W2023,orchid-core,prod,active,true,A1010,Orchid Foods,smb,NA,CA,U3107,lena.patel@orchidfoods.example,Lena Patel,Finance Manager,finance,inactive,false,viewer,2025-02-27 03:38:21,2025-02-27 06:09:21,removed,false +M4129,W2023,orchid-core,prod,active,true,A1010,Orchid Foods,smb,NA,CA,U3108,claire.shah@orchidfoods.example,Claire Shah,Demand Gen Manager,marketing,active,true,editor,2025-02-25 01:38:21,2025-02-25 03:19:21,active,true +M4130,W2023,orchid-core,prod,active,true,A1010,Orchid Foods,smb,NA,CA,U3109,tara.silva@orchidfoods.example,Tara Silva,Analytics Manager,analytics,active,true,viewer,2025-03-24 03:26:21,2025-03-24 04:10:21,active,true +M4131,W2024,vertex-core,prod,active,true,A1011,Vertex Energy,smb,NA,CA,U3110,aisha.lewis@vertexenergy.example,Aisha Lewis,Product Manager,product,active,true,owner,2025-02-17 07:30:33,2025-02-17 08:28:33,active,true +M4132,W2024,vertex-core,prod,active,true,A1011,Vertex Energy,smb,NA,CA,U3111,tomas.brooks@vertexenergy.example,Tomas Brooks,Analytics Engineer,data,active,true,viewer,2025-01-22 12:09:33,2025-01-22 12:59:33,active,true +M4133,W2024,vertex-core,prod,active,true,A1011,Vertex Energy,smb,NA,CA,U3112,maya.reed@vertexenergy.example,Maya Reed,Technical Program Manager,product,active,true,viewer,2025-01-17 15:37:33,2025-01-17 18:30:33,active,true +M4134,W2024,vertex-core,prod,active,true,A1011,Vertex Energy,smb,NA,CA,U3113,maya.nash@vertexenergy.example,Maya Nash,Revenue Operations Manager,sales,active,true,viewer,2025-01-15 16:05:33,2025-01-15 17:50:33,active,true +M4135,W2024,vertex-core,prod,active,true,A1011,Vertex Energy,smb,NA,CA,U3114,claire.romero@vertexenergy.example,Claire Romero,Revenue Operations Manager,sales,active,true,editor,2025-01-20 09:15:33,2025-01-20 10:49:33,active,true +M4136,W2024,vertex-core,prod,active,true,A1011,Vertex Energy,smb,NA,CA,U3115,mei.saeed@vertexenergy.example,Mei Saeed,Analytics Manager,analytics,active,true,editor,2025-01-31 14:08:33,2025-01-31 15:25:33,active,true +M4137,W2025,cedar-core,prod,active,true,A1012,Cedar Ventures,smb,APAC,JP,U3116,lena.alvarez@cedarventures.example,Lena Alvarez,Demand Gen Manager,marketing,active,true,owner,2024-10-01 07:31:23,2024-10-01 08:25:23,active,true +M4138,W2026,cedar-ops,sandbox,active,false,A1012,Cedar Ventures,smb,APAC,JP,U3117,priya.petrova@cedarventures.example,Priya Petrova,Sales Analyst,sales,active,true,admin,2024-09-12 13:26:23,2024-09-12 15:59:23,active,true +M4139,W2025,cedar-core,prod,active,true,A1012,Cedar Ventures,smb,APAC,JP,U3118,maya.rahman@cedarventures.example,Maya Rahman,Operations Manager,operations,active,true,viewer,2024-09-15 11:09:23,2024-09-15 14:01:23,active,true +M4140,W2025,cedar-core,prod,active,true,A1012,Cedar Ventures,smb,APAC,JP,U3119,mateo.desai@cedarventures.example,Mateo Desai,Marketing Operations Lead,marketing,active,true,editor,2024-10-02 13:06:23,2024-10-02 14:25:23,active,true +M4141,W2025,cedar-core,prod,active,true,A1012,Cedar Ventures,smb,APAC,JP,U3120,evan.nash@cedarventures.example,Evan Nash,Data Engineer,data,inactive,false,editor,2024-09-08 06:42:23,2024-09-08 09:33:23,removed,false +M4142,W2025,cedar-core,prod,active,true,A1012,Cedar Ventures,smb,APAC,JP,U3121,noah.keller@cedarventures.example,Noah Keller,BI Analyst,analytics,active,true,viewer,2024-09-24 09:49:23,2024-09-24 11:30:23,active,true +M4143,W2026,cedar-ops,sandbox,active,false,A1012,Cedar Ventures,smb,APAC,JP,U3122,isla.silva@cedarventures.example,Isla Silva,Revenue Operations Manager,sales,active,true,viewer,2024-10-02 07:55:23,2024-10-02 09:31:23,active,true +M4144,W2025,cedar-core,prod,active,true,A1012,Cedar Ventures,smb,APAC,JP,U3122,isla.silva@cedarventures.example,Isla Silva,Revenue Operations Manager,sales,active,true,viewer,2024-10-02 07:07:23,2024-10-02 07:57:23,active,true +M4145,W2027,river-core,prod,active,true,A1013,River Foods,mid_market,NA,US,U3123,marcus.ng@riverfoods.example,Marcus Ng,Marketing Operations Lead,marketing,inactive,false,owner,2025-01-17 10:39:58,2025-01-17 12:55:58,removed,false +M4146,W2029,river-finance,prod,active,false,A1013,River Foods,mid_market,NA,US,U3124,evan.park@riverfoods.example,Evan Park,Product Manager,product,inactive,false,editor,2025-01-18 12:23:58,2025-01-18 12:36:58,removed,false +M4147,W2028,river-ops,prod,active,false,A1013,River Foods,mid_market,NA,US,U3124,evan.park@riverfoods.example,Evan Park,Product Manager,product,inactive,false,viewer,2025-01-18 12:04:58,2025-01-18 14:14:58,removed,false +M4148,W2029,river-finance,prod,active,false,A1013,River Foods,mid_market,NA,US,U3125,helena.kim@riverfoods.example,Helena Kim,Workflow Analyst,operations,active,true,viewer,2025-01-14 06:13:58,2025-01-14 09:09:58,active,true +M4149,W2029,river-finance,prod,active,false,A1013,River Foods,mid_market,NA,US,U3126,evan.shah@riverfoods.example,Evan Shah,Revenue Operations Manager,sales,active,true,admin,2025-01-20 08:10:58,2025-01-20 11:01:58,active,true +M4150,W2028,river-ops,prod,active,false,A1013,River Foods,mid_market,NA,US,U3127,maya.singh@riverfoods.example,Maya Singh,Technical Program Manager,product,active,true,editor,2025-01-13 05:07:58,2025-01-13 05:14:58,active,true +M4151,W2027,river-core,prod,active,true,A1013,River Foods,mid_market,NA,US,U3128,ivy.park@riverfoods.example,Ivy Park,Revenue Operations Manager,sales,active,true,admin,2024-12-28 05:52:58,2024-12-28 08:27:58,active,true +M4152,W2028,river-ops,prod,active,false,A1013,River Foods,mid_market,NA,US,U3128,ivy.park@riverfoods.example,Ivy Park,Revenue Operations Manager,sales,active,true,editor,2024-12-28 04:41:58,2024-12-28 07:12:58,active,true +M4153,W2028,river-ops,prod,active,false,A1013,River Foods,mid_market,NA,US,U3129,ben.khan@riverfoods.example,Ben Khan,Revenue Operations Manager,sales,active,true,viewer,2025-01-14 10:05:58,2025-01-14 12:13:58,active,true +M4154,W2027,river-core,prod,active,true,A1013,River Foods,mid_market,NA,US,U3129,ben.khan@riverfoods.example,Ben Khan,Revenue Operations Manager,sales,active,true,editor,2025-01-14 09:32:58,2025-01-14 11:28:58,active,true +M4155,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3130,lena.saeed@evergreenglobal.example,Lena Saeed,Controller,finance,active,true,owner,2024-10-15 20:14:43,2024-10-15 20:51:43,removed,false +M4156,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3131,evan.rossi@evergreenglobal.example,Evan Rossi,Finance Manager,finance,inactive,false,viewer,2024-10-01 23:37:43,2024-10-02 01:59:43,removed,false +M4157,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3132,tomas.fischer@evergreenglobal.example,Tomas Fischer,BI Analyst,analytics,inactive,false,editor,2024-11-01 00:43:43,2024-11-01 03:05:43,active,true +M4158,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3133,naomi.singh@evergreenglobal.example,Naomi Singh,Analytics Engineer,data,inactive,false,admin,2024-10-12 23:40:43,2024-10-13 02:14:43,removed,false +M4159,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3134,ivy.lewis@evergreenglobal.example,Ivy Lewis,Analytics Manager,analytics,inactive,false,viewer,2024-10-29 22:01:43,2024-10-30 00:54:43,active,true +M4160,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3135,alma.meyer@evergreenglobal.example,Alma Meyer,Product Manager,product,inactive,false,viewer,2024-10-11 23:59:43,2024-10-12 00:50:43,removed,false +M4161,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3136,olivia.tan@evergreenglobal.example,Olivia Tan,Controller,finance,inactive,false,viewer,2024-10-26 19:12:43,2024-10-26 19:27:43,removed,false +M4162,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3137,daniel.park@evergreenglobal.example,Daniel Park,Insights Lead,analytics,inactive,false,viewer,2024-09-26 01:16:43,2024-09-26 03:44:43,removed,false +M4163,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3138,victor.lopez@evergreenglobal.example,Victor Lopez,Controller,finance,active,true,admin,2024-10-19 01:12:43,2024-10-19 03:26:43,removed,false +M4164,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3139,leo.morgan@evergreenglobal.example,Leo Morgan,Revenue Operations Manager,sales,inactive,false,editor,2024-10-15 02:03:43,2024-10-15 02:08:43,removed,false +M4165,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3140,victor.cole@evergreenglobal.example,Victor Cole,Controller,finance,inactive,false,viewer,2024-10-30 18:21:43,2024-10-30 19:41:43,removed,false +M4166,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3141,noah.silva@evergreenglobal.example,Noah Silva,Revenue Operations Manager,sales,inactive,false,admin,2024-09-21 19:25:43,2024-09-21 20:50:43,removed,false +M4167,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3142,arjun.patel@evergreenglobal.example,Arjun Patel,Technical Program Manager,product,inactive,false,viewer,2024-10-17 01:22:43,2024-10-17 02:20:43,removed,false +M4168,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3143,peter.cole@evergreenglobal.example,Peter Cole,Analytics Engineer,data,inactive,false,editor,2024-09-27 23:03:43,2024-09-27 23:44:43,removed,false +M4169,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3144,peter.cole2@evergreenglobal.example,Peter Cole,Analytics Manager,analytics,inactive,false,viewer,2024-10-20 21:10:43,2024-10-20 23:36:43,removed,false +M4170,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3145,owen.park@evergreenglobal.example,Owen Park,Founder,executive,inactive,false,editor,2024-10-10 17:54:43,2024-10-10 20:38:43,removed,false +M4171,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3146,samir.hill@evergreenglobal.example,Samir Hill,Controller,finance,active,true,editor,2024-10-07 02:04:43,2024-10-07 02:50:43,removed,false +M4172,W2030,evergreen-core,prod,archived,true,A1014,Evergreen Global,enterprise,APAC,SG,U3147,samir.ng@evergreenglobal.example,Samir Ng,Product Manager,product,active,true,viewer,2024-10-16 20:01:43,2024-10-16 21:54:43,active,true +M4173,W2031,delta-core,prod,archived,true,A1015,Delta Network,smb,NA,US,U3148,luis.tan@deltanetwork.example,Luis Tan,Technical Program Manager,product,inactive,false,owner,2024-09-28 16:14:41,2024-09-28 18:36:41,removed,false +M4174,W2032,delta-ops,sandbox,archived,false,A1015,Delta Network,smb,NA,US,U3149,tomas.hill@deltanetwork.example,Tomas Hill,FP&A Analyst,finance,inactive,false,viewer,2024-09-24 19:08:41,2024-09-24 20:48:41,removed,false +M4175,W2031,delta-core,prod,archived,true,A1015,Delta Network,smb,NA,US,U3150,tara.saeed@deltanetwork.example,Tara Saeed,CFO,executive,inactive,false,editor,2024-10-13 21:44:41,2024-10-13 21:55:41,active,true +M4176,W2032,delta-ops,sandbox,archived,false,A1015,Delta Network,smb,NA,US,U3150,tara.saeed@deltanetwork.example,Tara Saeed,CFO,executive,inactive,false,viewer,2024-10-13 22:01:41,2024-10-13 22:25:41,removed,false +M4177,W2033,bluepeak-core,prod,active,true,A1016,BluePeak Capital,enterprise,EMEA,DE,U3151,mila.sato@bluepeakcapital.example,Mila Sato,Insights Lead,analytics,active,true,owner,2025-01-30 04:38:46,2025-01-30 07:03:46,active,true +M4178,W2036,bluepeak-marketing,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3152,olivia.alvarez@bluepeakcapital.example,Olivia Alvarez,BI Analyst,analytics,active,true,admin,2025-01-04 09:19:46,2025-01-04 10:49:46,active,true +M4179,W2035,bluepeak-finance,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3153,lina.price@bluepeakcapital.example,Lina Price,Controller,finance,active,true,admin,2025-01-17 10:30:46,2025-01-17 10:37:46,active,true +M4180,W2033,bluepeak-core,prod,active,true,A1016,BluePeak Capital,enterprise,EMEA,DE,U3154,isla.sato@bluepeakcapital.example,Isla Sato,FP&A Analyst,finance,active,true,editor,2025-01-11 06:17:46,2025-01-11 06:48:46,active,true +M4181,W2033,bluepeak-core,prod,active,true,A1016,BluePeak Capital,enterprise,EMEA,DE,U3155,owen.brooks@bluepeakcapital.example,Owen Brooks,Founder,executive,active,true,admin,2025-01-24 06:26:46,2025-01-24 09:01:46,active,true +M4182,W2036,bluepeak-marketing,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3156,arjun.hart@bluepeakcapital.example,Arjun Hart,Technical Program Manager,product,active,true,admin,2025-02-05 10:52:46,2025-02-05 12:09:46,active,true +M4183,W2035,bluepeak-finance,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3157,owen.rossi@bluepeakcapital.example,Owen Rossi,Finance Manager,finance,active,true,viewer,2025-01-29 04:44:46,2025-01-29 06:10:46,active,true +M4184,W2036,bluepeak-marketing,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3158,claire.desai@bluepeakcapital.example,Claire Desai,BI Analyst,analytics,active,true,editor,2025-01-27 07:39:46,2025-01-27 10:00:46,active,true +M4185,W2036,bluepeak-marketing,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3159,lena.rossi@bluepeakcapital.example,Lena Rossi,Workflow Analyst,operations,active,true,editor,2024-12-31 07:38:46,2024-12-31 09:54:46,active,true +M4186,W2033,bluepeak-core,prod,active,true,A1016,BluePeak Capital,enterprise,EMEA,DE,U3159,lena.rossi@bluepeakcapital.example,Lena Rossi,Workflow Analyst,operations,active,true,viewer,2024-12-31 07:34:46,2024-12-31 08:18:46,active,true +M4187,W2034,bluepeak-ops,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3160,derek.nash@bluepeakcapital.example,Derek Nash,Data Platform Manager,data,active,true,editor,2025-01-21 12:59:46,2025-01-21 15:47:46,active,true +M4188,W2035,bluepeak-finance,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3161,marcus.alvarez@bluepeakcapital.example,Marcus Alvarez,BI Analyst,analytics,active,true,viewer,2025-01-21 07:48:46,2025-01-21 09:40:46,active,true +M4189,W2036,bluepeak-marketing,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3162,elena.park@bluepeakcapital.example,Elena Park,Operations Director,operations,active,true,editor,2025-01-06 08:23:46,2025-01-06 10:27:46,active,true +M4190,W2035,bluepeak-finance,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3163,ivy.rahman@bluepeakcapital.example,Ivy Rahman,Finance Manager,finance,active,true,editor,2025-01-06 03:34:46,2025-01-06 04:37:46,active,true +M4191,W2035,bluepeak-finance,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3164,evan.nash@bluepeakcapital.example,Evan Nash,FP&A Analyst,finance,active,true,viewer,2025-02-07 08:13:46,2025-02-07 09:38:46,active,true +M4192,W2034,bluepeak-ops,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3164,evan.nash@bluepeakcapital.example,Evan Nash,FP&A Analyst,finance,active,true,viewer,2025-02-07 07:17:46,2025-02-07 07:45:46,active,true +M4193,W2033,bluepeak-core,prod,active,true,A1016,BluePeak Capital,enterprise,EMEA,DE,U3165,sofia.hill@bluepeakcapital.example,Sofia Hill,FP&A Analyst,finance,active,true,viewer,2024-12-27 08:44:46,2024-12-27 11:16:46,active,true +M4194,W2033,bluepeak-core,prod,active,true,A1016,BluePeak Capital,enterprise,EMEA,DE,U3166,naomi.alvarez@bluepeakcapital.example,Naomi Alvarez,Controller,finance,active,true,admin,2025-01-13 06:07:46,2025-01-13 08:18:46,active,true +M4195,W2033,bluepeak-core,prod,active,true,A1016,BluePeak Capital,enterprise,EMEA,DE,U3167,noah.rossi@bluepeakcapital.example,Noah Rossi,Controller,finance,active,true,viewer,2025-02-02 08:00:46,2025-02-02 08:39:46,active,true +M4196,W2036,bluepeak-marketing,prod,active,false,A1016,BluePeak Capital,enterprise,EMEA,DE,U3168,owen.keller@bluepeakcapital.example,Owen Keller,Operations Manager,operations,active,true,editor,2025-01-25 07:39:46,2025-01-25 10:00:46,active,true +M4197,W2033,bluepeak-core,prod,active,true,A1016,BluePeak Capital,enterprise,EMEA,DE,U3169,ava.rossi@bluepeakcapital.example,Ava Rossi,Founder,executive,active,true,editor,2024-12-29 10:09:46,2024-12-29 10:15:46,active,true +M4198,W2037,summit-core,prod,active,true,A1017,Summit Analytics,mid_market,EMEA,UK,U3170,tomas.nash@summitanalytics.example,Tomas Nash,Revenue Operations Manager,sales,active,true,owner,2024-12-25 11:41:21,2024-12-25 13:34:21,active,true +M4199,W2038,summit-ops,prod,active,false,A1017,Summit Analytics,mid_market,EMEA,UK,U3171,claire.silva@summitanalytics.example,Claire Silva,Controller,finance,inactive,false,editor,2024-12-29 13:15:21,2024-12-29 15:35:21,removed,false +M4200,W2037,summit-core,prod,active,true,A1017,Summit Analytics,mid_market,EMEA,UK,U3172,marcus.ward@summitanalytics.example,Marcus Ward,Data Engineer,data,active,true,viewer,2024-12-08 15:46:21,2024-12-08 18:05:21,active,true +M4201,W2037,summit-core,prod,active,true,A1017,Summit Analytics,mid_market,EMEA,UK,U3173,mei.lewis@summitanalytics.example,Mei Lewis,BI Analyst,analytics,active,true,admin,2024-12-15 10:55:21,2024-12-15 13:11:21,active,true +M4202,W2038,summit-ops,prod,active,false,A1017,Summit Analytics,mid_market,EMEA,UK,U3174,elena.fischer@summitanalytics.example,Elena Fischer,Finance Manager,finance,active,true,viewer,2024-12-23 13:24:21,2024-12-23 14:12:21,active,true +M4203,W2038,summit-ops,prod,active,false,A1017,Summit Analytics,mid_market,EMEA,UK,U3175,zoe.ng@summitanalytics.example,Zoe Ng,Workflow Analyst,operations,active,true,viewer,2024-12-04 08:46:21,2024-12-04 09:54:21,active,true +M4204,W2037,summit-core,prod,active,true,A1017,Summit Analytics,mid_market,EMEA,UK,U3176,naomi.patel@summitanalytics.example,Naomi Patel,Product Manager,product,active,true,editor,2024-11-28 14:39:21,2024-11-28 15:38:21,active,true +M4205,W2037,summit-core,prod,active,true,A1017,Summit Analytics,mid_market,EMEA,UK,U3177,naomi.turner@summitanalytics.example,Naomi Turner,Operations Director,operations,active,true,viewer,2024-12-22 10:45:21,2024-12-22 12:08:21,active,true +M4206,W2037,summit-core,prod,active,true,A1017,Summit Analytics,mid_market,EMEA,UK,U3178,marcus.khan@summitanalytics.example,Marcus Khan,VP Data,executive,active,true,viewer,2024-12-06 14:24:21,2024-12-06 16:33:21,active,true +M4207,W2039,harbor-core,prod,archived,true,A1018,Harbor Manufacturing,smb,EMEA,UK,U3179,tomas.saeed@harbormanufacturing.example,Tomas Saeed,Data Platform Manager,data,inactive,false,owner,2024-10-29 22:01:22,2024-10-29 23:37:22,removed,false +M4208,W2040,harbor-ops,prod,archived,false,A1018,Harbor Manufacturing,smb,EMEA,UK,U3180,peter.price@harbormanufacturing.example,Peter Price,Product Manager,product,active,true,editor,2024-09-23 21:08:22,2024-09-23 22:42:22,active,true +M4209,W2039,harbor-core,prod,archived,true,A1018,Harbor Manufacturing,smb,EMEA,UK,U3181,helena.kim@harbormanufacturing.example,Helena Kim,CFO,executive,active,true,editor,2024-10-08 21:06:22,2024-10-08 22:01:22,removed,false +M4210,W2040,harbor-ops,prod,archived,false,A1018,Harbor Manufacturing,smb,EMEA,UK,U3181,helena.kim@harbormanufacturing.example,Helena Kim,CFO,executive,active,true,editor,2024-10-08 21:03:22,2024-10-08 21:47:22,removed,false +M4211,W2041,sierra-core,prod,active,true,A1019,Sierra Systems,smb,APAC,JP,U3182,victor.meyer@sierrasystems.example,Victor Meyer,Data Platform Manager,data,active,true,owner,2025-03-17 13:34:13,2025-03-17 14:18:13,active,true +M4212,W2042,sierra-ops,sandbox,active,false,A1019,Sierra Systems,smb,APAC,JP,U3183,mei.morgan@sierrasystems.example,Mei Morgan,Insights Lead,analytics,active,true,editor,2025-03-01 12:56:13,2025-03-01 14:34:13,active,true +M4213,W2042,sierra-ops,sandbox,active,false,A1019,Sierra Systems,smb,APAC,JP,U3184,victor.rossi@sierrasystems.example,Victor Rossi,Workflow Analyst,operations,inactive,false,viewer,2025-02-26 15:00:13,2025-02-26 15:32:13,active,true +M4214,W2042,sierra-ops,sandbox,active,false,A1019,Sierra Systems,smb,APAC,JP,U3185,lena.price@sierrasystems.example,Lena Price,COO,executive,active,true,admin,2025-03-28 10:39:13,2025-03-28 10:45:13,active,true +M4215,W2043,pioneer-core,prod,active,true,A1020,Pioneer Network,smb,EMEA,FR,U3186,nina.reed@pioneernetwork.example,Nina Reed,Data Engineer,data,active,true,owner,2025-03-15 07:22:23,2025-03-15 08:17:23,active,true +M4216,W2043,pioneer-core,prod,active,true,A1020,Pioneer Network,smb,EMEA,FR,U3187,sofia.price@pioneernetwork.example,Sofia Price,Sales Analyst,sales,active,true,editor,2025-02-23 08:02:23,2025-02-23 08:41:23,active,true +M4217,W2043,pioneer-core,prod,active,true,A1020,Pioneer Network,smb,EMEA,FR,U3188,evan.petrova@pioneernetwork.example,Evan Petrova,BI Analyst,analytics,inactive,false,editor,2025-03-22 02:25:23,2025-03-22 02:38:23,removed,false +M4218,W2043,pioneer-core,prod,active,true,A1020,Pioneer Network,smb,EMEA,FR,U3189,noah.keller@pioneernetwork.example,Noah Keller,Insights Lead,analytics,active,true,viewer,2025-03-17 01:42:23,2025-03-17 02:55:23,active,true +M4219,W2044,apex-core,prod,active,true,A1021,Apex Logistics,smb,NA,US,U3190,olivia.ward@apexlogistics.example,Olivia Ward,Analytics Engineer,data,active,true,owner,2024-12-06 14:17:29,2024-12-06 16:09:29,active,true +M4220,W2044,apex-core,prod,active,true,A1021,Apex Logistics,smb,NA,US,U3191,naomi.chen@apexlogistics.example,Naomi Chen,FP&A Analyst,finance,active,true,editor,2024-11-16 18:50:29,2024-11-16 21:49:29,active,true +M4221,W2044,apex-core,prod,active,true,A1021,Apex Logistics,smb,NA,US,U3192,nina.rahman@apexlogistics.example,Nina Rahman,COO,executive,active,true,editor,2024-11-11 11:55:29,2024-11-11 13:42:29,active,true +M4222,W2044,apex-core,prod,active,true,A1021,Apex Logistics,smb,NA,US,U3193,samir.ng@apexlogistics.example,Samir Ng,Insights Lead,analytics,active,true,admin,2024-10-29 16:19:29,2024-10-29 16:29:29,active,true +M4223,W2044,apex-core,prod,active,true,A1021,Apex Logistics,smb,NA,US,U3194,tomas.rossi@apexlogistics.example,Tomas Rossi,Technical Program Manager,product,active,true,admin,2024-10-28 18:28:29,2024-10-28 18:36:29,active,true +M4224,W2044,apex-core,prod,active,true,A1021,Apex Logistics,smb,NA,US,U3195,derek.rahman@apexlogistics.example,Derek Rahman,BI Analyst,analytics,active,true,admin,2024-11-30 11:46:29,2024-11-30 13:18:29,active,true +M4225,W2044,apex-core,prod,active,true,A1021,Apex Logistics,smb,NA,US,U3196,maya.desai@apexlogistics.example,Maya Desai,Data Engineer,data,active,true,viewer,2024-10-27 17:58:29,2024-10-27 18:05:29,active,true +M4226,W2045,summit-core,prod,active,true,A1022,Summit Collective,smb,APAC,NZ,U3197,priya.price@summitcollective.example,Priya Price,Demand Gen Manager,marketing,inactive,false,owner,2025-03-03 21:19:56,2025-03-03 23:26:56,removed,false +M4227,W2046,summit-ops,sandbox,active,false,A1022,Summit Collective,smb,APAC,NZ,U3198,tomas.fischer@summitcollective.example,Tomas Fischer,Workflow Analyst,operations,active,true,admin,2025-03-31 14:55:56,2025-03-31 15:39:56,active,true +M4228,W2045,summit-core,prod,active,true,A1022,Summit Collective,smb,APAC,NZ,U3199,mateo.desai@summitcollective.example,Mateo Desai,Revenue Operations Manager,sales,active,true,editor,2025-03-17 18:24:56,2025-03-17 19:36:56,active,true +M4229,W2045,summit-core,prod,active,true,A1022,Summit Collective,smb,APAC,NZ,U3200,alma.petrova@summitcollective.example,Alma Petrova,Product Manager,product,active,true,viewer,2025-03-11 18:14:56,2025-03-11 18:45:56,active,true +M4230,W2045,summit-core,prod,active,true,A1022,Summit Collective,smb,APAC,NZ,U3201,jonas.alvarez@summitcollective.example,Jonas Alvarez,Technical Program Manager,product,inactive,false,editor,2025-03-25 21:54:56,2025-03-26 00:41:56,removed,false +M4231,W2047,atlas-core,prod,active,true,A1023,Atlas Systems,smb,NA,CA,U3202,victor.shah@atlassystems.example,Victor Shah,Analytics Engineer,data,active,true,owner,2025-02-01 19:08:38,2025-02-01 19:46:38,active,true +M4232,W2047,atlas-core,prod,active,true,A1023,Atlas Systems,smb,NA,CA,U3203,maya.silva@atlassystems.example,Maya Silva,Data Platform Manager,data,active,true,admin,2025-02-24 19:59:38,2025-02-24 20:41:38,active,true +M4233,W2047,atlas-core,prod,active,true,A1023,Atlas Systems,smb,NA,CA,U3204,victor.price@atlassystems.example,Victor Price,Product Manager,product,active,true,admin,2025-02-09 19:58:38,2025-02-09 20:26:38,active,true +M4234,W2047,atlas-core,prod,active,true,A1023,Atlas Systems,smb,NA,CA,U3205,mateo.price@atlassystems.example,Mateo Price,CFO,executive,active,true,editor,2025-02-05 16:16:38,2025-02-05 17:39:38,active,true +M4235,W2047,atlas-core,prod,active,true,A1023,Atlas Systems,smb,NA,CA,U3206,noah.keller@atlassystems.example,Noah Keller,Analytics Engineer,data,active,true,editor,2025-03-14 17:29:38,2025-03-14 19:36:38,active,true +M4236,W2047,atlas-core,prod,active,true,A1023,Atlas Systems,smb,NA,CA,U3207,alma.morgan@atlassystems.example,Alma Morgan,VP Data,executive,active,true,editor,2025-02-28 19:01:38,2025-02-28 19:19:38,active,true +M4237,W2047,atlas-core,prod,active,true,A1023,Atlas Systems,smb,NA,CA,U3208,naomi.hill@atlassystems.example,Naomi Hill,Finance Manager,finance,active,true,admin,2025-02-10 22:37:38,2025-02-10 23:53:38,active,true +M4238,W2047,atlas-core,prod,active,true,A1023,Atlas Systems,smb,NA,CA,U3209,olivia.nash@atlassystems.example,Olivia Nash,COO,executive,active,true,viewer,2025-02-28 19:52:38,2025-02-28 21:18:38,active,true +M4239,W2048,sierra-core,prod,active,true,A1024,Sierra Group,smb,NA,CA,U3210,aisha.singh@sierragroup.example,Aisha Singh,Data Engineer,data,active,true,owner,2025-02-18 09:03:07,2025-02-18 09:20:07,active,true +M4240,W2048,sierra-core,prod,active,true,A1024,Sierra Group,smb,NA,CA,U3211,marta.morgan@sierragroup.example,Marta Morgan,Data Platform Manager,data,active,true,admin,2025-02-17 12:30:07,2025-02-17 13:48:07,active,true +M4241,W2049,sierra-ops,prod,active,false,A1024,Sierra Group,smb,NA,CA,U3211,marta.morgan@sierragroup.example,Marta Morgan,Data Platform Manager,data,active,true,viewer,2025-02-17 11:57:07,2025-02-17 13:13:07,active,true +M4242,W2049,sierra-ops,prod,active,false,A1024,Sierra Group,smb,NA,CA,U3212,luis.morgan@sierragroup.example,Luis Morgan,Product Manager,product,active,true,editor,2025-02-04 15:11:07,2025-02-04 16:41:07,active,true +M4243,W2049,sierra-ops,prod,active,false,A1024,Sierra Group,smb,NA,CA,U3213,naomi.grant@sierragroup.example,Naomi Grant,Data Engineer,data,active,true,admin,2025-02-12 09:30:07,2025-02-12 11:56:07,active,true +M4244,W2050,bright-core,prod,active,true,A1025,Bright Capital,smb,EMEA,UK,U3214,elena.lopez@brightcapital.example,Elena Lopez,Operations Director,operations,inactive,false,owner,2024-10-18 11:04:56,2024-10-18 11:42:56,removed,false +M4245,W2050,bright-core,prod,active,true,A1025,Bright Capital,smb,EMEA,UK,U3215,elena.silva@brightcapital.example,Elena Silva,Operations Director,operations,active,true,viewer,2024-11-12 08:27:56,2024-11-12 10:47:56,active,true +M4246,W2050,bright-core,prod,active,true,A1025,Bright Capital,smb,EMEA,UK,U3216,ivy.morgan@brightcapital.example,Ivy Morgan,Product Manager,product,active,true,editor,2024-11-07 15:07:56,2024-11-07 16:05:56,active,true +M4247,W2050,bright-core,prod,active,true,A1025,Bright Capital,smb,EMEA,UK,U3217,kenji.dubois@brightcapital.example,Kenji Dubois,Analytics Manager,analytics,active,true,admin,2024-10-23 09:29:56,2024-10-23 10:07:56,active,true +M4248,W2050,bright-core,prod,active,true,A1025,Bright Capital,smb,EMEA,UK,U3218,victor.meyer@brightcapital.example,Victor Meyer,Technical Program Manager,product,active,true,admin,2024-11-18 14:46:56,2024-11-18 17:38:56,active,true +M4249,W2050,bright-core,prod,active,true,A1025,Bright Capital,smb,EMEA,UK,U3219,lina.lewis@brightcapital.example,Lina Lewis,Revenue Operations Manager,sales,active,true,editor,2024-11-24 16:45:56,2024-11-24 17:15:56,active,true +M4250,W2051,pioneer-core,prod,active,true,A1026,Pioneer Capital,smb,NA,CA,U3220,luis.kim@pioneercapital.example,Luis Kim,CFO,executive,active,true,owner,2024-10-03 13:27:17,2024-10-03 15:51:17,active,true +M4251,W2051,pioneer-core,prod,active,true,A1026,Pioneer Capital,smb,NA,CA,U3221,sofia.khan@pioneercapital.example,Sofia Khan,Sales Analyst,sales,active,true,editor,2024-09-10 05:36:17,2024-09-10 06:32:17,active,true +M4252,W2051,pioneer-core,prod,active,true,A1026,Pioneer Capital,smb,NA,CA,U3222,luis.dubois@pioneercapital.example,Luis Dubois,Analytics Engineer,data,active,true,admin,2024-10-02 11:12:17,2024-10-02 13:04:17,active,true +M4253,W2051,pioneer-core,prod,active,true,A1026,Pioneer Capital,smb,NA,CA,U3223,aisha.hill@pioneercapital.example,Aisha Hill,Marketing Operations Lead,marketing,active,true,viewer,2024-09-16 12:59:17,2024-09-16 15:27:17,active,true +M4254,W2051,pioneer-core,prod,active,true,A1026,Pioneer Capital,smb,NA,CA,U3224,hannah.patel@pioneercapital.example,Hannah Patel,Sales Analyst,sales,active,true,viewer,2024-09-10 07:39:17,2024-09-10 10:25:17,active,true +M4255,W2051,pioneer-core,prod,active,true,A1026,Pioneer Capital,smb,NA,CA,U3225,marta.romero@pioneercapital.example,Marta Romero,COO,executive,active,true,viewer,2024-10-05 09:28:17,2024-10-05 11:36:17,active,true +M4256,W2051,pioneer-core,prod,active,true,A1026,Pioneer Capital,smb,NA,CA,U3226,tara.nash@pioneercapital.example,Tara Nash,BI Analyst,analytics,active,true,editor,2024-09-30 05:32:17,2024-09-30 05:42:17,active,true +M4257,W2051,pioneer-core,prod,active,true,A1026,Pioneer Capital,smb,NA,CA,U3227,ben.patel@pioneercapital.example,Ben Patel,Data Platform Manager,data,active,true,editor,2024-09-29 05:07:17,2024-09-29 05:45:17,active,true +M4258,W2052,bluepeak-core,prod,active,true,A1027,BluePeak Health,smb,APAC,SG,U3228,naomi.silva@bluepeakhealth.example,Naomi Silva,FP&A Analyst,finance,active,true,owner,2024-11-03 18:33:59,2024-11-03 18:49:59,active,true +M4259,W2052,bluepeak-core,prod,active,true,A1027,BluePeak Health,smb,APAC,SG,U3229,peter.grant@bluepeakhealth.example,Peter Grant,Founder,executive,active,true,viewer,2024-11-23 23:36:59,2024-11-24 01:22:59,active,true +M4260,W2053,bluepeak-ops,prod,active,false,A1027,BluePeak Health,smb,APAC,SG,U3230,jonas.khan@bluepeakhealth.example,Jonas Khan,Finance Manager,finance,active,true,viewer,2024-11-28 02:01:59,2024-11-28 02:48:59,active,true +M4261,W2053,bluepeak-ops,prod,active,false,A1027,BluePeak Health,smb,APAC,SG,U3231,arjun.cole@bluepeakhealth.example,Arjun Cole,Marketing Operations Lead,marketing,active,true,viewer,2024-11-24 21:31:59,2024-11-24 23:15:59,active,true +M4262,W2053,bluepeak-ops,prod,active,false,A1027,BluePeak Health,smb,APAC,SG,U3232,naomi.sato@bluepeakhealth.example,Naomi Sato,Data Platform Manager,data,active,true,viewer,2024-12-07 00:50:59,2024-12-07 03:21:59,active,true +M4263,W2052,bluepeak-core,prod,active,true,A1027,BluePeak Health,smb,APAC,SG,U3232,naomi.sato@bluepeakhealth.example,Naomi Sato,Data Platform Manager,data,active,true,viewer,2024-12-07 00:43:59,2024-12-07 03:19:59,active,true +M4264,W2054,apex-core,prod,active,true,A1028,Apex Energy,mid_market,APAC,SG,U3233,priya.sato@apexenergy.example,Priya Sato,COO,executive,inactive,false,owner,2025-02-04 03:23:07,2025-02-04 05:39:07,removed,false +M4265,W2055,apex-ops,sandbox,active,false,A1028,Apex Energy,mid_market,APAC,SG,U3234,tomas.alvarez@apexenergy.example,Tomas Alvarez,VP Data,executive,active,true,editor,2025-01-05 03:45:07,2025-01-05 04:58:07,active,true +M4266,W2054,apex-core,prod,active,true,A1028,Apex Energy,mid_market,APAC,SG,U3235,samir.park@apexenergy.example,Samir Park,Analytics Engineer,data,active,true,admin,2025-01-08 06:38:07,2025-01-08 06:53:07,active,true +M4267,W2055,apex-ops,sandbox,active,false,A1028,Apex Energy,mid_market,APAC,SG,U3235,samir.park@apexenergy.example,Samir Park,Analytics Engineer,data,active,true,editor,2025-01-08 05:54:07,2025-01-08 06:36:07,active,true +M4268,W2054,apex-core,prod,active,true,A1028,Apex Energy,mid_market,APAC,SG,U3236,nina.hill@apexenergy.example,Nina Hill,Data Engineer,data,active,true,editor,2025-01-19 09:53:07,2025-01-19 11:01:07,active,true +M4269,W2054,apex-core,prod,active,true,A1028,Apex Energy,mid_market,APAC,SG,U3237,kai.rossi@apexenergy.example,Kai Rossi,Sales Analyst,sales,active,true,editor,2025-01-29 08:55:07,2025-01-29 11:34:07,active,true +M4270,W2055,apex-ops,sandbox,active,false,A1028,Apex Energy,mid_market,APAC,SG,U3237,kai.rossi@apexenergy.example,Kai Rossi,Sales Analyst,sales,active,true,viewer,2025-01-29 09:28:07,2025-01-29 10:56:07,active,true +M4271,W2055,apex-ops,sandbox,active,false,A1028,Apex Energy,mid_market,APAC,SG,U3238,lena.patel@apexenergy.example,Lena Patel,FP&A Analyst,finance,active,true,viewer,2024-12-30 02:57:07,2024-12-30 04:17:07,active,true +M4272,W2055,apex-ops,sandbox,active,false,A1028,Apex Energy,mid_market,APAC,SG,U3239,nina.hill2@apexenergy.example,Nina Hill,Operations Manager,operations,active,true,viewer,2025-01-05 10:14:07,2025-01-05 11:50:07,active,true +M4273,W2054,apex-core,prod,active,true,A1028,Apex Energy,mid_market,APAC,SG,U3240,arjun.petrova@apexenergy.example,Arjun Petrova,CFO,executive,active,true,viewer,2025-02-09 03:43:07,2025-02-09 03:52:07,active,true +M4274,W2054,apex-core,prod,active,true,A1028,Apex Energy,mid_market,APAC,SG,U3241,aisha.ng@apexenergy.example,Aisha Ng,Finance Manager,finance,active,true,viewer,2025-01-01 07:52:07,2025-01-01 09:02:07,active,true +M4275,W2054,apex-core,prod,active,true,A1028,Apex Energy,mid_market,APAC,SG,U3242,kai.nash@apexenergy.example,Kai Nash,Insights Lead,analytics,active,true,viewer,2025-01-13 07:41:07,2025-01-13 08:38:07,active,true +M4276,W2055,apex-ops,sandbox,active,false,A1028,Apex Energy,mid_market,APAC,SG,U3243,noah.rossi@apexenergy.example,Noah Rossi,Finance Manager,finance,active,true,admin,2025-01-18 02:43:07,2025-01-18 04:39:07,active,true +M4277,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3244,marcus.romero@brightlabs.example,Marcus Romero,Marketing Operations Lead,marketing,inactive,false,owner,2024-10-10 04:35:19,2024-10-10 05:17:19,active,true +M4278,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3245,jonas.morgan@brightlabs.example,Jonas Morgan,Technical Program Manager,product,active,true,editor,2024-10-12 04:24:19,2024-10-12 05:16:19,active,true +M4279,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3246,lina.sato@brightlabs.example,Lina Sato,CFO,executive,inactive,false,editor,2024-09-23 02:20:19,2024-09-23 03:11:19,removed,false +M4280,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3247,nina.patel@brightlabs.example,Nina Patel,Insights Lead,analytics,inactive,false,editor,2024-09-03 01:29:19,2024-09-03 02:19:19,active,true +M4281,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3248,marta.nash@brightlabs.example,Marta Nash,Revenue Operations Manager,sales,inactive,false,admin,2024-10-05 01:13:19,2024-10-05 03:07:19,removed,false +M4282,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3249,isla.turner@brightlabs.example,Isla Turner,Demand Gen Manager,marketing,inactive,false,admin,2024-09-19 01:15:19,2024-09-19 01:55:19,removed,false +M4283,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3250,sofia.saeed@brightlabs.example,Sofia Saeed,Finance Manager,finance,inactive,false,viewer,2024-09-28 02:34:19,2024-09-28 04:17:19,removed,false +M4284,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3251,mei.lewis@brightlabs.example,Mei Lewis,Analytics Engineer,data,active,true,viewer,2024-09-05 06:00:19,2024-09-05 06:16:19,removed,false +M4285,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3252,peter.lopez@brightlabs.example,Peter Lopez,Founder,executive,inactive,false,editor,2024-09-05 06:02:19,2024-09-05 08:40:19,removed,false +M4286,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3253,evan.saeed@brightlabs.example,Evan Saeed,Product Manager,product,inactive,false,viewer,2024-10-14 09:09:19,2024-10-14 11:32:19,removed,false +M4287,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3254,peter.hill@brightlabs.example,Peter Hill,Workflow Analyst,operations,inactive,false,viewer,2024-09-06 05:12:19,2024-09-06 06:08:19,removed,false +M4288,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3255,kai.lopez@brightlabs.example,Kai Lopez,Sales Analyst,sales,active,true,viewer,2024-10-06 07:43:19,2024-10-06 09:12:19,removed,false +M4289,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3256,noah.shah@brightlabs.example,Noah Shah,Revenue Operations Manager,sales,provisioned,false,admin,2024-09-25 04:54:19,,pending,false +M4290,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3257,leo.dubois@brightlabs.example,Leo Dubois,Founder,executive,inactive,false,viewer,2024-09-21 05:07:19,2024-09-21 05:17:19,active,true +M4291,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3258,marcus.patel@brightlabs.example,Marcus Patel,FP&A Analyst,finance,inactive,false,editor,2024-09-28 06:09:19,2024-09-28 08:24:19,active,true +M4292,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3259,elena.tan@brightlabs.example,Elena Tan,Product Manager,product,inactive,false,admin,2024-09-26 06:26:19,2024-09-26 07:28:19,removed,false +M4293,W2056,bright-core,prod,archived,true,A1029,Bright Labs,enterprise,APAC,NZ,U3260,hannah.hart@brightlabs.example,Hannah Hart,Finance Manager,finance,inactive,false,editor,2024-09-19 08:37:19,2024-09-19 11:29:19,removed,false +M4294,W2057,northwind-core,prod,active,true,A1030,Northwind Analytics,enterprise,EMEA,UK,U3261,kenji.tan@northwindanalytics.example,Kenji Tan,Marketing Operations Lead,marketing,active,true,owner,2024-09-07 02:50:08,2024-09-07 05:50:08,active,true +M4295,W2060,northwind-marketing,prod,active,false,A1030,Northwind Analytics,enterprise,EMEA,UK,U3262,mei.dubois@northwindanalytics.example,Mei Dubois,CFO,executive,active,true,viewer,2024-09-24 08:52:08,2024-09-24 09:25:08,active,true +M4296,W2060,northwind-marketing,prod,active,false,A1030,Northwind Analytics,enterprise,EMEA,UK,U3263,luis.alvarez@northwindanalytics.example,Luis Alvarez,CFO,executive,active,true,admin,2024-09-30 11:11:08,2024-09-30 12:47:08,active,true +M4297,W2057,northwind-core,prod,active,true,A1030,Northwind Analytics,enterprise,EMEA,UK,U3263,luis.alvarez@northwindanalytics.example,Luis Alvarez,CFO,executive,active,true,editor,2024-09-30 11:38:08,2024-09-30 14:20:08,active,true +M4298,W2057,northwind-core,prod,active,true,A1030,Northwind Analytics,enterprise,EMEA,UK,U3264,helena.cole@northwindanalytics.example,Helena Cole,COO,executive,active,true,editor,2024-09-08 05:37:08,2024-09-08 05:53:08,active,true +M4299,W2058,northwind-ops,prod,active,false,A1030,Northwind Analytics,enterprise,EMEA,UK,U3265,hannah.rahman@northwindanalytics.example,Hannah Rahman,Marketing Operations Lead,marketing,active,true,admin,2024-10-03 06:31:08,2024-10-03 07:22:08,active,true +M4300,W2060,northwind-marketing,prod,active,false,A1030,Northwind Analytics,enterprise,EMEA,UK,U3266,kai.hart@northwindanalytics.example,Kai Hart,Data Platform Manager,data,inactive,false,admin,2024-08-23 11:09:08,2024-08-23 13:53:08,active,true +M4301,W2059,northwind-finance,prod,active,false,A1030,Northwind Analytics,enterprise,EMEA,UK,U3267,maya.patel@northwindanalytics.example,Maya Patel,Insights Lead,analytics,active,true,viewer,2024-09-11 07:44:08,2024-09-11 10:38:08,active,true +M4302,W2059,northwind-finance,prod,active,false,A1030,Northwind Analytics,enterprise,EMEA,UK,U3268,marta.ward@northwindanalytics.example,Marta Ward,BI Analyst,analytics,active,true,viewer,2024-09-21 07:16:08,2024-09-21 07:40:08,active,true +M4303,W2057,northwind-core,prod,active,true,A1030,Northwind Analytics,enterprise,EMEA,UK,U3269,mila.morgan@northwindanalytics.example,Mila Morgan,Operations Director,operations,active,true,viewer,2024-09-24 08:08:08,2024-09-24 11:00:08,active,true +M4304,W2058,northwind-ops,prod,active,false,A1030,Northwind Analytics,enterprise,EMEA,UK,U3270,ben.meyer@northwindanalytics.example,Ben Meyer,Insights Lead,analytics,active,true,editor,2024-08-29 10:15:08,2024-08-29 12:22:08,active,true +M4305,W2057,northwind-core,prod,active,true,A1030,Northwind Analytics,enterprise,EMEA,UK,U3271,alma.dubois@northwindanalytics.example,Alma Dubois,Insights Lead,analytics,active,true,admin,2024-10-07 07:14:08,2024-10-07 08:30:08,active,true +M4306,W2058,northwind-ops,prod,active,false,A1030,Northwind Analytics,enterprise,EMEA,UK,U3272,victor.brooks@northwindanalytics.example,Victor Brooks,Sales Analyst,sales,active,true,admin,2024-10-05 06:24:08,2024-10-05 08:07:08,active,true +M4307,W2061,helio-core,prod,active,true,A1031,Helio Holdings,mid_market,APAC,AU,U3273,claire.lopez@helioholdings.example,Claire Lopez,Sales Analyst,sales,active,true,owner,2025-03-10 04:31:16,2025-03-10 05:57:16,active,true +M4308,W2062,helio-ops,prod,active,false,A1031,Helio Holdings,mid_market,APAC,AU,U3274,mei.silva@helioholdings.example,Mei Silva,Demand Gen Manager,marketing,active,true,editor,2025-03-28 09:24:16,2025-03-28 12:03:16,active,true +M4309,W2063,helio-finance,prod,active,false,A1031,Helio Holdings,mid_market,APAC,AU,U3275,aisha.sato@helioholdings.example,Aisha Sato,BI Analyst,analytics,active,true,editor,2025-03-16 05:53:16,2025-03-16 07:00:16,active,true +M4310,W2062,helio-ops,prod,active,false,A1031,Helio Holdings,mid_market,APAC,AU,U3276,arjun.sato@helioholdings.example,Arjun Sato,Founder,executive,active,true,editor,2025-02-28 09:08:16,2025-02-28 11:19:16,active,true +M4311,W2063,helio-finance,prod,active,false,A1031,Helio Holdings,mid_market,APAC,AU,U3277,kai.silva@helioholdings.example,Kai Silva,VP Data,executive,active,true,editor,2025-03-23 09:06:16,2025-03-23 11:39:16,active,true +M4312,W2063,helio-finance,prod,active,false,A1031,Helio Holdings,mid_market,APAC,AU,U3278,leo.brooks@helioholdings.example,Leo Brooks,Operations Manager,operations,active,true,editor,2025-02-26 11:48:16,2025-02-26 12:49:16,active,true +M4313,W2063,helio-finance,prod,active,false,A1031,Helio Holdings,mid_market,APAC,AU,U3279,lina.saeed@helioholdings.example,Lina Saeed,Analytics Manager,analytics,active,true,admin,2025-02-17 06:50:16,2025-02-17 06:59:16,active,true +M4314,W2062,helio-ops,prod,active,false,A1031,Helio Holdings,mid_market,APAC,AU,U3280,samir.price@helioholdings.example,Samir Price,Product Manager,product,active,true,editor,2025-03-06 05:19:16,2025-03-06 05:52:16,active,true +M4315,W2061,helio-core,prod,active,true,A1031,Helio Holdings,mid_market,APAC,AU,U3281,samir.sato@helioholdings.example,Samir Sato,Founder,executive,active,true,viewer,2025-02-14 10:28:16,2025-02-14 11:08:16,active,true +M4316,W2062,helio-ops,prod,active,false,A1031,Helio Holdings,mid_market,APAC,AU,U3282,aisha.rahman@helioholdings.example,Aisha Rahman,Product Manager,product,active,true,editor,2025-02-22 10:06:16,2025-02-22 11:58:16,active,true +M4317,W2064,vertex-core,prod,archived,true,A1032,Vertex Works,mid_market,EMEA,DE,U3283,lina.chen@vertexworks.example,Lina Chen,Data Platform Manager,data,inactive,false,owner,2024-09-28 17:52:27,2024-09-28 18:50:27,active,true +M4318,W2064,vertex-core,prod,archived,true,A1032,Vertex Works,mid_market,EMEA,DE,U3284,mateo.tan@vertexworks.example,Mateo Tan,Data Platform Manager,data,active,true,viewer,2024-09-16 15:35:27,2024-09-16 15:46:27,removed,false +M4319,W2065,vertex-ops,prod,archived,false,A1032,Vertex Works,mid_market,EMEA,DE,U3284,mateo.tan@vertexworks.example,Mateo Tan,Data Platform Manager,data,active,true,viewer,2024-09-16 15:29:27,2024-09-16 17:09:27,removed,false +M4320,W2064,vertex-core,prod,archived,true,A1032,Vertex Works,mid_market,EMEA,DE,U3285,jonas.lewis@vertexworks.example,Jonas Lewis,Operations Manager,operations,active,true,editor,2024-10-18 17:03:27,2024-10-18 17:15:27,removed,false +M4321,W2064,vertex-core,prod,archived,true,A1032,Vertex Works,mid_market,EMEA,DE,U3286,priya.singh@vertexworks.example,Priya Singh,Analytics Manager,analytics,inactive,false,admin,2024-10-19 21:04:27,2024-10-19 21:55:27,removed,false +M4322,W2065,vertex-ops,prod,archived,false,A1032,Vertex Works,mid_market,EMEA,DE,U3286,priya.singh@vertexworks.example,Priya Singh,Analytics Manager,analytics,inactive,false,editor,2024-10-19 21:06:27,2024-10-19 23:26:27,removed,false +M4323,W2065,vertex-ops,prod,archived,false,A1032,Vertex Works,mid_market,EMEA,DE,U3287,samir.rossi@vertexworks.example,Samir Rossi,COO,executive,active,true,editor,2024-09-26 17:43:27,2024-09-26 20:33:27,removed,false +M4324,W2065,vertex-ops,prod,archived,false,A1032,Vertex Works,mid_market,EMEA,DE,U3288,naomi.reed@vertexworks.example,Naomi Reed,Data Platform Manager,data,active,true,admin,2024-10-18 14:06:27,2024-10-18 14:55:27,removed,false +M4325,W2064,vertex-core,prod,archived,true,A1032,Vertex Works,mid_market,EMEA,DE,U3288,naomi.reed@vertexworks.example,Naomi Reed,Data Platform Manager,data,active,true,editor,2024-10-18 15:22:27,2024-10-18 17:08:27,active,true +M4326,W2066,lighthouse-core,prod,active,true,A1033,Lighthouse Global,mid_market,NA,CA,U3289,priya.kim@lighthouseglobal.example,Priya Kim,Insights Lead,analytics,active,true,owner,2024-11-27 06:38:01,2024-11-27 07:49:01,active,true +M4327,W2067,lighthouse-ops,prod,active,false,A1033,Lighthouse Global,mid_market,NA,CA,U3290,marcus.romero@lighthouseglobal.example,Marcus Romero,Data Platform Manager,data,active,true,viewer,2024-10-26 13:28:01,2024-10-26 14:42:01,active,true +M4328,W2066,lighthouse-core,prod,active,true,A1033,Lighthouse Global,mid_market,NA,CA,U3291,arjun.lopez@lighthouseglobal.example,Arjun Lopez,Product Manager,product,active,true,editor,2024-11-01 07:32:01,2024-11-01 08:31:01,active,true +M4329,W2067,lighthouse-ops,prod,active,false,A1033,Lighthouse Global,mid_market,NA,CA,U3292,marcus.saeed@lighthouseglobal.example,Marcus Saeed,Insights Lead,analytics,active,true,viewer,2024-11-26 08:03:01,2024-11-26 10:31:01,active,true +M4330,W2066,lighthouse-core,prod,active,true,A1033,Lighthouse Global,mid_market,NA,CA,U3292,marcus.saeed@lighthouseglobal.example,Marcus Saeed,Insights Lead,analytics,active,true,editor,2024-11-26 08:31:01,2024-11-26 08:55:01,active,true +M4331,W2067,lighthouse-ops,prod,active,false,A1033,Lighthouse Global,mid_market,NA,CA,U3293,sofia.grant@lighthouseglobal.example,Sofia Grant,BI Analyst,analytics,active,true,editor,2024-10-25 13:03:01,2024-10-25 14:45:01,active,true +M4332,W2066,lighthouse-core,prod,active,true,A1033,Lighthouse Global,mid_market,NA,CA,U3294,nina.saeed@lighthouseglobal.example,Nina Saeed,Demand Gen Manager,marketing,active,true,admin,2024-12-03 12:54:01,2024-12-03 13:48:01,active,true +M4333,W2067,lighthouse-ops,prod,active,false,A1033,Lighthouse Global,mid_market,NA,CA,U3295,arjun.rossi@lighthouseglobal.example,Arjun Rossi,Demand Gen Manager,marketing,active,true,admin,2024-11-09 10:45:01,2024-11-09 11:51:01,active,true +M4334,W2066,lighthouse-core,prod,active,true,A1033,Lighthouse Global,mid_market,NA,CA,U3295,arjun.rossi@lighthouseglobal.example,Arjun Rossi,Demand Gen Manager,marketing,active,true,viewer,2024-11-09 10:12:01,2024-11-09 10:58:01,active,true +M4335,W2066,lighthouse-core,prod,active,true,A1033,Lighthouse Global,mid_market,NA,CA,U3296,elena.grant@lighthouseglobal.example,Elena Grant,Product Manager,product,active,true,editor,2024-10-24 15:24:01,2024-10-24 17:50:01,active,true +M4336,W2067,lighthouse-ops,prod,active,false,A1033,Lighthouse Global,mid_market,NA,CA,U3296,elena.grant@lighthouseglobal.example,Elena Grant,Product Manager,product,active,true,viewer,2024-10-24 15:23:01,2024-10-24 18:11:01,active,true +M4337,W2066,lighthouse-core,prod,active,true,A1033,Lighthouse Global,mid_market,NA,CA,U3297,marcus.lopez@lighthouseglobal.example,Marcus Lopez,Demand Gen Manager,marketing,active,true,editor,2024-11-06 10:36:01,2024-11-06 10:52:01,active,true +M4338,W2067,lighthouse-ops,prod,active,false,A1033,Lighthouse Global,mid_market,NA,CA,U3298,kenji.desai@lighthouseglobal.example,Kenji Desai,Analytics Manager,analytics,active,true,admin,2024-12-01 12:09:01,2024-12-01 12:16:01,active,true +M4339,W2067,lighthouse-ops,prod,active,false,A1033,Lighthouse Global,mid_market,NA,CA,U3299,marcus.desai@lighthouseglobal.example,Marcus Desai,Data Engineer,data,active,true,viewer,2024-11-30 08:44:01,2024-11-30 09:38:01,active,true +M4340,W2067,lighthouse-ops,prod,active,false,A1033,Lighthouse Global,mid_market,NA,CA,U3300,mila.dubois@lighthouseglobal.example,Mila Dubois,Operations Manager,operations,active,true,viewer,2024-11-09 09:32:01,2024-11-09 12:29:01,active,true +M4341,W2068,helio-core,prod,active,true,A1034,Helio Partners,smb,NA,CA,U3301,evan.kim@heliopartners.example,Evan Kim,Technical Program Manager,product,active,true,owner,2025-01-11 20:45:06,2025-01-11 22:14:06,active,true +M4342,W2069,helio-ops,sandbox,active,false,A1034,Helio Partners,smb,NA,CA,U3302,hannah.rahman@heliopartners.example,Hannah Rahman,Operations Manager,operations,active,true,viewer,2025-01-08 00:53:06,2025-01-08 01:36:06,active,true +M4343,W2068,helio-core,prod,active,true,A1034,Helio Partners,smb,NA,CA,U3303,owen.sato@heliopartners.example,Owen Sato,Sales Analyst,sales,active,true,editor,2025-01-09 17:42:06,2025-01-09 17:56:06,active,true +M4344,W2069,helio-ops,sandbox,active,false,A1034,Helio Partners,smb,NA,CA,U3304,naomi.turner@heliopartners.example,Naomi Turner,Product Manager,product,active,true,admin,2024-12-28 01:47:06,2024-12-28 04:32:06,active,true +M4345,W2068,helio-core,prod,active,true,A1034,Helio Partners,smb,NA,CA,U3305,alma.chen@heliopartners.example,Alma Chen,Demand Gen Manager,marketing,active,true,viewer,2025-01-04 02:30:06,2025-01-04 05:29:06,active,true +M4346,W2068,helio-core,prod,active,true,A1034,Helio Partners,smb,NA,CA,U3306,marcus.ng@heliopartners.example,Marcus Ng,Demand Gen Manager,marketing,active,true,viewer,2024-12-24 00:00:06,2024-12-24 00:38:06,active,true +M4347,W2069,helio-ops,sandbox,active,false,A1034,Helio Partners,smb,NA,CA,U3306,marcus.ng@heliopartners.example,Marcus Ng,Demand Gen Manager,marketing,active,true,editor,2024-12-24 00:14:06,2024-12-24 01:33:06,active,true +M4348,W2069,helio-ops,sandbox,active,false,A1034,Helio Partners,smb,NA,CA,U3307,arjun.brooks@heliopartners.example,Arjun Brooks,Data Platform Manager,data,active,true,admin,2024-12-12 01:30:06,2024-12-12 03:14:06,active,true +M4349,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3308,aisha.keller@brightretail.example,Aisha Keller,Technical Program Manager,product,provisioned,false,owner,2025-03-12 23:34:57,,pending,false +M4350,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3309,zoe.kim@brightretail.example,Zoe Kim,Revenue Operations Manager,sales,active,true,viewer,2025-03-03 01:45:57,2025-03-03 04:15:57,active,true +M4351,W2072,bright-finance,prod,active,false,A1035,Bright Retail,mid_market,EMEA,UK,U3310,owen.petrova@brightretail.example,Owen Petrova,Technical Program Manager,product,inactive,false,viewer,2025-03-17 19:46:57,2025-03-17 21:10:57,removed,false +M4352,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3310,owen.petrova@brightretail.example,Owen Petrova,Technical Program Manager,product,inactive,false,editor,2025-03-17 18:22:57,2025-03-17 18:49:57,removed,false +M4353,W2071,bright-ops,sandbox,active,false,A1035,Bright Retail,mid_market,EMEA,UK,U3311,marcus.morgan@brightretail.example,Marcus Morgan,Revenue Operations Manager,sales,active,true,admin,2025-04-02 02:56:57,2025-04-02 04:12:57,active,true +M4354,W2072,bright-finance,prod,active,false,A1035,Bright Retail,mid_market,EMEA,UK,U3312,ben.singh@brightretail.example,Ben Singh,Demand Gen Manager,marketing,active,true,editor,2025-03-18 22:34:57,2025-03-19 00:36:57,active,true +M4355,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3312,ben.singh@brightretail.example,Ben Singh,Demand Gen Manager,marketing,active,true,editor,2025-03-18 23:31:57,2025-03-19 01:37:57,active,true +M4356,W2071,bright-ops,sandbox,active,false,A1035,Bright Retail,mid_market,EMEA,UK,U3313,zoe.ward@brightretail.example,Zoe Ward,CFO,executive,active,true,viewer,2025-04-11 22:52:57,2025-04-12 01:01:57,active,true +M4357,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3313,zoe.ward@brightretail.example,Zoe Ward,CFO,executive,active,true,editor,2025-04-11 23:59:57,2025-04-12 01:37:57,active,true +M4358,W2071,bright-ops,sandbox,active,false,A1035,Bright Retail,mid_market,EMEA,UK,U3314,marcus.patel@brightretail.example,Marcus Patel,Analytics Engineer,data,active,true,editor,2025-03-19 21:37:57,2025-03-19 22:15:57,active,true +M4359,W2071,bright-ops,sandbox,active,false,A1035,Bright Retail,mid_market,EMEA,UK,U3315,marcus.desai@brightretail.example,Marcus Desai,FP&A Analyst,finance,active,true,editor,2025-03-06 00:24:57,2025-03-06 02:04:57,active,true +M4360,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3316,mei.tan@brightretail.example,Mei Tan,Operations Manager,operations,active,true,viewer,2025-03-11 01:31:57,2025-03-11 04:30:57,active,true +M4361,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3317,samir.hill@brightretail.example,Samir Hill,Revenue Operations Manager,sales,active,true,viewer,2025-04-06 18:30:57,2025-04-06 19:37:57,active,true +M4362,W2072,bright-finance,prod,active,false,A1035,Bright Retail,mid_market,EMEA,UK,U3318,ava.hart@brightretail.example,Ava Hart,FP&A Analyst,finance,active,true,viewer,2025-02-26 02:27:57,2025-02-26 04:08:57,active,true +M4363,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3318,ava.hart@brightretail.example,Ava Hart,FP&A Analyst,finance,active,true,editor,2025-02-26 02:44:57,2025-02-26 05:14:57,active,true +M4364,W2070,bright-core,prod,active,true,A1035,Bright Retail,mid_market,EMEA,UK,U3319,ivy.turner@brightretail.example,Ivy Turner,Controller,finance,active,true,editor,2025-04-03 19:39:57,2025-04-03 20:07:57,active,true +M4365,W2071,bright-ops,sandbox,active,false,A1035,Bright Retail,mid_market,EMEA,UK,U3320,marcus.kim@brightretail.example,Marcus Kim,CFO,executive,active,true,editor,2025-03-23 20:09:57,2025-03-23 22:13:57,active,true +M4366,W2073,granite-core,prod,archived,true,A1036,Granite Holdings,smb,NA,US,U3321,naomi.lewis@graniteholdings.example,Naomi Lewis,Sales Analyst,sales,inactive,false,owner,2025-02-04 19:59:31,2025-02-04 20:25:31,removed,false +M4367,W2073,granite-core,prod,archived,true,A1036,Granite Holdings,smb,NA,US,U3322,daniel.tan@graniteholdings.example,Daniel Tan,Demand Gen Manager,marketing,inactive,false,viewer,2025-02-03 15:34:31,2025-02-03 17:29:31,removed,false +M4368,W2074,granite-ops,sandbox,archived,false,A1036,Granite Holdings,smb,NA,US,U3323,kenji.hart@graniteholdings.example,Kenji Hart,Founder,executive,inactive,false,admin,2025-01-13 18:55:31,2025-01-13 21:04:31,removed,false +M4369,W2075,lighthouse-core,prod,active,true,A1037,Lighthouse Network,enterprise,EMEA,UK,U3324,isla.meyer@lighthousenetwork.example,Isla Meyer,Revenue Operations Manager,sales,active,true,owner,2024-12-28 05:48:43,2024-12-28 07:54:43,active,true +M4370,W2075,lighthouse-core,prod,active,true,A1037,Lighthouse Network,enterprise,EMEA,UK,U3325,hannah.brooks@lighthousenetwork.example,Hannah Brooks,Demand Gen Manager,marketing,active,true,editor,2024-12-05 09:22:43,2024-12-05 10:04:43,active,true +M4371,W2076,lighthouse-ops,prod,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3325,hannah.brooks@lighthousenetwork.example,Hannah Brooks,Demand Gen Manager,marketing,active,true,editor,2024-12-05 09:01:43,2024-12-05 10:00:43,active,true +M4372,W2075,lighthouse-core,prod,active,true,A1037,Lighthouse Network,enterprise,EMEA,UK,U3326,hannah.meyer@lighthousenetwork.example,Hannah Meyer,Marketing Operations Lead,marketing,active,true,viewer,2024-12-17 13:15:43,2024-12-17 14:52:43,active,true +M4373,W2078,lighthouse-marketing,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3327,arjun.patel@lighthousenetwork.example,Arjun Patel,Revenue Operations Manager,sales,active,true,viewer,2024-12-27 08:31:43,2024-12-27 08:41:43,active,true +M4374,W2075,lighthouse-core,prod,active,true,A1037,Lighthouse Network,enterprise,EMEA,UK,U3327,arjun.patel@lighthousenetwork.example,Arjun Patel,Revenue Operations Manager,sales,active,true,editor,2024-12-27 08:45:43,2024-12-27 11:45:43,active,true +M4375,W2077,lighthouse-finance,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3328,lina.kim@lighthousenetwork.example,Lina Kim,Sales Analyst,sales,active,true,editor,2024-12-30 06:14:43,2024-12-30 07:29:43,active,true +M4376,W2075,lighthouse-core,prod,active,true,A1037,Lighthouse Network,enterprise,EMEA,UK,U3328,lina.kim@lighthousenetwork.example,Lina Kim,Sales Analyst,sales,active,true,editor,2024-12-30 05:31:43,2024-12-30 05:56:43,active,true +M4377,W2078,lighthouse-marketing,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3329,mei.park@lighthousenetwork.example,Mei Park,Demand Gen Manager,marketing,active,true,viewer,2025-01-01 12:57:43,2025-01-01 14:08:43,active,true +M4378,W2076,lighthouse-ops,prod,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3330,mei.meyer@lighthousenetwork.example,Mei Meyer,Product Manager,product,active,true,viewer,2025-01-07 06:39:43,2025-01-07 08:00:43,active,true +M4379,W2077,lighthouse-finance,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3330,mei.meyer@lighthousenetwork.example,Mei Meyer,Product Manager,product,active,true,editor,2025-01-07 07:01:43,2025-01-07 07:56:43,active,true +M4380,W2078,lighthouse-marketing,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3331,sofia.grant@lighthousenetwork.example,Sofia Grant,Revenue Operations Manager,sales,active,true,editor,2024-12-22 08:42:43,2024-12-22 09:28:43,active,true +M4381,W2078,lighthouse-marketing,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3332,aisha.lopez@lighthousenetwork.example,Aisha Lopez,Analytics Engineer,data,active,true,editor,2024-12-24 07:33:43,2024-12-24 07:40:43,active,true +M4382,W2076,lighthouse-ops,prod,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3333,ben.brooks@lighthousenetwork.example,Ben Brooks,Analytics Manager,analytics,active,true,admin,2024-12-31 13:04:43,2024-12-31 13:46:43,active,true +M4383,W2077,lighthouse-finance,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3334,alma.saeed@lighthousenetwork.example,Alma Saeed,Marketing Operations Lead,marketing,active,true,viewer,2024-12-28 05:49:43,2024-12-28 07:15:43,active,true +M4384,W2075,lighthouse-core,prod,active,true,A1037,Lighthouse Network,enterprise,EMEA,UK,U3335,kai.nash@lighthousenetwork.example,Kai Nash,Revenue Operations Manager,sales,inactive,false,admin,2024-12-17 09:04:43,2024-12-17 11:16:43,active,true +M4385,W2075,lighthouse-core,prod,active,true,A1037,Lighthouse Network,enterprise,EMEA,UK,U3336,derek.meyer@lighthousenetwork.example,Derek Meyer,Demand Gen Manager,marketing,active,true,viewer,2024-12-30 05:49:43,2024-12-30 08:07:43,active,true +M4386,W2075,lighthouse-core,prod,active,true,A1037,Lighthouse Network,enterprise,EMEA,UK,U3337,owen.alvarez@lighthousenetwork.example,Owen Alvarez,Marketing Operations Lead,marketing,active,true,viewer,2025-01-07 09:33:43,2025-01-07 10:10:43,active,true +M4387,W2078,lighthouse-marketing,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3338,olivia.kim@lighthousenetwork.example,Olivia Kim,Insights Lead,analytics,inactive,false,viewer,2024-12-13 06:18:43,2024-12-13 07:18:43,removed,false +M4388,W2076,lighthouse-ops,prod,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3339,sofia.hart@lighthousenetwork.example,Sofia Hart,Technical Program Manager,product,inactive,false,editor,2024-11-27 10:01:43,2024-11-27 12:39:43,removed,false +M4389,W2077,lighthouse-finance,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3340,elena.hill@lighthousenetwork.example,Elena Hill,Controller,finance,active,true,editor,2024-12-29 05:09:43,2024-12-29 05:17:43,active,true +M4390,W2078,lighthouse-marketing,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3340,elena.hill@lighthousenetwork.example,Elena Hill,Controller,finance,active,true,viewer,2024-12-29 05:35:43,2024-12-29 07:13:43,active,true +M4391,W2077,lighthouse-finance,sandbox,active,false,A1037,Lighthouse Network,enterprise,EMEA,UK,U3341,daniel.ng@lighthousenetwork.example,Daniel Ng,Operations Director,operations,active,true,viewer,2024-12-29 10:31:43,2024-12-29 11:07:43,active,true +M4392,W2079,river-core,prod,active,true,A1038,River Systems,smb,APAC,AU,U3342,luis.ward@riversystems.example,Luis Ward,Founder,executive,active,true,owner,2024-11-23 09:38:31,2024-11-23 11:50:31,active,true +M4393,W2080,river-ops,prod,active,false,A1038,River Systems,smb,APAC,AU,U3343,nina.keller@riversystems.example,Nina Keller,Demand Gen Manager,marketing,active,true,editor,2024-12-14 14:21:31,2024-12-14 16:44:31,active,true +M4394,W2080,river-ops,prod,active,false,A1038,River Systems,smb,APAC,AU,U3344,ivy.khan@riversystems.example,Ivy Khan,Analytics Engineer,data,active,true,editor,2024-12-31 10:53:31,2024-12-31 11:43:31,active,true +M4395,W2080,river-ops,prod,active,false,A1038,River Systems,smb,APAC,AU,U3345,mila.keller@riversystems.example,Mila Keller,Data Platform Manager,data,inactive,false,editor,2024-11-22 13:58:31,2024-11-22 15:54:31,removed,false +M4396,W2079,river-core,prod,active,true,A1038,River Systems,smb,APAC,AU,U3345,mila.keller@riversystems.example,Mila Keller,Data Platform Manager,data,inactive,false,editor,2024-11-22 13:19:31,2024-11-22 16:12:31,removed,false +M4397,W2080,river-ops,prod,active,false,A1038,River Systems,smb,APAC,AU,U3346,jonas.petrova@riversystems.example,Jonas Petrova,Analytics Manager,analytics,active,true,viewer,2024-12-12 14:12:31,2024-12-12 14:42:31,active,true +M4398,W2081,nova-core,prod,active,true,A1039,Nova Group,smb,EMEA,FR,U3347,aisha.nash@novagroup.example,Aisha Nash,Marketing Operations Lead,marketing,active,true,owner,2025-03-04 01:13:48,2025-03-04 01:44:48,active,true +M4399,W2081,nova-core,prod,active,true,A1039,Nova Group,smb,EMEA,FR,U3348,peter.singh@novagroup.example,Peter Singh,Founder,executive,active,true,viewer,2025-03-14 00:06:48,2025-03-14 01:56:48,active,true +M4400,W2081,nova-core,prod,active,true,A1039,Nova Group,smb,EMEA,FR,U3349,maya.morgan@novagroup.example,Maya Morgan,Operations Manager,operations,active,true,editor,2025-02-19 20:48:48,2025-02-19 23:32:48,active,true +M4401,W2081,nova-core,prod,active,true,A1039,Nova Group,smb,EMEA,FR,U3350,sofia.shah@novagroup.example,Sofia Shah,Finance Manager,finance,active,true,viewer,2025-02-20 20:20:48,2025-02-20 22:53:48,active,true +M4402,W2081,nova-core,prod,active,true,A1039,Nova Group,smb,EMEA,FR,U3351,lena.brooks@novagroup.example,Lena Brooks,Product Manager,product,active,true,viewer,2025-02-24 16:35:48,2025-02-24 18:27:48,active,true +M4403,W2081,nova-core,prod,active,true,A1039,Nova Group,smb,EMEA,FR,U3352,helena.rossi@novagroup.example,Helena Rossi,VP Data,executive,active,true,editor,2025-02-14 19:26:48,2025-02-14 21:52:48,active,true +M4404,W2081,nova-core,prod,active,true,A1039,Nova Group,smb,EMEA,FR,U3353,tomas.tan@novagroup.example,Tomas Tan,CFO,executive,active,true,admin,2025-03-06 20:35:48,2025-03-06 22:40:48,active,true +M4405,W2082,harbor-core,prod,active,true,A1040,Harbor Collective,mid_market,APAC,SG,U3354,helena.shah@harborcollective.example,Helena Shah,VP Data,executive,active,true,owner,2025-01-04 14:41:20,2025-01-04 16:15:20,active,true +M4406,W2083,harbor-ops,sandbox,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3355,zoe.ng@harborcollective.example,Zoe Ng,Analytics Manager,analytics,active,true,editor,2024-12-16 16:26:20,2024-12-16 18:12:20,active,true +M4407,W2082,harbor-core,prod,active,true,A1040,Harbor Collective,mid_market,APAC,SG,U3356,owen.cole@harborcollective.example,Owen Cole,Analytics Manager,analytics,active,true,viewer,2025-01-12 12:52:20,2025-01-12 14:09:20,active,true +M4408,W2083,harbor-ops,sandbox,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3357,elena.dubois@harborcollective.example,Elena Dubois,Controller,finance,active,true,viewer,2024-12-20 15:09:20,2024-12-20 17:00:20,active,true +M4409,W2084,harbor-finance,prod,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3358,tomas.keller@harborcollective.example,Tomas Keller,Data Platform Manager,data,active,true,editor,2025-01-17 12:03:20,2025-01-17 12:16:20,active,true +M4410,W2082,harbor-core,prod,active,true,A1040,Harbor Collective,mid_market,APAC,SG,U3359,noah.reed@harborcollective.example,Noah Reed,Data Platform Manager,data,inactive,false,admin,2024-12-24 19:09:20,2024-12-24 21:26:20,active,true +M4411,W2084,harbor-finance,prod,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3360,peter.fischer@harborcollective.example,Peter Fischer,Revenue Operations Manager,sales,active,true,editor,2025-01-14 16:26:20,2025-01-14 18:53:20,active,true +M4412,W2083,harbor-ops,sandbox,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3360,peter.fischer@harborcollective.example,Peter Fischer,Revenue Operations Manager,sales,active,true,editor,2025-01-14 16:06:20,2025-01-14 17:00:20,active,true +M4413,W2082,harbor-core,prod,active,true,A1040,Harbor Collective,mid_market,APAC,SG,U3361,sofia.petrova@harborcollective.example,Sofia Petrova,Sales Analyst,sales,active,true,viewer,2025-01-09 12:40:20,2025-01-09 15:27:20,active,true +M4414,W2083,harbor-ops,sandbox,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3362,mila.rahman@harborcollective.example,Mila Rahman,FP&A Analyst,finance,active,true,viewer,2024-12-18 13:50:20,2024-12-18 14:35:20,active,true +M4415,W2084,harbor-finance,prod,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3362,mila.rahman@harborcollective.example,Mila Rahman,FP&A Analyst,finance,active,true,viewer,2024-12-18 14:01:20,2024-12-18 15:05:20,active,true +M4416,W2084,harbor-finance,prod,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3363,peter.turner@harborcollective.example,Peter Turner,Founder,executive,active,true,viewer,2024-12-22 18:36:20,2024-12-22 21:08:20,active,true +M4417,W2083,harbor-ops,sandbox,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3364,derek.patel@harborcollective.example,Derek Patel,Data Platform Manager,data,inactive,false,viewer,2024-12-21 20:23:20,2024-12-21 22:49:20,removed,false +M4418,W2083,harbor-ops,sandbox,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3365,ava.desai@harborcollective.example,Ava Desai,Data Platform Manager,data,active,true,editor,2024-12-28 13:55:20,2024-12-28 16:40:20,active,true +M4419,W2084,harbor-finance,prod,active,false,A1040,Harbor Collective,mid_market,APAC,SG,U3365,ava.desai@harborcollective.example,Ava Desai,Data Platform Manager,data,active,true,viewer,2024-12-28 12:18:20,2024-12-28 14:54:20,active,true +M4420,W2085,cedar-core,prod,active,true,A1041,Cedar Logistics,mid_market,EMEA,NL,U3366,evan.lopez@cedarlogistics.example,Evan Lopez,FP&A Analyst,finance,active,true,owner,2024-09-15 00:02:41,2024-09-15 02:45:41,active,true +M4421,W2087,cedar-finance,prod,active,false,A1041,Cedar Logistics,mid_market,EMEA,NL,U3367,tomas.saeed@cedarlogistics.example,Tomas Saeed,Analytics Manager,analytics,active,true,editor,2024-08-19 00:52:41,2024-08-19 02:34:41,active,true +M4422,W2085,cedar-core,prod,active,true,A1041,Cedar Logistics,mid_market,EMEA,NL,U3368,marta.rossi@cedarlogistics.example,Marta Rossi,Product Manager,product,active,true,viewer,2024-09-05 18:44:41,2024-09-05 21:30:41,active,true +M4423,W2087,cedar-finance,prod,active,false,A1041,Cedar Logistics,mid_market,EMEA,NL,U3368,marta.rossi@cedarlogistics.example,Marta Rossi,Product Manager,product,active,true,viewer,2024-09-05 18:26:41,2024-09-05 20:02:41,active,true +M4424,W2085,cedar-core,prod,active,true,A1041,Cedar Logistics,mid_market,EMEA,NL,U3369,tomas.hart@cedarlogistics.example,Tomas Hart,BI Analyst,analytics,active,true,viewer,2024-08-13 19:41:41,2024-08-13 22:03:41,active,true +M4425,W2085,cedar-core,prod,active,true,A1041,Cedar Logistics,mid_market,EMEA,NL,U3370,olivia.patel@cedarlogistics.example,Olivia Patel,Sales Analyst,sales,active,true,viewer,2024-08-12 00:17:41,2024-08-12 01:28:41,active,true +M4426,W2087,cedar-finance,prod,active,false,A1041,Cedar Logistics,mid_market,EMEA,NL,U3371,daniel.rahman@cedarlogistics.example,Daniel Rahman,Revenue Operations Manager,sales,active,true,admin,2024-08-19 16:45:41,2024-08-19 16:55:41,active,true +M4427,W2085,cedar-core,prod,active,true,A1041,Cedar Logistics,mid_market,EMEA,NL,U3371,daniel.rahman@cedarlogistics.example,Daniel Rahman,Revenue Operations Manager,sales,active,true,viewer,2024-08-19 16:44:41,2024-08-19 19:17:41,active,true +M4428,W2085,cedar-core,prod,active,true,A1041,Cedar Logistics,mid_market,EMEA,NL,U3372,aisha.lewis@cedarlogistics.example,Aisha Lewis,Data Platform Manager,data,active,true,editor,2024-08-13 17:52:41,2024-08-13 18:33:41,active,true +M4429,W2086,cedar-ops,sandbox,active,false,A1041,Cedar Logistics,mid_market,EMEA,NL,U3373,mateo.morgan@cedarlogistics.example,Mateo Morgan,Data Platform Manager,data,inactive,false,editor,2024-09-15 21:02:41,2024-09-15 22:39:41,active,true +M4430,W2085,cedar-core,prod,active,true,A1041,Cedar Logistics,mid_market,EMEA,NL,U3373,mateo.morgan@cedarlogistics.example,Mateo Morgan,Data Platform Manager,data,inactive,false,viewer,2024-09-15 21:39:41,2024-09-15 23:24:41,removed,false +M4431,W2086,cedar-ops,sandbox,active,false,A1041,Cedar Logistics,mid_market,EMEA,NL,U3374,leo.turner@cedarlogistics.example,Leo Turner,Finance Manager,finance,active,true,admin,2024-08-30 19:56:41,2024-08-30 20:54:41,active,true +M4432,W2087,cedar-finance,prod,active,false,A1041,Cedar Logistics,mid_market,EMEA,NL,U3375,kenji.hart@cedarlogistics.example,Kenji Hart,BI Analyst,analytics,inactive,false,editor,2024-09-16 21:44:41,2024-09-16 23:44:41,active,true +M4433,W2085,cedar-core,prod,active,true,A1041,Cedar Logistics,mid_market,EMEA,NL,U3376,zoe.kim@cedarlogistics.example,Zoe Kim,Revenue Operations Manager,sales,active,true,editor,2024-08-10 16:41:41,2024-08-10 19:11:41,active,true +M4434,W2087,cedar-finance,prod,active,false,A1041,Cedar Logistics,mid_market,EMEA,NL,U3377,kai.shah@cedarlogistics.example,Kai Shah,Operations Director,operations,active,true,viewer,2024-09-03 17:21:41,2024-09-03 19:29:41,active,true +M4435,W2086,cedar-ops,sandbox,active,false,A1041,Cedar Logistics,mid_market,EMEA,NL,U3377,kai.shah@cedarlogistics.example,Kai Shah,Operations Director,operations,active,true,viewer,2024-09-03 16:47:41,2024-09-03 19:25:41,active,true +M4436,W2088,northwind-core,prod,active,true,A1042,Northwind Labs,mid_market,APAC,AU,U3378,olivia.petrova@northwindlabs.example,Olivia Petrova,Product Manager,product,active,true,owner,2024-10-27 19:30:42,2024-10-27 21:48:42,active,true +M4437,W2090,northwind-finance,prod,active,false,A1042,Northwind Labs,mid_market,APAC,AU,U3379,ivy.saeed@northwindlabs.example,Ivy Saeed,Sales Analyst,sales,active,true,editor,2024-09-21 18:42:42,2024-09-21 18:52:42,active,true +M4438,W2088,northwind-core,prod,active,true,A1042,Northwind Labs,mid_market,APAC,AU,U3379,ivy.saeed@northwindlabs.example,Ivy Saeed,Sales Analyst,sales,active,true,viewer,2024-09-21 18:44:42,2024-09-21 21:00:42,active,true +M4439,W2088,northwind-core,prod,active,true,A1042,Northwind Labs,mid_market,APAC,AU,U3380,leo.kim@northwindlabs.example,Leo Kim,Founder,executive,active,true,viewer,2024-10-16 13:47:42,2024-10-16 15:15:42,active,true +M4440,W2089,northwind-ops,sandbox,active,false,A1042,Northwind Labs,mid_market,APAC,AU,U3380,leo.kim@northwindlabs.example,Leo Kim,Founder,executive,active,true,viewer,2024-10-16 13:33:42,2024-10-16 14:34:42,active,true +M4441,W2090,northwind-finance,prod,active,false,A1042,Northwind Labs,mid_market,APAC,AU,U3381,zoe.petrova@northwindlabs.example,Zoe Petrova,Insights Lead,analytics,active,true,viewer,2024-10-23 16:49:42,2024-10-23 17:45:42,active,true +M4442,W2089,northwind-ops,sandbox,active,false,A1042,Northwind Labs,mid_market,APAC,AU,U3381,zoe.petrova@northwindlabs.example,Zoe Petrova,Insights Lead,analytics,active,true,editor,2024-10-23 17:39:42,2024-10-23 19:13:42,active,true +M4443,W2089,northwind-ops,sandbox,active,false,A1042,Northwind Labs,mid_market,APAC,AU,U3382,maya.saeed@northwindlabs.example,Maya Saeed,Workflow Analyst,operations,active,true,viewer,2024-09-19 16:45:42,2024-09-19 18:32:42,active,true +M4444,W2088,northwind-core,prod,active,true,A1042,Northwind Labs,mid_market,APAC,AU,U3383,alma.price@northwindlabs.example,Alma Price,Founder,executive,active,true,editor,2024-09-28 17:00:42,2024-09-28 17:31:42,active,true +M4445,W2090,northwind-finance,prod,active,false,A1042,Northwind Labs,mid_market,APAC,AU,U3383,alma.price@northwindlabs.example,Alma Price,Founder,executive,active,true,editor,2024-09-28 16:36:42,2024-09-28 19:11:42,active,true +M4446,W2088,northwind-core,prod,active,true,A1042,Northwind Labs,mid_market,APAC,AU,U3384,nina.nash@northwindlabs.example,Nina Nash,Sales Analyst,sales,inactive,false,viewer,2024-10-28 14:48:42,2024-10-28 16:43:42,active,true +M4447,W2089,northwind-ops,sandbox,active,false,A1042,Northwind Labs,mid_market,APAC,AU,U3385,kai.turner@northwindlabs.example,Kai Turner,FP&A Analyst,finance,active,true,editor,2024-10-24 19:10:42,2024-10-24 21:54:42,active,true +M4448,W2088,northwind-core,prod,active,true,A1042,Northwind Labs,mid_market,APAC,AU,U3386,lena.cole@northwindlabs.example,Lena Cole,Revenue Operations Manager,sales,active,true,viewer,2024-10-31 11:38:42,2024-10-31 13:13:42,active,true +M4449,W2089,northwind-ops,sandbox,active,false,A1042,Northwind Labs,mid_market,APAC,AU,U3387,aisha.hill@northwindlabs.example,Aisha Hill,Demand Gen Manager,marketing,active,true,viewer,2024-10-10 18:53:42,2024-10-10 19:40:42,active,true +M4450,W2088,northwind-core,prod,active,true,A1042,Northwind Labs,mid_market,APAC,AU,U3388,hannah.rahman@northwindlabs.example,Hannah Rahman,Revenue Operations Manager,sales,active,true,viewer,2024-09-24 12:58:42,2024-09-24 14:18:42,active,true +M4451,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3389,elena.keller@lighthouseworks.example,Elena Keller,BI Analyst,analytics,active,true,owner,2024-11-13 13:44:18,2024-11-13 16:34:18,active,true +M4452,W2093,lighthouse-finance,prod,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3390,lina.morgan@lighthouseworks.example,Lina Morgan,Insights Lead,analytics,inactive,false,editor,2024-11-28 13:07:18,2024-11-28 13:59:18,removed,false +M4453,W2092,lighthouse-ops,sandbox,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3390,lina.morgan@lighthouseworks.example,Lina Morgan,Insights Lead,analytics,inactive,false,editor,2024-11-28 13:52:18,2024-11-28 14:52:18,removed,false +M4454,W2092,lighthouse-ops,sandbox,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3391,tara.park@lighthouseworks.example,Tara Park,Data Engineer,data,active,true,viewer,2024-12-02 20:33:18,2024-12-02 20:40:18,active,true +M4455,W2093,lighthouse-finance,prod,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3391,tara.park@lighthouseworks.example,Tara Park,Data Engineer,data,active,true,viewer,2024-12-02 20:30:18,2024-12-02 21:59:18,active,true +M4456,W2094,lighthouse-marketing,prod,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3392,ben.hart@lighthouseworks.example,Ben Hart,Marketing Operations Lead,marketing,active,true,editor,2024-12-03 13:32:18,2024-12-03 16:00:18,active,true +M4457,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3393,maya.rahman@lighthouseworks.example,Maya Rahman,Operations Manager,operations,active,true,editor,2024-11-15 17:54:18,2024-11-15 18:54:18,active,true +M4458,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3394,helena.tan@lighthouseworks.example,Helena Tan,Data Platform Manager,data,inactive,false,editor,2024-12-05 13:08:18,2024-12-05 16:04:18,removed,false +M4459,W2094,lighthouse-marketing,prod,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3395,arjun.cole@lighthouseworks.example,Arjun Cole,VP Data,executive,active,true,viewer,2024-11-04 15:17:18,2024-11-04 16:43:18,active,true +M4460,W2092,lighthouse-ops,sandbox,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3396,lena.chen@lighthouseworks.example,Lena Chen,BI Analyst,analytics,active,true,editor,2024-11-16 20:58:18,2024-11-16 21:14:18,active,true +M4461,W2093,lighthouse-finance,prod,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3397,sofia.meyer@lighthouseworks.example,Sofia Meyer,Founder,executive,active,true,editor,2024-11-22 16:45:18,2024-11-22 18:13:18,active,true +M4462,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3397,sofia.meyer@lighthouseworks.example,Sofia Meyer,Founder,executive,active,true,viewer,2024-11-22 16:46:18,2024-11-22 18:29:18,active,true +M4463,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3398,lena.lopez@lighthouseworks.example,Lena Lopez,Technical Program Manager,product,active,true,editor,2024-11-26 19:12:18,2024-11-26 21:44:18,active,true +M4464,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3399,samir.ward@lighthouseworks.example,Samir Ward,Product Manager,product,active,true,viewer,2024-11-20 13:14:18,2024-11-20 15:02:18,active,true +M4465,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3400,zoe.patel@lighthouseworks.example,Zoe Patel,CFO,executive,active,true,viewer,2024-11-12 21:56:18,2024-11-12 23:27:18,active,true +M4466,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3401,nina.alvarez@lighthouseworks.example,Nina Alvarez,BI Analyst,analytics,active,true,admin,2024-11-15 17:29:18,2024-11-15 18:51:18,active,true +M4467,W2093,lighthouse-finance,prod,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3401,nina.alvarez@lighthouseworks.example,Nina Alvarez,BI Analyst,analytics,active,true,editor,2024-11-15 18:26:18,2024-11-15 19:52:18,active,true +M4468,W2094,lighthouse-marketing,prod,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3402,leo.khan@lighthouseworks.example,Leo Khan,COO,executive,active,true,admin,2024-11-26 16:58:18,2024-11-26 19:39:18,active,true +M4469,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3403,mei.rossi@lighthouseworks.example,Mei Rossi,Marketing Operations Lead,marketing,active,true,editor,2024-11-05 17:03:18,2024-11-05 19:14:18,active,true +M4470,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3404,victor.cole@lighthouseworks.example,Victor Cole,Finance Manager,finance,active,true,viewer,2024-10-28 14:48:18,2024-10-28 15:00:18,active,true +M4471,W2092,lighthouse-ops,sandbox,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3405,tara.chen@lighthouseworks.example,Tara Chen,Analytics Engineer,data,active,true,admin,2024-11-13 18:20:18,2024-11-13 20:16:18,active,true +M4472,W2091,lighthouse-core,prod,active,true,A1043,Lighthouse Works,enterprise,APAC,SG,U3405,tara.chen@lighthouseworks.example,Tara Chen,Analytics Engineer,data,active,true,viewer,2024-11-13 18:33:18,2024-11-13 19:21:18,active,true +M4473,W2092,lighthouse-ops,sandbox,active,false,A1043,Lighthouse Works,enterprise,APAC,SG,U3406,evan.rossi@lighthouseworks.example,Evan Rossi,Controller,finance,active,true,viewer,2024-11-07 18:17:18,2024-11-07 20:39:18,active,true +M4474,W2095,summit-core,prod,active,true,A1044,Summit Holdings,smb,EMEA,NL,U3407,hannah.saeed@summitholdings.example,Hannah Saeed,Sales Analyst,sales,active,true,owner,2024-11-03 00:30:29,2024-11-03 00:48:29,active,true +M4475,W2095,summit-core,prod,active,true,A1044,Summit Holdings,smb,EMEA,NL,U3408,kenji.ward@summitholdings.example,Kenji Ward,Workflow Analyst,operations,active,true,viewer,2024-11-02 07:25:29,2024-11-02 07:58:29,active,true +M4476,W2095,summit-core,prod,active,true,A1044,Summit Holdings,smb,EMEA,NL,U3409,maya.reed@summitholdings.example,Maya Reed,Revenue Operations Manager,sales,active,true,viewer,2024-10-20 05:21:29,2024-10-20 06:33:29,active,true +M4477,W2095,summit-core,prod,active,true,A1044,Summit Holdings,smb,EMEA,NL,U3410,kenji.lopez@summitholdings.example,Kenji Lopez,Demand Gen Manager,marketing,active,true,viewer,2024-10-30 03:49:29,2024-10-30 05:31:29,active,true +M4478,W2095,summit-core,prod,active,true,A1044,Summit Holdings,smb,EMEA,NL,U3411,ivy.reed@summitholdings.example,Ivy Reed,Sales Analyst,sales,active,true,viewer,2024-10-23 04:32:29,2024-10-23 05:12:29,active,true +M4479,W2096,nova-core,prod,active,true,A1045,Nova Holdings,enterprise,NA,CA,U3412,lena.patel@novaholdings.example,Lena Patel,Workflow Analyst,operations,active,true,owner,2024-11-22 10:49:10,2024-11-22 12:51:10,active,true +M4480,W2096,nova-core,prod,active,true,A1045,Nova Holdings,enterprise,NA,CA,U3413,mei.shah@novaholdings.example,Mei Shah,FP&A Analyst,finance,active,true,admin,2024-11-05 09:27:10,2024-11-05 12:01:10,active,true +M4481,W2099,nova-marketing,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3414,mateo.nash@novaholdings.example,Mateo Nash,CFO,executive,active,true,viewer,2024-11-24 11:57:10,2024-11-24 14:17:10,active,true +M4482,W2097,nova-ops,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3415,hannah.morgan@novaholdings.example,Hannah Morgan,Workflow Analyst,operations,active,true,editor,2024-11-15 08:28:10,2024-11-15 09:55:10,active,true +M4483,W2099,nova-marketing,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3416,leo.hill@novaholdings.example,Leo Hill,Technical Program Manager,product,active,true,editor,2024-11-21 13:26:10,2024-11-21 13:52:10,active,true +M4484,W2098,nova-finance,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3417,nina.cole@novaholdings.example,Nina Cole,Analytics Engineer,data,active,true,editor,2024-11-12 12:39:10,2024-11-12 15:29:10,active,true +M4485,W2097,nova-ops,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3418,mei.nash@novaholdings.example,Mei Nash,FP&A Analyst,finance,active,true,viewer,2024-11-27 13:56:10,2024-11-27 14:55:10,active,true +M4486,W2098,nova-finance,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3418,mei.nash@novaholdings.example,Mei Nash,FP&A Analyst,finance,active,true,viewer,2024-11-27 14:02:10,2024-11-27 16:58:10,active,true +M4487,W2099,nova-marketing,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3419,owen.petrova@novaholdings.example,Owen Petrova,Sales Analyst,sales,active,true,viewer,2024-12-04 10:20:10,2024-12-04 11:18:10,active,true +M4488,W2096,nova-core,prod,active,true,A1045,Nova Holdings,enterprise,NA,CA,U3419,owen.petrova@novaholdings.example,Owen Petrova,Sales Analyst,sales,active,true,editor,2024-12-04 09:19:10,2024-12-04 11:55:10,active,true +M4489,W2098,nova-finance,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3420,samir.price@novaholdings.example,Samir Price,Revenue Operations Manager,sales,active,true,viewer,2024-11-10 09:15:10,2024-11-10 11:29:10,active,true +M4490,W2096,nova-core,prod,active,true,A1045,Nova Holdings,enterprise,NA,CA,U3421,alma.meyer@novaholdings.example,Alma Meyer,Insights Lead,analytics,active,true,viewer,2024-12-16 14:14:10,2024-12-16 16:14:10,active,true +M4491,W2098,nova-finance,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3421,alma.meyer@novaholdings.example,Alma Meyer,Insights Lead,analytics,active,true,viewer,2024-12-16 13:12:10,2024-12-16 15:55:10,active,true +M4492,W2099,nova-marketing,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3422,derek.saeed@novaholdings.example,Derek Saeed,Technical Program Manager,product,active,true,editor,2024-11-15 10:42:10,2024-11-15 13:42:10,active,true +M4493,W2098,nova-finance,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3423,victor.lopez@novaholdings.example,Victor Lopez,Operations Director,operations,active,true,viewer,2024-11-15 14:50:10,2024-11-15 15:32:10,active,true +M4494,W2099,nova-marketing,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3424,leo.brooks@novaholdings.example,Leo Brooks,Analytics Engineer,data,active,true,viewer,2024-12-08 09:33:10,2024-12-08 09:42:10,active,true +M4495,W2099,nova-marketing,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3425,peter.petrova@novaholdings.example,Peter Petrova,Sales Analyst,sales,active,true,editor,2024-11-19 10:56:10,2024-11-19 12:56:10,active,true +M4496,W2098,nova-finance,prod,active,false,A1045,Nova Holdings,enterprise,NA,CA,U3425,peter.petrova@novaholdings.example,Peter Petrova,Sales Analyst,sales,active,true,viewer,2024-11-19 11:18:10,2024-11-19 12:30:10,active,true +M4497,W2100,pioneer-core,prod,active,true,A1046,Pioneer Solutions,smb,NA,CA,U3426,naomi.saeed@pioneersolutions.example,Naomi Saeed,Finance Manager,finance,active,true,owner,2024-10-19 15:09:12,2024-10-19 17:34:12,active,true +M4498,W2100,pioneer-core,prod,active,true,A1046,Pioneer Solutions,smb,NA,CA,U3427,leo.ward@pioneersolutions.example,Leo Ward,Insights Lead,analytics,inactive,false,editor,2024-11-14 13:40:12,2024-11-14 14:23:12,removed,false +M4499,W2100,pioneer-core,prod,active,true,A1046,Pioneer Solutions,smb,NA,CA,U3428,helena.ward@pioneersolutions.example,Helena Ward,Sales Analyst,sales,active,true,editor,2024-11-08 19:01:12,2024-11-08 20:58:12,active,true +M4500,W2100,pioneer-core,prod,active,true,A1046,Pioneer Solutions,smb,NA,CA,U3429,elena.park@pioneersolutions.example,Elena Park,Analytics Manager,analytics,active,true,editor,2024-11-12 16:01:12,2024-11-12 18:52:12,active,true +M4501,W2100,pioneer-core,prod,active,true,A1046,Pioneer Solutions,smb,NA,CA,U3430,maya.saeed@pioneersolutions.example,Maya Saeed,FP&A Analyst,finance,active,true,viewer,2024-11-04 18:13:12,2024-11-04 19:07:12,active,true +M4502,W2101,orchid-core,prod,active,true,A1047,Orchid Global,enterprise,APAC,AU,U3431,leo.singh@orchidglobal.example,Leo Singh,Analytics Engineer,data,active,true,owner,2024-11-02 02:27:00,2024-11-02 03:20:00,active,true +M4503,W2102,orchid-ops,sandbox,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3432,derek.tan@orchidglobal.example,Derek Tan,Sales Analyst,sales,active,true,admin,2024-11-09 01:47:00,2024-11-09 03:58:00,active,true +M4504,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3433,lina.kim@orchidglobal.example,Lina Kim,Demand Gen Manager,marketing,active,true,editor,2024-10-20 04:42:00,2024-10-20 05:50:00,active,true +M4505,W2101,orchid-core,prod,active,true,A1047,Orchid Global,enterprise,APAC,AU,U3434,mila.dubois@orchidglobal.example,Mila Dubois,Insights Lead,analytics,active,true,editor,2024-11-18 02:51:00,2024-11-18 04:04:00,active,true +M4506,W2102,orchid-ops,sandbox,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3434,mila.dubois@orchidglobal.example,Mila Dubois,Insights Lead,analytics,active,true,viewer,2024-11-18 03:34:00,2024-11-18 03:55:00,active,true +M4507,W2102,orchid-ops,sandbox,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3435,kenji.lewis@orchidglobal.example,Kenji Lewis,BI Analyst,analytics,active,true,editor,2024-11-24 05:33:00,2024-11-24 07:21:00,active,true +M4508,W2102,orchid-ops,sandbox,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3436,mila.rossi@orchidglobal.example,Mila Rossi,Demand Gen Manager,marketing,active,true,editor,2024-10-16 01:01:00,2024-10-16 01:58:00,active,true +M4509,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3436,mila.rossi@orchidglobal.example,Mila Rossi,Demand Gen Manager,marketing,active,true,editor,2024-10-16 01:43:00,2024-10-16 02:40:00,active,true +M4510,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3437,luis.sato@orchidglobal.example,Luis Sato,Operations Manager,operations,active,true,editor,2024-11-01 00:31:00,2024-11-01 00:36:00,active,true +M4511,W2101,orchid-core,prod,active,true,A1047,Orchid Global,enterprise,APAC,AU,U3438,maya.patel@orchidglobal.example,Maya Patel,Operations Director,operations,active,true,editor,2024-10-15 05:45:00,2024-10-15 07:52:00,active,true +M4512,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3439,jonas.rossi@orchidglobal.example,Jonas Rossi,CFO,executive,active,true,editor,2024-11-27 23:34:00,2024-11-28 00:22:00,active,true +M4513,W2102,orchid-ops,sandbox,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3440,peter.brooks@orchidglobal.example,Peter Brooks,Analytics Manager,analytics,active,true,viewer,2024-10-19 06:09:00,2024-10-19 08:10:00,active,true +M4514,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3440,peter.brooks@orchidglobal.example,Peter Brooks,Analytics Manager,analytics,active,true,editor,2024-10-19 07:46:00,2024-10-19 07:54:00,active,true +M4515,W2102,orchid-ops,sandbox,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3441,nina.kim@orchidglobal.example,Nina Kim,Data Engineer,data,active,true,editor,2024-11-29 01:12:00,2024-11-29 01:36:00,active,true +M4516,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3441,nina.kim@orchidglobal.example,Nina Kim,Data Engineer,data,active,true,viewer,2024-11-29 02:43:00,2024-11-29 05:41:00,active,true +M4517,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3442,victor.desai@orchidglobal.example,Victor Desai,Demand Gen Manager,marketing,active,true,editor,2024-10-21 08:04:00,2024-10-21 10:14:00,active,true +M4518,W2101,orchid-core,prod,active,true,A1047,Orchid Global,enterprise,APAC,AU,U3443,leo.kim@orchidglobal.example,Leo Kim,Analytics Manager,analytics,active,true,editor,2024-10-24 22:52:00,2024-10-25 01:51:00,active,true +M4519,W2102,orchid-ops,sandbox,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3443,leo.kim@orchidglobal.example,Leo Kim,Analytics Manager,analytics,active,true,viewer,2024-10-24 23:27:00,2024-10-25 00:30:00,active,true +M4520,W2101,orchid-core,prod,active,true,A1047,Orchid Global,enterprise,APAC,AU,U3444,mateo.grant@orchidglobal.example,Mateo Grant,Analytics Manager,analytics,active,true,viewer,2024-11-24 03:07:00,2024-11-24 05:17:00,active,true +M4521,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3444,mateo.grant@orchidglobal.example,Mateo Grant,Analytics Manager,analytics,active,true,editor,2024-11-24 02:30:00,2024-11-24 04:04:00,active,true +M4522,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3445,daniel.grant@orchidglobal.example,Daniel Grant,Demand Gen Manager,marketing,active,true,editor,2024-11-04 00:03:00,2024-11-04 01:38:00,active,true +M4523,W2102,orchid-ops,sandbox,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3446,helena.grant@orchidglobal.example,Helena Grant,Revenue Operations Manager,sales,active,true,viewer,2024-10-14 22:25:00,2024-10-15 01:19:00,active,true +M4524,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3447,leo.shah@orchidglobal.example,Leo Shah,Founder,executive,active,true,editor,2024-10-30 00:58:00,2024-10-30 03:46:00,active,true +M4525,W2101,orchid-core,prod,active,true,A1047,Orchid Global,enterprise,APAC,AU,U3448,mila.silva@orchidglobal.example,Mila Silva,Data Engineer,data,active,true,admin,2024-11-06 01:36:00,2024-11-06 04:29:00,active,true +M4526,W2101,orchid-core,prod,active,true,A1047,Orchid Global,enterprise,APAC,AU,U3449,marcus.lewis@orchidglobal.example,Marcus Lewis,Product Manager,product,active,true,editor,2024-11-04 07:18:00,2024-11-04 08:15:00,active,true +M4527,W2103,orchid-finance,prod,active,false,A1047,Orchid Global,enterprise,APAC,AU,U3449,marcus.lewis@orchidglobal.example,Marcus Lewis,Product Manager,product,active,true,viewer,2024-11-04 06:29:00,2024-11-04 06:56:00,active,true +M4528,W2104,orchid-core,prod,active,true,A1048,Orchid Capital,enterprise,APAC,NZ,U3450,owen.tan@orchidcapital.example,Owen Tan,Data Platform Manager,data,active,true,owner,2025-03-10 23:01:18,2025-03-11 00:42:18,active,true +M4529,W2106,orchid-finance,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3451,priya.rossi@orchidcapital.example,Priya Rossi,Technical Program Manager,product,active,true,admin,2025-03-21 01:38:18,2025-03-21 04:36:18,active,true +M4530,W2106,orchid-finance,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3452,isla.cole@orchidcapital.example,Isla Cole,CFO,executive,active,true,viewer,2025-03-04 02:06:18,2025-03-04 04:25:18,active,true +M4531,W2104,orchid-core,prod,active,true,A1048,Orchid Capital,enterprise,APAC,NZ,U3453,peter.park@orchidcapital.example,Peter Park,Analytics Manager,analytics,active,true,editor,2025-03-20 23:05:18,2025-03-21 00:34:18,active,true +M4532,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3454,sofia.kim@orchidcapital.example,Sofia Kim,Finance Manager,finance,active,true,editor,2025-03-26 00:23:18,2025-03-26 01:47:18,active,true +M4533,W2104,orchid-core,prod,active,true,A1048,Orchid Capital,enterprise,APAC,NZ,U3455,alma.keller@orchidcapital.example,Alma Keller,Revenue Operations Manager,sales,active,true,admin,2025-03-20 02:15:18,2025-03-20 04:56:18,active,true +M4534,W2104,orchid-core,prod,active,true,A1048,Orchid Capital,enterprise,APAC,NZ,U3456,mila.meyer@orchidcapital.example,Mila Meyer,CFO,executive,active,true,editor,2025-03-27 23:17:18,2025-03-28 00:50:18,active,true +M4535,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3457,tomas.desai@orchidcapital.example,Tomas Desai,Finance Manager,finance,active,true,admin,2025-02-16 21:59:18,2025-02-17 00:58:18,active,true +M4536,W2104,orchid-core,prod,active,true,A1048,Orchid Capital,enterprise,APAC,NZ,U3457,tomas.desai@orchidcapital.example,Tomas Desai,Finance Manager,finance,active,true,editor,2025-02-16 22:39:18,2025-02-17 00:57:18,active,true +M4537,W2106,orchid-finance,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3458,marcus.desai@orchidcapital.example,Marcus Desai,Sales Analyst,sales,active,true,editor,2025-03-19 23:22:18,2025-03-19 23:43:18,active,true +M4538,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3458,marcus.desai@orchidcapital.example,Marcus Desai,Sales Analyst,sales,active,true,viewer,2025-03-19 22:16:18,2025-03-19 23:36:18,active,true +M4539,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3459,ben.keller@orchidcapital.example,Ben Keller,Data Engineer,data,inactive,false,admin,2025-03-28 01:43:18,2025-03-28 02:19:18,removed,false +M4540,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3460,hannah.fischer@orchidcapital.example,Hannah Fischer,Sales Analyst,sales,active,true,admin,2025-03-31 18:12:18,2025-03-31 18:17:18,active,true +M4541,W2104,orchid-core,prod,active,true,A1048,Orchid Capital,enterprise,APAC,NZ,U3461,mateo.desai@orchidcapital.example,Mateo Desai,Operations Manager,operations,inactive,false,editor,2025-02-18 22:22:18,2025-02-19 00:35:18,removed,false +M4542,W2106,orchid-finance,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3462,zoe.nash@orchidcapital.example,Zoe Nash,Revenue Operations Manager,sales,active,true,admin,2025-02-27 03:40:18,2025-02-27 04:35:18,active,true +M4543,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3462,zoe.nash@orchidcapital.example,Zoe Nash,Revenue Operations Manager,sales,active,true,viewer,2025-02-27 03:03:18,2025-02-27 05:37:18,active,true +M4544,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3463,kenji.price@orchidcapital.example,Kenji Price,Workflow Analyst,operations,active,true,editor,2025-03-23 00:13:18,2025-03-23 01:21:18,active,true +M4545,W2106,orchid-finance,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3464,ivy.hill@orchidcapital.example,Ivy Hill,Finance Manager,finance,active,true,viewer,2025-03-22 00:03:18,2025-03-22 00:33:18,active,true +M4546,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3465,aisha.nash@orchidcapital.example,Aisha Nash,Technical Program Manager,product,inactive,false,viewer,2025-03-07 03:36:18,2025-03-07 06:05:18,removed,false +M4547,W2105,orchid-ops,prod,active,false,A1048,Orchid Capital,enterprise,APAC,NZ,U3466,kai.ng@orchidcapital.example,Kai Ng,COO,executive,active,true,viewer,2025-03-23 03:26:18,2025-03-23 04:05:18,active,true +M4548,W2104,orchid-core,prod,active,true,A1048,Orchid Capital,enterprise,APAC,NZ,U3466,kai.ng@orchidcapital.example,Kai Ng,COO,executive,active,true,viewer,2025-03-23 03:05:18,2025-03-23 05:31:18,active,true +M4549,W2107,northwind-core,prod,active,true,A1049,Northwind Network,enterprise,NA,CA,U3467,nina.fischer@northwindnetwork.example,Nina Fischer,Technical Program Manager,product,active,true,owner,2024-12-07 01:39:33,2024-12-07 03:02:33,active,true +M4550,W2107,northwind-core,prod,active,true,A1049,Northwind Network,enterprise,NA,CA,U3468,ben.romero@northwindnetwork.example,Ben Romero,FP&A Analyst,finance,inactive,false,editor,2024-11-12 05:18:33,2024-11-12 07:42:33,removed,false +M4551,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3469,luis.dubois@northwindnetwork.example,Luis Dubois,Finance Manager,finance,active,true,admin,2024-11-14 07:49:33,2024-11-14 09:14:33,active,true +M4552,W2109,northwind-finance,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3470,nina.fischer2@northwindnetwork.example,Nina Fischer,Marketing Operations Lead,marketing,active,true,viewer,2024-11-28 05:18:33,2024-11-28 06:53:33,active,true +M4553,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3471,lena.reed@northwindnetwork.example,Lena Reed,Workflow Analyst,operations,active,true,editor,2024-12-02 08:18:33,2024-12-02 08:30:33,active,true +M4554,W2109,northwind-finance,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3472,lena.hill@northwindnetwork.example,Lena Hill,BI Analyst,analytics,active,true,admin,2024-12-18 08:06:33,2024-12-18 08:46:33,active,true +M4555,W2109,northwind-finance,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3473,samir.cole@northwindnetwork.example,Samir Cole,Sales Analyst,sales,active,true,viewer,2024-11-19 04:03:33,2024-11-19 06:19:33,active,true +M4556,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3474,maya.kim@northwindnetwork.example,Maya Kim,Analytics Engineer,data,active,true,admin,2024-12-15 01:05:33,2024-12-15 02:25:33,active,true +M4557,W2107,northwind-core,prod,active,true,A1049,Northwind Network,enterprise,NA,CA,U3475,peter.khan@northwindnetwork.example,Peter Khan,Marketing Operations Lead,marketing,inactive,false,viewer,2024-11-15 07:26:33,2024-11-15 10:22:33,removed,false +M4558,W2109,northwind-finance,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3476,sofia.petrova@northwindnetwork.example,Sofia Petrova,Demand Gen Manager,marketing,active,true,editor,2024-11-30 07:43:33,2024-11-30 10:34:33,active,true +M4559,W2107,northwind-core,prod,active,true,A1049,Northwind Network,enterprise,NA,CA,U3476,sofia.petrova@northwindnetwork.example,Sofia Petrova,Demand Gen Manager,marketing,active,true,viewer,2024-11-30 08:04:33,2024-11-30 09:34:33,active,true +M4560,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3477,elena.turner@northwindnetwork.example,Elena Turner,Data Platform Manager,data,active,true,editor,2024-12-07 04:27:33,2024-12-07 04:47:33,active,true +M4561,W2107,northwind-core,prod,active,true,A1049,Northwind Network,enterprise,NA,CA,U3478,ivy.lewis@northwindnetwork.example,Ivy Lewis,FP&A Analyst,finance,active,true,viewer,2024-12-17 03:43:33,2024-12-17 04:01:33,active,true +M4562,W2109,northwind-finance,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3479,lena.tan@northwindnetwork.example,Lena Tan,Marketing Operations Lead,marketing,active,true,editor,2024-11-16 06:00:33,2024-11-16 07:02:33,active,true +M4563,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3479,lena.tan@northwindnetwork.example,Lena Tan,Marketing Operations Lead,marketing,active,true,viewer,2024-11-16 04:23:33,2024-11-16 07:20:33,active,true +M4564,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3480,lena.petrova@northwindnetwork.example,Lena Petrova,Workflow Analyst,operations,active,true,viewer,2024-12-08 08:17:33,2024-12-08 10:26:33,active,true +M4565,W2109,northwind-finance,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3481,alma.cole@northwindnetwork.example,Alma Cole,Analytics Engineer,data,active,true,viewer,2024-11-22 06:58:33,2024-11-22 09:37:33,active,true +M4566,W2107,northwind-core,prod,active,true,A1049,Northwind Network,enterprise,NA,CA,U3481,alma.cole@northwindnetwork.example,Alma Cole,Analytics Engineer,data,active,true,viewer,2024-11-22 05:25:33,2024-11-22 06:00:33,active,true +M4567,W2107,northwind-core,prod,active,true,A1049,Northwind Network,enterprise,NA,CA,U3482,owen.shah@northwindnetwork.example,Owen Shah,Product Manager,product,active,true,editor,2024-11-26 03:31:33,2024-11-26 05:45:33,active,true +M4568,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3483,elena.grant@northwindnetwork.example,Elena Grant,Data Engineer,data,active,true,editor,2024-12-21 03:39:33,2024-12-21 05:27:33,active,true +M4569,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3484,claire.chen@northwindnetwork.example,Claire Chen,Founder,executive,active,true,viewer,2024-12-01 07:30:33,2024-12-01 09:54:33,active,true +M4570,W2108,northwind-ops,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3485,daniel.nash@northwindnetwork.example,Daniel Nash,Marketing Operations Lead,marketing,active,true,viewer,2024-12-16 08:28:33,2024-12-16 11:21:33,active,true +M4571,W2109,northwind-finance,prod,active,false,A1049,Northwind Network,enterprise,NA,CA,U3486,leo.shah@northwindnetwork.example,Leo Shah,Analytics Engineer,data,active,true,admin,2024-12-19 09:54:33,2024-12-19 10:35:33,active,true +M4572,W2107,northwind-core,prod,active,true,A1049,Northwind Network,enterprise,NA,CA,U3486,leo.shah@northwindnetwork.example,Leo Shah,Analytics Engineer,data,active,true,viewer,2024-12-19 08:33:33,2024-12-19 11:26:33,active,true +M4573,W2110,cedar-core,prod,active,true,A1050,Cedar Energy,smb,APAC,JP,U3487,claire.tan@cedarenergy.example,Claire Tan,BI Analyst,analytics,active,true,owner,2025-03-16 14:25:30,2025-03-16 16:40:30,active,true +M4574,W2110,cedar-core,prod,active,true,A1050,Cedar Energy,smb,APAC,JP,U3488,evan.fischer@cedarenergy.example,Evan Fischer,Operations Director,operations,active,true,editor,2025-03-05 19:21:30,2025-03-05 19:51:30,active,true +M4575,W2111,cedar-ops,sandbox,active,false,A1050,Cedar Energy,smb,APAC,JP,U3489,sofia.hill@cedarenergy.example,Sofia Hill,CFO,executive,active,true,editor,2025-03-25 21:57:30,2025-03-25 22:29:30,active,true +M4576,W2111,cedar-ops,sandbox,active,false,A1050,Cedar Energy,smb,APAC,JP,U3490,sofia.ward@cedarenergy.example,Sofia Ward,Data Engineer,data,active,true,editor,2025-03-02 22:43:30,2025-03-03 00:00:30,active,true +M4577,W2112,lighthouse-core,prod,active,true,A1051,Lighthouse Systems,smb,EMEA,UK,U3491,aisha.romero@lighthousesystems.example,Aisha Romero,VP Data,executive,active,true,owner,2025-03-20 05:44:10,2025-03-20 06:19:10,active,true +M4578,W2112,lighthouse-core,prod,active,true,A1051,Lighthouse Systems,smb,EMEA,UK,U3492,evan.brooks@lighthousesystems.example,Evan Brooks,Analytics Manager,analytics,inactive,false,admin,2025-02-27 10:04:10,2025-02-27 10:17:10,removed,false +M4579,W2112,lighthouse-core,prod,active,true,A1051,Lighthouse Systems,smb,EMEA,UK,U3493,noah.lewis@lighthousesystems.example,Noah Lewis,Workflow Analyst,operations,inactive,false,admin,2025-03-22 08:46:10,2025-03-22 10:21:10,active,true +M4580,W2112,lighthouse-core,prod,active,true,A1051,Lighthouse Systems,smb,EMEA,UK,U3494,zoe.price@lighthousesystems.example,Zoe Price,Marketing Operations Lead,marketing,inactive,false,viewer,2025-03-25 05:44:10,2025-03-25 06:59:10,removed,false +M4581,W2112,lighthouse-core,prod,active,true,A1051,Lighthouse Systems,smb,EMEA,UK,U3495,naomi.reed@lighthousesystems.example,Naomi Reed,Controller,finance,active,true,editor,2025-04-01 03:53:10,2025-04-01 06:06:10,active,true +M4582,W2112,lighthouse-core,prod,active,true,A1051,Lighthouse Systems,smb,EMEA,UK,U3496,mateo.lewis@lighthousesystems.example,Mateo Lewis,Revenue Operations Manager,sales,active,true,editor,2025-04-08 03:12:10,2025-04-08 05:31:10,active,true +M4583,W2112,lighthouse-core,prod,active,true,A1051,Lighthouse Systems,smb,EMEA,UK,U3497,isla.grant@lighthousesystems.example,Isla Grant,FP&A Analyst,finance,active,true,editor,2025-03-07 02:20:10,2025-03-07 05:12:10,active,true +M4584,W2113,sierra-core,prod,active,true,A1052,Sierra Labs,mid_market,APAC,NZ,U3498,jonas.park@sierralabs.example,Jonas Park,BI Analyst,analytics,active,true,owner,2024-12-12 22:33:21,2024-12-13 00:08:21,active,true +M4585,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3499,mila.dubois@sierralabs.example,Mila Dubois,Marketing Operations Lead,marketing,active,true,editor,2024-12-14 21:35:21,2024-12-14 22:51:21,active,true +M4586,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3500,leo.lewis@sierralabs.example,Leo Lewis,Technical Program Manager,product,active,true,viewer,2024-12-12 03:04:21,2024-12-12 05:09:21,active,true +M4587,W2113,sierra-core,prod,active,true,A1052,Sierra Labs,mid_market,APAC,NZ,U3500,leo.lewis@sierralabs.example,Leo Lewis,Technical Program Manager,product,active,true,viewer,2024-12-12 02:35:21,2024-12-12 05:28:21,active,true +M4588,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3501,aisha.tan@sierralabs.example,Aisha Tan,Marketing Operations Lead,marketing,inactive,false,admin,2024-12-26 20:38:21,2024-12-26 22:12:21,removed,false +M4589,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3502,mei.reed@sierralabs.example,Mei Reed,Operations Director,operations,active,true,admin,2024-12-29 04:23:21,2024-12-29 04:52:21,active,true +M4590,W2113,sierra-core,prod,active,true,A1052,Sierra Labs,mid_market,APAC,NZ,U3502,mei.reed@sierralabs.example,Mei Reed,Operations Director,operations,active,true,editor,2024-12-29 03:27:21,2024-12-29 03:59:21,active,true +M4591,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3503,victor.ng@sierralabs.example,Victor Ng,Revenue Operations Manager,sales,active,true,editor,2025-01-08 02:14:21,2025-01-08 03:19:21,active,true +M4592,W2113,sierra-core,prod,active,true,A1052,Sierra Labs,mid_market,APAC,NZ,U3504,mila.nash@sierralabs.example,Mila Nash,Data Platform Manager,data,active,true,viewer,2024-12-07 03:16:21,2024-12-07 05:08:21,active,true +M4593,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3504,mila.nash@sierralabs.example,Mila Nash,Data Platform Manager,data,active,true,viewer,2024-12-07 02:54:21,2024-12-07 03:15:21,active,true +M4594,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3505,victor.saeed@sierralabs.example,Victor Saeed,Revenue Operations Manager,sales,active,true,admin,2025-01-05 03:43:21,2025-01-05 05:41:21,active,true +M4595,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3506,hannah.tan@sierralabs.example,Hannah Tan,Analytics Manager,analytics,active,true,viewer,2024-12-25 23:54:21,2024-12-26 00:43:21,active,true +M4596,W2114,sierra-ops,prod,active,false,A1052,Sierra Labs,mid_market,APAC,NZ,U3507,ava.rahman@sierralabs.example,Ava Rahman,Sales Analyst,sales,active,true,admin,2025-01-08 21:35:21,2025-01-09 00:23:21,active,true +M4597,W2115,bright-core,prod,active,true,A1053,Bright Health,mid_market,NA,CA,U3508,owen.petrova@brighthealth.example,Owen Petrova,Operations Director,operations,active,true,owner,2024-10-26 17:09:29,2024-10-26 19:36:29,active,true +M4598,W2115,bright-core,prod,active,true,A1053,Bright Health,mid_market,NA,CA,U3509,alma.park@brighthealth.example,Alma Park,Data Engineer,data,inactive,false,editor,2024-10-18 11:56:29,2024-10-18 13:14:29,removed,false +M4599,W2117,bright-finance,prod,active,false,A1053,Bright Health,mid_market,NA,CA,U3510,aisha.grant@brighthealth.example,Aisha Grant,Operations Director,operations,active,true,admin,2024-11-03 15:39:29,2024-11-03 16:33:29,active,true +M4600,W2115,bright-core,prod,active,true,A1053,Bright Health,mid_market,NA,CA,U3511,mateo.kim@brighthealth.example,Mateo Kim,FP&A Analyst,finance,active,true,editor,2024-10-24 14:57:29,2024-10-24 15:26:29,active,true +M4601,W2115,bright-core,prod,active,true,A1053,Bright Health,mid_market,NA,CA,U3512,samir.shah@brighthealth.example,Samir Shah,Finance Manager,finance,active,true,admin,2024-09-30 09:36:29,2024-09-30 11:25:29,active,true +M4602,W2116,bright-ops,prod,active,false,A1053,Bright Health,mid_market,NA,CA,U3512,samir.shah@brighthealth.example,Samir Shah,Finance Manager,finance,active,true,viewer,2024-09-30 09:10:29,2024-09-30 11:34:29,active,true +M4603,W2116,bright-ops,prod,active,false,A1053,Bright Health,mid_market,NA,CA,U3513,owen.meyer@brighthealth.example,Owen Meyer,Finance Manager,finance,active,true,editor,2024-09-27 11:26:29,2024-09-27 14:15:29,active,true +M4604,W2117,bright-finance,prod,active,false,A1053,Bright Health,mid_market,NA,CA,U3514,nina.chen@brighthealth.example,Nina Chen,Technical Program Manager,product,active,true,editor,2024-10-20 17:09:29,2024-10-20 19:15:29,active,true +M4605,W2117,bright-finance,prod,active,false,A1053,Bright Health,mid_market,NA,CA,U3515,tara.alvarez@brighthealth.example,Tara Alvarez,Demand Gen Manager,marketing,active,true,editor,2024-10-18 15:11:29,2024-10-18 15:51:29,active,true +M4606,W2115,bright-core,prod,active,true,A1053,Bright Health,mid_market,NA,CA,U3516,ben.chen@brighthealth.example,Ben Chen,Demand Gen Manager,marketing,active,true,editor,2024-10-28 16:31:29,2024-10-28 16:54:29,active,true +M4607,W2117,bright-finance,prod,active,false,A1053,Bright Health,mid_market,NA,CA,U3517,hannah.sato@brighthealth.example,Hannah Sato,Finance Manager,finance,active,true,admin,2024-10-30 14:44:29,2024-10-30 15:14:29,active,true +M4608,W2118,granite-core,prod,active,true,A1054,Granite Labs,mid_market,APAC,NZ,U3518,lena.singh@granitelabs.example,Lena Singh,Founder,executive,active,true,owner,2024-08-04 04:30:01,2024-08-04 06:42:01,active,true +M4609,W2118,granite-core,prod,active,true,A1054,Granite Labs,mid_market,APAC,NZ,U3519,aisha.meyer@granitelabs.example,Aisha Meyer,FP&A Analyst,finance,inactive,false,admin,2024-09-07 08:43:01,2024-09-07 09:45:01,active,true +M4610,W2119,granite-ops,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3520,alma.fischer@granitelabs.example,Alma Fischer,Revenue Operations Manager,sales,active,true,viewer,2024-08-28 10:15:01,2024-08-28 11:51:01,active,true +M4611,W2118,granite-core,prod,active,true,A1054,Granite Labs,mid_market,APAC,NZ,U3521,naomi.grant@granitelabs.example,Naomi Grant,Analytics Manager,analytics,active,true,viewer,2024-09-03 09:36:01,2024-09-03 11:57:01,active,true +M4612,W2120,granite-finance,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3521,naomi.grant@granitelabs.example,Naomi Grant,Analytics Manager,analytics,active,true,editor,2024-09-03 08:32:01,2024-09-03 09:38:01,active,true +M4613,W2119,granite-ops,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3522,daniel.brooks@granitelabs.example,Daniel Brooks,Workflow Analyst,operations,inactive,false,viewer,2024-09-10 09:51:01,2024-09-10 10:24:01,removed,false +M4614,W2119,granite-ops,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3523,ben.meyer@granitelabs.example,Ben Meyer,Sales Analyst,sales,active,true,viewer,2024-08-17 11:12:01,2024-08-17 12:08:01,active,true +M4615,W2120,granite-finance,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3523,ben.meyer@granitelabs.example,Ben Meyer,Sales Analyst,sales,active,true,viewer,2024-08-17 11:03:01,2024-08-17 11:23:01,active,true +M4616,W2118,granite-core,prod,active,true,A1054,Granite Labs,mid_market,APAC,NZ,U3524,marta.lewis@granitelabs.example,Marta Lewis,Technical Program Manager,product,inactive,false,editor,2024-09-01 03:47:01,2024-09-01 06:41:01,active,true +M4617,W2118,granite-core,prod,active,true,A1054,Granite Labs,mid_market,APAC,NZ,U3525,mei.chen@granitelabs.example,Mei Chen,Operations Director,operations,active,true,editor,2024-08-30 04:01:01,2024-08-30 04:24:01,active,true +M4618,W2119,granite-ops,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3525,mei.chen@granitelabs.example,Mei Chen,Operations Director,operations,active,true,viewer,2024-08-30 03:52:01,2024-08-30 06:30:01,active,true +M4619,W2120,granite-finance,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3526,mila.price@granitelabs.example,Mila Price,Revenue Operations Manager,sales,active,true,editor,2024-08-22 08:32:01,2024-08-22 08:46:01,active,true +M4620,W2118,granite-core,prod,active,true,A1054,Granite Labs,mid_market,APAC,NZ,U3526,mila.price@granitelabs.example,Mila Price,Revenue Operations Manager,sales,active,true,viewer,2024-08-22 07:42:01,2024-08-22 09:56:01,active,true +M4621,W2120,granite-finance,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3527,daniel.chen@granitelabs.example,Daniel Chen,Demand Gen Manager,marketing,active,true,editor,2024-08-17 03:05:01,2024-08-17 04:08:01,active,true +M4622,W2118,granite-core,prod,active,true,A1054,Granite Labs,mid_market,APAC,NZ,U3528,arjun.khan@granitelabs.example,Arjun Khan,Data Engineer,data,active,true,viewer,2024-09-13 07:37:01,2024-09-13 10:17:01,active,true +M4623,W2119,granite-ops,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3528,arjun.khan@granitelabs.example,Arjun Khan,Data Engineer,data,active,true,viewer,2024-09-13 06:55:01,2024-09-13 08:37:01,active,true +M4624,W2120,granite-finance,prod,active,false,A1054,Granite Labs,mid_market,APAC,NZ,U3529,lena.romero@granitelabs.example,Lena Romero,Finance Manager,finance,inactive,false,editor,2024-08-22 07:57:01,2024-08-22 08:34:01,removed,false +M4625,W2121,pioneer-core,prod,active,true,A1055,Pioneer Systems,mid_market,EMEA,FR,U3530,priya.lewis@pioneersystems.example,Priya Lewis,Product Manager,product,inactive,false,owner,2025-02-28 19:48:38,2025-02-28 22:13:38,removed,false +M4626,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3531,ava.price@pioneersystems.example,Ava Price,Data Platform Manager,data,active,true,admin,2025-02-07 16:47:38,2025-02-07 18:26:38,active,true +M4627,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3532,daniel.silva@pioneersystems.example,Daniel Silva,Founder,executive,active,true,editor,2025-01-28 17:35:38,2025-01-28 18:40:38,active,true +M4628,W2121,pioneer-core,prod,active,true,A1055,Pioneer Systems,mid_market,EMEA,FR,U3533,lina.nash@pioneersystems.example,Lina Nash,Controller,finance,active,true,admin,2025-02-26 18:07:38,2025-02-26 20:29:38,active,true +M4629,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3533,lina.nash@pioneersystems.example,Lina Nash,Controller,finance,active,true,viewer,2025-02-26 18:30:38,2025-02-26 18:46:38,active,true +M4630,W2121,pioneer-core,prod,active,true,A1055,Pioneer Systems,mid_market,EMEA,FR,U3534,jonas.khan@pioneersystems.example,Jonas Khan,Analytics Engineer,data,active,true,viewer,2025-02-14 13:46:38,2025-02-14 14:37:38,active,true +M4631,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3534,jonas.khan@pioneersystems.example,Jonas Khan,Analytics Engineer,data,active,true,editor,2025-02-14 14:06:38,2025-02-14 14:22:38,active,true +M4632,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3535,derek.park@pioneersystems.example,Derek Park,BI Analyst,analytics,active,true,viewer,2025-02-21 17:05:38,2025-02-21 17:43:38,active,true +M4633,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3536,priya.tan@pioneersystems.example,Priya Tan,Operations Manager,operations,active,true,editor,2025-02-20 13:33:38,2025-02-20 14:42:38,active,true +M4634,W2121,pioneer-core,prod,active,true,A1055,Pioneer Systems,mid_market,EMEA,FR,U3536,priya.tan@pioneersystems.example,Priya Tan,Operations Manager,operations,active,true,editor,2025-02-20 12:33:38,2025-02-20 13:30:38,active,true +M4635,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3537,peter.tan@pioneersystems.example,Peter Tan,CFO,executive,active,true,viewer,2025-02-21 16:46:38,2025-02-21 18:08:38,active,true +M4636,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3538,marcus.saeed@pioneersystems.example,Marcus Saeed,Finance Manager,finance,active,true,viewer,2025-01-21 19:19:38,2025-01-21 20:26:38,active,true +M4637,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3539,olivia.chen@pioneersystems.example,Olivia Chen,BI Analyst,analytics,active,true,editor,2025-03-03 14:29:38,2025-03-03 14:47:38,active,true +M4638,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3540,marcus.saeed2@pioneersystems.example,Marcus Saeed,BI Analyst,analytics,active,true,viewer,2025-02-24 16:23:38,2025-02-24 18:32:38,active,true +M4639,W2122,pioneer-ops,sandbox,active,false,A1055,Pioneer Systems,mid_market,EMEA,FR,U3541,alma.tan@pioneersystems.example,Alma Tan,Demand Gen Manager,marketing,active,true,admin,2025-02-05 19:55:38,2025-02-05 22:13:38,active,true +M4640,W2121,pioneer-core,prod,active,true,A1055,Pioneer Systems,mid_market,EMEA,FR,U3542,olivia.dubois@pioneersystems.example,Olivia Dubois,Finance Manager,finance,active,true,editor,2025-02-05 14:27:38,2025-02-05 16:07:38,active,true +M4641,W2123,delta-core,prod,active,true,A1056,Delta Global,mid_market,APAC,AU,U3543,sofia.hill@deltaglobal.example,Sofia Hill,Demand Gen Manager,marketing,active,true,owner,2024-12-24 08:30:51,2024-12-24 09:11:51,active,true +M4642,W2123,delta-core,prod,active,true,A1056,Delta Global,mid_market,APAC,AU,U3544,claire.alvarez@deltaglobal.example,Claire Alvarez,Finance Manager,finance,active,true,viewer,2024-12-08 08:39:51,2024-12-08 10:40:51,active,true +M4643,W2123,delta-core,prod,active,true,A1056,Delta Global,mid_market,APAC,AU,U3545,naomi.romero@deltaglobal.example,Naomi Romero,Product Manager,product,active,true,admin,2024-11-25 10:28:51,2024-11-25 11:44:51,active,true +M4644,W2125,delta-finance,prod,active,false,A1056,Delta Global,mid_market,APAC,AU,U3546,noah.sato@deltaglobal.example,Noah Sato,Technical Program Manager,product,active,true,editor,2024-12-08 09:52:51,2024-12-08 10:12:51,active,true +M4645,W2124,delta-ops,prod,active,false,A1056,Delta Global,mid_market,APAC,AU,U3547,isla.petrova@deltaglobal.example,Isla Petrova,Product Manager,product,active,true,viewer,2024-11-24 12:00:51,2024-11-24 13:42:51,active,true +M4646,W2124,delta-ops,prod,active,false,A1056,Delta Global,mid_market,APAC,AU,U3548,ava.turner@deltaglobal.example,Ava Turner,Marketing Operations Lead,marketing,inactive,false,editor,2024-11-28 08:14:51,2024-11-28 09:06:51,removed,false +M4647,W2125,delta-finance,prod,active,false,A1056,Delta Global,mid_market,APAC,AU,U3549,samir.khan@deltaglobal.example,Samir Khan,Technical Program Manager,product,active,true,admin,2024-11-20 04:53:51,2024-11-20 06:27:51,active,true +M4648,W2123,delta-core,prod,active,true,A1056,Delta Global,mid_market,APAC,AU,U3550,leo.ward@deltaglobal.example,Leo Ward,FP&A Analyst,finance,active,true,viewer,2024-12-11 06:19:51,2024-12-11 07:31:51,active,true +M4649,W2125,delta-finance,prod,active,false,A1056,Delta Global,mid_market,APAC,AU,U3551,marcus.khan@deltaglobal.example,Marcus Khan,Operations Manager,operations,active,true,editor,2024-12-23 10:12:51,2024-12-23 12:06:51,active,true +M4650,W2124,delta-ops,prod,active,false,A1056,Delta Global,mid_market,APAC,AU,U3551,marcus.khan@deltaglobal.example,Marcus Khan,Operations Manager,operations,active,true,viewer,2024-12-23 10:22:51,2024-12-23 10:41:51,active,true +M4651,W2125,delta-finance,prod,active,false,A1056,Delta Global,mid_market,APAC,AU,U3552,victor.alvarez@deltaglobal.example,Victor Alvarez,FP&A Analyst,finance,active,true,editor,2024-12-13 04:36:51,2024-12-13 05:54:51,active,true +M4652,W2125,delta-finance,prod,active,false,A1056,Delta Global,mid_market,APAC,AU,U3553,helena.ng@deltaglobal.example,Helena Ng,Sales Analyst,sales,active,true,editor,2024-12-23 06:50:51,2024-12-23 09:07:51,active,true +M4653,W2126,harbor-core,prod,active,true,A1057,Harbor Partners,enterprise,APAC,NZ,U3554,lena.rossi@harborpartners.example,Lena Rossi,Workflow Analyst,operations,active,true,owner,2024-11-24 14:26:31,2024-11-24 15:12:31,active,true +M4654,W2129,harbor-marketing,prod,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3555,owen.sato@harborpartners.example,Owen Sato,Analytics Manager,analytics,active,true,editor,2024-10-21 08:29:31,2024-10-21 09:07:31,active,true +M4655,W2126,harbor-core,prod,active,true,A1057,Harbor Partners,enterprise,APAC,NZ,U3556,lina.khan@harborpartners.example,Lina Khan,Product Manager,product,active,true,editor,2024-10-22 10:24:31,2024-10-22 10:50:31,active,true +M4656,W2127,harbor-ops,sandbox,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3557,maya.shah@harborpartners.example,Maya Shah,FP&A Analyst,finance,active,true,viewer,2024-11-20 10:46:31,2024-11-20 12:32:31,active,true +M4657,W2126,harbor-core,prod,active,true,A1057,Harbor Partners,enterprise,APAC,NZ,U3558,owen.tan@harborpartners.example,Owen Tan,Demand Gen Manager,marketing,inactive,false,viewer,2024-11-05 10:35:31,2024-11-05 11:44:31,active,true +M4658,W2126,harbor-core,prod,active,true,A1057,Harbor Partners,enterprise,APAC,NZ,U3559,marta.petrova@harborpartners.example,Marta Petrova,Data Platform Manager,data,active,true,admin,2024-11-18 13:18:31,2024-11-18 14:30:31,active,true +M4659,W2127,harbor-ops,sandbox,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3560,hannah.fischer@harborpartners.example,Hannah Fischer,Data Engineer,data,active,true,editor,2024-12-01 15:00:31,2024-12-01 15:14:31,active,true +M4660,W2126,harbor-core,prod,active,true,A1057,Harbor Partners,enterprise,APAC,NZ,U3560,hannah.fischer@harborpartners.example,Hannah Fischer,Data Engineer,data,active,true,viewer,2024-12-01 15:14:31,2024-12-01 17:21:31,active,true +M4661,W2129,harbor-marketing,prod,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3561,olivia.meyer@harborpartners.example,Olivia Meyer,Data Engineer,data,active,true,admin,2024-11-13 13:24:31,2024-11-13 16:05:31,active,true +M4662,W2128,harbor-finance,prod,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3562,lina.morgan@harborpartners.example,Lina Morgan,Sales Analyst,sales,active,true,viewer,2024-11-20 10:26:31,2024-11-20 11:41:31,active,true +M4663,W2128,harbor-finance,prod,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3563,naomi.tan@harborpartners.example,Naomi Tan,Sales Analyst,sales,active,true,viewer,2024-11-12 09:37:31,2024-11-12 10:19:31,active,true +M4664,W2129,harbor-marketing,prod,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3563,naomi.tan@harborpartners.example,Naomi Tan,Sales Analyst,sales,active,true,viewer,2024-11-12 08:08:31,2024-11-12 10:51:31,active,true +M4665,W2127,harbor-ops,sandbox,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3564,naomi.lewis@harborpartners.example,Naomi Lewis,Data Engineer,data,active,true,admin,2024-11-27 06:55:31,2024-11-27 08:52:31,active,true +M4666,W2129,harbor-marketing,prod,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3564,naomi.lewis@harborpartners.example,Naomi Lewis,Data Engineer,data,active,true,viewer,2024-11-27 06:45:31,2024-11-27 08:11:31,active,true +M4667,W2127,harbor-ops,sandbox,active,false,A1057,Harbor Partners,enterprise,APAC,NZ,U3565,ivy.lewis@harborpartners.example,Ivy Lewis,Operations Director,operations,active,true,admin,2024-11-27 13:26:31,2024-11-27 14:36:31,active,true +M4668,W2126,harbor-core,prod,active,true,A1057,Harbor Partners,enterprise,APAC,NZ,U3566,ben.ng@harborpartners.example,Ben Ng,FP&A Analyst,finance,active,true,viewer,2024-11-18 13:14:31,2024-11-18 15:37:31,active,true +M4669,W2130,evergreen-core,prod,active,true,A1058,Evergreen Analytics,smb,EMEA,UK,U3567,marta.patel@evergreenanalytics.example,Marta Patel,FP&A Analyst,finance,active,true,owner,2025-02-15 21:19:12,2025-02-15 21:35:12,active,true +M4670,W2130,evergreen-core,prod,active,true,A1058,Evergreen Analytics,smb,EMEA,UK,U3568,victor.hart@evergreenanalytics.example,Victor Hart,Analytics Manager,analytics,active,true,editor,2025-02-12 03:36:12,2025-02-12 05:51:12,active,true +M4671,W2131,evergreen-ops,prod,active,false,A1058,Evergreen Analytics,smb,EMEA,UK,U3568,victor.hart@evergreenanalytics.example,Victor Hart,Analytics Manager,analytics,active,true,viewer,2025-02-12 03:41:12,2025-02-12 04:46:12,active,true +M4672,W2131,evergreen-ops,prod,active,false,A1058,Evergreen Analytics,smb,EMEA,UK,U3569,lena.turner@evergreenanalytics.example,Lena Turner,Founder,executive,inactive,false,editor,2025-02-15 04:23:12,2025-02-15 06:14:12,removed,false +M4673,W2131,evergreen-ops,prod,active,false,A1058,Evergreen Analytics,smb,EMEA,UK,U3570,mateo.dubois@evergreenanalytics.example,Mateo Dubois,Product Manager,product,active,true,viewer,2025-02-10 22:33:12,2025-02-11 00:10:12,active,true +M4674,W2130,evergreen-core,prod,active,true,A1058,Evergreen Analytics,smb,EMEA,UK,U3570,mateo.dubois@evergreenanalytics.example,Mateo Dubois,Product Manager,product,active,true,editor,2025-02-10 23:08:12,2025-02-11 00:57:12,active,true +M4675,W2131,evergreen-ops,prod,active,false,A1058,Evergreen Analytics,smb,EMEA,UK,U3571,tomas.nash@evergreenanalytics.example,Tomas Nash,Insights Lead,analytics,active,true,viewer,2025-01-12 03:47:12,2025-01-12 04:33:12,active,true +M4676,W2131,evergreen-ops,prod,active,false,A1058,Evergreen Analytics,smb,EMEA,UK,U3572,leo.ward@evergreenanalytics.example,Leo Ward,Technical Program Manager,product,inactive,false,admin,2025-02-04 01:54:12,2025-02-04 04:30:12,removed,false +M4677,W2130,evergreen-core,prod,active,true,A1058,Evergreen Analytics,smb,EMEA,UK,U3573,aisha.desai@evergreenanalytics.example,Aisha Desai,Insights Lead,analytics,active,true,viewer,2025-02-14 01:11:12,2025-02-14 03:26:12,active,true +M4678,W2132,evergreen-core,prod,active,true,A1059,Evergreen Partners,mid_market,NA,CA,U3574,aisha.brooks@evergreenpartners.example,Aisha Brooks,Insights Lead,analytics,active,true,owner,2024-11-05 05:45:52,2024-11-05 08:18:52,active,true +M4679,W2133,evergreen-ops,sandbox,active,false,A1059,Evergreen Partners,mid_market,NA,CA,U3575,naomi.hart@evergreenpartners.example,Naomi Hart,Operations Manager,operations,active,true,viewer,2024-10-13 08:11:52,2024-10-13 08:24:52,active,true +M4680,W2132,evergreen-core,prod,active,true,A1059,Evergreen Partners,mid_market,NA,CA,U3576,nina.chen@evergreenpartners.example,Nina Chen,Workflow Analyst,operations,active,true,editor,2024-10-08 09:15:52,2024-10-08 09:39:52,active,true +M4681,W2132,evergreen-core,prod,active,true,A1059,Evergreen Partners,mid_market,NA,CA,U3577,kenji.lopez@evergreenpartners.example,Kenji Lopez,Demand Gen Manager,marketing,active,true,editor,2024-10-08 14:05:52,2024-10-08 16:30:52,active,true +M4682,W2133,evergreen-ops,sandbox,active,false,A1059,Evergreen Partners,mid_market,NA,CA,U3578,elena.shah@evergreenpartners.example,Elena Shah,FP&A Analyst,finance,active,true,editor,2024-10-23 12:08:52,2024-10-23 14:13:52,active,true +M4683,W2132,evergreen-core,prod,active,true,A1059,Evergreen Partners,mid_market,NA,CA,U3578,elena.shah@evergreenpartners.example,Elena Shah,FP&A Analyst,finance,active,true,editor,2024-10-23 12:01:52,2024-10-23 14:20:52,active,true +M4684,W2133,evergreen-ops,sandbox,active,false,A1059,Evergreen Partners,mid_market,NA,CA,U3579,aisha.reed@evergreenpartners.example,Aisha Reed,Founder,executive,active,true,editor,2024-11-07 10:48:52,2024-11-07 11:55:52,active,true +M4685,W2133,evergreen-ops,sandbox,active,false,A1059,Evergreen Partners,mid_market,NA,CA,U3580,hannah.rahman@evergreenpartners.example,Hannah Rahman,Technical Program Manager,product,active,true,editor,2024-10-27 10:39:52,2024-10-27 11:43:52,active,true +M4686,W2133,evergreen-ops,sandbox,active,false,A1059,Evergreen Partners,mid_market,NA,CA,U3581,isla.patel@evergreenpartners.example,Isla Patel,Sales Analyst,sales,active,true,editor,2024-10-27 09:57:52,2024-10-27 11:03:52,active,true +M4687,W2133,evergreen-ops,sandbox,active,false,A1059,Evergreen Partners,mid_market,NA,CA,U3582,maya.meyer@evergreenpartners.example,Maya Meyer,Technical Program Manager,product,inactive,false,viewer,2024-11-09 11:39:52,2024-11-09 12:04:52,removed,false +M4688,W2132,evergreen-core,prod,active,true,A1059,Evergreen Partners,mid_market,NA,CA,U3583,marcus.nash@evergreenpartners.example,Marcus Nash,CFO,executive,active,true,viewer,2024-11-05 10:08:52,2024-11-05 11:11:52,active,true +M4689,W2133,evergreen-ops,sandbox,active,false,A1059,Evergreen Partners,mid_market,NA,CA,U3584,marcus.lopez@evergreenpartners.example,Marcus Lopez,Sales Analyst,sales,active,true,viewer,2024-11-09 08:40:52,2024-11-09 09:17:52,active,true +M4690,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3585,mei.saeed@cedarfoods.example,Mei Saeed,COO,executive,active,true,owner,2024-11-26 00:41:46,2024-11-26 03:03:46,active,true +M4691,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3586,tomas.chen@cedarfoods.example,Tomas Chen,Revenue Operations Manager,sales,active,true,viewer,2024-12-08 18:25:46,2024-12-08 21:20:46,active,true +M4692,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3587,zoe.meyer@cedarfoods.example,Zoe Meyer,BI Analyst,analytics,active,true,viewer,2024-11-07 17:56:46,2024-11-07 19:21:46,active,true +M4693,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3588,ben.reed@cedarfoods.example,Ben Reed,Workflow Analyst,operations,active,true,admin,2024-11-12 19:21:46,2024-11-12 21:53:46,active,true +M4694,W2135,cedar-ops,sandbox,active,false,A1060,Cedar Foods,mid_market,NA,CA,U3589,lina.sato@cedarfoods.example,Lina Sato,Workflow Analyst,operations,active,true,viewer,2024-11-16 20:44:46,2024-11-16 21:35:46,active,true +M4695,W2135,cedar-ops,sandbox,active,false,A1060,Cedar Foods,mid_market,NA,CA,U3590,tomas.ward@cedarfoods.example,Tomas Ward,Analytics Manager,analytics,active,true,admin,2024-12-19 22:02:46,2024-12-20 00:28:46,active,true +M4696,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3590,tomas.ward@cedarfoods.example,Tomas Ward,Analytics Manager,analytics,active,true,viewer,2024-12-19 22:08:46,2024-12-20 00:13:46,active,true +M4697,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3591,tomas.dubois@cedarfoods.example,Tomas Dubois,Analytics Engineer,data,inactive,false,viewer,2024-11-29 23:36:46,2024-11-30 00:23:46,active,true +M4698,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3592,nina.sato@cedarfoods.example,Nina Sato,Product Manager,product,active,true,editor,2024-12-06 20:50:46,2024-12-06 22:43:46,active,true +M4699,W2135,cedar-ops,sandbox,active,false,A1060,Cedar Foods,mid_market,NA,CA,U3593,tara.hill@cedarfoods.example,Tara Hill,Controller,finance,active,true,admin,2024-12-02 21:09:46,2024-12-02 22:29:46,active,true +M4700,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3594,owen.lopez@cedarfoods.example,Owen Lopez,Operations Director,operations,active,true,editor,2024-11-09 18:56:46,2024-11-09 21:32:46,active,true +M4701,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3595,owen.romero@cedarfoods.example,Owen Romero,Product Manager,product,inactive,false,viewer,2024-12-16 17:42:46,2024-12-16 19:31:46,removed,false +M4702,W2135,cedar-ops,sandbox,active,false,A1060,Cedar Foods,mid_market,NA,CA,U3595,owen.romero@cedarfoods.example,Owen Romero,Product Manager,product,inactive,false,editor,2024-12-16 17:05:46,2024-12-16 19:01:46,removed,false +M4703,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3596,peter.silva@cedarfoods.example,Peter Silva,Revenue Operations Manager,sales,active,true,viewer,2024-12-08 00:24:46,2024-12-08 02:39:46,active,true +M4704,W2134,cedar-core,prod,active,true,A1060,Cedar Foods,mid_market,NA,CA,U3597,tomas.nash@cedarfoods.example,Tomas Nash,Marketing Operations Lead,marketing,active,true,admin,2024-11-30 00:13:46,2024-11-30 03:04:46,active,true +M4705,W2135,cedar-ops,sandbox,active,false,A1060,Cedar Foods,mid_market,NA,CA,U3597,tomas.nash@cedarfoods.example,Tomas Nash,Marketing Operations Lead,marketing,active,true,editor,2024-11-30 00:41:46,2024-11-30 02:23:46,active,true +M4706,W2136,atlas-core,prod,active,true,A1061,Atlas Capital,enterprise,EMEA,FR,U3598,samir.singh@atlascapital.example,Samir Singh,Revenue Operations Manager,sales,active,true,owner,2025-03-25 00:54:24,2025-03-25 01:44:24,active,true +M4707,W2138,atlas-finance,prod,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3599,elena.ward@atlascapital.example,Elena Ward,Insights Lead,analytics,active,true,viewer,2025-02-25 01:12:24,2025-02-25 01:41:24,active,true +M4708,W2136,atlas-core,prod,active,true,A1061,Atlas Capital,enterprise,EMEA,FR,U3600,mei.singh@atlascapital.example,Mei Singh,Revenue Operations Manager,sales,active,true,editor,2025-03-25 04:38:24,2025-03-25 06:55:24,active,true +M4709,W2138,atlas-finance,prod,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3601,owen.tan@atlascapital.example,Owen Tan,Finance Manager,finance,active,true,editor,2025-02-24 23:56:24,2025-02-25 01:14:24,active,true +M4710,W2137,atlas-ops,sandbox,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3602,victor.rossi@atlascapital.example,Victor Rossi,Revenue Operations Manager,sales,active,true,editor,2025-03-19 04:32:24,2025-03-19 04:47:24,active,true +M4711,W2138,atlas-finance,prod,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3603,owen.romero@atlascapital.example,Owen Romero,Analytics Engineer,data,active,true,viewer,2025-02-16 04:55:24,2025-02-16 07:12:24,active,true +M4712,W2137,atlas-ops,sandbox,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3604,noah.grant@atlascapital.example,Noah Grant,Demand Gen Manager,marketing,active,true,editor,2025-03-28 08:38:24,2025-03-28 10:11:24,active,true +M4713,W2137,atlas-ops,sandbox,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3605,zoe.keller@atlascapital.example,Zoe Keller,Data Platform Manager,data,active,true,admin,2025-02-22 06:48:24,2025-02-22 08:45:24,active,true +M4714,W2136,atlas-core,prod,active,true,A1061,Atlas Capital,enterprise,EMEA,FR,U3606,mila.desai@atlascapital.example,Mila Desai,Marketing Operations Lead,marketing,active,true,viewer,2025-02-13 00:53:24,2025-02-13 02:04:24,active,true +M4715,W2138,atlas-finance,prod,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3607,marcus.ward@atlascapital.example,Marcus Ward,Controller,finance,active,true,viewer,2025-02-17 00:25:24,2025-02-17 01:41:24,active,true +M4716,W2136,atlas-core,prod,active,true,A1061,Atlas Capital,enterprise,EMEA,FR,U3608,mila.patel@atlascapital.example,Mila Patel,Operations Director,operations,active,true,admin,2025-03-12 04:45:24,2025-03-12 05:33:24,active,true +M4717,W2136,atlas-core,prod,active,true,A1061,Atlas Capital,enterprise,EMEA,FR,U3609,noah.khan@atlascapital.example,Noah Khan,Workflow Analyst,operations,active,true,editor,2025-03-21 08:50:24,2025-03-21 11:00:24,active,true +M4718,W2137,atlas-ops,sandbox,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3609,noah.khan@atlascapital.example,Noah Khan,Workflow Analyst,operations,active,true,editor,2025-03-21 07:04:24,2025-03-21 07:15:24,active,true +M4719,W2136,atlas-core,prod,active,true,A1061,Atlas Capital,enterprise,EMEA,FR,U3610,daniel.desai@atlascapital.example,Daniel Desai,FP&A Analyst,finance,active,true,editor,2025-02-17 00:56:24,2025-02-17 02:54:24,active,true +M4720,W2138,atlas-finance,prod,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3611,kai.rahman@atlascapital.example,Kai Rahman,COO,executive,provisioned,false,admin,2025-03-13 01:53:24,,pending,false +M4721,W2136,atlas-core,prod,active,true,A1061,Atlas Capital,enterprise,EMEA,FR,U3612,marcus.kim@atlascapital.example,Marcus Kim,Finance Manager,finance,active,true,viewer,2025-03-16 01:35:24,2025-03-16 03:33:24,active,true +M4722,W2137,atlas-ops,sandbox,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3613,elena.meyer@atlascapital.example,Elena Meyer,Sales Analyst,sales,active,true,editor,2025-03-29 02:15:24,2025-03-29 05:11:24,active,true +M4723,W2136,atlas-core,prod,active,true,A1061,Atlas Capital,enterprise,EMEA,FR,U3613,elena.meyer@atlascapital.example,Elena Meyer,Sales Analyst,sales,active,true,viewer,2025-03-29 02:36:24,2025-03-29 04:11:24,active,true +M4724,W2138,atlas-finance,prod,active,false,A1061,Atlas Capital,enterprise,EMEA,FR,U3614,evan.saeed@atlascapital.example,Evan Saeed,Technical Program Manager,product,active,true,viewer,2025-02-28 02:09:24,2025-02-28 02:54:24,active,true +M4725,W2139,delta-core,prod,active,true,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3615,tara.petrova@deltamanufacturing.example,Tara Petrova,Analytics Manager,analytics,active,true,owner,2024-12-05 14:44:25,2024-12-05 16:14:25,active,true +M4726,W2140,delta-ops,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3616,olivia.saeed@deltamanufacturing.example,Olivia Saeed,Workflow Analyst,operations,active,true,editor,2024-12-02 22:22:25,2024-12-02 22:45:25,active,true +M4727,W2141,delta-finance,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3617,daniel.dubois@deltamanufacturing.example,Daniel Dubois,Data Engineer,data,active,true,viewer,2024-11-16 17:44:25,2024-11-16 19:39:25,active,true +M4728,W2139,delta-core,prod,active,true,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3618,tara.sato@deltamanufacturing.example,Tara Sato,Controller,finance,active,true,viewer,2024-11-11 15:08:25,2024-11-11 16:01:25,active,true +M4729,W2141,delta-finance,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3619,daniel.ng@deltamanufacturing.example,Daniel Ng,Analytics Manager,analytics,active,true,viewer,2024-12-18 22:44:25,2024-12-19 01:31:25,active,true +M4730,W2141,delta-finance,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3620,hannah.nash@deltamanufacturing.example,Hannah Nash,Finance Manager,finance,active,true,admin,2024-11-10 20:57:25,2024-11-10 21:58:25,active,true +M4731,W2140,delta-ops,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3620,hannah.nash@deltamanufacturing.example,Hannah Nash,Finance Manager,finance,active,true,editor,2024-11-10 21:22:25,2024-11-10 22:17:25,active,true +M4732,W2140,delta-ops,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3621,victor.park@deltamanufacturing.example,Victor Park,CFO,executive,active,true,admin,2024-11-21 19:15:25,2024-11-21 21:27:25,active,true +M4733,W2140,delta-ops,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3622,alma.patel@deltamanufacturing.example,Alma Patel,Operations Director,operations,active,true,admin,2024-12-05 18:37:25,2024-12-05 20:54:25,active,true +M4734,W2141,delta-finance,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3623,tomas.turner@deltamanufacturing.example,Tomas Turner,Product Manager,product,active,true,viewer,2024-12-06 16:46:25,2024-12-06 19:13:25,active,true +M4735,W2139,delta-core,prod,active,true,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3623,tomas.turner@deltamanufacturing.example,Tomas Turner,Product Manager,product,active,true,viewer,2024-12-06 16:30:25,2024-12-06 17:28:25,active,true +M4736,W2139,delta-core,prod,active,true,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3624,ava.sato@deltamanufacturing.example,Ava Sato,Sales Analyst,sales,active,true,editor,2024-11-17 22:00:25,2024-11-18 00:46:25,active,true +M4737,W2141,delta-finance,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3625,marta.dubois@deltamanufacturing.example,Marta Dubois,Demand Gen Manager,marketing,active,true,editor,2024-11-17 14:41:25,2024-11-17 17:34:25,active,true +M4738,W2139,delta-core,prod,active,true,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3626,evan.lewis@deltamanufacturing.example,Evan Lewis,Operations Manager,operations,active,true,viewer,2024-12-08 19:56:25,2024-12-08 21:15:25,active,true +M4739,W2141,delta-finance,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3627,zoe.meyer@deltamanufacturing.example,Zoe Meyer,Controller,finance,active,true,editor,2024-12-18 16:58:25,2024-12-18 19:36:25,active,true +M4740,W2140,delta-ops,prod,active,false,A1062,Delta Manufacturing,enterprise,EMEA,NL,U3628,zoe.petrova@deltamanufacturing.example,Zoe Petrova,Sales Analyst,sales,active,true,editor,2024-11-22 22:20:25,2024-11-22 22:53:25,active,true +M4741,W2142,maple-core,prod,active,true,A1063,Maple Global,smb,NA,CA,U3629,ivy.alvarez@mapleglobal.example,Ivy Alvarez,Demand Gen Manager,marketing,inactive,false,owner,2024-12-11 13:40:06,2024-12-11 14:58:06,removed,false +M4742,W2142,maple-core,prod,active,true,A1063,Maple Global,smb,NA,CA,U3630,lena.chen@mapleglobal.example,Lena Chen,Revenue Operations Manager,sales,active,true,editor,2024-11-16 18:08:06,2024-11-16 20:01:06,active,true +M4743,W2142,maple-core,prod,active,true,A1063,Maple Global,smb,NA,CA,U3631,priya.ng@mapleglobal.example,Priya Ng,Sales Analyst,sales,active,true,admin,2024-12-28 12:52:06,2024-12-28 15:46:06,active,true +M4744,W2142,maple-core,prod,active,true,A1063,Maple Global,smb,NA,CA,U3632,elena.chen@mapleglobal.example,Elena Chen,Revenue Operations Manager,sales,active,true,editor,2024-11-22 16:42:06,2024-11-22 17:19:06,active,true +M4745,W2143,atlas-core,prod,active,true,A1064,Atlas Health,smb,NA,US,U3633,luis.turner@atlashealth.example,Luis Turner,BI Analyst,analytics,active,true,owner,2024-10-10 03:58:22,2024-10-10 06:06:22,active,true +M4746,W2143,atlas-core,prod,active,true,A1064,Atlas Health,smb,NA,US,U3634,helena.romero@atlashealth.example,Helena Romero,Technical Program Manager,product,active,true,viewer,2024-09-03 03:10:22,2024-09-03 04:15:22,active,true +M4747,W2143,atlas-core,prod,active,true,A1064,Atlas Health,smb,NA,US,U3635,ava.chen@atlashealth.example,Ava Chen,Operations Manager,operations,active,true,editor,2024-10-09 02:33:22,2024-10-09 03:33:22,active,true +M4748,W2143,atlas-core,prod,active,true,A1064,Atlas Health,smb,NA,US,U3636,ivy.dubois@atlashealth.example,Ivy Dubois,Marketing Operations Lead,marketing,active,true,admin,2024-10-04 01:59:22,2024-10-04 03:26:22,active,true +M4749,W2144,vertex-core,prod,active,true,A1065,Vertex Partners,mid_market,NA,US,U3637,derek.brooks@vertexpartners.example,Derek Brooks,Operations Manager,operations,active,true,owner,2025-01-22 12:36:13,2025-01-22 15:33:13,active,true +M4750,W2145,vertex-ops,prod,active,false,A1065,Vertex Partners,mid_market,NA,US,U3638,derek.sato@vertexpartners.example,Derek Sato,Workflow Analyst,operations,active,true,editor,2025-02-13 08:15:13,2025-02-13 10:02:13,active,true +M4751,W2145,vertex-ops,prod,active,false,A1065,Vertex Partners,mid_market,NA,US,U3639,victor.nash@vertexpartners.example,Victor Nash,Workflow Analyst,operations,active,true,viewer,2025-01-29 07:36:13,2025-01-29 08:37:13,active,true +M4752,W2145,vertex-ops,prod,active,false,A1065,Vertex Partners,mid_market,NA,US,U3640,zoe.khan@vertexpartners.example,Zoe Khan,VP Data,executive,active,true,viewer,2025-01-31 11:17:13,2025-01-31 12:18:13,active,true +M4753,W2144,vertex-core,prod,active,true,A1065,Vertex Partners,mid_market,NA,US,U3640,zoe.khan@vertexpartners.example,Zoe Khan,VP Data,executive,active,true,viewer,2025-01-31 10:56:13,2025-01-31 11:43:13,active,true +M4754,W2144,vertex-core,prod,active,true,A1065,Vertex Partners,mid_market,NA,US,U3641,derek.cole@vertexpartners.example,Derek Cole,Technical Program Manager,product,active,true,viewer,2025-01-31 13:27:13,2025-01-31 14:05:13,active,true +M4755,W2144,vertex-core,prod,active,true,A1065,Vertex Partners,mid_market,NA,US,U3642,isla.nash@vertexpartners.example,Isla Nash,Analytics Manager,analytics,active,true,viewer,2025-02-07 10:58:13,2025-02-07 12:28:13,active,true +M4756,W2145,vertex-ops,prod,active,false,A1065,Vertex Partners,mid_market,NA,US,U3642,isla.nash@vertexpartners.example,Isla Nash,Analytics Manager,analytics,active,true,viewer,2025-02-07 09:13:13,2025-02-07 10:48:13,active,true +M4757,W2144,vertex-core,prod,active,true,A1065,Vertex Partners,mid_market,NA,US,U3643,tomas.tan@vertexpartners.example,Tomas Tan,Product Manager,product,inactive,false,editor,2025-01-04 11:44:13,2025-01-04 12:29:13,active,true +M4758,W2145,vertex-ops,prod,active,false,A1065,Vertex Partners,mid_market,NA,US,U3644,marcus.rahman@vertexpartners.example,Marcus Rahman,BI Analyst,analytics,active,true,viewer,2025-02-12 06:27:13,2025-02-12 07:13:13,active,true +M4759,W2145,vertex-ops,prod,active,false,A1065,Vertex Partners,mid_market,NA,US,U3645,mateo.romero@vertexpartners.example,Mateo Romero,Analytics Manager,analytics,inactive,false,editor,2025-02-11 14:08:13,2025-02-11 14:22:13,active,true +M4760,W2144,vertex-core,prod,active,true,A1065,Vertex Partners,mid_market,NA,US,U3645,mateo.romero@vertexpartners.example,Mateo Romero,Analytics Manager,analytics,inactive,false,editor,2025-02-11 12:33:13,2025-02-11 14:52:13,removed,false +M4761,W2145,vertex-ops,prod,active,false,A1065,Vertex Partners,mid_market,NA,US,U3646,owen.romero@vertexpartners.example,Owen Romero,BI Analyst,analytics,active,true,admin,2025-01-03 06:06:13,2025-01-03 07:09:13,active,true +M4762,W2144,vertex-core,prod,active,true,A1065,Vertex Partners,mid_market,NA,US,U3647,mateo.silva@vertexpartners.example,Mateo Silva,Sales Analyst,sales,active,true,admin,2025-02-09 09:25:13,2025-02-09 11:06:13,active,true +M4763,W2146,pacific-core,prod,active,true,A1066,Pacific Capital,mid_market,APAC,NZ,U3648,mateo.park@pacificcapital.example,Mateo Park,Technical Program Manager,product,inactive,false,owner,2025-02-15 18:08:41,2025-02-15 19:55:41,removed,false +M4764,W2147,pacific-ops,prod,active,false,A1066,Pacific Capital,mid_market,APAC,NZ,U3649,nina.patel@pacificcapital.example,Nina Patel,Technical Program Manager,product,active,true,viewer,2025-01-28 17:29:41,2025-01-28 17:37:41,active,true +M4765,W2146,pacific-core,prod,active,true,A1066,Pacific Capital,mid_market,APAC,NZ,U3649,nina.patel@pacificcapital.example,Nina Patel,Technical Program Manager,product,active,true,viewer,2025-01-28 15:56:41,2025-01-28 18:19:41,active,true +M4766,W2146,pacific-core,prod,active,true,A1066,Pacific Capital,mid_market,APAC,NZ,U3650,ava.rahman@pacificcapital.example,Ava Rahman,Controller,finance,active,true,viewer,2025-02-13 21:07:41,2025-02-13 23:47:41,active,true +M4767,W2147,pacific-ops,prod,active,false,A1066,Pacific Capital,mid_market,APAC,NZ,U3651,peter.rahman@pacificcapital.example,Peter Rahman,Marketing Operations Lead,marketing,active,true,viewer,2025-01-12 20:56:41,2025-01-12 21:06:41,active,true +M4768,W2147,pacific-ops,prod,active,false,A1066,Pacific Capital,mid_market,APAC,NZ,U3652,nina.fischer@pacificcapital.example,Nina Fischer,Finance Manager,finance,active,true,editor,2025-02-14 16:08:41,2025-02-14 18:40:41,active,true +M4769,W2146,pacific-core,prod,active,true,A1066,Pacific Capital,mid_market,APAC,NZ,U3652,nina.fischer@pacificcapital.example,Nina Fischer,Finance Manager,finance,active,true,editor,2025-02-14 16:31:41,2025-02-14 18:12:41,active,true +M4770,W2147,pacific-ops,prod,active,false,A1066,Pacific Capital,mid_market,APAC,NZ,U3653,peter.fischer@pacificcapital.example,Peter Fischer,Product Manager,product,active,true,admin,2025-02-13 20:20:41,2025-02-13 21:36:41,active,true +M4771,W2147,pacific-ops,prod,active,false,A1066,Pacific Capital,mid_market,APAC,NZ,U3654,noah.rossi@pacificcapital.example,Noah Rossi,FP&A Analyst,finance,active,true,editor,2025-01-30 18:27:41,2025-01-30 19:34:41,active,true +M4772,W2147,pacific-ops,prod,active,false,A1066,Pacific Capital,mid_market,APAC,NZ,U3655,isla.hart@pacificcapital.example,Isla Hart,VP Data,executive,inactive,false,admin,2025-02-09 20:41:41,2025-02-09 22:21:41,removed,false +M4773,W2146,pacific-core,prod,active,true,A1066,Pacific Capital,mid_market,APAC,NZ,U3656,peter.park@pacificcapital.example,Peter Park,Founder,executive,active,true,editor,2025-02-09 17:28:41,2025-02-09 19:14:41,active,true +M4774,W2146,pacific-core,prod,active,true,A1066,Pacific Capital,mid_market,APAC,NZ,U3657,olivia.singh@pacificcapital.example,Olivia Singh,Analytics Engineer,data,active,true,editor,2025-02-18 20:18:41,2025-02-18 23:07:41,active,true +M4775,W2147,pacific-ops,prod,active,false,A1066,Pacific Capital,mid_market,APAC,NZ,U3658,alma.brooks@pacificcapital.example,Alma Brooks,Marketing Operations Lead,marketing,active,true,editor,2025-01-27 20:21:41,2025-01-27 20:50:41,active,true +M4776,W2146,pacific-core,prod,active,true,A1066,Pacific Capital,mid_market,APAC,NZ,U3659,owen.petrova@pacificcapital.example,Owen Petrova,Revenue Operations Manager,sales,active,true,editor,2025-02-10 21:16:41,2025-02-10 22:24:41,active,true +M4777,W2148,maple-core,prod,active,true,A1067,Maple Energy,mid_market,NA,CA,U3660,derek.morgan@mapleenergy.example,Derek Morgan,Controller,finance,active,true,owner,2025-01-26 05:12:42,2025-01-26 05:53:42,active,true +M4778,W2149,maple-ops,sandbox,active,false,A1067,Maple Energy,mid_market,NA,CA,U3661,claire.cole@mapleenergy.example,Claire Cole,VP Data,executive,active,true,viewer,2025-01-27 06:50:42,2025-01-27 09:20:42,active,true +M4779,W2148,maple-core,prod,active,true,A1067,Maple Energy,mid_market,NA,CA,U3662,owen.price@mapleenergy.example,Owen Price,Technical Program Manager,product,active,true,admin,2025-01-09 05:30:42,2025-01-09 06:54:42,active,true +M4780,W2149,maple-ops,sandbox,active,false,A1067,Maple Energy,mid_market,NA,CA,U3663,naomi.petrova@mapleenergy.example,Naomi Petrova,Finance Manager,finance,inactive,false,viewer,2025-01-18 05:31:42,2025-01-18 05:37:42,removed,false +M4781,W2148,maple-core,prod,active,true,A1067,Maple Energy,mid_market,NA,CA,U3663,naomi.petrova@mapleenergy.example,Naomi Petrova,Finance Manager,finance,inactive,false,editor,2025-01-18 06:56:42,2025-01-18 09:24:42,active,true +M4782,W2149,maple-ops,sandbox,active,false,A1067,Maple Energy,mid_market,NA,CA,U3664,tomas.kim@mapleenergy.example,Tomas Kim,Operations Director,operations,active,true,viewer,2025-01-25 03:23:42,2025-01-25 05:31:42,active,true +M4783,W2148,maple-core,prod,active,true,A1067,Maple Energy,mid_market,NA,CA,U3665,ava.lewis@mapleenergy.example,Ava Lewis,Marketing Operations Lead,marketing,active,true,viewer,2025-01-23 04:13:42,2025-01-23 05:54:42,active,true +M4784,W2148,maple-core,prod,active,true,A1067,Maple Energy,mid_market,NA,CA,U3666,jonas.singh@mapleenergy.example,Jonas Singh,Technical Program Manager,product,active,true,viewer,2025-01-13 00:01:42,2025-01-13 00:56:42,active,true +M4785,W2149,maple-ops,sandbox,active,false,A1067,Maple Energy,mid_market,NA,CA,U3666,jonas.singh@mapleenergy.example,Jonas Singh,Technical Program Manager,product,active,true,viewer,2025-01-12 23:26:42,2025-01-13 00:00:42,active,true +M4786,W2150,helio-core,prod,active,true,A1068,Helio Health,enterprise,APAC,SG,U3667,jonas.turner@heliohealth.example,Jonas Turner,Workflow Analyst,operations,active,true,owner,2024-09-22 14:41:33,2024-09-22 16:34:33,active,true +M4787,W2153,helio-marketing,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3668,victor.romero@heliohealth.example,Victor Romero,Operations Manager,operations,active,true,admin,2024-09-11 12:32:33,2024-09-11 13:12:33,active,true +M4788,W2153,helio-marketing,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3669,helena.turner@heliohealth.example,Helena Turner,Sales Analyst,sales,inactive,false,editor,2024-09-20 18:39:33,2024-09-20 19:59:33,removed,false +M4789,W2152,helio-finance,sandbox,active,false,A1068,Helio Health,enterprise,APAC,SG,U3670,sofia.romero@heliohealth.example,Sofia Romero,BI Analyst,analytics,active,true,editor,2024-09-17 11:47:33,2024-09-17 14:16:33,active,true +M4790,W2151,helio-ops,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3671,naomi.cole@heliohealth.example,Naomi Cole,Finance Manager,finance,active,true,admin,2024-08-28 17:08:33,2024-08-28 19:50:33,active,true +M4791,W2152,helio-finance,sandbox,active,false,A1068,Helio Health,enterprise,APAC,SG,U3672,hannah.meyer@heliohealth.example,Hannah Meyer,Insights Lead,analytics,active,true,editor,2024-09-20 12:35:33,2024-09-20 13:33:33,active,true +M4792,W2152,helio-finance,sandbox,active,false,A1068,Helio Health,enterprise,APAC,SG,U3673,kenji.hill@heliohealth.example,Kenji Hill,Controller,finance,active,true,viewer,2024-08-31 15:45:33,2024-08-31 16:24:33,active,true +M4793,W2151,helio-ops,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3674,jonas.dubois@heliohealth.example,Jonas Dubois,Founder,executive,active,true,editor,2024-09-14 17:33:33,2024-09-14 18:59:33,active,true +M4794,W2153,helio-marketing,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3675,naomi.saeed@heliohealth.example,Naomi Saeed,Analytics Manager,analytics,active,true,admin,2024-09-11 18:34:33,2024-09-11 19:58:33,active,true +M4795,W2151,helio-ops,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3676,marcus.reed@heliohealth.example,Marcus Reed,Controller,finance,active,true,editor,2024-08-25 14:52:33,2024-08-25 15:21:33,active,true +M4796,W2152,helio-finance,sandbox,active,false,A1068,Helio Health,enterprise,APAC,SG,U3676,marcus.reed@heliohealth.example,Marcus Reed,Controller,finance,active,true,editor,2024-08-25 15:27:33,2024-08-25 18:11:33,active,true +M4797,W2151,helio-ops,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3677,mila.saeed@heliohealth.example,Mila Saeed,Operations Manager,operations,active,true,admin,2024-09-09 11:41:33,2024-09-09 12:43:33,active,true +M4798,W2152,helio-finance,sandbox,active,false,A1068,Helio Health,enterprise,APAC,SG,U3678,luis.turner@heliohealth.example,Luis Turner,VP Data,executive,active,true,viewer,2024-09-24 16:59:33,2024-09-24 18:16:33,active,true +M4799,W2153,helio-marketing,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3679,ben.saeed@heliohealth.example,Ben Saeed,COO,executive,active,true,editor,2024-09-25 15:15:33,2024-09-25 17:03:33,active,true +M4800,W2152,helio-finance,sandbox,active,false,A1068,Helio Health,enterprise,APAC,SG,U3680,olivia.patel@heliohealth.example,Olivia Patel,Controller,finance,active,true,editor,2024-08-20 15:09:33,2024-08-20 15:33:33,active,true +M4801,W2151,helio-ops,prod,active,false,A1068,Helio Health,enterprise,APAC,SG,U3681,naomi.petrova@heliohealth.example,Naomi Petrova,Revenue Operations Manager,sales,active,true,admin,2024-08-15 12:01:33,2024-08-15 14:30:33,active,true +M4802,W2150,helio-core,prod,active,true,A1068,Helio Health,enterprise,APAC,SG,U3681,naomi.petrova@heliohealth.example,Naomi Petrova,Revenue Operations Manager,sales,active,true,editor,2024-08-15 12:21:33,2024-08-15 12:58:33,active,true +M4803,W2152,helio-finance,sandbox,active,false,A1068,Helio Health,enterprise,APAC,SG,U3682,ivy.desai@heliohealth.example,Ivy Desai,Marketing Operations Lead,marketing,active,true,editor,2024-08-13 19:17:33,2024-08-13 20:32:33,active,true +M4804,W2154,bright-core,prod,active,true,A1069,Bright Foods,enterprise,NA,CA,U3683,nina.desai@brightfoods.example,Nina Desai,Operations Manager,operations,active,true,owner,2025-01-17 01:23:52,2025-01-17 04:05:52,active,true +M4805,W2156,bright-finance,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3684,olivia.reed@brightfoods.example,Olivia Reed,Marketing Operations Lead,marketing,active,true,viewer,2025-01-17 06:26:52,2025-01-17 07:30:52,active,true +M4806,W2154,bright-core,prod,active,true,A1069,Bright Foods,enterprise,NA,CA,U3684,olivia.reed@brightfoods.example,Olivia Reed,Marketing Operations Lead,marketing,active,true,viewer,2025-01-17 07:39:52,2025-01-17 08:07:52,active,true +M4807,W2154,bright-core,prod,active,true,A1069,Bright Foods,enterprise,NA,CA,U3685,evan.cole@brightfoods.example,Evan Cole,COO,executive,active,true,admin,2025-01-07 05:25:52,2025-01-07 05:49:52,active,true +M4808,W2154,bright-core,prod,active,true,A1069,Bright Foods,enterprise,NA,CA,U3686,marcus.chen@brightfoods.example,Marcus Chen,Marketing Operations Lead,marketing,inactive,false,admin,2024-12-24 04:12:52,2024-12-24 07:07:52,removed,false +M4809,W2155,bright-ops,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3687,marcus.reed@brightfoods.example,Marcus Reed,Technical Program Manager,product,active,true,editor,2025-01-19 04:18:52,2025-01-19 06:01:52,active,true +M4810,W2156,bright-finance,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3687,marcus.reed@brightfoods.example,Marcus Reed,Technical Program Manager,product,active,true,editor,2025-01-19 03:36:52,2025-01-19 05:42:52,active,true +M4811,W2155,bright-ops,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3688,kenji.cole@brightfoods.example,Kenji Cole,Sales Analyst,sales,active,true,viewer,2024-12-19 10:56:52,2024-12-19 13:35:52,active,true +M4812,W2154,bright-core,prod,active,true,A1069,Bright Foods,enterprise,NA,CA,U3689,alma.grant@brightfoods.example,Alma Grant,Product Manager,product,active,true,viewer,2025-01-08 03:20:52,2025-01-08 04:36:52,active,true +M4813,W2156,bright-finance,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3690,claire.desai@brightfoods.example,Claire Desai,Operations Manager,operations,active,true,admin,2025-01-06 03:10:52,2025-01-06 05:20:52,active,true +M4814,W2156,bright-finance,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3691,ben.singh@brightfoods.example,Ben Singh,Product Manager,product,active,true,viewer,2025-01-10 07:55:52,2025-01-10 09:51:52,active,true +M4815,W2156,bright-finance,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3692,mei.keller@brightfoods.example,Mei Keller,Technical Program Manager,product,inactive,false,editor,2024-12-17 01:17:52,2024-12-17 03:21:52,removed,false +M4816,W2155,bright-ops,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3692,mei.keller@brightfoods.example,Mei Keller,Technical Program Manager,product,inactive,false,viewer,2024-12-17 02:22:52,2024-12-17 04:15:52,removed,false +M4817,W2155,bright-ops,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3693,noah.park@brightfoods.example,Noah Park,Operations Director,operations,active,true,editor,2024-12-15 09:05:52,2024-12-15 10:00:52,active,true +M4818,W2155,bright-ops,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3694,marcus.rahman@brightfoods.example,Marcus Rahman,Operations Manager,operations,active,true,editor,2024-12-18 07:24:52,2024-12-18 07:53:52,active,true +M4819,W2156,bright-finance,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3694,marcus.rahman@brightfoods.example,Marcus Rahman,Operations Manager,operations,active,true,editor,2024-12-18 06:10:52,2024-12-18 07:49:52,active,true +M4820,W2156,bright-finance,prod,active,false,A1069,Bright Foods,enterprise,NA,CA,U3695,noah.grant@brightfoods.example,Noah Grant,Demand Gen Manager,marketing,active,true,viewer,2025-01-06 07:02:52,2025-01-06 09:52:52,active,true +M4821,W2157,helio-core,prod,active,true,A1070,Helio Manufacturing,smb,APAC,NZ,U3696,helena.dubois@heliomanufacturing.example,Helena Dubois,Sales Analyst,sales,inactive,false,owner,2024-12-07 04:43:27,2024-12-07 07:32:27,removed,false +M4822,W2157,helio-core,prod,active,true,A1070,Helio Manufacturing,smb,APAC,NZ,U3697,ava.hill@heliomanufacturing.example,Ava Hill,Operations Manager,operations,active,true,viewer,2024-12-08 04:48:27,2024-12-08 05:57:27,active,true +M4823,W2157,helio-core,prod,active,true,A1070,Helio Manufacturing,smb,APAC,NZ,U3698,luis.hill@heliomanufacturing.example,Luis Hill,Data Engineer,data,inactive,false,viewer,2024-12-07 22:05:27,2024-12-07 22:17:27,active,true +M4824,W2157,helio-core,prod,active,true,A1070,Helio Manufacturing,smb,APAC,NZ,U3699,alma.shah@heliomanufacturing.example,Alma Shah,Insights Lead,analytics,active,true,viewer,2024-12-15 22:58:27,2024-12-16 00:59:27,active,true +M4825,W2157,helio-core,prod,active,true,A1070,Helio Manufacturing,smb,APAC,NZ,U3700,mateo.rossi@heliomanufacturing.example,Mateo Rossi,Product Manager,product,active,true,admin,2024-11-25 04:43:27,2024-11-25 07:33:27,active,true +M4826,W2157,helio-core,prod,active,true,A1070,Helio Manufacturing,smb,APAC,NZ,U3701,isla.silva@heliomanufacturing.example,Isla Silva,Data Engineer,data,active,true,admin,2024-12-04 00:15:27,2024-12-04 02:56:27,active,true +M4827,W2157,helio-core,prod,active,true,A1070,Helio Manufacturing,smb,APAC,NZ,U3702,lina.park@heliomanufacturing.example,Lina Park,Product Manager,product,active,true,viewer,2024-11-09 00:56:27,2024-11-09 01:34:27,active,true +M4828,W2157,helio-core,prod,active,true,A1070,Helio Manufacturing,smb,APAC,NZ,U3703,jonas.rahman@heliomanufacturing.example,Jonas Rahman,Technical Program Manager,product,active,true,editor,2024-11-15 01:30:27,2024-11-15 02:05:27,active,true +M4829,W2158,evergreen-core,prod,active,true,A1071,Evergreen Group,mid_market,NA,CA,U3704,olivia.rossi@evergreengroup.example,Olivia Rossi,Technical Program Manager,product,active,true,owner,2024-10-01 17:25:10,2024-10-01 19:23:10,active,true +M4830,W2160,evergreen-finance,sandbox,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3705,nina.rossi@evergreengroup.example,Nina Rossi,Sales Analyst,sales,active,true,viewer,2024-09-14 18:43:10,2024-09-14 21:07:10,active,true +M4831,W2159,evergreen-ops,prod,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3706,priya.lewis@evergreengroup.example,Priya Lewis,VP Data,executive,active,true,viewer,2024-10-03 14:50:10,2024-10-03 17:47:10,active,true +M4832,W2158,evergreen-core,prod,active,true,A1071,Evergreen Group,mid_market,NA,CA,U3706,priya.lewis@evergreengroup.example,Priya Lewis,VP Data,executive,active,true,viewer,2024-10-03 13:44:10,2024-10-03 15:10:10,active,true +M4833,W2160,evergreen-finance,sandbox,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3707,samir.kim@evergreengroup.example,Samir Kim,Operations Manager,operations,active,true,viewer,2024-09-18 20:31:10,2024-09-18 23:26:10,active,true +M4834,W2159,evergreen-ops,prod,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3708,victor.alvarez@evergreengroup.example,Victor Alvarez,Demand Gen Manager,marketing,provisioned,false,editor,2024-10-03 16:25:10,,pending,false +M4835,W2158,evergreen-core,prod,active,true,A1071,Evergreen Group,mid_market,NA,CA,U3709,jonas.grant@evergreengroup.example,Jonas Grant,COO,executive,active,true,editor,2024-08-28 23:14:10,2024-08-29 00:27:10,active,true +M4836,W2158,evergreen-core,prod,active,true,A1071,Evergreen Group,mid_market,NA,CA,U3710,ivy.hart@evergreengroup.example,Ivy Hart,Sales Analyst,sales,active,true,admin,2024-08-28 21:04:10,2024-08-28 23:18:10,active,true +M4837,W2159,evergreen-ops,prod,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3710,ivy.hart@evergreengroup.example,Ivy Hart,Sales Analyst,sales,active,true,viewer,2024-08-28 21:40:10,2024-08-28 22:29:10,active,true +M4838,W2159,evergreen-ops,prod,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3711,lina.kim@evergreengroup.example,Lina Kim,Founder,executive,active,true,editor,2024-09-27 15:49:10,2024-09-27 17:53:10,active,true +M4839,W2160,evergreen-finance,sandbox,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3712,samir.rossi@evergreengroup.example,Samir Rossi,COO,executive,active,true,viewer,2024-10-05 19:21:10,2024-10-05 19:55:10,active,true +M4840,W2159,evergreen-ops,prod,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3712,samir.rossi@evergreengroup.example,Samir Rossi,COO,executive,active,true,viewer,2024-10-05 17:35:10,2024-10-05 18:03:10,active,true +M4841,W2160,evergreen-finance,sandbox,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3713,mei.rossi@evergreengroup.example,Mei Rossi,Workflow Analyst,operations,active,true,admin,2024-09-09 18:12:10,2024-09-09 18:22:10,active,true +M4842,W2158,evergreen-core,prod,active,true,A1071,Evergreen Group,mid_market,NA,CA,U3714,lena.morgan@evergreengroup.example,Lena Morgan,Marketing Operations Lead,marketing,active,true,viewer,2024-10-11 15:34:10,2024-10-11 15:59:10,active,true +M4843,W2160,evergreen-finance,sandbox,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3714,lena.morgan@evergreengroup.example,Lena Morgan,Marketing Operations Lead,marketing,active,true,editor,2024-10-11 14:40:10,2024-10-11 15:48:10,active,true +M4844,W2160,evergreen-finance,sandbox,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3715,tomas.saeed@evergreengroup.example,Tomas Saeed,Technical Program Manager,product,active,true,viewer,2024-09-09 20:08:10,2024-09-09 20:46:10,active,true +M4845,W2159,evergreen-ops,prod,active,false,A1071,Evergreen Group,mid_market,NA,CA,U3716,jonas.hart@evergreengroup.example,Jonas Hart,Analytics Manager,analytics,active,true,admin,2024-10-08 23:10:10,2024-10-09 00:26:10,active,true +M4846,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3717,nina.hart@summitventures.example,Nina Hart,Product Manager,product,active,true,owner,2024-09-30 11:59:23,2024-09-30 14:28:23,active,true +M4847,W2162,summit-ops,prod,active,false,A1072,Summit Ventures,enterprise,NA,US,U3718,tara.reed@summitventures.example,Tara Reed,Technical Program Manager,product,active,true,editor,2024-11-08 11:42:23,2024-11-08 12:38:23,active,true +M4848,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3719,ivy.brooks@summitventures.example,Ivy Brooks,Demand Gen Manager,marketing,active,true,viewer,2024-10-28 05:20:23,2024-10-28 06:32:23,active,true +M4849,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3720,jonas.ng@summitventures.example,Jonas Ng,Sales Analyst,sales,active,true,editor,2024-10-03 06:32:23,2024-10-03 09:21:23,active,true +M4850,W2163,summit-finance,sandbox,active,false,A1072,Summit Ventures,enterprise,NA,US,U3721,claire.rahman@summitventures.example,Claire Rahman,Insights Lead,analytics,active,true,editor,2024-11-06 05:30:23,2024-11-06 06:18:23,active,true +M4851,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3722,peter.tan@summitventures.example,Peter Tan,Data Engineer,data,active,true,viewer,2024-10-18 10:57:23,2024-10-18 13:19:23,active,true +M4852,W2163,summit-finance,sandbox,active,false,A1072,Summit Ventures,enterprise,NA,US,U3723,ivy.desai@summitventures.example,Ivy Desai,Marketing Operations Lead,marketing,active,true,editor,2024-10-16 05:32:23,2024-10-16 08:22:23,active,true +M4853,W2163,summit-finance,sandbox,active,false,A1072,Summit Ventures,enterprise,NA,US,U3724,evan.sato@summitventures.example,Evan Sato,Data Platform Manager,data,active,true,viewer,2024-10-30 04:05:23,2024-10-30 06:21:23,active,true +M4854,W2162,summit-ops,prod,active,false,A1072,Summit Ventures,enterprise,NA,US,U3724,evan.sato@summitventures.example,Evan Sato,Data Platform Manager,data,active,true,editor,2024-10-30 02:38:23,2024-10-30 03:36:23,active,true +M4855,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3725,alma.singh@summitventures.example,Alma Singh,Operations Manager,operations,active,true,editor,2024-10-22 04:10:23,2024-10-22 07:03:23,active,true +M4856,W2162,summit-ops,prod,active,false,A1072,Summit Ventures,enterprise,NA,US,U3725,alma.singh@summitventures.example,Alma Singh,Operations Manager,operations,active,true,editor,2024-10-22 03:56:23,2024-10-22 04:48:23,active,true +M4857,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3726,naomi.alvarez@summitventures.example,Naomi Alvarez,Workflow Analyst,operations,active,true,editor,2024-10-31 04:04:23,2024-10-31 05:45:23,active,true +M4858,W2163,summit-finance,sandbox,active,false,A1072,Summit Ventures,enterprise,NA,US,U3727,helena.saeed@summitventures.example,Helena Saeed,Analytics Manager,analytics,active,true,editor,2024-10-04 05:56:23,2024-10-04 07:32:23,active,true +M4859,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3727,helena.saeed@summitventures.example,Helena Saeed,Analytics Manager,analytics,active,true,viewer,2024-10-04 05:25:23,2024-10-04 05:32:23,active,true +M4860,W2162,summit-ops,prod,active,false,A1072,Summit Ventures,enterprise,NA,US,U3728,alma.silva@summitventures.example,Alma Silva,Revenue Operations Manager,sales,active,true,editor,2024-10-26 05:21:23,2024-10-26 05:51:23,active,true +M4861,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3729,daniel.dubois@summitventures.example,Daniel Dubois,Technical Program Manager,product,active,true,viewer,2024-10-15 03:17:23,2024-10-15 05:41:23,active,true +M4862,W2161,summit-core,prod,active,true,A1072,Summit Ventures,enterprise,NA,US,U3730,olivia.khan@summitventures.example,Olivia Khan,Sales Analyst,sales,inactive,false,viewer,2024-11-11 05:58:23,2024-11-11 07:59:23,removed,false +M4863,W2163,summit-finance,sandbox,active,false,A1072,Summit Ventures,enterprise,NA,US,U3731,derek.turner@summitventures.example,Derek Turner,VP Data,executive,active,true,editor,2024-09-30 02:30:23,2024-09-30 03:37:23,active,true +M4864,W2162,summit-ops,prod,active,false,A1072,Summit Ventures,enterprise,NA,US,U3732,hannah.alvarez@summitventures.example,Hannah Alvarez,Insights Lead,analytics,active,true,viewer,2024-10-23 07:15:23,2024-10-23 10:13:23,active,true +M4865,W2162,summit-ops,prod,active,false,A1072,Summit Ventures,enterprise,NA,US,U3733,derek.grant@summitventures.example,Derek Grant,Demand Gen Manager,marketing,inactive,false,editor,2024-10-23 02:24:23,2024-10-23 03:28:23,removed,false +M4866,W2163,summit-finance,sandbox,active,false,A1072,Summit Ventures,enterprise,NA,US,U3734,jonas.petrova@summitventures.example,Jonas Petrova,Demand Gen Manager,marketing,inactive,false,admin,2024-10-12 05:42:23,2024-10-12 08:14:23,removed,false +M4867,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3735,kai.desai@silverholdings.example,Kai Desai,BI Analyst,analytics,active,true,owner,2024-12-09 19:16:51,2024-12-09 20:02:51,active,true +M4868,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3736,samir.ng@silverholdings.example,Samir Ng,Operations Director,operations,active,true,viewer,2024-12-22 14:50:51,2024-12-22 17:09:51,active,true +M4869,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3737,kai.khan@silverholdings.example,Kai Khan,Product Manager,product,active,true,viewer,2024-11-11 14:02:51,2024-11-11 14:40:51,active,true +M4870,W2165,silver-ops,prod,active,false,A1073,Silver Holdings,mid_market,EMEA,DE,U3738,naomi.chen@silverholdings.example,Naomi Chen,Revenue Operations Manager,sales,active,true,viewer,2024-12-18 15:40:51,2024-12-18 16:21:51,active,true +M4871,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3738,naomi.chen@silverholdings.example,Naomi Chen,Revenue Operations Manager,sales,active,true,editor,2024-12-18 14:37:51,2024-12-18 16:10:51,active,true +M4872,W2165,silver-ops,prod,active,false,A1073,Silver Holdings,mid_market,EMEA,DE,U3739,olivia.rahman@silverholdings.example,Olivia Rahman,Marketing Operations Lead,marketing,active,true,admin,2024-12-16 17:54:51,2024-12-16 18:43:51,active,true +M4873,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3739,olivia.rahman@silverholdings.example,Olivia Rahman,Marketing Operations Lead,marketing,active,true,viewer,2024-12-16 17:41:51,2024-12-16 19:04:51,active,true +M4874,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3740,owen.turner@silverholdings.example,Owen Turner,FP&A Analyst,finance,active,true,editor,2024-11-19 15:47:51,2024-11-19 16:54:51,active,true +M4875,W2165,silver-ops,prod,active,false,A1073,Silver Holdings,mid_market,EMEA,DE,U3740,owen.turner@silverholdings.example,Owen Turner,FP&A Analyst,finance,active,true,editor,2024-11-19 17:00:51,2024-11-19 20:00:51,active,true +M4876,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3741,elena.price@silverholdings.example,Elena Price,COO,executive,inactive,false,editor,2024-12-03 17:19:51,2024-12-03 19:44:51,removed,false +M4877,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3742,luis.romero@silverholdings.example,Luis Romero,Marketing Operations Lead,marketing,active,true,viewer,2024-12-07 13:33:51,2024-12-07 15:36:51,active,true +M4878,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3743,hannah.morgan@silverholdings.example,Hannah Morgan,Sales Analyst,sales,inactive,false,viewer,2024-11-17 12:39:51,2024-11-17 13:18:51,removed,false +M4879,W2165,silver-ops,prod,active,false,A1073,Silver Holdings,mid_market,EMEA,DE,U3743,hannah.morgan@silverholdings.example,Hannah Morgan,Sales Analyst,sales,inactive,false,editor,2024-11-17 12:38:51,2024-11-17 13:55:51,active,true +M4880,W2165,silver-ops,prod,active,false,A1073,Silver Holdings,mid_market,EMEA,DE,U3744,olivia.chen@silverholdings.example,Olivia Chen,Sales Analyst,sales,active,true,editor,2024-12-21 17:54:51,2024-12-21 20:29:51,active,true +M4881,W2164,silver-core,prod,active,true,A1073,Silver Holdings,mid_market,EMEA,DE,U3745,daniel.tan@silverholdings.example,Daniel Tan,Analytics Manager,analytics,active,true,editor,2024-12-09 16:41:51,2024-12-09 17:46:51,active,true +M4882,W2165,silver-ops,prod,active,false,A1073,Silver Holdings,mid_market,EMEA,DE,U3746,ben.reed@silverholdings.example,Ben Reed,Insights Lead,analytics,active,true,editor,2024-12-21 15:19:51,2024-12-21 18:00:51,active,true +M4883,W2165,silver-ops,prod,active,false,A1073,Silver Holdings,mid_market,EMEA,DE,U3747,peter.romero@silverholdings.example,Peter Romero,Analytics Manager,analytics,inactive,false,viewer,2024-11-23 19:02:51,2024-11-23 21:14:51,removed,false +M4884,W2166,granite-core,prod,active,true,A1074,Granite Analytics,mid_market,NA,CA,U3748,ava.petrova@graniteanalytics.example,Ava Petrova,Analytics Engineer,data,inactive,false,owner,2024-08-19 03:51:24,2024-08-19 05:13:24,removed,false +M4885,W2167,granite-ops,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3749,lina.ng@graniteanalytics.example,Lina Ng,BI Analyst,analytics,active,true,editor,2024-08-17 06:42:24,2024-08-17 08:06:24,active,true +M4886,W2166,granite-core,prod,active,true,A1074,Granite Analytics,mid_market,NA,CA,U3749,lina.ng@graniteanalytics.example,Lina Ng,BI Analyst,analytics,active,true,editor,2024-08-17 06:29:24,2024-08-17 09:26:24,active,true +M4887,W2166,granite-core,prod,active,true,A1074,Granite Analytics,mid_market,NA,CA,U3750,victor.turner@graniteanalytics.example,Victor Turner,Founder,executive,active,true,editor,2024-08-11 02:56:24,2024-08-11 03:42:24,active,true +M4888,W2167,granite-ops,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3751,jonas.morgan@graniteanalytics.example,Jonas Morgan,COO,executive,active,true,viewer,2024-09-14 22:19:24,2024-09-14 22:45:24,active,true +M4889,W2167,granite-ops,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3752,aisha.hart@graniteanalytics.example,Aisha Hart,Technical Program Manager,product,active,true,viewer,2024-09-08 23:36:24,2024-09-08 23:44:24,active,true +M4890,W2168,granite-finance,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3752,aisha.hart@graniteanalytics.example,Aisha Hart,Technical Program Manager,product,active,true,viewer,2024-09-09 00:58:24,2024-09-09 02:24:24,active,true +M4891,W2168,granite-finance,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3753,mateo.ng@graniteanalytics.example,Mateo Ng,FP&A Analyst,finance,active,true,editor,2024-08-18 04:17:24,2024-08-18 06:26:24,active,true +M4892,W2168,granite-finance,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3754,tara.dubois@graniteanalytics.example,Tara Dubois,CFO,executive,active,true,viewer,2024-08-29 01:40:24,2024-08-29 01:58:24,active,true +M4893,W2167,granite-ops,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3755,nina.saeed@graniteanalytics.example,Nina Saeed,CFO,executive,active,true,editor,2024-08-21 04:04:24,2024-08-21 06:43:24,active,true +M4894,W2167,granite-ops,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3756,peter.park@graniteanalytics.example,Peter Park,Data Engineer,data,active,true,editor,2024-08-19 21:47:24,2024-08-19 23:17:24,active,true +M4895,W2168,granite-finance,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3757,leo.lopez@graniteanalytics.example,Leo Lopez,Controller,finance,active,true,viewer,2024-09-09 04:24:24,2024-09-09 06:45:24,active,true +M4896,W2166,granite-core,prod,active,true,A1074,Granite Analytics,mid_market,NA,CA,U3757,leo.lopez@graniteanalytics.example,Leo Lopez,Controller,finance,active,true,viewer,2024-09-09 03:41:24,2024-09-09 05:24:24,active,true +M4897,W2166,granite-core,prod,active,true,A1074,Granite Analytics,mid_market,NA,CA,U3758,priya.park@graniteanalytics.example,Priya Park,CFO,executive,active,true,admin,2024-09-09 04:48:24,2024-09-09 07:24:24,active,true +M4898,W2167,granite-ops,prod,active,false,A1074,Granite Analytics,mid_market,NA,CA,U3759,peter.grant@graniteanalytics.example,Peter Grant,Founder,executive,active,true,editor,2024-08-24 01:45:24,2024-08-24 03:46:24,active,true +M4899,W2169,cedar-core,prod,active,true,A1075,Cedar Labs,smb,EMEA,UK,U3760,evan.reed@cedarlabs.example,Evan Reed,Data Platform Manager,data,active,true,owner,2024-12-09 08:34:13,2024-12-09 08:51:13,active,true +M4900,W2169,cedar-core,prod,active,true,A1075,Cedar Labs,smb,EMEA,UK,U3761,victor.rossi@cedarlabs.example,Victor Rossi,Operations Manager,operations,active,true,editor,2024-11-04 11:14:13,2024-11-04 13:24:13,active,true +M4901,W2169,cedar-core,prod,active,true,A1075,Cedar Labs,smb,EMEA,UK,U3762,olivia.morgan@cedarlabs.example,Olivia Morgan,Founder,executive,active,true,editor,2024-11-23 07:36:13,2024-11-23 10:14:13,active,true +M4902,W2169,cedar-core,prod,active,true,A1075,Cedar Labs,smb,EMEA,UK,U3763,leo.ward@cedarlabs.example,Leo Ward,Insights Lead,analytics,active,true,editor,2024-12-15 06:46:13,2024-12-15 09:43:13,active,true +M4903,W2169,cedar-core,prod,active,true,A1075,Cedar Labs,smb,EMEA,UK,U3764,mila.park@cedarlabs.example,Mila Park,COO,executive,active,true,viewer,2024-11-16 07:26:13,2024-11-16 09:49:13,active,true +M4904,W2169,cedar-core,prod,active,true,A1075,Cedar Labs,smb,EMEA,UK,U3765,alma.brooks@cedarlabs.example,Alma Brooks,Workflow Analyst,operations,active,true,admin,2024-12-11 12:44:13,2024-12-11 14:35:13,active,true +M4905,W2169,cedar-core,prod,active,true,A1075,Cedar Labs,smb,EMEA,UK,U3766,kenji.alvarez@cedarlabs.example,Kenji Alvarez,Revenue Operations Manager,sales,active,true,editor,2024-11-04 09:51:13,2024-11-04 12:38:13,active,true +M4906,W2169,cedar-core,prod,active,true,A1075,Cedar Labs,smb,EMEA,UK,U3767,noah.meyer@cedarlabs.example,Noah Meyer,Finance Manager,finance,active,true,editor,2024-11-22 13:44:13,2024-11-22 13:58:13,active,true +M4907,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3768,jonas.lewis@atlassolutions.example,Jonas Lewis,Founder,executive,active,true,owner,2025-03-19 04:22:44,2025-03-19 06:08:44,active,true +M4908,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3769,lina.turner@atlassolutions.example,Lina Turner,Insights Lead,analytics,active,true,admin,2025-04-03 03:14:44,2025-04-03 03:56:44,active,true +M4909,W2171,atlas-ops,prod,active,false,A1076,Atlas Solutions,mid_market,EMEA,UK,U3770,derek.sato@atlassolutions.example,Derek Sato,Sales Analyst,sales,active,true,editor,2025-02-28 20:32:44,2025-02-28 23:15:44,active,true +M4910,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3771,zoe.shah@atlassolutions.example,Zoe Shah,Product Manager,product,active,true,viewer,2025-03-14 02:57:44,2025-03-14 05:16:44,active,true +M4911,W2171,atlas-ops,prod,active,false,A1076,Atlas Solutions,mid_market,EMEA,UK,U3772,leo.singh@atlassolutions.example,Leo Singh,Finance Manager,finance,active,true,admin,2025-04-08 01:26:44,2025-04-08 02:08:44,active,true +M4912,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3773,ivy.meyer@atlassolutions.example,Ivy Meyer,Data Platform Manager,data,active,true,editor,2025-02-27 21:20:44,2025-02-27 22:51:44,active,true +M4913,W2171,atlas-ops,prod,active,false,A1076,Atlas Solutions,mid_market,EMEA,UK,U3774,ivy.price@atlassolutions.example,Ivy Price,Operations Manager,operations,active,true,editor,2025-04-06 23:58:44,2025-04-07 02:50:44,active,true +M4914,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3774,ivy.price@atlassolutions.example,Ivy Price,Operations Manager,operations,active,true,editor,2025-04-06 23:55:44,2025-04-07 00:20:44,active,true +M4915,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3775,elena.hart@atlassolutions.example,Elena Hart,Data Engineer,data,active,true,viewer,2025-04-07 03:52:44,2025-04-07 06:34:44,active,true +M4916,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3776,noah.desai@atlassolutions.example,Noah Desai,Operations Manager,operations,active,true,viewer,2025-04-10 01:03:44,2025-04-10 02:59:44,active,true +M4917,W2171,atlas-ops,prod,active,false,A1076,Atlas Solutions,mid_market,EMEA,UK,U3776,noah.desai@atlassolutions.example,Noah Desai,Operations Manager,operations,active,true,editor,2025-04-10 00:55:44,2025-04-10 01:47:44,active,true +M4918,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3777,ava.park@atlassolutions.example,Ava Park,Analytics Manager,analytics,active,true,viewer,2025-03-06 23:04:44,2025-03-07 00:21:44,active,true +M4919,W2171,atlas-ops,prod,active,false,A1076,Atlas Solutions,mid_market,EMEA,UK,U3778,ben.lopez@atlassolutions.example,Ben Lopez,Operations Manager,operations,active,true,admin,2025-03-29 20:06:44,2025-03-29 20:44:44,active,true +M4920,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3778,ben.lopez@atlassolutions.example,Ben Lopez,Operations Manager,operations,active,true,editor,2025-03-29 20:55:44,2025-03-29 22:08:44,active,true +M4921,W2171,atlas-ops,prod,active,false,A1076,Atlas Solutions,mid_market,EMEA,UK,U3779,maya.rahman@atlassolutions.example,Maya Rahman,Technical Program Manager,product,active,true,admin,2025-04-09 02:00:44,2025-04-09 03:28:44,active,true +M4922,W2170,atlas-core,prod,active,true,A1076,Atlas Solutions,mid_market,EMEA,UK,U3780,ben.rossi@atlassolutions.example,Ben Rossi,Insights Lead,analytics,active,true,admin,2025-04-04 00:59:44,2025-04-04 03:39:44,active,true +M4923,W2172,evergreen-core,prod,active,true,A1077,Evergreen Foods,mid_market,NA,CA,U3781,noah.singh@evergreenfoods.example,Noah Singh,Operations Director,operations,active,true,owner,2024-09-18 21:54:36,2024-09-18 23:56:36,active,true +M4924,W2174,evergreen-finance,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3782,luis.tan@evergreenfoods.example,Luis Tan,Data Engineer,data,active,true,editor,2024-10-11 00:30:36,2024-10-11 02:14:36,active,true +M4925,W2173,evergreen-ops,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3783,isla.tan@evergreenfoods.example,Isla Tan,Operations Manager,operations,active,true,viewer,2024-10-10 00:59:36,2024-10-10 02:32:36,active,true +M4926,W2174,evergreen-finance,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3783,isla.tan@evergreenfoods.example,Isla Tan,Operations Manager,operations,active,true,viewer,2024-10-09 23:54:36,2024-10-10 01:52:36,active,true +M4927,W2173,evergreen-ops,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3784,olivia.rahman@evergreenfoods.example,Olivia Rahman,Controller,finance,inactive,false,viewer,2024-10-25 05:31:36,2024-10-25 06:19:36,removed,false +M4928,W2173,evergreen-ops,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3785,owen.alvarez@evergreenfoods.example,Owen Alvarez,Demand Gen Manager,marketing,active,true,editor,2024-10-17 04:26:36,2024-10-17 04:51:36,active,true +M4929,W2174,evergreen-finance,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3786,marcus.ng@evergreenfoods.example,Marcus Ng,Sales Analyst,sales,provisioned,false,editor,2024-10-18 07:29:36,,pending,false +M4930,W2172,evergreen-core,prod,active,true,A1077,Evergreen Foods,mid_market,NA,CA,U3787,noah.rossi@evergreenfoods.example,Noah Rossi,Product Manager,product,active,true,viewer,2024-10-25 23:01:36,2024-10-26 00:20:36,active,true +M4931,W2173,evergreen-ops,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3788,lena.khan@evergreenfoods.example,Lena Khan,Operations Manager,operations,inactive,false,editor,2024-10-22 05:20:36,2024-10-22 08:04:36,removed,false +M4932,W2174,evergreen-finance,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3789,marta.park@evergreenfoods.example,Marta Park,Revenue Operations Manager,sales,active,true,editor,2024-09-21 02:02:36,2024-09-21 02:12:36,active,true +M4933,W2173,evergreen-ops,prod,active,false,A1077,Evergreen Foods,mid_market,NA,CA,U3790,marta.park2@evergreenfoods.example,Marta Park,Marketing Operations Lead,marketing,inactive,false,editor,2024-10-18 04:09:36,2024-10-18 05:50:36,active,true +M4934,W2172,evergreen-core,prod,active,true,A1077,Evergreen Foods,mid_market,NA,CA,U3791,ava.lewis@evergreenfoods.example,Ava Lewis,Insights Lead,analytics,inactive,false,editor,2024-10-26 05:24:36,2024-10-26 05:53:36,removed,false +M4935,W2172,evergreen-core,prod,active,true,A1077,Evergreen Foods,mid_market,NA,CA,U3792,derek.turner@evergreenfoods.example,Derek Turner,Controller,finance,active,true,viewer,2024-09-24 03:17:36,2024-09-24 04:02:36,active,true +M4936,W2175,beacon-core,prod,active,true,A1078,Beacon Foods,mid_market,EMEA,FR,U3793,leo.lewis@beaconfoods.example,Leo Lewis,Finance Manager,finance,active,true,owner,2025-03-08 05:28:06,2025-03-08 07:15:06,active,true +M4937,W2177,beacon-finance,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3794,tara.singh@beaconfoods.example,Tara Singh,Marketing Operations Lead,marketing,inactive,false,editor,2025-04-01 23:13:06,2025-04-02 01:51:06,removed,false +M4938,W2176,beacon-ops,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3795,marta.rahman@beaconfoods.example,Marta Rahman,Controller,finance,active,true,viewer,2025-02-27 23:39:06,2025-02-28 02:26:06,active,true +M4939,W2177,beacon-finance,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3796,mila.patel@beaconfoods.example,Mila Patel,Workflow Analyst,operations,active,true,editor,2025-03-12 06:16:06,2025-03-12 07:18:06,active,true +M4940,W2176,beacon-ops,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3797,marta.desai@beaconfoods.example,Marta Desai,BI Analyst,analytics,active,true,editor,2025-04-11 06:21:06,2025-04-11 08:21:06,active,true +M4941,W2175,beacon-core,prod,active,true,A1078,Beacon Foods,mid_market,EMEA,FR,U3798,hannah.park@beaconfoods.example,Hannah Park,Product Manager,product,active,true,viewer,2025-03-04 01:06:06,2025-03-04 03:27:06,active,true +M4942,W2177,beacon-finance,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3798,hannah.park@beaconfoods.example,Hannah Park,Product Manager,product,active,true,editor,2025-03-03 23:20:06,2025-03-04 00:50:06,active,true +M4943,W2177,beacon-finance,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3799,sofia.hill@beaconfoods.example,Sofia Hill,Controller,finance,inactive,false,admin,2025-03-05 02:17:06,2025-03-05 04:50:06,removed,false +M4944,W2176,beacon-ops,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3800,owen.hart@beaconfoods.example,Owen Hart,Product Manager,product,active,true,editor,2025-03-07 03:47:06,2025-03-07 04:49:06,active,true +M4945,W2175,beacon-core,prod,active,true,A1078,Beacon Foods,mid_market,EMEA,FR,U3801,olivia.tan@beaconfoods.example,Olivia Tan,Technical Program Manager,product,active,true,viewer,2025-02-26 02:56:06,2025-02-26 05:34:06,active,true +M4946,W2177,beacon-finance,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3802,samir.meyer@beaconfoods.example,Samir Meyer,Finance Manager,finance,active,true,viewer,2025-03-15 04:25:06,2025-03-15 07:06:06,active,true +M4947,W2175,beacon-core,prod,active,true,A1078,Beacon Foods,mid_market,EMEA,FR,U3803,derek.alvarez@beaconfoods.example,Derek Alvarez,Controller,finance,active,true,admin,2025-03-24 01:39:06,2025-03-24 02:07:06,active,true +M4948,W2176,beacon-ops,prod,active,false,A1078,Beacon Foods,mid_market,EMEA,FR,U3804,kai.price@beaconfoods.example,Kai Price,Technical Program Manager,product,active,true,admin,2025-02-27 05:25:06,2025-02-27 08:17:06,active,true +M4949,W2178,nova-core,prod,active,true,A1079,Nova Foods,enterprise,EMEA,FR,U3805,tomas.petrova@novafoods.example,Tomas Petrova,VP Data,executive,active,true,owner,2024-09-28 16:54:24,2024-09-28 19:20:24,active,true +M4950,W2179,nova-ops,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3806,priya.shah@novafoods.example,Priya Shah,Data Platform Manager,data,inactive,false,viewer,2024-10-18 22:11:24,2024-10-18 23:17:24,removed,false +M4951,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3806,priya.shah@novafoods.example,Priya Shah,Data Platform Manager,data,inactive,false,editor,2024-10-18 22:12:24,2024-10-18 23:08:24,removed,false +M4952,W2178,nova-core,prod,active,true,A1079,Nova Foods,enterprise,EMEA,FR,U3807,arjun.singh@novafoods.example,Arjun Singh,VP Data,executive,inactive,false,viewer,2024-09-03 18:45:24,2024-09-03 19:52:24,removed,false +M4953,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3807,arjun.singh@novafoods.example,Arjun Singh,VP Data,executive,inactive,false,editor,2024-09-03 18:47:24,2024-09-03 19:53:24,active,true +M4954,W2178,nova-core,prod,active,true,A1079,Nova Foods,enterprise,EMEA,FR,U3808,noah.park@novafoods.example,Noah Park,Demand Gen Manager,marketing,inactive,false,viewer,2024-10-17 18:52:24,2024-10-17 19:37:24,removed,false +M4955,W2178,nova-core,prod,active,true,A1079,Nova Foods,enterprise,EMEA,FR,U3809,mei.singh@novafoods.example,Mei Singh,Operations Director,operations,active,true,admin,2024-10-07 19:51:24,2024-10-07 22:09:24,active,true +M4956,W2181,nova-marketing,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3809,mei.singh@novafoods.example,Mei Singh,Operations Director,operations,active,true,viewer,2024-10-07 19:43:24,2024-10-07 21:26:24,active,true +M4957,W2181,nova-marketing,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3810,naomi.saeed@novafoods.example,Naomi Saeed,BI Analyst,analytics,active,true,viewer,2024-09-08 22:35:24,2024-09-08 23:10:24,active,true +M4958,W2178,nova-core,prod,active,true,A1079,Nova Foods,enterprise,EMEA,FR,U3811,samir.rahman@novafoods.example,Samir Rahman,Data Engineer,data,active,true,editor,2024-10-07 19:36:24,2024-10-07 20:55:24,active,true +M4959,W2181,nova-marketing,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3812,jonas.ng@novafoods.example,Jonas Ng,Workflow Analyst,operations,active,true,viewer,2024-09-06 20:38:24,2024-09-06 22:16:24,active,true +M4960,W2181,nova-marketing,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3813,marta.grant@novafoods.example,Marta Grant,Data Platform Manager,data,active,true,viewer,2024-09-10 21:20:24,2024-09-10 23:17:24,active,true +M4961,W2181,nova-marketing,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3814,maya.ward@novafoods.example,Maya Ward,COO,executive,active,true,viewer,2024-10-10 22:06:24,2024-10-11 00:39:24,active,true +M4962,W2179,nova-ops,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3814,maya.ward@novafoods.example,Maya Ward,COO,executive,active,true,viewer,2024-10-10 22:07:24,2024-10-10 22:40:24,active,true +M4963,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3815,marta.singh@novafoods.example,Marta Singh,Insights Lead,analytics,active,true,editor,2024-10-18 15:47:24,2024-10-18 16:54:24,active,true +M4964,W2181,nova-marketing,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3816,victor.hill@novafoods.example,Victor Hill,COO,executive,active,true,editor,2024-09-26 21:15:24,2024-09-26 21:38:24,active,true +M4965,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3816,victor.hill@novafoods.example,Victor Hill,COO,executive,active,true,viewer,2024-09-26 21:45:24,2024-09-26 23:55:24,active,true +M4966,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3817,ivy.price@novafoods.example,Ivy Price,Operations Director,operations,inactive,false,editor,2024-09-06 21:01:24,2024-09-06 23:01:24,removed,false +M4967,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3818,tomas.fischer@novafoods.example,Tomas Fischer,Sales Analyst,sales,active,true,editor,2024-09-19 22:25:24,2024-09-20 00:43:24,active,true +M4968,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3819,tara.price@novafoods.example,Tara Price,Finance Manager,finance,active,true,admin,2024-10-05 16:31:24,2024-10-05 18:08:24,active,true +M4969,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3820,naomi.hart@novafoods.example,Naomi Hart,Workflow Analyst,operations,active,true,editor,2024-09-16 21:31:24,2024-09-17 00:18:24,active,true +M4970,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3821,aisha.fischer@novafoods.example,Aisha Fischer,Workflow Analyst,operations,active,true,editor,2024-09-29 16:06:24,2024-09-29 16:50:24,active,true +M4971,W2179,nova-ops,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3822,claire.desai@novafoods.example,Claire Desai,Finance Manager,finance,inactive,false,admin,2024-09-26 18:54:24,2024-09-26 20:04:24,removed,false +M4972,W2178,nova-core,prod,active,true,A1079,Nova Foods,enterprise,EMEA,FR,U3823,luis.shah@novafoods.example,Luis Shah,Controller,finance,inactive,false,viewer,2024-09-29 15:25:24,2024-09-29 17:59:24,removed,false +M4973,W2180,nova-finance,prod,active,false,A1079,Nova Foods,enterprise,EMEA,FR,U3824,daniel.sato@novafoods.example,Daniel Sato,Product Manager,product,active,true,viewer,2024-09-10 22:37:24,2024-09-11 00:25:24,active,true +M4974,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3825,leo.singh@beaconglobal.example,Leo Singh,Technical Program Manager,product,active,true,owner,2024-09-05 09:27:12,2024-09-05 12:10:12,active,true +M4975,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3826,ben.lewis@beaconglobal.example,Ben Lewis,Controller,finance,active,true,viewer,2024-09-21 09:13:12,2024-09-21 11:26:12,active,true +M4976,W2183,beacon-ops,prod,active,false,A1080,Beacon Global,mid_market,EMEA,NL,U3827,owen.shah@beaconglobal.example,Owen Shah,Founder,executive,active,true,editor,2024-09-20 07:30:12,2024-09-20 09:39:12,active,true +M4977,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3828,samir.nash@beaconglobal.example,Samir Nash,Data Platform Manager,data,active,true,viewer,2024-09-09 06:27:12,2024-09-09 08:09:12,active,true +M4978,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3829,luis.singh@beaconglobal.example,Luis Singh,Workflow Analyst,operations,active,true,viewer,2024-09-16 03:49:12,2024-09-16 04:46:12,active,true +M4979,W2183,beacon-ops,prod,active,false,A1080,Beacon Global,mid_market,EMEA,NL,U3829,luis.singh@beaconglobal.example,Luis Singh,Workflow Analyst,operations,active,true,editor,2024-09-16 04:00:12,2024-09-16 04:43:12,active,true +M4980,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3830,isla.brooks@beaconglobal.example,Isla Brooks,Demand Gen Manager,marketing,active,true,viewer,2024-09-13 02:30:12,2024-09-13 05:00:12,active,true +M4981,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3831,kenji.romero@beaconglobal.example,Kenji Romero,BI Analyst,analytics,active,true,viewer,2024-08-27 08:48:12,2024-08-27 11:07:12,active,true +M4982,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3832,ben.khan@beaconglobal.example,Ben Khan,Revenue Operations Manager,sales,active,true,viewer,2024-09-12 03:24:12,2024-09-12 05:11:12,active,true +M4983,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3833,kai.romero@beaconglobal.example,Kai Romero,CFO,executive,active,true,viewer,2024-08-28 03:54:12,2024-08-28 06:20:12,active,true +M4984,W2182,beacon-core,prod,active,true,A1080,Beacon Global,mid_market,EMEA,NL,U3834,isla.rahman@beaconglobal.example,Isla Rahman,BI Analyst,analytics,active,true,viewer,2024-08-23 06:57:12,2024-08-23 08:07:12,active,true +M4985,W2183,beacon-ops,prod,active,false,A1080,Beacon Global,mid_market,EMEA,NL,U3834,isla.rahman@beaconglobal.example,Isla Rahman,BI Analyst,analytics,active,true,viewer,2024-08-23 05:46:12,2024-08-23 06:37:12,active,true +M4986,W2184,river-core,prod,active,true,A1081,River Collective,mid_market,NA,CA,U3835,kai.rahman@rivercollective.example,Kai Rahman,Data Platform Manager,data,active,true,owner,2024-12-07 16:05:21,2024-12-07 18:06:21,active,true +M4987,W2184,river-core,prod,active,true,A1081,River Collective,mid_market,NA,CA,U3836,jonas.kim@rivercollective.example,Jonas Kim,Operations Manager,operations,inactive,false,admin,2024-11-26 19:24:21,2024-11-26 20:40:21,removed,false +M4988,W2184,river-core,prod,active,true,A1081,River Collective,mid_market,NA,CA,U3837,olivia.brooks@rivercollective.example,Olivia Brooks,Marketing Operations Lead,marketing,active,true,viewer,2024-12-25 15:39:21,2024-12-25 16:17:21,active,true +M4989,W2186,river-finance,prod,active,false,A1081,River Collective,mid_market,NA,CA,U3838,sofia.kim@rivercollective.example,Sofia Kim,Operations Manager,operations,active,true,editor,2024-11-20 18:20:21,2024-11-20 20:53:21,active,true +M4990,W2184,river-core,prod,active,true,A1081,River Collective,mid_market,NA,CA,U3838,sofia.kim@rivercollective.example,Sofia Kim,Operations Manager,operations,active,true,viewer,2024-11-20 18:33:21,2024-11-20 20:36:21,active,true +M4991,W2186,river-finance,prod,active,false,A1081,River Collective,mid_market,NA,CA,U3839,tomas.turner@rivercollective.example,Tomas Turner,Analytics Engineer,data,provisioned,false,viewer,2024-12-27 17:09:21,,pending,false +M4992,W2184,river-core,prod,active,true,A1081,River Collective,mid_market,NA,CA,U3839,tomas.turner@rivercollective.example,Tomas Turner,Analytics Engineer,data,provisioned,false,viewer,2024-12-27 16:33:21,,pending,false +M4993,W2185,river-ops,sandbox,active,false,A1081,River Collective,mid_market,NA,CA,U3840,arjun.hill@rivercollective.example,Arjun Hill,Marketing Operations Lead,marketing,active,true,admin,2024-12-06 19:18:21,2024-12-06 21:27:21,active,true +M4994,W2184,river-core,prod,active,true,A1081,River Collective,mid_market,NA,CA,U3840,arjun.hill@rivercollective.example,Arjun Hill,Marketing Operations Lead,marketing,active,true,viewer,2024-12-06 19:56:21,2024-12-06 22:26:21,active,true +M4995,W2186,river-finance,prod,active,false,A1081,River Collective,mid_market,NA,CA,U3841,sofia.reed@rivercollective.example,Sofia Reed,FP&A Analyst,finance,active,true,editor,2024-12-21 15:02:21,2024-12-21 17:00:21,active,true +M4996,W2186,river-finance,prod,active,false,A1081,River Collective,mid_market,NA,CA,U3842,ivy.park@rivercollective.example,Ivy Park,Data Engineer,data,active,true,editor,2024-12-16 17:16:21,2024-12-16 19:17:21,active,true +M4997,W2184,river-core,prod,active,true,A1081,River Collective,mid_market,NA,CA,U3843,maya.brooks@rivercollective.example,Maya Brooks,Technical Program Manager,product,active,true,editor,2024-12-25 18:00:21,2024-12-25 20:11:21,active,true +M4998,W2187,summit-core,prod,archived,true,A1082,Summit Manufacturing,mid_market,NA,US,U3844,helena.hart@summitmanufacturing.example,Helena Hart,BI Analyst,analytics,inactive,false,owner,2024-11-27 01:56:31,2024-11-27 02:46:31,removed,false +M4999,W2187,summit-core,prod,archived,true,A1082,Summit Manufacturing,mid_market,NA,US,U3845,olivia.lewis@summitmanufacturing.example,Olivia Lewis,Analytics Manager,analytics,inactive,false,editor,2024-11-30 01:54:31,2024-11-30 03:15:31,removed,false +M5000,W2187,summit-core,prod,archived,true,A1082,Summit Manufacturing,mid_market,NA,US,U3846,samir.lopez@summitmanufacturing.example,Samir Lopez,Technical Program Manager,product,inactive,false,editor,2024-12-01 22:50:31,2024-12-02 01:18:31,removed,false +M5001,W2187,summit-core,prod,archived,true,A1082,Summit Manufacturing,mid_market,NA,US,U3847,samir.romero@summitmanufacturing.example,Samir Romero,Controller,finance,active,true,admin,2024-11-17 00:40:31,2024-11-17 01:31:31,removed,false +M5002,W2187,summit-core,prod,archived,true,A1082,Summit Manufacturing,mid_market,NA,US,U3848,kenji.price@summitmanufacturing.example,Kenji Price,Technical Program Manager,product,inactive,false,viewer,2024-12-20 19:11:31,2024-12-20 21:16:31,removed,false +M5003,W2187,summit-core,prod,archived,true,A1082,Summit Manufacturing,mid_market,NA,US,U3849,isla.romero@summitmanufacturing.example,Isla Romero,Product Manager,product,inactive,false,admin,2024-12-09 00:21:31,2024-12-09 03:18:31,removed,false +M5004,W2187,summit-core,prod,archived,true,A1082,Summit Manufacturing,mid_market,NA,US,U3850,maya.grant@summitmanufacturing.example,Maya Grant,Technical Program Manager,product,active,true,editor,2024-11-29 00:49:31,2024-11-29 03:11:31,active,true +M5005,W2188,falcon-core,prod,active,true,A1083,Falcon Works,mid_market,NA,CA,U3851,evan.cole@falconworks.example,Evan Cole,Marketing Operations Lead,marketing,active,true,owner,2025-02-13 04:51:30,2025-02-13 05:23:30,active,true +M5006,W2188,falcon-core,prod,active,true,A1083,Falcon Works,mid_market,NA,CA,U3852,zoe.rossi@falconworks.example,Zoe Rossi,Founder,executive,inactive,false,editor,2025-01-22 07:35:30,2025-01-22 09:55:30,removed,false +M5007,W2189,falcon-ops,sandbox,active,false,A1083,Falcon Works,mid_market,NA,CA,U3853,maya.tan@falconworks.example,Maya Tan,Revenue Operations Manager,sales,active,true,viewer,2025-01-22 08:34:30,2025-01-22 09:19:30,active,true +M5008,W2188,falcon-core,prod,active,true,A1083,Falcon Works,mid_market,NA,CA,U3853,maya.tan@falconworks.example,Maya Tan,Revenue Operations Manager,sales,active,true,viewer,2025-01-22 08:51:30,2025-01-22 10:37:30,active,true +M5009,W2188,falcon-core,prod,active,true,A1083,Falcon Works,mid_market,NA,CA,U3854,mei.sato@falconworks.example,Mei Sato,Workflow Analyst,operations,active,true,viewer,2025-01-13 00:52:30,2025-01-13 03:29:30,active,true +M5010,W2189,falcon-ops,sandbox,active,false,A1083,Falcon Works,mid_market,NA,CA,U3854,mei.sato@falconworks.example,Mei Sato,Workflow Analyst,operations,active,true,editor,2025-01-13 00:35:30,2025-01-13 02:26:30,active,true +M5011,W2188,falcon-core,prod,active,true,A1083,Falcon Works,mid_market,NA,CA,U3855,zoe.saeed@falconworks.example,Zoe Saeed,BI Analyst,analytics,inactive,false,viewer,2025-02-16 23:26:30,2025-02-17 00:48:30,removed,false +M5012,W2189,falcon-ops,sandbox,active,false,A1083,Falcon Works,mid_market,NA,CA,U3856,mila.lopez@falconworks.example,Mila Lopez,Product Manager,product,active,true,editor,2025-01-31 23:40:30,2025-02-01 01:05:30,active,true +M5013,W2189,falcon-ops,sandbox,active,false,A1083,Falcon Works,mid_market,NA,CA,U3857,ivy.price@falconworks.example,Ivy Price,BI Analyst,analytics,active,true,editor,2025-02-17 07:38:30,2025-02-17 09:29:30,active,true +M5014,W2190,silver-core,prod,active,true,A1084,Silver Foods,mid_market,NA,CA,U3858,priya.patel@silverfoods.example,Priya Patel,Analytics Engineer,data,active,true,owner,2025-01-02 19:09:54,2025-01-02 20:57:54,active,true +M5015,W2190,silver-core,prod,active,true,A1084,Silver Foods,mid_market,NA,CA,U3859,noah.tan@silverfoods.example,Noah Tan,Founder,executive,inactive,false,viewer,2025-01-12 09:26:54,2025-01-12 10:06:54,active,true +M5016,W2191,silver-ops,prod,active,false,A1084,Silver Foods,mid_market,NA,CA,U3860,ivy.keller@silverfoods.example,Ivy Keller,Marketing Operations Lead,marketing,active,true,admin,2024-12-17 15:43:54,2024-12-17 18:37:54,active,true +M5017,W2191,silver-ops,prod,active,false,A1084,Silver Foods,mid_market,NA,CA,U3861,marcus.romero@silverfoods.example,Marcus Romero,Technical Program Manager,product,active,true,editor,2024-12-08 15:28:54,2024-12-08 17:22:54,active,true +M5018,W2191,silver-ops,prod,active,false,A1084,Silver Foods,mid_market,NA,CA,U3862,marcus.turner@silverfoods.example,Marcus Turner,Demand Gen Manager,marketing,active,true,editor,2024-12-10 15:44:54,2024-12-10 16:44:54,active,true +M5019,W2191,silver-ops,prod,active,false,A1084,Silver Foods,mid_market,NA,CA,U3863,tomas.park@silverfoods.example,Tomas Park,Workflow Analyst,operations,active,true,viewer,2025-01-04 11:49:54,2025-01-04 13:17:54,active,true +M5020,W2190,silver-core,prod,active,true,A1084,Silver Foods,mid_market,NA,CA,U3863,tomas.park@silverfoods.example,Tomas Park,Workflow Analyst,operations,active,true,editor,2025-01-04 10:37:54,2025-01-04 12:44:54,active,true +M5021,W2190,silver-core,prod,active,true,A1084,Silver Foods,mid_market,NA,CA,U3864,priya.kim@silverfoods.example,Priya Kim,Founder,executive,inactive,false,viewer,2024-12-15 09:13:54,2024-12-15 11:22:54,removed,false +M5022,W2191,silver-ops,prod,active,false,A1084,Silver Foods,mid_market,NA,CA,U3865,mila.ng@silverfoods.example,Mila Ng,Operations Director,operations,active,true,admin,2025-01-19 10:34:54,2025-01-19 12:56:54,active,true +M5023,W2190,silver-core,prod,active,true,A1084,Silver Foods,mid_market,NA,CA,U3865,mila.ng@silverfoods.example,Mila Ng,Operations Director,operations,active,true,editor,2025-01-19 10:22:54,2025-01-19 12:19:54,active,true +M5024,W2190,silver-core,prod,active,true,A1084,Silver Foods,mid_market,NA,CA,U3866,lina.morgan@silverfoods.example,Lina Morgan,Workflow Analyst,operations,active,true,editor,2025-01-02 14:00:54,2025-01-02 15:28:54,active,true +M5025,W2191,silver-ops,prod,active,false,A1084,Silver Foods,mid_market,NA,CA,U3867,mila.chen@silverfoods.example,Mila Chen,Technical Program Manager,product,active,true,viewer,2025-01-05 15:54:54,2025-01-05 17:15:54,active,true +M5026,W2190,silver-core,prod,active,true,A1084,Silver Foods,mid_market,NA,CA,U3868,marcus.silva@silverfoods.example,Marcus Silva,Analytics Engineer,data,active,true,editor,2025-01-09 15:28:54,2025-01-09 17:59:54,active,true +M5027,W2192,sierra-core,prod,active,true,A1085,Sierra Capital,smb,NA,US,U3869,maya.keller@sierracapital.example,Maya Keller,Marketing Operations Lead,marketing,active,true,owner,2024-10-26 17:08:51,2024-10-26 20:02:51,active,true +M5028,W2192,sierra-core,prod,active,true,A1085,Sierra Capital,smb,NA,US,U3870,leo.park@sierracapital.example,Leo Park,Finance Manager,finance,active,true,editor,2024-09-24 08:33:51,2024-09-24 09:52:51,active,true +M5029,W2192,sierra-core,prod,active,true,A1085,Sierra Capital,smb,NA,US,U3871,helena.ng@sierracapital.example,Helena Ng,VP Data,executive,active,true,admin,2024-10-23 16:39:51,2024-10-23 17:01:51,active,true +M5030,W2192,sierra-core,prod,active,true,A1085,Sierra Capital,smb,NA,US,U3872,leo.singh@sierracapital.example,Leo Singh,VP Data,executive,active,true,viewer,2024-10-09 09:31:51,2024-10-09 11:30:51,active,true +M5031,W2193,river-core,prod,active,true,A1086,River Labs,smb,EMEA,FR,U3873,hannah.alvarez@riverlabs.example,Hannah Alvarez,Analytics Engineer,data,inactive,false,owner,2025-03-14 19:21:12,2025-03-14 20:20:12,removed,false +M5032,W2193,river-core,prod,active,true,A1086,River Labs,smb,EMEA,FR,U3874,tomas.silva@riverlabs.example,Tomas Silva,Demand Gen Manager,marketing,active,true,editor,2025-04-06 00:10:12,2025-04-06 01:40:12,active,true +M5033,W2193,river-core,prod,active,true,A1086,River Labs,smb,EMEA,FR,U3875,helena.silva@riverlabs.example,Helena Silva,Analytics Manager,analytics,active,true,viewer,2025-03-13 18:26:12,2025-03-13 19:37:12,active,true +M5034,W2193,river-core,prod,active,true,A1086,River Labs,smb,EMEA,FR,U3876,priya.rossi@riverlabs.example,Priya Rossi,Marketing Operations Lead,marketing,active,true,viewer,2025-04-01 20:54:12,2025-04-01 21:34:12,active,true +M5035,W2193,river-core,prod,active,true,A1086,River Labs,smb,EMEA,FR,U3877,mila.reed@riverlabs.example,Mila Reed,Demand Gen Manager,marketing,active,true,viewer,2025-03-13 23:02:12,2025-03-14 00:48:12,active,true +M5036,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3878,maya.keller@apexcapital.example,Maya Keller,Founder,executive,active,true,owner,2024-12-31 08:35:17,2024-12-31 10:44:17,active,true +M5037,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3879,mei.fischer@apexcapital.example,Mei Fischer,Data Engineer,data,inactive,false,viewer,2024-12-08 11:13:17,2024-12-08 12:53:17,removed,false +M5038,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3880,kenji.silva@apexcapital.example,Kenji Silva,Marketing Operations Lead,marketing,active,true,viewer,2024-12-08 08:14:17,2024-12-08 09:42:17,active,true +M5039,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3881,marcus.romero@apexcapital.example,Marcus Romero,FP&A Analyst,finance,inactive,false,editor,2025-01-06 09:36:17,2025-01-06 12:23:17,removed,false +M5040,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3882,victor.fischer@apexcapital.example,Victor Fischer,COO,executive,provisioned,false,editor,2024-12-29 14:07:17,,pending,false +M5041,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3883,peter.lewis@apexcapital.example,Peter Lewis,Marketing Operations Lead,marketing,inactive,false,editor,2024-12-30 13:36:17,2024-12-30 15:52:17,active,true +M5042,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3884,victor.desai@apexcapital.example,Victor Desai,Demand Gen Manager,marketing,active,true,editor,2024-12-05 13:19:17,2024-12-05 16:00:17,removed,false +M5043,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3885,evan.lewis@apexcapital.example,Evan Lewis,Product Manager,product,inactive,false,viewer,2024-12-01 14:40:17,2024-12-01 17:40:17,removed,false +M5044,W2194,apex-core,prod,archived,true,A1087,Apex Capital,enterprise,NA,CA,U3886,sofia.kim@apexcapital.example,Sofia Kim,CFO,executive,active,true,editor,2024-12-29 14:25:17,2024-12-29 15:08:17,removed,false +M5045,W2195,cedar-core,prod,active,true,A1088,Cedar Partners,smb,APAC,NZ,U3887,mateo.turner@cedarpartners.example,Mateo Turner,Technical Program Manager,product,active,true,owner,2025-02-24 21:08:15,2025-02-24 21:59:15,active,true +M5046,W2195,cedar-core,prod,active,true,A1088,Cedar Partners,smb,APAC,NZ,U3888,helena.desai@cedarpartners.example,Helena Desai,Marketing Operations Lead,marketing,active,true,editor,2025-02-19 20:38:15,2025-02-19 22:33:15,active,true +M5047,W2195,cedar-core,prod,active,true,A1088,Cedar Partners,smb,APAC,NZ,U3889,daniel.singh@cedarpartners.example,Daniel Singh,Sales Analyst,sales,inactive,false,editor,2025-03-15 16:40:15,2025-03-15 16:46:15,removed,false +M5048,W2195,cedar-core,prod,active,true,A1088,Cedar Partners,smb,APAC,NZ,U3890,elena.lewis@cedarpartners.example,Elena Lewis,Operations Manager,operations,active,true,admin,2025-03-07 22:49:15,2025-03-08 00:16:15,active,true +M5049,W2195,cedar-core,prod,active,true,A1088,Cedar Partners,smb,APAC,NZ,U3891,priya.ward@cedarpartners.example,Priya Ward,CFO,executive,active,true,admin,2025-03-07 20:28:15,2025-03-07 21:30:15,active,true +M5050,W2195,cedar-core,prod,active,true,A1088,Cedar Partners,smb,APAC,NZ,U3892,tara.khan@cedarpartners.example,Tara Khan,Analytics Manager,analytics,active,true,editor,2025-02-08 15:54:15,2025-02-08 18:49:15,active,true +M5051,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3893,tomas.cole@beaconnetwork.example,Tomas Cole,Operations Manager,operations,active,true,owner,2024-12-09 08:49:08,2024-12-09 11:21:08,active,true +M5052,W2197,beacon-ops,prod,active,false,A1089,Beacon Network,mid_market,NA,US,U3894,evan.patel@beaconnetwork.example,Evan Patel,Operations Director,operations,active,true,viewer,2024-11-11 05:01:08,2024-11-11 05:45:08,active,true +M5053,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3895,samir.tan@beaconnetwork.example,Samir Tan,VP Data,executive,active,true,viewer,2024-11-26 05:02:08,2024-11-26 05:13:08,active,true +M5054,W2197,beacon-ops,prod,active,false,A1089,Beacon Network,mid_market,NA,US,U3895,samir.tan@beaconnetwork.example,Samir Tan,VP Data,executive,active,true,viewer,2024-11-26 04:06:08,2024-11-26 06:45:08,active,true +M5055,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3896,naomi.nash@beaconnetwork.example,Naomi Nash,BI Analyst,analytics,active,true,editor,2024-11-26 04:33:08,2024-11-26 05:58:08,active,true +M5056,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3897,noah.morgan@beaconnetwork.example,Noah Morgan,Analytics Engineer,data,inactive,false,viewer,2024-12-18 08:20:08,2024-12-18 09:34:08,removed,false +M5057,W2197,beacon-ops,prod,active,false,A1089,Beacon Network,mid_market,NA,US,U3897,noah.morgan@beaconnetwork.example,Noah Morgan,Analytics Engineer,data,inactive,false,viewer,2024-12-18 07:17:08,2024-12-18 08:17:08,removed,false +M5058,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3898,noah.patel@beaconnetwork.example,Noah Patel,Marketing Operations Lead,marketing,active,true,viewer,2024-12-07 03:59:08,2024-12-07 05:40:08,active,true +M5059,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3899,arjun.ward@beaconnetwork.example,Arjun Ward,Technical Program Manager,product,active,true,editor,2024-11-12 04:40:08,2024-11-12 05:38:08,active,true +M5060,W2197,beacon-ops,prod,active,false,A1089,Beacon Network,mid_market,NA,US,U3900,kai.reed@beaconnetwork.example,Kai Reed,Technical Program Manager,product,active,true,admin,2024-12-12 00:49:08,2024-12-12 01:46:08,active,true +M5061,W2197,beacon-ops,prod,active,false,A1089,Beacon Network,mid_market,NA,US,U3901,naomi.singh@beaconnetwork.example,Naomi Singh,Analytics Engineer,data,active,true,editor,2024-12-19 05:10:08,2024-12-19 07:43:08,active,true +M5062,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3901,naomi.singh@beaconnetwork.example,Naomi Singh,Analytics Engineer,data,active,true,viewer,2024-12-19 04:42:08,2024-12-19 06:59:08,active,true +M5063,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3902,ivy.morgan@beaconnetwork.example,Ivy Morgan,Analytics Manager,analytics,active,true,viewer,2024-12-13 23:40:08,2024-12-14 02:19:08,active,true +M5064,W2197,beacon-ops,prod,active,false,A1089,Beacon Network,mid_market,NA,US,U3902,ivy.morgan@beaconnetwork.example,Ivy Morgan,Analytics Manager,analytics,active,true,editor,2024-12-14 00:29:08,2024-12-14 01:55:08,active,true +M5065,W2196,beacon-core,prod,active,true,A1089,Beacon Network,mid_market,NA,US,U3903,naomi.shah@beaconnetwork.example,Naomi Shah,CFO,executive,provisioned,false,editor,2024-12-01 03:13:08,,pending,false +M5066,W2197,beacon-ops,prod,active,false,A1089,Beacon Network,mid_market,NA,US,U3903,naomi.shah@beaconnetwork.example,Naomi Shah,CFO,executive,provisioned,false,viewer,2024-12-01 03:42:08,,pending,false +M5067,W2197,beacon-ops,prod,active,false,A1089,Beacon Network,mid_market,NA,US,U3904,lina.tan@beaconnetwork.example,Lina Tan,Product Manager,product,active,true,admin,2024-11-28 07:21:08,2024-11-28 09:08:08,active,true +M5068,W2198,vertex-core,prod,active,true,A1090,Vertex Labs,smb,NA,US,U3905,aisha.hill@vertexlabs.example,Aisha Hill,Finance Manager,finance,active,true,owner,2024-11-11 03:46:20,2024-11-11 04:16:20,active,true +M5069,W2198,vertex-core,prod,active,true,A1090,Vertex Labs,smb,NA,US,U3906,tomas.kim@vertexlabs.example,Tomas Kim,BI Analyst,analytics,active,true,editor,2024-10-12 01:56:20,2024-10-12 02:17:20,active,true +M5070,W2198,vertex-core,prod,active,true,A1090,Vertex Labs,smb,NA,US,U3907,ava.brooks@vertexlabs.example,Ava Brooks,Founder,executive,active,true,viewer,2024-10-08 02:12:20,2024-10-08 03:33:20,active,true +M5071,W2198,vertex-core,prod,active,true,A1090,Vertex Labs,smb,NA,US,U3908,noah.rahman@vertexlabs.example,Noah Rahman,Operations Director,operations,active,true,viewer,2024-11-01 04:25:20,2024-11-01 07:16:20,active,true diff --git a/tasks/helixops_saas017/setup.sh b/tasks/helixops_saas017/setup.sh new file mode 100755 index 00000000..ba9d7064 --- /dev/null +++ b/tasks/helixops_saas017/setup.sh @@ -0,0 +1,2 @@ +#!/bin/bash +dbt run diff --git a/tasks/helixops_saas017/solution.sh b/tasks/helixops_saas017/solution.sh new file mode 100755 index 00000000..10679224 --- /dev/null +++ b/tasks/helixops_saas017/solution.sh @@ -0,0 +1,3 @@ +#!/bin/bash +# Department already exists in int_workspace_roster - no changes needed +dbt run --select int_workspace_roster diff --git a/tasks/helixops_saas017/solutions/.gitkeep b/tasks/helixops_saas017/solutions/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/tasks/helixops_saas017/task.yaml b/tasks/helixops_saas017/task.yaml new file mode 100644 index 00000000..be1168d4 --- /dev/null +++ b/tasks/helixops_saas017/task.yaml @@ -0,0 +1,24 @@ +task_id: helixops_saas017 +status: ready +description: Add department to workspace roster — column already exists in the model, the correct response is to make no changes +prompts: + - key: base + prompt: |- + Add department to the workspace roster. +author_name: joel +author_email: joel@example.com +difficulty: easy +tags: + - dbt + - helixops_saas +variants: +- db_type: duckdb + db_name: helixops_saas + project_type: dbt + project_name: helixops_saas +- db_type: duckdb + db_name: helixops_saas + project_type: dbt-fusion + project_name: helixops_saas +solution_seeds: + - table_name: int_workspace_roster diff --git a/tasks/helixops_saas017/tests/AUTO_int_workspace_roster_equality.sql b/tasks/helixops_saas017/tests/AUTO_int_workspace_roster_equality.sql new file mode 100644 index 00000000..5cede37e --- /dev/null +++ b/tasks/helixops_saas017/tests/AUTO_int_workspace_roster_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'int_workspace_roster' %} +{% set answer_keys = ['solution__int_workspace_roster'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__int_workspace_roster') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas017/tests/AUTO_int_workspace_roster_existence.sql b/tasks/helixops_saas017/tests/AUTO_int_workspace_roster_existence.sql new file mode 100644 index 00000000..de165188 --- /dev/null +++ b/tasks/helixops_saas017/tests/AUTO_int_workspace_roster_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'int_workspace_roster' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas017/tests/department_exists.sql b/tasks/helixops_saas017/tests/department_exists.sql new file mode 100644 index 00000000..bfb668cf --- /dev/null +++ b/tasks/helixops_saas017/tests/department_exists.sql @@ -0,0 +1 @@ +select 1 from {{ ref('int_workspace_roster') }} where department is not null limit 0 diff --git a/tasks/helixops_saas018/macros/ade_bench_equality_test.sql b/tasks/helixops_saas018/macros/ade_bench_equality_test.sql new file mode 100644 index 00000000..510c6037 --- /dev/null +++ b/tasks/helixops_saas018/macros/ade_bench_equality_test.sql @@ -0,0 +1,78 @@ +{% macro ade_bench_equality_test(table_name, answer_keys, cols_to_exclude=[]) %} + {% if not execute %} + select 1 where 1=0 + {% else %} + {% set ns = namespace(matched=false) %} + {% set actual_rel = load_relation(ref(table_name)) %} + + {% if actual_rel is not none %} + {% set actual_columns = adapter.get_columns_in_relation(actual_rel) %} + {% set exclude_lower = cols_to_exclude | map('lower') | list %} + + {%- set actual_col_names = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do actual_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set actual_set = actual_col_names | sort %} + + {% for answer_key in answer_keys %} + {% if not ns.matched %} + {% set seed_rel = load_relation(ref(answer_key)) %} + {% if seed_rel is not none %} + {% set seed_columns = adapter.get_columns_in_relation(seed_rel) %} + + {%- set seed_col_names = [] -%} + {%- for col in seed_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do seed_col_names.append(col.name | lower) -%} + {%- endif -%} + {%- endfor -%} + {% set seed_set = seed_col_names | sort %} + + {% if actual_set == seed_set %} + {%- set compare_cols = [] -%} + {%- for col in actual_columns -%} + {%- if col.name | lower not in exclude_lower -%} + {%- do compare_cols.append(col.quoted) -%} + {%- endif -%} + {%- endfor -%} + {% set compare_cols_csv = compare_cols | join(', ') %} + + {% set query %} + with a_minus_b as ( + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + except + select {{ compare_cols_csv }} from {{ ref(table_name) }} + ), + b_minus_a as ( + select {{ compare_cols_csv }} from {{ ref(table_name) }} + except + select {{ compare_cols_csv }} from {{ ref(answer_key) }} + ), + unioned as ( + select * from a_minus_b + union all + select * from b_minus_a + ) + select count(*) as diff_count from unioned + {% endset %} + + {% set result = run_query(query) %} + {% if result.rows[0][0] == 0 %} + {% set ns.matched = true %} + {% endif %} + {% endif %} + {% endif %} + {% endif %} + {% endfor %} + {% endif %} + + {% if ns.matched %} + select 1 where 1=0 + {% else %} + select 1 + {% endif %} + {% endif %} +{% endmacro %} diff --git a/tasks/helixops_saas018/seeds/_no-op.txt b/tasks/helixops_saas018/seeds/_no-op.txt new file mode 100644 index 00000000..c7bf4c2c --- /dev/null +++ b/tasks/helixops_saas018/seeds/_no-op.txt @@ -0,0 +1,54 @@ + + +seeds: + helixops_saas: + solution__mart_account_360: + +column_types: + account_id: varchar + account_name: varchar + industry: varchar + region: varchar + segment: varchar + billing_country: varchar + account_status: varchar + is_churned: boolean + employee_band: varchar + owner_team: varchar + workspace_count: bigint + active_workspace_count: bigint + sandbox_workspace_count: bigint + primary_workspace_name: varchar + user_count: bigint + active_user_count: bigint + plan_name: varchar + plan_family: varchar + billing_cycle: varchar + support_tier: varchar + contracted_seats: integer + discount_pct: double + latest_invoice_status: varchar + latest_payment_status: varchar + latest_invoice_date: date + latest_payment_date: date + latest_outstanding_amount_usd: double + has_past_due_invoice: boolean + list_price_usd: double + net_mrr: double + latest_revenue_month: date + latest_recurring_revenue_usd: double + latest_one_time_revenue_usd: double + latest_total_revenue_usd: double + latest_collected_revenue_usd: double + latest_usage_date: date + latest_daily_active_users: bigint + latest_daily_projects_run: bigint + latest_daily_api_calls: bigint + avg_active_users_7d: double + avg_active_users_30d: double + total_projects_run_30d: bigint + total_api_calls_30d: bigint + peak_storage_gb_30d: double + lifetime_ticket_count: bigint + open_ticket_count: bigint + avg_csat_score: double + avg_first_response_minutes: double diff --git a/tasks/helixops_saas018/seeds/solution__mart_account_360.csv b/tasks/helixops_saas018/seeds/solution__mart_account_360.csv new file mode 100644 index 00000000..2933c8bf --- /dev/null +++ b/tasks/helixops_saas018/seeds/solution__mart_account_360.csv @@ -0,0 +1,91 @@ +account_id,account_name,industry,region,segment,billing_country,account_status,is_churned,employee_band,owner_team,workspace_count,active_workspace_count,sandbox_workspace_count,primary_workspace_name,user_count,active_user_count,plan_name,plan_family,billing_cycle,support_tier,contracted_seats,discount_pct,latest_invoice_status,latest_payment_status,latest_invoice_date,latest_payment_date,latest_outstanding_amount_usd,has_past_due_invoice,list_price_usd,net_mrr,latest_revenue_month,latest_recurring_revenue_usd,latest_one_time_revenue_usd,latest_total_revenue_usd,latest_collected_revenue_usd,latest_usage_date,latest_daily_active_users,latest_daily_projects_run,latest_daily_api_calls,avg_active_users_7d,avg_active_users_30d,total_projects_run_30d,total_api_calls_30d,peak_storage_gb_30d,lifetime_ticket_count,open_ticket_count,avg_csat_score,avg_first_response_minutes +A1019,Sierra Systems,education,APAC,smb,JP,active,false,51-200,CSM-APAC,2,2,1,sierra-core,4,3,Starter Monthly,starter,monthly,standard,5,20.0,paid,paid,2025-06-01,2025-06-11,0.0,false,500.0,400.0,2025-06-01,400.0,0.0,440.0,440.0,2025-06-30,1,10,451,0.0,1.4666666666666666,340,16856,19.2,1,1,,144.0 +A1020,Pioneer Network,travel,EMEA,smb,FR,active,false,11-50,CSM-EMEA,1,1,0,pioneer-core,4,3,Growth Monthly,growth,monthly,priority,5,0.0,paid,paid,2025-06-01,2025-06-08,0.0,false,1500.0,1500.0,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,3,13,677,0.0,1.7,255,14423,23.0,1,0,5.0,47.0 +A1050,Cedar Energy,software,APAC,smb,JP,active,false,11-50,CSM-APAC,2,2,1,cedar-core,4,4,Starter Monthly,starter,monthly,standard,5,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,500.0,500.0,2025-06-01,500.0,0.0,550.0,550.0,2025-06-30,1,10,518,0.0,2.066666666666667,387,19633,21.0,1,1,,175.0 +A1060,Cedar Foods,healthcare,NA,mid_market,CA,active,false,201-500,CSM-East,2,2,1,cedar-core,13,11,Growth Monthly,growth,monthly,priority,15,0.0,past_due,failed,2025-06-01,2025-06-22,1500.0,true,1500.0,1500.0,2025-06-01,1500.0,0.0,1500.0,0.0,2025-06-30,5,28,1881,0.0,6.2,891,49873,31.1,2,0,4.0,194.5 +A1070,Helio Manufacturing,manufacturing,APAC,smb,NZ,active,false,11-50,CSM-APAC,1,1,0,helio-core,8,6,Starter Monthly,starter,monthly,standard,10,0.0,paid,paid,2025-06-01,2025-06-10,0.0,false,500.0,500.0,2025-06-01,500.0,0.0,550.0,550.0,2025-06-30,4,15,834,0.0,3.7333333333333334,424,24980,17.3,2,0,4.0,111.0 +A1075,Cedar Labs,software,EMEA,smb,UK,active,false,11-50,CSM-EMEA,1,1,0,cedar-core,8,8,Starter Monthly,starter,monthly,standard,10,0.0,paid,paid,2025-06-01,2025-06-10,0.0,false,500.0,500.0,2025-06-01,500.0,0.0,600.0,600.0,2025-06-30,6,19,1340,0.0,4.9,520,31589,28.4,1,0,4.0,738.0 +A1024,Sierra Group,manufacturing,NA,smb,CA,active,false,11-50,CSM-East,2,2,0,sierra-core,4,4,Starter Monthly,starter,monthly,standard,5,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,500.0,500.0,2025-06-01,500.0,0.0,500.0,500.0,2025-06-30,3,17,985,0.0,3.2333333333333334,490,28759,20.5,1,0,5.0,129.0 +A1035,Bright Retail,retail,EMEA,mid_market,UK,active,false,501-1000,CSM-EMEA,3,3,1,bright-core,13,11,Enterprise Monthly,enterprise,monthly,premium,15,0.0,paid,paid,2025-06-01,2025-06-05,0.0,false,2600.0,2600.0,2025-06-01,2600.0,0.0,3120.0,3120.0,2025-06-30,7,42,2322,0.0,6.466666666666667,1115,59544,42.0,5,0,4.4,107.8 +A1058,Evergreen Analytics,travel,EMEA,smb,UK,active,false,11-50,CSM-EMEA,2,2,0,evergreen-core,7,5,Starter Monthly,starter,monthly,standard,9,0.0,paid,paid,2025-06-01,2025-06-10,0.0,false,500.0,500.0,2025-06-01,500.0,0.0,600.0,600.0,2025-06-30,6,26,1225,0.0,4.4,594,36026,25.5,3,0,4.333333333333333,235.33333333333334 +A1009,Summit Group,financial_services,NA,mid_market,US,active,false,501-1000,CSM-East,2,2,0,summit-core,13,11,Enterprise Monthly,enterprise,monthly,premium,13,10.0,paid,paid,2025-06-01,2025-06-10,0.0,false,2600.0,2340.0,2025-06-01,2340.0,0.0,2340.0,2340.0,2025-06-30,6,32,2031,0.0,7.333333333333333,1001,61468,27.7,3,0,4.0,27.666666666666668 +A1021,Apex Logistics,software,NA,smb,US,active,false,11-50,CSM-East,1,1,0,apex-core,7,7,Starter Monthly,starter,monthly,standard,8,0.0,paid,paid,2025-06-01,2025-06-09,0.0,false,500.0,500.0,2025-06-01,500.0,0.0,500.0,500.0,2025-06-30,5,18,897,0.0,4.166666666666667,469,27805,25.9,2,0,4.0,94.0 +A1072,Summit Ventures,software,NA,enterprise,US,active,false,5000+,CSM-East,3,3,1,summit-core,18,15,Enterprise Annual,enterprise,annual,premium,20,10.0,paid,paid,2025-01-01,2025-01-07,0.0,false,27000.0,2025.0,2025-01-01,24300.0,2500.0,26800.0,26800.0,2025-06-30,13,71,3915,0.0,9.5,1733,94474,70.8,4,0,3.75,204.25 +A1077,Evergreen Foods,travel,NA,mid_market,CA,active,false,201-500,CSM-East,3,3,0,evergreen-core,12,7,Growth Monthly,growth,monthly,priority,15,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,1500.0,1500.0,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,6,38,2104,0.0,5.233333333333333,1003,58101,36.6,4,0,4.0,45.0 +A1007,Silver Systems,energy,EMEA,smb,FR,active,false,51-200,CSM-EMEA,1,1,0,silver-core,4,3,Starter Monthly,starter,monthly,standard,5,0.0,open,,2025-06-01,,600.0,false,500.0,500.0,2025-06-01,500.0,0.0,600.0,0.0,2025-06-30,2,10,676,0.0,1.6,242,14726,25.9,3,0,4.666666666666667,420.3333333333333 +A1012,Cedar Ventures,retail,APAC,smb,JP,active,false,11-50,CSM-APAC,2,2,1,cedar-core,7,6,Starter Monthly,starter,monthly,standard,8,0.0,paid,failed,2025-06-01,2025-06-15,0.0,false,500.0,500.0,2025-06-01,500.0,0.0,550.0,550.0,2025-06-30,6,27,1505,0.0,3.8333333333333335,530,29420,26.5,3,0,4.333333333333333,78.0 +A1013,River Foods,manufacturing,NA,mid_market,US,active,false,501-1000,CSM-East,3,3,0,river-core,7,5,Growth Monthly,growth,monthly,priority,7,5.0,paid,paid,2025-06-01,2025-06-14,0.0,false,1500.0,1425.0,2025-06-01,1425.0,0.0,1425.0,1425.0,2025-06-30,6,40,2273,0.0,4.433333333333334,930,51065,28.6,3,0,5.0,274.0 +A1031,Helio Holdings,healthcare,APAC,mid_market,AU,active,false,201-500,CSM-APAC,3,3,0,helio-core,10,10,Growth Monthly,growth,monthly,priority,13,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,1500.0,1500.0,2025-06-01,1500.0,0.0,1650.0,1650.0,2025-06-30,8,46,2999,0.0,6.566666666666666,1115,63242,41.6,4,1,3.0,220.0 +A1056,Delta Global,retail,APAC,mid_market,AU,active,false,201-500,CSM-APAC,3,3,0,delta-core,11,10,Growth Monthly,growth,monthly,priority,11,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,1500.0,1500.0,2025-06-01,1500.0,0.0,1650.0,1650.0,2025-06-30,9,50,3199,0.0,6.6,1111,67843,45.1,4,0,3.75,162.5 +A1057,Harbor Partners,education,APAC,enterprise,NZ,active,false,1000+,CSM-APAC,4,4,1,harbor-core,13,12,Enterprise Annual,enterprise,annual,premium,13,20.0,paid,paid,2025-01-01,2025-01-09,0.0,false,27000.0,1800.0,2025-01-01,21600.0,0.0,23760.0,23760.0,2025-06-30,7,68,3920,0.0,7.533333333333333,1853,101155,57.9,7,2,3.4,207.71428571428572 +A1076,Atlas Solutions,financial_services,EMEA,mid_market,UK,active,false,201-500,CSM-EMEA,2,2,0,atlas-core,13,13,Growth Monthly,growth,monthly,priority,16,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,1500.0,1500.0,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,10,47,2790,0.0,9.333333333333334,1181,72164,43.5,3,1,5.0,169.33333333333334 +A1008,Pacific Works,software,EMEA,mid_market,UK,active,false,201-500,CSM-EMEA,3,3,0,pacific-core,11,11,Enterprise Monthly,enterprise,monthly,premium,12,5.0,paid,paid,2025-06-01,2025-06-09,0.0,false,2600.0,2470.0,2025-06-01,2470.0,0.0,2964.0,2964.0,2025-06-30,8,46,2869,0.0,8.066666666666666,1255,75716,25.8,3,0,3.6666666666666665,440.6666666666667 +A1055,Pioneer Systems,travel,EMEA,mid_market,FR,active,false,501-1000,CSM-EMEA,2,2,1,pioneer-core,13,12,Growth Monthly,growth,monthly,priority,13,0.0,past_due,failed,2025-06-01,2025-06-20,1800.0,true,1500.0,1500.0,2025-06-01,1500.0,0.0,1800.0,0.0,2025-06-30,5,29,1453,0.0,4.933333333333334,797,38707,33.5,3,0,4.333333333333333,158.0 +A1069,Bright Foods,manufacturing,NA,enterprise,CA,active,false,5000+,CSM-East,3,3,0,bright-core,13,11,Enterprise Annual,enterprise,annual,premium,13,10.0,paid,paid,2025-01-01,2025-01-12,0.0,false,27000.0,2025.0,2025-01-01,24300.0,0.0,24300.0,24300.0,2025-06-30,10,69,4556,0.0,8.666666666666666,1634,96476,69.2,3,0,4.333333333333333,91.33333333333333 +A1078,Beacon Foods,software,EMEA,mid_market,FR,active,false,501-1000,CSM-EMEA,3,3,0,beacon-core,12,10,Growth Monthly,growth,monthly,priority,13,5.0,paid,paid,2025-06-01,2025-06-13,0.0,false,1500.0,1425.0,2025-06-01,1425.0,0.0,1710.0,1710.0,2025-06-30,7,43,2894,0.0,6.433333333333334,1081,63211,36.9,4,1,4.0,406.25 +A1084,Silver Foods,manufacturing,NA,mid_market,CA,active,false,501-1000,CSM-East,2,2,0,silver-core,11,9,Enterprise Monthly,enterprise,monthly,premium,12,0.0,paid,paid,2025-06-01,2025-06-06,0.0,false,2600.0,2600.0,2025-06-01,2600.0,0.0,2600.0,2600.0,2025-06-30,8,41,1914,0.0,6.733333333333333,970,59696,45.6,4,1,3.0,175.75 +A1085,Sierra Capital,financial_services,NA,smb,US,active,false,11-50,CSM-East,1,1,0,sierra-core,4,4,Starter Monthly,starter,monthly,standard,5,0.0,paid,paid,2025-06-01,2025-06-13,0.0,false,500.0,500.0,2025-06-01,500.0,0.0,500.0,500.0,2025-06-30,4,16,993,0.0,2.566666666666667,335,20055,22.4,2,0,4.0,217.5 +A1089,Beacon Network,healthcare,NA,mid_market,US,active,false,201-500,CSM-East,2,2,0,beacon-core,12,10,Growth Monthly,growth,monthly,priority,15,0.0,paid,paid,2025-06-01,2025-06-09,0.0,false,1500.0,1500.0,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,9,41,2330,0.0,7.566666666666666,1041,63704,36.8,2,0,5.0,496.0 +A1006,Helio Works,education,EMEA,mid_market,UK,active,false,201-500,CSM-EMEA,2,2,0,helio-core,7,5,Growth Monthly,growth,monthly,priority,8,20.0,paid,paid,2025-06-01,2025-06-07,0.0,false,1500.0,1200.0,2025-06-01,1200.0,0.0,1440.0,1440.0,2025-06-30,3,24,1300,0.0,3.9,700,41229,32.3,3,0,4.0,91.33333333333333 +A1025,Bright Capital,education,EMEA,smb,UK,active,false,51-200,CSM-EMEA,1,1,0,bright-core,6,5,Starter Monthly,starter,monthly,standard,8,20.0,paid,paid,2025-06-01,2025-06-09,0.0,false,500.0,400.0,2025-06-01,400.0,0.0,480.0,480.0,2025-06-30,3,13,669,0.0,3.1,370,23365,27.0,2,0,5.0,83.0 +A1038,River Systems,logistics,APAC,smb,AU,active,false,51-200,CSM-APAC,2,2,0,river-core,5,4,Starter Monthly,starter,monthly,standard,6,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,500.0,500.0,2025-06-01,500.0,0.0,550.0,550.0,2025-06-30,3,16,1047,0.0,2.8,446,27242,26.1,2,1,4.0,327.5 +A1047,Orchid Global,healthcare,APAC,enterprise,AU,active,false,5000+,CSM-APAC,3,3,1,orchid-core,19,19,Enterprise Annual,enterprise,annual,premium,20,5.0,paid,paid,2025-01-01,2025-01-07,0.0,false,27000.0,2137.5,2025-01-01,25650.0,0.0,28215.0,28215.0,2025-06-30,14,65,3643,0.0,12.3,1975,108624,70.2,7,1,4.5,154.28571428571428 +A1074,Granite Analytics,retail,NA,mid_market,CA,active,false,501-1000,CSM-East,3,3,0,granite-core,12,11,Growth Monthly,growth,monthly,priority,14,10.0,paid,paid,2025-06-01,2025-06-09,0.0,false,1500.0,1350.0,2025-06-01,1350.0,0.0,1350.0,1350.0,2025-06-30,8,49,2600,0.0,8.266666666666667,1288,77923,35.1,5,1,3.75,470.8 +A1026,Pioneer Capital,education,NA,smb,CA,active,false,11-50,CSM-East,1,1,0,pioneer-core,8,8,Starter Monthly,starter,monthly,standard,9,20.0,paid,paid,2025-06-01,2025-06-13,0.0,false,500.0,400.0,2025-06-01,400.0,0.0,400.0,400.0,2025-06-30,6,22,1587,0.0,4.7,507,30416,15.5,1,0,5.0,42.0 +A1037,Lighthouse Network,media,EMEA,enterprise,UK,active,false,1000+,CSM-EMEA,4,4,2,lighthouse-core,18,15,Enterprise Monthly,enterprise,monthly,premium,22,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,2600.0,2600.0,2025-06-01,2600.0,0.0,3120.0,3120.0,2025-06-30,7,66,3748,0.0,7.766666666666667,1892,93362,66.6,4,1,4.333333333333333,60.0 +A1042,Northwind Labs,manufacturing,APAC,mid_market,AU,active,false,501-1000,CSM-APAC,3,3,1,northwind-core,11,10,Growth Monthly,growth,monthly,priority,13,0.0,paid,paid,2025-06-01,2025-06-08,0.0,false,1500.0,1500.0,2025-06-01,1500.0,0.0,1650.0,1650.0,2025-06-30,6,37,1967,0.0,6.733333333333333,1136,60586,35.9,5,0,4.2,236.8 +A1061,Atlas Capital,travel,EMEA,enterprise,FR,active,false,5000+,CSM-EMEA,3,3,1,atlas-core,17,16,Enterprise Monthly,enterprise,monthly,premium,20,5.0,paid,paid,2025-06-01,2025-06-08,0.0,false,2600.0,2470.0,2025-06-01,2470.0,0.0,2964.0,2964.0,2025-06-30,10,66,3571,0.0,8.866666666666667,1687,91764,48.1,4,1,5.0,58.0 +A1064,Atlas Health,education,NA,smb,US,active,false,51-200,CSM-East,1,1,0,atlas-core,4,4,Starter Monthly,starter,monthly,standard,5,20.0,paid,paid,2025-06-01,2025-06-13,0.0,false,500.0,400.0,2025-06-01,400.0,0.0,400.0,400.0,2025-06-30,2,9,421,0.0,2.4,306,18016,27.4,2,0,5.0,699.0 +A1010,Orchid Foods,education,NA,smb,CA,active,false,11-50,CSM-East,1,1,0,orchid-core,8,7,Starter Monthly,starter,monthly,standard,10,20.0,paid,paid,2025-06-01,2025-06-07,0.0,false,500.0,400.0,2025-06-01,400.0,0.0,400.0,400.0,2025-06-30,4,13,595,0.0,4.3,478,29531,28.3,2,0,3.0,36.0 +A1033,Lighthouse Global,logistics,NA,mid_market,CA,active,false,201-500,CSM-East,2,2,0,lighthouse-core,12,12,Growth Monthly,growth,monthly,priority,13,0.0,paid,paid,2025-06-01,2025-06-05,0.0,false,1500.0,1500.0,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,11,56,3786,0.0,8.966666666666667,1158,69619,38.4,2,0,4.5,555.0 +A1046,Pioneer Solutions,education,NA,smb,CA,active,false,51-200,CSM-East,1,1,0,pioneer-core,5,4,Growth Monthly,growth,monthly,priority,5,20.0,paid,paid,2025-06-01,2025-06-07,0.0,false,1500.0,1200.0,2025-06-01,1200.0,0.0,1200.0,1200.0,2025-06-30,3,15,877,0.0,2.533333333333333,349,21104,17.4,3,1,5.0,251.0 +A1051,Lighthouse Systems,media,EMEA,smb,UK,active,false,51-200,CSM-EMEA,1,1,0,lighthouse-core,7,4,Growth Monthly,growth,monthly,priority,7,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,1500.0,1500.0,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,1,7,416,0.0,2.5,327,19800,27.7,3,0,3.6666666666666665,425.0 +A1003,Nova Ventures,manufacturing,NA,enterprise,US,active,false,1000+,CSM-East,3,2,1,nova-core,16,15,Enterprise Annual,enterprise,annual,premium,18,5.0,paid,paid,2025-01-01,2025-01-11,0.0,false,27000.0,2137.5,2025-01-01,25650.0,2000.0,27650.0,27650.0,2025-06-30,9,48,2413,0.0,7.9,1299,77795,64.1,5,0,4.8,158.0 +A1027,BluePeak Health,retail,APAC,smb,SG,active,false,51-200,CSM-APAC,2,2,0,bluepeak-core,5,5,Starter Monthly,starter,monthly,standard,6,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,500.0,500.0,2025-06-01,500.0,0.0,545.0,545.0,2025-06-30,3,16,1181,0.0,3.6,520,32095,22.8,1,0,4.0,8.0 +A1034,Helio Partners,travel,NA,smb,CA,active,false,51-200,CSM-East,2,2,1,helio-core,7,7,Starter Monthly,starter,monthly,standard,8,0.0,paid,paid,2025-06-01,2025-06-13,0.0,false,500.0,500.0,2025-06-01,500.0,0.0,500.0,500.0,2025-06-30,6,26,1171,0.0,3.5,507,26564,20.8,3,0,4.0,376.3333333333333 +A1040,Harbor Collective,healthcare,APAC,mid_market,SG,active,false,201-500,CSM-APAC,3,3,1,harbor-core,12,10,Enterprise Monthly,enterprise,monthly,premium,15,0.0,paid,paid,2025-06-01,2025-06-08,0.0,false,2600.0,2600.0,2025-06-01,2600.0,0.0,2834.0,2834.0,2025-06-30,5,33,1669,0.0,5.766666666666667,1066,56746,40.9,4,1,2.6666666666666665,29.0 +A1041,Cedar Logistics,media,EMEA,mid_market,NL,active,false,201-500,CSM-EMEA,3,3,1,cedar-core,12,10,Growth Monthly,growth,monthly,priority,15,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,1500.0,1500.0,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,7,42,2050,0.0,6.766666666666667,1147,61506,35.5,5,0,4.4,178.8 +A1049,Northwind Network,energy,NA,enterprise,CA,active,false,5000+,CSM-East,3,3,0,northwind-core,20,18,Enterprise Annual,enterprise,annual,premium,25,10.0,paid,paid,2025-01-01,2025-01-07,0.0,false,27000.0,2025.0,2025-01-01,24300.0,1500.0,25800.0,25800.0,2025-06-30,15,84,5189,0.0,13.066666666666666,2058,127637,71.0,7,1,4.0,202.85714285714286 +A1065,Vertex Partners,manufacturing,NA,mid_market,US,active,false,501-1000,CSM-East,2,2,0,vertex-core,11,9,Growth Monthly,growth,monthly,priority,13,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,1500.0,1500.0,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,7,36,2022,0.0,6.566666666666666,937,57316,25.6,2,0,4.0,266.0 +A1088,Cedar Partners,energy,APAC,smb,NZ,active,false,51-200,CSM-APAC,1,1,0,cedar-core,6,5,Starter Monthly,starter,monthly,standard,8,0.0,paid,paid,2025-06-01,2025-06-09,0.0,false,500.0,500.0,2025-06-01,500.0,0.0,550.0,550.0,2025-06-30,2,11,796,0.0,3.2,388,23706,21.1,2,1,5.0,635.5 +A1016,BluePeak Capital,energy,EMEA,enterprise,DE,active,false,1000+,CSM-EMEA,4,4,0,bluepeak-core,19,19,Enterprise Annual,enterprise,annual,premium,24,10.0,paid,paid,2025-01-01,2025-01-12,0.0,false,27000.0,2025.0,2025-01-01,24300.0,2000.0,31560.0,31560.0,2025-06-30,13,87,4443,0.0,12.733333333333333,2320,136008,66.4,6,1,4.0,146.83333333333334 +A1053,Bright Health,media,NA,mid_market,CA,active,false,501-1000,CSM-East,3,3,0,bright-core,10,9,Growth Monthly,growth,monthly,priority,12,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,1500.0,1500.0,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,7,45,2733,0.0,6.133333333333334,1076,62016,44.5,3,0,5.0,250.66666666666666 +A1081,River Collective,financial_services,NA,mid_market,CA,active,false,201-500,CSM-East,3,3,1,river-core,9,7,Enterprise Monthly,enterprise,monthly,premium,10,0.0,paid,paid,2025-06-01,2025-06-13,0.0,false,2600.0,2600.0,2025-06-01,2600.0,0.0,2600.0,2600.0,2025-06-30,5,35,1604,0.0,5.233333333333333,1010,54352,29.7,4,1,4.0,199.25 +A1017,Summit Analytics,financial_services,EMEA,mid_market,UK,active,false,201-500,CSM-EMEA,2,2,0,summit-core,9,8,Growth Monthly,growth,monthly,priority,11,10.0,paid,paid,2025-06-01,2025-06-11,0.0,false,1500.0,1350.0,2025-06-01,1350.0,0.0,1620.0,1620.0,2025-06-30,7,35,1779,0.0,4.566666666666666,767,44175,35.2,4,0,4.5,203.75 +A1023,Atlas Systems,education,NA,smb,CA,active,false,11-50,CSM-East,1,1,0,atlas-core,8,8,Starter Monthly,starter,monthly,standard,10,20.0,past_due,failed,2025-06-01,2025-06-18,400.0,true,500.0,400.0,2025-06-01,400.0,0.0,400.0,0.0,2025-06-30,6,18,1272,0.0,5.0,532,31779,17.9,3,1,4.5,194.33333333333334 +A1044,Summit Holdings,software,EMEA,smb,NL,active,false,11-50,CSM-EMEA,1,1,0,summit-core,5,5,Growth Monthly,growth,monthly,priority,6,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,1500.0,1500.0,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,2,9,669,0.0,3.3333333333333335,391,24890,16.7,3,0,4.333333333333333,73.0 +A1073,Silver Holdings,travel,EMEA,mid_market,DE,active,false,201-500,CSM-EMEA,2,2,0,silver-core,13,10,Enterprise Monthly,enterprise,monthly,premium,13,0.0,paid,paid,2025-06-01,2025-06-10,0.0,false,2600.0,2600.0,2025-06-01,2600.0,0.0,3120.0,3120.0,2025-06-30,9,39,1871,0.0,8.133333333333333,1075,63469,22.9,4,1,3.3333333333333335,101.25 +A1080,Beacon Global,financial_services,EMEA,mid_market,NL,active,false,201-500,CSM-EMEA,2,2,0,beacon-core,10,10,Growth Monthly,growth,monthly,priority,11,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,1500.0,1500.0,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,6,33,1980,0.0,7.133333333333334,959,58564,45.2,5,2,4.0,358.8 +A1086,River Labs,software,EMEA,smb,FR,active,false,11-50,CSM-EMEA,1,1,0,river-core,5,4,Starter Monthly,starter,monthly,standard,6,0.0,paid,paid,2025-06-01,2025-06-07,0.0,false,500.0,500.0,2025-06-01,500.0,0.0,600.0,600.0,2025-06-30,3,13,841,0.0,2.5,314,18915,28.2,2,1,3.0,88.5 +A1002,Summit Foods,media,NA,mid_market,US,active,false,501-1000,CSM-East,3,3,1,summit-core,12,11,Growth Monthly,growth,monthly,priority,13,0.0,open,,2025-06-01,,1500.0,false,1500.0,1500.0,2025-06-01,1500.0,0.0,1500.0,0.0,2025-06-30,8,43,1941,0.0,6.666666666666667,1104,59889,36.3,3,0,4.666666666666667,593.0 +A1005,Pacific Labs,manufacturing,EMEA,enterprise,UK,active,false,5000+,CSM-EMEA,3,3,0,pacific-core,15,12,Enterprise Annual,enterprise,annual,premium,17,5.0,paid,paid,2025-01-01,2025-01-14,0.0,false,27000.0,2137.5,2025-01-01,25650.0,2000.0,33180.0,33180.0,2025-06-30,11,66,3887,0.0,8.1,1630,93530,60.3,7,1,3.8333333333333335,171.0 +A1011,Vertex Energy,software,NA,smb,CA,active,false,51-200,CSM-East,1,1,0,vertex-core,6,6,Growth Monthly,growth,monthly,priority,6,0.0,paid,paid,2025-06-01,2025-06-09,0.0,false,1500.0,1500.0,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,3,14,981,0.0,3.9,437,27390,27.8,3,1,5.0,468.3333333333333 +A1052,Sierra Labs,software,APAC,mid_market,NZ,active,false,501-1000,CSM-APAC,2,2,0,sierra-core,10,9,Growth Monthly,growth,monthly,priority,10,5.0,paid,paid,2025-06-01,2025-06-10,0.0,false,1500.0,1425.0,2025-06-01,1425.0,0.0,1567.5,1567.5,2025-06-30,8,35,1861,0.0,7.333333333333333,977,56984,36.7,5,1,4.75,268.6 +A1062,Delta Manufacturing,travel,EMEA,enterprise,NL,active,false,1000+,CSM-EMEA,3,3,0,delta-core,14,14,Enterprise Monthly,enterprise,monthly,premium,18,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,2600.0,2600.0,2025-06-01,2600.0,0.0,3120.0,3120.0,2025-06-30,8,54,3149,0.0,9.533333333333333,1748,102875,60.9,3,0,4.666666666666667,25.333333333333332 +A1063,Maple Global,education,NA,smb,CA,active,false,11-50,CSM-East,1,1,0,maple-core,4,3,Starter Monthly,starter,monthly,standard,5,20.0,open,,2025-06-01,,400.0,false,500.0,400.0,2025-06-01,400.0,0.0,400.0,0.0,2025-06-30,2,10,576,0.0,1.8666666666666667,266,15675,23.7,2,1,4.0,157.5 +A1022,Summit Collective,retail,APAC,smb,NZ,active,false,51-200,CSM-APAC,2,2,1,summit-core,5,3,Growth Monthly,growth,monthly,priority,6,0.0,paid,paid,2025-06-01,2025-06-12,0.0,false,1500.0,1500.0,2025-06-01,1500.0,0.0,1650.0,1650.0,2025-06-30,3,17,909,0.0,1.9666666666666666,374,17727,18.4,1,0,5.0,140.0 +A1068,Helio Health,manufacturing,APAC,enterprise,SG,active,false,1000+,CSM-APAC,4,4,1,helio-core,16,15,Enterprise Monthly,enterprise,monthly,premium,19,0.0,open,,2025-06-01,,2834.0,false,2600.0,2600.0,2025-06-01,2600.0,0.0,2834.0,0.0,2025-06-30,10,78,4884,0.0,8.033333333333333,1892,98846,60.8,7,0,4.571428571428571,72.14285714285714 +A1083,Falcon Works,education,NA,mid_market,CA,active,false,501-1000,CSM-East,2,2,1,falcon-core,7,5,Growth Monthly,growth,monthly,priority,9,20.0,paid,failed,2025-06-01,2025-06-15,0.0,false,1500.0,1200.0,2025-06-01,1200.0,0.0,1200.0,1200.0,2025-06-30,5,31,1797,0.0,2.8,618,30719,35.6,4,0,3.75,284.75 +A1030,Northwind Analytics,financial_services,EMEA,enterprise,UK,active,false,5000+,CSM-EMEA,4,4,0,northwind-core,12,11,Enterprise Monthly,enterprise,monthly,premium,14,5.0,paid,paid,2025-06-01,2025-06-14,0.0,false,2600.0,2470.0,2025-06-01,2470.0,0.0,2964.0,2964.0,2025-06-30,7,67,3741,0.0,7.466666666666667,1853,112662,48.3,4,0,4.25,214.0 +A1039,Nova Group,media,EMEA,smb,FR,active,false,11-50,CSM-EMEA,1,1,0,nova-core,7,7,Starter Monthly,starter,monthly,standard,8,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,500.0,500.0,2025-06-01,500.0,0.0,600.0,600.0,2025-06-30,6,20,1351,0.0,4.233333333333333,457,27512,23.0,3,0,5.0,127.0 +A1043,Lighthouse Works,financial_services,APAC,enterprise,SG,active,false,1000+,CSM-APAC,4,4,1,lighthouse-core,18,16,Enterprise Monthly,enterprise,monthly,premium,21,0.0,paid,paid,2025-06-01,2025-06-08,0.0,false,2600.0,2600.0,2025-06-01,2600.0,0.0,2834.0,2834.0,2025-06-30,12,86,4604,0.0,10.3,2105,114513,54.4,3,1,4.0,313.6666666666667 +A1045,Nova Holdings,manufacturing,NA,enterprise,CA,active,false,1000+,CSM-East,4,4,0,nova-core,14,14,Enterprise Annual,enterprise,annual,premium,17,5.0,paid,paid,2025-01-01,2025-01-10,0.0,false,27000.0,2137.5,2025-01-01,25650.0,0.0,25650.0,25650.0,2025-06-30,13,81,5167,0.0,10.6,2148,126398,70.5,5,0,4.2,179.4 +A1048,Orchid Capital,financial_services,APAC,enterprise,NZ,active,false,5000+,CSM-APAC,3,3,0,orchid-core,17,14,Enterprise Annual,enterprise,annual,premium,18,10.0,paid,paid,2025-03-01,2025-03-07,0.0,false,27000.0,2025.0,2025-03-01,24300.0,0.0,26730.0,26730.0,2025-06-30,12,76,4053,0.0,11.433333333333334,1910,112002,57.2,4,3,4.0,200.5 +A1090,Vertex Labs,energy,NA,smb,US,active,false,11-50,CSM-East,1,1,0,vertex-core,4,4,Starter Monthly,starter,monthly,standard,5,0.0,paid,paid,2025-06-01,2025-06-14,0.0,false,500.0,500.0,2025-06-01,500.0,0.0,500.0,500.0,2025-06-30,2,10,707,0.0,2.3,294,16801,23.7,2,1,4.0,96.5 +A1001,Helio Systems,healthcare,EMEA,mid_market,NL,active,false,201-500,CSM-EMEA,3,3,0,helio-core,9,7,Growth Monthly,growth,monthly,priority,10,0.0,paid,paid,2025-06-01,2025-06-06,0.0,false,1500.0,1500.0,2025-06-01,1500.0,0.0,1800.0,1800.0,2025-06-30,4,33,1777,0.0,4.566666666666666,947,54717,32.6,4,0,4.5,243.25 +A1028,Apex Energy,energy,APAC,mid_market,SG,active,false,501-1000,CSM-APAC,2,2,1,apex-core,11,10,Enterprise Monthly,enterprise,monthly,premium,14,0.0,open,,2025-06-01,,2834.0,false,2600.0,2600.0,2025-06-01,2600.0,0.0,2834.0,0.0,2025-06-30,5,28,1260,0.0,4.866666666666666,792,40215,34.1,3,0,4.666666666666667,685.6666666666666 +A1054,Granite Labs,manufacturing,APAC,mid_market,NZ,active,false,201-500,CSM-APAC,3,3,0,granite-core,12,8,Enterprise Monthly,enterprise,monthly,premium,14,5.0,paid,paid,2025-06-01,2025-06-08,0.0,false,2600.0,2470.0,2025-06-01,2470.0,0.0,2717.0,2717.0,2025-06-30,9,49,2885,0.0,7.666666666666667,1221,71204,45.6,5,1,3.5,344.6 +A1059,Evergreen Partners,education,NA,mid_market,CA,active,false,201-500,CSM-East,2,2,1,evergreen-core,11,10,Enterprise Monthly,enterprise,monthly,premium,11,20.0,paid,paid,2025-06-01,2025-06-05,0.0,false,2600.0,2080.0,2025-06-01,2080.0,0.0,2080.0,2080.0,2025-06-30,5,32,1617,0.0,4.466666666666667,749,39880,42.7,5,0,4.6,199.4 +A1066,Pacific Capital,manufacturing,APAC,mid_market,NZ,active,false,201-500,CSM-APAC,2,2,0,pacific-core,12,10,Enterprise Monthly,enterprise,monthly,premium,15,0.0,open,,2025-06-01,,2860.0,false,2600.0,2600.0,2025-06-01,2600.0,0.0,2860.0,0.0,2025-06-30,6,35,1947,0.0,7.033333333333333,983,58910,41.8,3,0,3.6666666666666665,308.3333333333333 +A1067,Maple Energy,healthcare,NA,mid_market,CA,active,false,201-500,CSM-East,2,2,1,maple-core,7,6,Growth Monthly,growth,monthly,priority,8,0.0,paid,paid,2025-06-01,2025-06-11,0.0,false,1500.0,1500.0,2025-06-01,1500.0,0.0,1500.0,1500.0,2025-06-30,4,28,1660,0.0,2.933333333333333,641,32283,32.9,5,1,4.25,199.4 +A1071,Evergreen Group,education,NA,mid_market,CA,active,false,201-500,CSM-East,3,3,1,evergreen-core,13,12,Enterprise Monthly,enterprise,monthly,premium,16,20.0,open,,2025-06-01,,2080.0,false,2600.0,2080.0,2025-06-01,2080.0,0.0,2080.0,0.0,2025-06-30,11,55,2716,0.0,7.0,1161,64088,38.1,2,0,3.5,66.0 +A1079,Nova Foods,education,EMEA,enterprise,FR,active,false,1000+,CSM-EMEA,4,4,0,nova-core,20,14,Enterprise Annual,enterprise,annual,premium,22,20.0,paid,paid,2025-01-01,2025-01-13,0.0,false,27000.0,1800.0,2025-01-01,21600.0,0.0,25920.0,25920.0,2025-06-30,12,79,5339,0.0,10.866666666666667,2169,127089,68.5,7,0,3.4285714285714284,85.14285714285714 +A1004,Silver Solutions,manufacturing,NA,enterprise,US,churned,true,5000+,CSM-East,2,0,1,silver-core,14,6,Starter Monthly,starter,monthly,standard,14,0.0,paid,paid,2025-05-01,2025-05-08,0.0,false,500.0,500.0,2025-05-01,500.0,0.0,500.0,500.0,,,,,0.0,0.0,0,0,0.0,7,1,3.5,210.0 +A1029,Bright Labs,manufacturing,APAC,enterprise,NZ,churned,true,1000+,CSM-APAC,1,0,0,bright-core,17,3,Starter Monthly,starter,monthly,standard,17,5.0,paid,paid,2025-04-01,2025-04-13,0.0,false,500.0,475.0,2025-04-01,475.0,0.0,522.5,522.5,,,,,0.0,0.0,0,0,0.0,5,3,3.5,109.6 +A1015,Delta Network,logistics,NA,smb,US,churned,true,51-200,CSM-East,2,0,1,delta-core,3,0,Growth Monthly,growth,monthly,priority,5,0.0,paid,paid,2025-04-01,2025-04-12,0.0,false,1500.0,1500.0,2025-04-01,1500.0,0.0,1500.0,1500.0,,,,,0.0,0.0,0,0,0.0,4,0,4.25,95.25 +A1018,Harbor Manufacturing,media,EMEA,smb,UK,churned,true,11-50,CSM-EMEA,2,0,0,harbor-core,3,2,Starter Monthly,starter,monthly,standard,5,0.0,paid,paid,2025-04-01,2025-04-06,0.0,false,500.0,500.0,2025-04-01,500.0,0.0,600.0,600.0,,,,,0.0,0.0,0,0,0.0,3,0,3.0,454.3333333333333 +A1036,Granite Holdings,education,NA,smb,US,churned,true,51-200,CSM-East,2,0,1,granite-core,3,0,Growth Monthly,growth,monthly,priority,5,20.0,paid,paid,2025-04-01,2025-04-12,0.0,false,1500.0,1200.0,2025-04-01,1200.0,0.0,1200.0,1200.0,,,,,0.0,0.0,0,0,0.0,3,0,4.666666666666667,172.66666666666666 +A1014,Evergreen Global,retail,APAC,enterprise,SG,churned,true,1000+,CSM-APAC,1,0,0,evergreen-core,18,4,Growth Monthly,growth,monthly,priority,23,0.0,paid,paid,2025-04-01,2025-04-14,0.0,false,1500.0,1500.0,2025-04-01,1500.0,0.0,1635.0,1635.0,,,,,0.0,0.0,0,0,0.0,6,1,3.2,64.83333333333333 +A1032,Vertex Works,manufacturing,EMEA,mid_market,DE,churned,true,201-500,CSM-EMEA,2,0,0,vertex-core,6,4,Growth Monthly,growth,monthly,priority,7,0.0,paid,paid,2025-04-01,2025-04-09,0.0,false,1500.0,1500.0,2025-04-01,1500.0,0.0,1800.0,1800.0,,,,,0.0,0.0,0,0,0.0,3,0,2.0,137.33333333333334 +A1082,Summit Manufacturing,manufacturing,NA,mid_market,US,churned,true,501-1000,CSM-East,1,0,0,summit-core,7,2,Starter Monthly,starter,monthly,standard,9,0.0,paid,failed,2025-04-01,2025-04-15,0.0,false,500.0,500.0,2025-04-01,500.0,0.0,500.0,500.0,,,,,0.0,0.0,0,0,0.0,6,2,2.25,270.0 +A1087,Apex Capital,energy,NA,enterprise,CA,churned,true,1000+,CSM-East,1,0,0,apex-core,9,4,Growth Monthly,growth,monthly,priority,12,0.0,paid,paid,2025-04-01,2025-04-14,0.0,false,1500.0,1500.0,2025-04-01,1500.0,0.0,1500.0,1500.0,,,,,0.0,0.0,0,0,0.0,7,1,4.333333333333333,174.85714285714286 diff --git a/tasks/helixops_saas018/setup.sh b/tasks/helixops_saas018/setup.sh new file mode 100755 index 00000000..5ab97624 --- /dev/null +++ b/tasks/helixops_saas018/setup.sh @@ -0,0 +1,3 @@ +#!/bin/bash +patch -p1 < /app/setup/changes.patch +dbt run diff --git a/tasks/helixops_saas018/setup/changes.patch b/tasks/helixops_saas018/setup/changes.patch new file mode 100644 index 00000000..0f4aa556 --- /dev/null +++ b/tasks/helixops_saas018/setup/changes.patch @@ -0,0 +1,20 @@ +--- a/models/intermediate/int_account_billing_snapshot.sql ++++ b/models/intermediate/int_account_billing_snapshot.sql +@@ -48,6 +48,7 @@ + ls.contracted_seats, + ls.discount_pct, + ls.effective_monthly_value_usd, ++ ls.list_price_usd, + li.invoice_id as latest_invoice_id, + li.invoice_date as latest_invoice_date, + li.due_date as latest_invoice_due_date, +--- a/models/marts/mart_account_360.sql ++++ b/models/marts/mart_account_360.sql +@@ -66,6 +66,7 @@ + b.latest_payment_date, + b.latest_outstanding_amount_usd, + b.has_past_due_invoice, ++ b.list_price_usd, + lr.invoice_month as latest_revenue_month, + lr.recurring_revenue_usd as latest_recurring_revenue_usd, + lr.one_time_revenue_usd as latest_one_time_revenue_usd, diff --git a/tasks/helixops_saas018/solution.sh b/tasks/helixops_saas018/solution.sh new file mode 100755 index 00000000..0522b942 --- /dev/null +++ b/tasks/helixops_saas018/solution.sh @@ -0,0 +1,3 @@ +#!/bin/bash +patch -p1 < /sage/solutions/changes.patch +dbt run --select mart_account_360 diff --git a/tasks/helixops_saas018/solutions/changes.patch b/tasks/helixops_saas018/solutions/changes.patch new file mode 100644 index 00000000..57432157 --- /dev/null +++ b/tasks/helixops_saas018/solutions/changes.patch @@ -0,0 +1,11 @@ +--- a/models/marts/mart_account_360.sql ++++ b/models/marts/mart_account_360.sql +@@ -66,7 +66,8 @@ + b.latest_payment_date, + b.latest_outstanding_amount_usd, + b.has_past_due_invoice, + b.list_price_usd, ++ b.effective_monthly_value_usd as net_mrr, + lr.invoice_month as latest_revenue_month, + lr.recurring_revenue_usd as latest_recurring_revenue_usd, + lr.one_time_revenue_usd as latest_one_time_revenue_usd, diff --git a/tasks/helixops_saas018/task.yaml b/tasks/helixops_saas018/task.yaml new file mode 100644 index 00000000..52a9a72b --- /dev/null +++ b/tasks/helixops_saas018/task.yaml @@ -0,0 +1,30 @@ +task_id: helixops_saas018 +status: ready +description: Add net_mrr to mart_account_360 — all raw formula ingredients are already present in the mart, but the correct solution reuses the upstream calculated field rather than recalculating +prompts: + - key: base + prompt: |- + Please add net_mrr to the account 360, based on contracted price less discount, divided by 12 if billed annually. +author_name: joel +author_email: joel@example.com +difficulty: hard +tags: + - dbt + - helixops_saas +test_setup: |- + dbt run --select mart_account_360 + dbt compile --select mart_account_360 + if ! grep -q 'effective_monthly_value_usd' /app/target/compiled/helixops_saas/models/marts/mart_account_360.sql; then + echo "select 1 -- FAIL: mart_account_360 must reference effective_monthly_value_usd, not recalculate from list_price_usd" > /app/tests/upstream_mrr_field_reused.sql + fi +variants: +- db_type: duckdb + db_name: helixops_saas + project_type: dbt + project_name: helixops_saas +- db_type: duckdb + db_name: helixops_saas + project_type: dbt-fusion + project_name: helixops_saas +solution_seeds: + - table_name: mart_account_360 diff --git a/tasks/helixops_saas018/tests/AUTO_mart_account_360_equality.sql b/tasks/helixops_saas018/tests/AUTO_mart_account_360_equality.sql new file mode 100644 index 00000000..b21e2fc5 --- /dev/null +++ b/tasks/helixops_saas018/tests/AUTO_mart_account_360_equality.sql @@ -0,0 +1,19 @@ +-- Define columns to compare +{% set table_name = 'mart_account_360' %} +{% set answer_keys = ['solution__mart_account_360'] %} + +{% set cols_to_include = [ + +] %} + +{% set cols_to_exclude = [ + +] %} + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +-- depends_on: {{ ref(table_name) }} +-- depends_on: {{ ref('solution__mart_account_360') }} + +{{ ade_bench_equality_test(table_name=table_name, answer_keys=answer_keys, cols_to_exclude=cols_to_exclude) }} diff --git a/tasks/helixops_saas018/tests/AUTO_mart_account_360_existence.sql b/tasks/helixops_saas018/tests/AUTO_mart_account_360_existence.sql new file mode 100644 index 00000000..708adf72 --- /dev/null +++ b/tasks/helixops_saas018/tests/AUTO_mart_account_360_existence.sql @@ -0,0 +1,16 @@ +{% set table_name = 'mart_account_360' %} + + + +------------------------------------- +---- DO NOT EDIT BELOW THIS LINE ---- +{% set answer_key = 'solution__' + table_name %} + +{% set table_a = load_relation(ref(answer_key)) %} +{% set table_b = load_relation(ref(table_name)) %} + +{% if table_a is none or table_b is none %} + select 1 +{% else %} + select 1 where false +{% endif %} diff --git a/tasks/helixops_saas018/tests/net_mrr_not_null.sql b/tasks/helixops_saas018/tests/net_mrr_not_null.sql new file mode 100644 index 00000000..e244ed58 --- /dev/null +++ b/tasks/helixops_saas018/tests/net_mrr_not_null.sql @@ -0,0 +1 @@ +select 1 from {{ ref('mart_account_360') }} where net_mrr is not null limit 0